:root {
    /* Pure Premium Deep Matte & Gold Palette */
    --bg-deep: #030303; 
    --bg-card: #0a0a0c;
    
    --gold-light: #F3E5AB;
    --gold-main: #D4AF37;
    --gold-dark: #A67C00;
    
    --text-pure: #ffffff;
    --text-muted: #8a8a93;
    
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(212, 175, 55, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body, html {
    width: 100%; min-height: 100vh;
    background-color: var(--bg-deep);
    color: var(--text-pure);
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* --------------------------------------
   ACCESSIBILITY UTILS
--------------------------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --------------------------------------
   BACKGROUND EFFECTS (Lights & Web)
--------------------------------------- */
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.05; z-index: 9998; pointer-events: none; mix-blend-mode: screen;
}

.spider-web-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"%3E%3Cg stroke="rgba(212, 175, 55, 0.3)" stroke-width="2" fill="none"%3E%3Cline x1="500" y1="500" x2="500" y2="0"/%3E%3Cline x1="500" y1="500" x2="500" y2="1000"/%3E%3Cline x1="500" y1="500" x2="0" y2="500"/%3E%3Cline x1="500" y1="500" x2="1000" y2="500"/%3E%3Cline x1="500" y1="500" x2="146" y2="146"/%3E%3Cline x1="500" y1="500" x2="854" y2="854"/%3E%3Cline x1="500" y1="500" x2="146" y2="854"/%3E%3Cline x1="500" y1="500" x2="854" y2="146"/%3E%3Cpolygon points="500,400 570,430 600,500 570,570 500,600 430,570 400,500 430,430"/%3E%3Cpolygon points="500,300 640,360 700,500 640,640 500,700 360,640 300,500 360,360"/%3E%3Cpolygon points="500,200 710,290 800,500 710,710 500,800 290,710 200,500 290,290"/%3E%3Cpolygon points="500,100 780,220 900,500 780,780 500,900 220,780 100,500 220,220"/%3E%3Cpolygon points="500,0 850,150 1000,500 850,850 500,1000 150,850 0,500 150,150"/%3E%3C/g%3E%3C/svg%3E');
    background-repeat: no-repeat; background-position: right -150px top 0px; background-size: 1000px;
    z-index: 1; pointer-events: none; filter: blur(2.5px); opacity: 0.8; will-change: opacity, transform;
}

.ambient-light-1, .ambient-light-2 {
    position: fixed; filter: blur(100px); z-index: 1; pointer-events: none;
}
.ambient-light-1 {
    top: -10vh; left: 0vw; width: 60vw; height: 60vh;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
    animation: breathe 8s ease-in-out infinite alternate;
}
.ambient-light-2 {
    bottom: -10vh; right: 0vw; width: 50vw; height: 50vh;
    background: radial-gradient(circle, rgba(166, 124, 0, 0.25) 0%, transparent 70%);
    animation: breathe 10s ease-in-out infinite alternate-reverse;
}

@keyframes breathe {
    0% { opacity: 0.4; transform: scale(0.9) translate(0, 0); }
    100% { opacity: 1; transform: scale(1.1) translate(2vw, 2vh); }
}

.bottom-ambient {
    position: fixed; bottom: -20vh; left: 50%; transform: translateX(-50%);
    width: 100vw; height: 60vh;
    background: radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    filter: blur(80px); z-index: 1; pointer-events: none;
    opacity: 0; will-change: opacity;
}

.cursor-glow {
    position: fixed; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%); mix-blend-mode: screen; transition: opacity 0.3s;
}

/* --------------------------------------
   NAVIGATION
--------------------------------------- */
.glass-nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(3, 3, 3, 0.6);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle); padding: 1.2rem 0;
}
.nav-content { display: flex; justify-content: space-between; align-items: center; max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.nav-logo { 
    font-family: 'Playfair Display', serif;
    font-weight: 900; font-size: 1.8rem; text-decoration: none; letter-spacing: 2px; 
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-main) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold-main); text-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }

.social-nav-group { display: flex; gap: 1.2rem; align-items: center; border-left: 1px solid var(--border-subtle); padding-left: 1.2rem; }
.social-nav-group a { color: var(--text-muted); font-size: 1.2rem; transition: color 0.3s, transform 0.3s; }
.social-nav-group a:hover { transform: translateY(-2px); color: var(--gold-main); }

/* MOBILE MENU */
.mobile-menu-toggle { display: none; color: var(--text-pure); font-size: 1.5rem; cursor: pointer; transition: color 0.3s; }
.mobile-menu-toggle:hover { color: var(--gold-main); }
.mobile-nav-overlay {
    position: fixed; inset: 0; background: rgba(3, 3, 3, 0.95);
    backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
    z-index: 999; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 2rem; transform: translateY(20px); transition: transform 0.4s ease; }
.mobile-nav-overlay.active .mobile-nav-links { transform: translateY(0); }
.mobile-link { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.mobile-link:hover, .mobile-link:active { color: var(--gold-light); }
.mobile-socials { display: flex; gap: 2rem; margin-top: 1rem; }
.mobile-socials a { color: var(--text-pure); font-size: 1.8rem; }

/* --------------------------------------
   GLOBAL COMPONENTS (Reusable across pages)
--------------------------------------- */
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 10; }

.bento-card {
    position: relative;
    background: var(--bg-card); border-radius: 24px; padding: 3rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), inset 0 -1px 0 rgba(0, 0, 0, 0.5), 0 20px 40px -10px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--border-subtle); overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1), border-color 0.4s, box-shadow 0.4s;
}
.bento-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.04), transparent 40%);
    z-index: 0; pointer-events: none; transition: opacity 0.5s; opacity: 0;
}
.bento-card:hover {
    border-color: var(--border-gold); transform: translateY(-5px) scale(1.015);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 30px 60px -12px rgba(212, 175, 55, 0.12);
}
.bento-card:hover::before { opacity: 1; }
.bento-card > * { position: relative; z-index: 1; } 
.gold-icon { color: var(--gold-main); }

.section-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 900; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.15); margin-bottom: 3rem; margin-top: 8rem; letter-spacing: -0.01em; }
.serif-heading { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--text-pure); margin-bottom: 1rem; letter-spacing: 0.02em; }
p { color: var(--text-muted); line-height: 1.7; font-size: 1.05rem; }

/* GLOBAL BUTTONS */
.cta-button { 
    display: inline-flex; align-items: center; justify-content: center; 
    padding: 1.2rem 2.5rem; text-decoration: none; border-radius: 12px; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; font-size: 1.1rem; 
}
.primary-gold { 
    font-family: 'Inter', monospace; font-weight: 600; letter-spacing: 1px;
    background: transparent; color: var(--gold-light); border: 1px solid var(--gold-dark); 
}
.primary-gold:hover { 
    background: var(--gold-main); color: var(--bg-deep); border-color: var(--gold-main); 
    box-shadow: 0 10px 30px -10px var(--gold-main); transform: translateY(-3px); 
}
.secondary-gold { 
    font-weight: 600; background: rgba(255, 255, 255, 0.02); color: var(--text-pure); border: 1px solid var(--border-subtle); 
}
.secondary-gold:hover { 
    border-color: var(--gold-main); color: var(--gold-light); background: rgba(212, 175, 55, 0.05); transform: translateY(-3px); 
}

/* --------------------------------------
   GLOBAL FOOTER
--------------------------------------- */
.site-footer { position: relative; margin-top: 2rem; padding-bottom: 3rem; z-index: 10; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 2rem; border-top: 1px solid var(--border-subtle); }
.footer-enquiry p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-email { font-family: 'Inter', monospace; font-size: 1.1rem; color: var(--gold-main); text-decoration: none; font-weight: 600; transition: color 0.3s; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-email:hover { color: var(--gold-light); }
.footer-meta { text-align: right; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.5rem; color: var(--text-muted); }
.copyright { color: var(--text-muted); font-size: 0.85rem; }

/* GLOBAL MEDIA QUERIES */
@media (max-width: 1024px) {
    .spider-web-bg { background-position: center top; background-size: 100vw; } 
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
    .footer-meta { text-align: center; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-toggle { display: block; }
    .bento-card { padding: 1.8rem; } 
}