:root {
    /* --- PALETTE: "Midnight & Champagne" --- */
    /* Primary: Deep, rich navy for authority and depth */
    --primary: #0F172A; 
    --primary-light: #1E293B;
    
    /* Accent: Muted gold/bronze (not yellow!) for luxury */
    --accent: #C5A070; 
    --accent-light: #D4B68F;
    
    /* Surfaces: Warm stones, not harsh whites */
    --surface-1: #F9F8F6; /* Alabaster */
    --surface-2: #F2EFE9; /* Warm Light Grey */
    --surface-3: #EAE5DC; /* Darker Stone */
    
    /* Text */
    --text-main: #0F172A;
    --text-muted: #475569;
    --text-light: #94A3B8;

    /* Borders */
    --border-light: rgba(197, 160, 112, 0.2);

    /* --- TYPOGRAPHY: Editorial Scale --- */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Mulish', sans-serif;
    
    /* Fluid Type: Min 3.5rem, Preferred 5vw, Max 5.5rem */
    --h1-size: clamp(3.5rem, 6vw, 5.5rem);
    --h2-size: clamp(2.5rem, 4.5vw, 3.5rem);
    --h3-size: clamp(1.5rem, 2.5vw, 2rem);
    --body-size: 1.125rem; /* 18px for readability */

    /* --- SPACING: "Enterprise" Breathing Room --- */
    --container-width: 1800px; /* Wider for 1920x1080 screens */
    --section-padding: clamp(5rem, 10vh, 10rem);
    
    /* --- EFFECTS --- */
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --shadow-card: 0 20px 40px -5px rgba(15, 23, 42, 0.06); /* Soft, deep shadow */
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    background: var(--surface-1);
    color: var(--text-main);
    overflow-x: hidden; /* Prevent side swipe */
    overscroll-behavior: none; /* Lock vertical bounce */
}

body {
    font-family: var(--font-body);
    font-size: var(--body-size);
    line-height: 1.7;
    overflow-x: hidden; /* Double enforce */
    width: 100%;
    color: var(--text-muted);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 400; /* Elegant, not bold */
    line-height: 1.1;
}

h1 { font-size: var(--h1-size); letter-spacing: -0.02em; }
h2 { font-size: var(--h2-size); margin-bottom: 2rem; }
h3 { font-size: var(--h3-size); margin-bottom: 1rem; font-weight: 500; }

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- UTILITIES --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5vw;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent); }
.bg-white { background: white; }
.bg-surface-2 { background: var(--surface-2); }

/* --- NAVIGATION (Sticky & Glass) --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    will-change: transform;
}

.nav--hidden {
    transform: translateY(-120%);
}

.nav--hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.35) 45%, rgba(15, 23, 42, 0) 100%);
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav--hero.scrolled::before {
    opacity: 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
    padding-left: 5vw;
    padding-right: 5vw;
    position: relative;
    z-index: 1;
}

.brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: white; /* Default for Hero */
    transition: color 0.4s;
}

.nav--hero .brand,
.nav--hero .nav-link,
.nav--hero .btn-nav {
    text-shadow: 0 6px 18px rgba(15, 23, 42, 0.45);
}

.nav.scrolled .brand { color: var(--primary); }

.nav.scrolled .brand,
.nav.scrolled .nav-link,
.nav.scrolled .btn-nav {
    text-shadow: none;
}

/* Mobile Toggle Base Styles */
.nav-toggle { 
    display: none; 
    background: none; 
    border: none; 
    cursor: pointer; 
    width: 32px; 
    height: 24px; 
    position: relative; 
    z-index: 2001; 
    padding: 0;
}

.nav-toggle span { 
    display: block; 
    width: 100%; 
    height: 2px; 
    background: white; 
    position: absolute;
    left: 0;
    transition: 0.3s; 
    border-radius: 2px;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

.nav.scrolled .nav-toggle span { background: var(--primary); }

/* --- Native Popover Mobile Menu (2026 Standard) --- */

/* Desktop Menu Visibility */
.desktop-menu { display: flex; gap: 3rem; align-items: center; }

.nav-link {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.35rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after {
    width: 100%;
}

.nav.scrolled .nav-link {
    color: var(--primary);
}

.btn-nav,
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.6rem;
    border: 1px solid rgba(197, 160, 112, 0.9);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    border-radius: 3px;
    background: rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
    transition: all 0.3s ease;
}

.hero .btn-hero-primary {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.btn-nav:hover,
.btn-hero-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(197, 160, 112, 0.25);
}

.nav.scrolled .btn-nav {
    color: var(--primary);
    background: rgba(197, 160, 112, 0.15);
    box-shadow: none;
}

.nav.scrolled .btn-nav:hover {
    color: white;
}

@media (max-width: 968px) {
    .desktop-menu { display: none; }
    .nav-toggle { display: block; }
}

/* Popover Container */
#mobile-menu {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95); /* Deep Navy Glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: none;
    padding: 0;
    margin: 0;
    color: white;
    z-index: 2000;
    
    /* Animation Initial State */
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease, display 0.4s ease allow-discrete;
}

/* Open State */
#mobile-menu:popover-open {
    opacity: 1;
    transform: translateY(0);
}

/* Starting Style for Entry Animation */
@starting-style {
    #mobile-menu:popover-open {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Popover Content Layout */
.mobile-menu-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Close Button */
.nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

/* Mobile Links */
.mobile-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mobile-links a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-links a:hover {
    color: var(--accent);
}

.mobile-cta {
    font-family: var(--font-body) !important;
    font-size: 1.2rem !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent) !important;
    margin-top: 1rem;
}

/* Scroll Lock (Modern) */
body:has(:popover-open) {
    overflow: hidden;
}

/* --- HERO SECTION (Cinematic) --- */
.hero {
    height: 100vh;
    min-height: 800px;
    background: url('media/hero-bg.jpg') no-repeat center center/cover;
    background-position: center calc(50% + var(--hero-bg-offset, 0px));
    background-attachment: fixed; /* Parallax Effect */
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

/* Overlay - gradient positioned to keep waterfall visible (center subject) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.7) 35%, rgba(15,23,42,0.2) 55%, transparent 70%),
        linear-gradient(to top, rgba(15,23,42,0.4) 0%, transparent 30%);
    z-index: 1;
}

/* Decorative frame element */
.hero-frame {
    position: absolute;
    top: 80px;
    left: 3vw;
    right: 3vw;
    bottom: 40px;
    border: 1px solid rgba(197, 160, 112, 0.15);
    pointer-events: none;
    z-index: 2;
}

.hero-frame::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 2vw;
    width: 120px;
    height: 1px;
    background: var(--accent);
}

.hero-frame::after {
    content: '';
    position: absolute;
    top: 30px;
    left: -1px;
    width: 1px;
    height: 120px;
    background: var(--accent);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 6rem;
    padding-bottom: 4rem;
    max-width: none;
    margin: 0;
    padding-left: 5vw;
    padding-right: 0;
}

.hero-text-wrapper {
    max-width: 550px;
    text-align: left;
    opacity: 0;
    animation: heroFadeIn 1.2s ease-out 0.3s forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Tag */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem 0.6rem 1rem;
    background: rgba(197, 160, 112, 0.1);
    border: 1px solid rgba(197, 160, 112, 0.3);
    border-radius: 50px;
    color: var(--accent-light);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Hero Title */
.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 14px 32px rgba(15, 23, 42, 0.45);
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line:first-child {
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.5s forwards;
}

.title-emphasis {
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.7s forwards;
}

.title-emphasis em {
    font-style: italic;
    color: var(--accent-light);
    font-weight: 400;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Lead Text */
.hero-lead {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
    max-width: 520px;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.9s forwards;
    text-shadow: 0 10px 24px rgba(15, 23, 42, 0.35);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    inset: 0;
    background: #fdfdfb;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    width: 300px;
    max-width: 90vw;
    opacity: 0;
    animation: preloaderReveal 0.8s ease forwards;
}

.preloader video {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes preloaderReveal {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.1s forwards;
}

/* General Primary Button (Apply same effect) */
.btn-primary {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    background: transparent; /* Transparent default per request */
    border: 1px solid var(--accent);
    color: var(--primary); /* Dark text on transparent? Or white? Assuming dark for light bg sections */
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent);
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    color: white; /* Text turns white on fill */
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 112, 0.2);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-hero-primary svg {
    transition: transform 0.3s;
}

.btn-hero-primary:hover svg {
    transform: translateX(4px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Hero Trust Section */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.3s forwards;
}

.trust-stars {
    display: flex;
    gap: 0.15rem;
    color: var(--accent);
    font-size: 1rem;
}

.trust-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 60px;
    right: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.hero-scroll span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); transform-origin: top; }
    50% { transform: scaleY(0.5); transform-origin: top; }
}

/* General Primary Button (Apply same effect) */
.btn-primary {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    background: transparent; /* Transparent default per request */
    border: 1px solid var(--accent);
    color: var(--primary); /* Dark text on transparent? Or white? Assuming dark for light bg sections */
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent);
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    color: white; /* Text turns white on fill */
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 112, 0.2);
}

.btn-primary:hover::before {
    width: 100%;
}

/* --- TRUST BAR --- */
.trust-bar {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: white;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0.6;
}

.trust-item {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- SECTIONS GENERAL --- */
section { padding: var(--section-padding) 0; position: relative; }

/* --- EMPATHY (Cards) --- */
.empathy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.card-minimal {
    padding: 3rem;
    background: white;
    border-radius: var(--radius-md);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.card-minimal:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: var(--border-light);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--surface-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* --- ABOUT (Split) --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top center; /* Focus on face/top half */
    border-radius: var(--radius-md);
    background: #ccc; /* Placeholder */
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    z-index: -1;
    border-radius: var(--radius-md);
}

/* --- SERVICES (Detailed) --- */
.service-list {
    display: grid;
    gap: 1rem;
    margin-top: 4rem;
}

.service-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-md);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.03);
}

.service-item:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--accent);
    transform: scale(1.01);
}

.service-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.5;
}

/* --- TESTIMONIALS (Grid Style) --- */
.testimonials {
    background: var(--primary);
    color: white;
    text-align: center;
}

.testimonials h2 { color: white; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-10px);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.testimonial-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-size: 0.85rem;
}

@media (max-width: 968px) {
    /* Mobile Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        margin-top: 2.5rem !important;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
        text-align: left;
    }

    .quote-icon {
        font-size: 3rem !important;
        margin-bottom: -0.5rem !important;
    }

    .testimonials h2 {
        margin-bottom: 1.25rem;
    }

    .testimonials .text-center p {
        max-width: 100% !important;
        padding: 0 0.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .testimonial-meta {
        padding-top: 1.25rem;
    }

    .testimonial-title {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }

    /* Mobile Contact Section */
    .contact-wrapper {
        grid-template-columns: 1fr;
        border-radius: var(--radius-md); /* Slightly smaller radius */
    }

    .contact-info-panel {
        padding: 3rem 2rem;
        order: -1; /* Info first */
        text-align: center;
        align-items: center;
    }

    .contact-form-panel {
        padding: 3rem 1.5rem;
    }

    /* Adjust decorative corners for mobile padding */
    .contact-form-panel-corner-tr,
    .contact-form-panel-corner-bl,
    .contact-form-panel-corner-br {
        width: 30px;
        height: 30px;
    }

    /* Ensure inputs are touch-friendly */
    .form-input {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .btn-submit {
        padding: 1rem;
    }
}

/* --- FAQ (Luxury Accordion) --- */
.faq-container {
    max-width: 900px;
    margin: 4rem auto 0;
}

.accordion-item {
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.accordion-item:last-child { border-bottom: none; }

.accordion-header {
    width: 100%;
    padding: 2rem 0;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Gold Framed Toggle Icon */
.faq-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 300;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.accordion-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: white;
}

.accordion-body {
    padding-bottom: 2.5rem;
    display: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    animation: fadeIn 0.5s ease;
}

.accordion-item.active .accordion-body { 
    display: block; 
}

@media (max-width: 968px) {
    .accordion-header {
        font-size: 1.2rem;
        padding: 1.5rem 0;
    }
}
/* --- CONTACT (Luxury Split) --- */
.contact-wrapper {
    background: white;
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Info | Form */
    overflow: hidden; /* For image/bg clipping */
    border: 1px solid rgba(197, 160, 112, 0.1);
}

.contact-info-panel {
    background: var(--primary);
    color: white;
    padding: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Decorative texture overlay */
.contact-info-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C5A070' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.contact-info-content {
    position: relative;
    z-index: 2;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 700;
}

.contact-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 3rem;
    display: block;
    line-height: 1.2;
}

/* Navy brand border */
.contact-form-panel {
    padding: 4rem 5rem;
    background: white;
    border: 1px solid var(--primary); /* Continuous Navy Border */
    position: relative; 
    /* Ensure no background clip issues */
    background-clip: padding-box;
}

.contact-form-intro {
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Decorative Gold Corners - Positioned to overlay the navy border seamlessly */
.contact-form-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 60px;
    background: var(--accent);
    z-index: 2;
}

/* New: Decorative rounded navy corners for Top-Right and Bottom-Left */
.contact-form-panel-corner-tr {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 40px;
    height: 40px;
    border-top: 1px solid var(--primary);
    border-right: 1px solid var(--primary);
    border-top-right-radius: var(--radius-lg);
    pointer-events: none;
    z-index: 3;
}

.contact-form-panel-corner-bl {
    position: absolute;
    bottom: -1px;
    left: -1px;
    width: 40px;
    height: 40px;
    border-bottom: 1px solid var(--primary);
    border-left: 1px solid var(--primary);
    /* Removed radius for sharp corner */
    pointer-events: none;
    z-index: 3;
}

.contact-form-panel-corner-br {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 40px;
    height: 40px;
    border-bottom: 1px solid var(--primary);
    border-right: 1px solid var(--primary);
    border-bottom-right-radius: var(--radius-lg); /* Matches container roundness */
    pointer-events: none;
    z-index: 3;
}

.form-group { margin-bottom: 2rem; position: relative; }

.form-input {
    width: 100%;
    padding: 1.25rem 1rem;
    background: var(--surface-1);
    border: 1px solid rgba(15, 23, 42, 0.15); /* Navy with slight transparency */
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--primary);
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
}

textarea.form-input {
    resize: none;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary); /* Full navy on focus */
    background: white;
}

/* Floating label effect (optional, keeping clean for now) */

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 112, 0.2);
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-form-panel {
        padding: 3rem 1.5rem;
    }
    .contact-info-panel {
        padding: 3rem 2rem;
        order: -1;
    }
    .contact-form-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .form-group {
        margin-bottom: 1.5rem;
    }
}

/* --- LEGAL PAGES --- */
.legal-page {
    background: var(--surface-1);
}

.nav--legal {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
}

.nav--legal .brand,
.nav--legal .nav-link {
    color: var(--primary);
}

.nav--legal .nav-link:hover {
    color: var(--primary-light);
}

.nav--legal .btn-nav {
    color: var(--primary);
    background: rgba(197, 160, 112, 0.12);
    box-shadow: none;
    text-shadow: none;
}

.nav--legal .btn-nav:hover {
    color: white;
}

.nav--legal .nav-toggle span {
    background: var(--primary);
}

.legal-hero {
    position: relative;
    padding: 9rem 0 4.5rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(197, 160, 112, 0.18), transparent 45%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0) 60%),
        linear-gradient(to bottom, #fdfdfb 0%, var(--surface-2) 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C5A070' fill-opacity='0.08'%3E%3Ccircle cx='4' cy='4' r='1'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.legal-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.legal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    border: 1px solid rgba(197, 160, 112, 0.35);
    border-radius: 999px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(197, 160, 112, 0.08);
}

.legal-title {
    margin: 1.5rem 0 1rem;
    font-size: clamp(3rem, 5vw, 4.25rem);
    letter-spacing: -0.01em;
}

.legal-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 720px;
    font-weight: 300;
    line-height: 1.7;
}

.legal-meta {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
}

.legal-main {
    padding: 4rem 0 6rem;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.legal-rail {
    position: sticky;
    top: 6.5rem;
    display: grid;
    gap: 1.5rem;
}

.legal-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.legal-label {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 700;
}

.legal-list {
    display: grid;
    gap: 0.75rem;
    color: var(--text-muted);
}

.legal-list li {
    position: relative;
    padding-left: 1.5rem;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
}

.legal-contact p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.legal-cta {
    padding: 0.85rem 1.6rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
}

.legal-body {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.legal-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(197, 160, 112, 0.9), rgba(197, 160, 112, 0));
}

.legal-section {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    scroll-margin-top: 7rem;
}

.legal-section:first-child {
    padding-top: 0;
}

.legal-section:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.25rem;
}

.legal-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.75rem;
    height: 2px;
    background: var(--accent);
}

.legal-section p,
.legal-section li {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.legal-section p + p {
    margin-top: 1rem;
}

.legal-section li {
    position: relative;
    padding-left: 1.5rem;
}

.legal-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
}

.legal-body a {
    color: var(--accent);
    font-weight: 600;
}

.legal-body a:hover {
    color: var(--primary);
}

.legal-section ul {
    margin-top: 1rem;
    display: grid;
    gap: 0.75rem;
}

/* --- FOOTER --- */
.footer {
    background: #0B1120; /* Darker than primary */
    color: rgba(255,255,255,0.4);
    padding: 5rem 0 2rem;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    color: white;
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.footer h4 { color: white; margin-bottom: 1.5rem; font-size: 1.1rem; }

.footer a { display: block; margin-bottom: 0.75rem; transition: color 0.3s; }
.footer a:hover { color: var(--accent); }

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- MOBILE --- */
@media (max-width: 968px) {
    :root { --section-padding: 4rem; }

    .nav-menu {
        display: none; /* Add JS toggle for mobile menu overlay later */
    }
    .nav-toggle { display: block; }

    .about-grid, .contact-wrapper, .footer-content, .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Mobile Hero Refinement */
    .hero {
        min-height: 100vh;
        background: url('media/hero-bg-mobile-optimised.png') no-repeat center center/cover;
        background-position: center calc(50% + var(--hero-bg-offset, 0px));
        background-attachment: scroll;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 1.5rem;
    }

    .hero-overlay {
        /* Subtle scrim to keep image visible but text readable */
        background: linear-gradient(to bottom, rgba(15,23,42,0.7) 0%, rgba(15,23,42,0.3) 50%, rgba(15,23,42,0.8) 100%);
    }

    .hero-frame {
        display: none; /* Remove frame on mobile to clear clutter */
    }

    .hero-content {
        padding: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-text-wrapper {
        max-width: 100%;
        text-align: center;
        height: 110vh; 
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-top: 19vh;
        padding-bottom: 0vh;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 3rem);
        margin-bottom: 0;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        flex-grow: 0;
    }

    /* Container for bottom content to group them */
    .hero-lead {
        margin-top: auto;
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 1.5rem;
        text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-hero-secondary {
        width: auto;
        min-width: 200px;
        padding: 0.8rem 1.5rem;
        font-size: 0.7rem;
    }

    .hero-scroll {
        display: none; /* Removed as requested */
    }

    .hero-trust {
        display: none; /* Keep mobile clean */
    }

    /* Mobile Trust Bar */
    .trust-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        justify-content: center;
        width: 100%;
        font-size: 0.9rem;
    }

    /* Mobile Empathy */
    .empathy-grid {
        grid-template-columns: 1fr;
        margin-top: 2.5rem;
    }

    .card-minimal {
        padding: 2rem;
    }

    .icon-box {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    /* Mobile About */
    .about-img {
        height: clamp(320px, 55vh, 420px);
    }

    .about-img-wrapper::after {
        top: -12px;
        left: -12px;
    }

    /* Mobile Services */
    .service-list {
        margin-top: 2.5rem;
    }

    .service-item {
        align-items: start;
        gap: 0.75rem;
        padding: 1.5rem;
    }

    .service-num {
        font-size: 2rem;
    }

    .service-action {
        justify-self: start;
    }

    /* Mobile FAQ */
    .faq-container {
        margin-top: 2.5rem;
    }

    .accordion-body {
        font-size: 1rem;
        padding-bottom: 2rem;
    }

    /* Mobile Footer */
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-brand {
        font-size: 1.6rem;
    }

    /* Mobile Legal Pages */
    .legal-hero {
        padding: 7.5rem 0 3rem;
    }

    .legal-hero-inner {
        text-align: left;
    }

    .legal-title {
        font-size: clamp(2.4rem, 9vw, 3rem);
    }

    .legal-subtitle {
        font-size: 1.05rem;
    }

    .legal-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .legal-rail {
        position: static;
    }

    .legal-card {
        padding: 1.5rem;
    }

    .legal-body {
        padding: 2.25rem 1.5rem;
        border-radius: var(--radius-md);
    }

    h1 { font-size: 2.8rem; }
}
