@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,800");
@import url("fontawesome-all.min.css");
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

        /* === BRAND COLOR PALETTE - LIGHT SCHEME === */
        :root {
            --ivory: #F6F5F2;
            --slate-blue: #2E3A44;
            --sage: #9BAE9A;
            --sagedark: #4a6741;
            --stone: #C9C4BC;
            --gold: #C6A75E;
            --white: #FFFFFF;
            --light-gray: #F0F2F5;
            --medium-gray: #E5E9ED;
            --dark-gray: #4A555E;
            --text-primary: #1E262C;
            --text-secondary: #5A656E;
            --shadow-soft: 0 8px 20px rgba(46, 58, 68, 0.04);
            --shadow-medium: 0 12px 30px rgba(46, 58, 68, 0.06);
            --transition: all 0.3s ease;
            --light-green: #CCE0D2;
            --dark-green: #005A46;
            --green: #90B8A0;
            --deep-teal-green: #0F4F4A;
            --dark-forest-teal: #0A2E2B;

             --ink: #0f1a14;
             --paper: #f7f4ef;
            --cream: #efe9df;

        }

        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--ivory);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
            color: var(--slate-blue);
        }
        
        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
        
        h2 {
            font-size: 2.2rem;
            margin-bottom: 2rem;
            position: relative;
            color: var(--slate-blue);
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 2px;
            background-color: var(--gold);
        }
        
        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--slate-blue);
        }
        
        p {
            margin-bottom: 1.2rem;
            color: var(--text-secondary);
            font-weight: 400;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        section {
            padding: 5rem 0;
            scroll-margin-top: 80px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-header h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-header p {
            max-width: 600px;
            margin: 0 auto;
            color: var(--text-secondary);
        }
        
        .btn {
            display: inline-block;
            padding: 0.9rem 2rem;
            background-color: var(--slate-blue);
            color: white;
            border-radius: 2px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            font-size: 0.95rem;
            text-decoration: none;
            letter-spacing: 0.3px;
        }
        
        .btn:hover {
            background-color: #3f4e5a;
            transform: translateY(-2px);
            box-shadow: var(--shadow-soft);
        }
        
        .btn-accent {
            background-color: var(--gold);
            color: white;
        }
        
        .btn-accent:hover {
            background-color: #b89a4f;
        }
        
        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--dark-forest-teal);
            color: var(--slate-blue);
        }
        
        .btn-outline:hover {
            /*background-color: rgba(46, 58, 68, 0.05);*/
            border-color: var(--slate-blue);
            background-color: #b89a4f;
        }
        
        .btn-light {
            background-color: white;
            color: var(--slate-blue);
            border: 1px solid var(--stone);
        }
        
        .btn-light:hover {
            background-color: var(--ivory);
        }
        
        /* === HEADER - LIGHT VERSION === */

        /* #header-partial is the sticky wrapper — it spans the full top of the page.
           Sticky on the inner <header> fails because the containing block (#header-partial)
           is only ~110px tall, so the browser exits sticky immediately after scrollY=40px.
           Making the wrapper itself sticky keeps the whole announcement+header pinned. */
        #header-partial {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: white;  /* wrapper must be opaque — inner header alone isn't enough */
        }

        header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            position: relative;
            width: 100%;
            border-bottom: 1px solid var(--medium-gray);
        }

    .site-header {
      background: var(--white);
      border-bottom: 1px solid var(--medium-gray);
      position: relative;
      transition: box-shadow 0.3s;
    }
    .site-header.scrolled { box-shadow: 0 4px 20px rgba(46,58,68,0.10); }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      gap: 24px;
    }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 1.5rem;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            color: var(--gold);
            font-size: 1.8rem;
            margin-right: 0.8rem;
        }
        
        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--slate-blue);
        }
        
        .logo-text span {
            display: block;
            font-size: 0.7rem;
            font-weight: 400;
            color: var(--text-secondary);
            font-family: 'Inter', sans-serif;
            letter-spacing: 1.5px;
        }
        
        .mobile-menu-btn {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--slate-blue);
            cursor: pointer;
            display: block;
            z-index: 1001;
        }
        
        /* ════════════════════════════════════════
           NAV — MOBILE FIRST
           ════════════════════════════════════════ */

        /* Collapsed nav panel (mobile) */
        .nav-links {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            padding: 0.5rem 0 1rem;
            box-shadow: 0 12px 40px rgba(46,58,68,0.12);
            z-index: 999;
            max-height: calc(100vh - 80px);
            overflow-y: auto;
        }
        .nav-links.active { display: flex; }

        /* Top-level plain <a> links */
        .nav-links > a {
            padding: 0.9rem 1.5rem;
            font-weight: 500;
            font-size: 0.92rem;
            color: var(--text-secondary);
            text-decoration: none;
            border-bottom: 1px solid var(--light-gray);
            transition: var(--transition);
            display: block;
        }
        .nav-links > a:last-child { border-bottom: none; }
        .nav-links > a:hover { color: var(--gold); background: var(--ivory); }

        /* Nav item wrapper */
        .nav-item {
            position: relative;
            border-bottom: 1px solid var(--light-gray);
        }

        /* Parent trigger button */
        .nav-parent {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.9rem 1.5rem;
            background: none;
            border: none;
            font-family: 'Inter', sans-serif;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-secondary);
            cursor: pointer;
            transition: var(--transition);
            text-align: left;
        }
        .nav-parent:hover  { color: var(--gold); background: var(--ivory); }
        .nav-parent[aria-expanded="true"] { color: var(--sagedark); background: var(--ivory); }

        .nav-chevron {
            font-size: 0.65rem;
            margin-left: 6px;
            flex-shrink: 0;
            transition: transform 0.25s ease;
        }
        .nav-parent[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

        /* ── MOBILE DROPDOWN (accordion) ──
           Hidden by default, shown when parent .nav-item has .is-open */
        .dropdown {
            display: none;
            background: var(--ivory);
            border-top: 1px solid var(--medium-gray);
        }
        .nav-item.is-open > .dropdown { display: block; }

        /* Shared dropdown internals */
        .dropdown-inner {
            display: grid;
            grid-template-columns: 1fr;  /* single column on mobile */
        }
        .dropdown-inner--single { grid-template-columns: 1fr; }
        .dropdown-col { padding: 1rem 1.5rem 1.2rem; }
        .dropdown-col + .dropdown-col {
            border-top: 1px solid var(--medium-gray);  /* stacked on mobile */
        }
        .dropdown-heading {
            font-size: 0.65rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--sagedark);
            margin-bottom: 0.6rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--medium-gray);
        }
        .dropdown-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.55rem 0.4rem;
            border-radius: 6px;
            text-decoration: none;
            transition: background 0.18s ease, transform 0.18s ease;
        }
        .dropdown-link:hover { background: white; }
        .dropdown-link:hover .dropdown-icon { background: var(--sagedark); color: white; }
        .dropdown-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: white;
            border: 1px solid var(--medium-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--sagedark);
            font-size: 0.75rem;
            transition: var(--transition);
        }
        .dropdown-link strong {
            display: block;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--slate-blue);
            line-height: 1.2;
        }
        .dropdown-link small {
            display: block;
            font-size: 0.72rem;
            color: var(--text-secondary);
            margin-top: 1px;
        }
        .nav-links .btn-outline {
            margin: 1rem 1.5rem;
            display: inline-block;
            width: calc(100% - 3rem);
            text-align: center;
        }
        
        /* Service Areas */
        .service-areas {
            background-color: var(--light);
        }
        
        .service-areas-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .service-area-card {
            background-color: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }
        
        .service-area-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-area-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .service-area-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        /* Core Services */
        .core-services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .core-service {
            background-color: white;
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--secondary);
        }
        
        .core-service h3 {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .core-service-icon {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-right: 1rem;
        }
        

        /* === HERO SECTION === */
        .hero {
            padding: 10rem 0 7rem;
            background-image: url('images/hero/reception-closeup.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            color: white;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg,rgba(10,18,14,0.88) 0%,rgba(10,18,14,0.72) 55%,rgba(10,18,14,0.35) 100%);
            z-index: 0;
        }
        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,transparent 50%,rgba(198,167,94,0.04) 100%);
            z-index: 0;
            pointer-events: none;
        }
        
         .main-nav a:hover { color: var(--sagedark); }
    .header-cta {
      background: var(--sagedark);
      color: var(--white) !important;
      padding: 10px 20px;
      border-radius: var(--radius);
      font-size: 0.78rem !important;
      letter-spacing: 0.08em !important;
      transition: background 0.2s !important;
    }
    .header-cta:hover { background: var(--ink) !important; color: var(--white) !important; }
    .header-tel {
      font-size: 0.82rem;
      color: var(--muted);
      white-space: nowrap;
    }
    .header-tel strong { color: var(--ink); }
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.3s; }


    /* ===== ANNOUNCEMENT BAR ===== */
    .announcement {
      background: var(--sagedark);
      color: var(--white);
      text-align: center;
      padding: 10px 24px;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      font-weight: 500;
      /* max-height collapse — NOT translateY.
         translateY only moves visually, leaving layout space so sticky wrapper
         keeps its full height and shows a blank gap. max-height: 0 truly
         collapses the element so the wrapper shrinks to just the header. */
      overflow: hidden;
      max-height: 80px;
      transition: max-height 0.35s ease, padding 0.35s ease;
    }
    .ann-hidden {
      max-height: 0 !important;
      padding-top: 0 !important;
      padding-bottom: 0 !important;
    }
    .announcement a { color: var(--gold); text-decoration: underline; }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 2;
        }
        /* Hero h1 must be white over dark bg */
        .hero h1 { color: white; }
        
        .brand-positioning {
            font-size: 1.1rem;
            color: var(--gold);
            font-weight: 500;
            margin-bottom: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            color: rgba(255,255,255,0.82);
            font-weight: 300;
            max-width: 600px;
        }
        
        .hero-btns {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2.5rem;
        }
        
        /* === PERSONA MESSAGING - LIGHT VERSION === */
        .persona-messaging {
            background-color: white;
            padding: 4rem 0;
            border-top: 1px solid var(--medium-gray);
            border-bottom: 1px solid var(--medium-gray);
        }
        
        .persona-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 3rem;
        }
        
        .persona-tab {
            padding: 0.8rem 1.8rem;
            /*background-color: var(--light-gray);*/
			background-color: var(--ivory);
            border: 1px solid transparent;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        
        .persona-tab.active {
            /*background-color: var(--slate-blue); original*/
			background-color: var(--gold);
            color: white;
        }
        
        .persona-tab:hover {
            /*background-color: var(--sage);*/
			background-color: #b89a4f;
            color: white;
        }
        
        .persona-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            display: none;
        }
        
        .persona-content.active {
            display: block;
        }
        
        .persona-quote {
            font-size: 1.3rem;
            font-style: italic;
            color: var(--slate-blue);
            margin-bottom: 1.5rem;
            position: relative;
            font-weight: 400;
        }
        
        .persona-quote:before {
            content: '"';
            font-size: 4rem;
            color: var(--gold);
            opacity: 0.2;
            position: absolute;
            top: -20px;
            left: -20px;
            font-family: 'Playfair Display', serif;
        }
        
        /* === SERVICE JOURNEY - LIGHT VERSION === */
        .service-journey {
            padding: 5rem 0;
            background-color: white;
        }
        
        .journey-steps {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .journey-step {
            background-color: var(--ivory);
            padding: 2.5rem;
            border-radius: 4px;
			/* border-left: 4px solid var(--sage); */
            border-left: 4px solid var(--gold);
            position: relative;
            box-shadow: var(--shadow-soft);
        }
        
        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            /* background-color: var(--sage); */
			 background-color: var(--gold);
            color: white;
            border-radius: 50%;
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-family: 'Playfair Display', serif;
        }
        
        /* === SERVICE AREAS - LIGHT VERSION === */
        .service-areas {
            background-color: white;
            padding: 5rem 0;
        }
        
        .service-areas-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .service-area-card {
            background-color: var(--ivory);
            border-radius: 8px;
            padding: 2.5rem 2rem;
            transition: var(--transition);
            border: 1px solid var(--medium-gray);
            box-shadow: var(--shadow-soft);
        }
        
        .service-area-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: var(--shadow-medium);
        }
        
        .service-title {
            font-size: 2.5rem;
            color: var(--sage);
            margin-bottom: 1.5rem;
        }
        
        .service-outcome {
            font-style: italic;
            color: var(--slate-blue);
            margin-top: 1rem;
            font-size: 0.95rem;
            border-top: 1px solid var(--stone);
            padding-top: 1rem;
        }
        
        /* === PLAN SELECTOR - LIGHT VERSION === */
        .plan-selector {
            padding: 5rem 0;
            background-color: white;
            border-top: 1px solid var(--medium-gray);
        }
        
        .selector-container {
            background-color: var(--ivory);
            border-radius: 8px;
            padding: 3rem;
            max-width: 800px;
            margin: 0 auto;
            border: 1px solid var(--medium-gray);
            box-shadow: var(--shadow-soft);
        }
        
        .selector-step {
            display: none;
        }
        
        .selector-step.active {
            display: block;
        }
        
        .selector-question {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: var(--slate-blue);
            font-weight: 500;
        }
        
        .selector-options {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }
        
        .selector-option {
            padding: 1.5rem;
            background-color: white;
            border: 1px solid var(--stone);
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            color: var(--text-primary);
            font-weight: 500;
        }
        
        .selector-option:hover {
            background-color: rgba(198, 167, 94, 0.05);
            border-color: var(--gold);
        }
        
        .selector-option.selected {
            background-color: rgba(198, 167, 94, 0.1);
            border-color: var(--gold);
        }
        
        .selector-nav {
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
        }
        
        #planResult {
            background-color: white;
            padding: 2rem;
            border-radius: 4px;
            margin-bottom: 2rem;
            border: 1px solid var(--gold);
        }
        
        #planResult h3 {
            color: var(--gold);
        }
        
        /* === TRUST MODULE - LIGHT VERSION === */
        .trust-module {
            padding: 5rem 0;
            background-color: white;
            border-top: 1px solid var(--medium-gray);
        }
        
        .trust-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .trust-item {
            text-align: center;
            padding: 2.5rem 2rem;
            background-color: var(--ivory);
            border-radius: 8px;
            border: 1px solid var(--medium-gray);
            transition: var(--transition);
        }
        
        .trust-item:hover {
            border-color: var(--sage);
            box-shadow: var(--shadow-soft);
        }
        
        .trust-icon {
            font-size: 2.8rem;
            color: var(--sage);
            margin-bottom: 1.5rem;
        }
        
        .certification-badge {
            display: inline-block;
            background-color: var(--slate-blue);
            color: white;
            padding: 0.4rem 1.2rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-top: 1rem;
        }
        

        /* === ANIMATIONS === */
        .pulse-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background-color: var(--gold);
            border-radius: 50%;
            animation: pulse 3s infinite;
            opacity: 0.7;
        }
        
        @keyframes pulse {
            0% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.3); }
            100% { opacity: 0.3; transform: scale(1); }
        }
        
        .scan-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            animation: scan 10s linear infinite;
            z-index: 1;
            opacity: 0.5;
        }
        
        @keyframes scan {
            0% { top: 0; }
            100% { top: 100%; }
        }
        

        /* === TEAM SECTION - LIGHT VERSION === */
        .team-section {
            padding: 5rem 0;
            background-color: white;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .team-member {
            background-color: var(--ivory);
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid var(--medium-gray);
            box-shadow: var(--shadow-soft);
        }
        
        .team-member:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: var(--shadow-medium);
        }
        
        .member-photo {
            height: 200px;
            background: linear-gradient(135deg, var(--stone), var(--sage));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            opacity: 0.9;
        }
        
        .member-info {
            padding: 2rem;
        }
        
        .member-info h3 {
            color: var(--slate-blue);
            margin-bottom: 0.5rem;
        }
        
        .member-specialties {
            margin-top: 1.2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .specialty-tag {
            background-color: rgba(155, 174, 154, 0.15);
            color: var(--slate-blue);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        /* === FAQ SECTION - LIGHT VERSION === */
        .faq-section {
            padding: 5rem 0;
            background-color: var(--ivory);
            border-top: 1px solid var(--medium-gray);
        }
        
        .faq-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        .faq-category {
            padding: 0.8rem 1.8rem;
            background-color: white;
            border: 1px solid var(--stone);
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        
        .faq-category.active {
            /* background-color: var(--slate-blue); */
			background-color: var(--gold);
            color: white;
            /* border-color: var(--slate-blue); */
			border-color: var(--slate-blue);

        }
        
        .faq-category:hover {
            /* background-color: var(--sage); */
			background-color: var(--sage);

            color: white;
            border-color: var(--sage);
        }
        
        .faq-group {
            display: none;
            max-width: 800px;
            margin: 0 auto;
        }
        

        .faq-group.active {
            display: block;
        }
        
        .faq-item {
            background-color: white;
            border-radius: 4px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border: 1px solid var(--medium-gray);
            transition: var(--transition);
        }
        
        .faq-item:hover {
            border-color: var(--gold);
        }
        
        .faq-question {
            font-weight: 600;
            color: var(--slate-blue);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
        }
        
        .faq-answer {
            margin-top: 1rem;
            color: var(--text-secondary);
            display: none;
            padding-top: 1rem;
            border-top: 1px solid var(--light-gray);
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        /* === STICKY BOOKING WIDGET - LIGHT VERSION === */
        .booking-widget {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        .booking-widget.visible {
            opacity: 1;
            pointer-events: all;
        }
        
        .widget-button {
            background-color: var(--gold);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(198, 167, 94, 0.3);
            transition: var(--transition);
        }
        
        .widget-button:hover {
            transform: scale(1.1);
        }
        
        .widget-form {
            position: absolute;
            bottom: 70px;
            right: 0;
            width: 300px;
            background-color: white;
            border: 1px solid var(--medium-gray);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: var(--shadow-medium);
            display: none;
        }
        
        .widget-form.active {
            display: block;
        }
        
        .form-title {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            color: var(--slate-blue);
        }
        
        .form-input {
            width: 100%;
            padding: 0.8rem 1rem;
            margin-bottom: 1rem;
            background-color: var(--ivory);
            border: 1px solid var(--stone);
            border-radius: 4px;
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--gold);
        }
        
        /* === FOOTER - LIGHT VERSION === */
        /* ═══ FOOTER ═══ */
        footer { color: white; }

        /* Three pillars bar */
        .footer-pillars {
            background: rgba(0,0,0,0.25);
            padding: 2.2rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .footer-pillars-grid {
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
            align-items: center;
            text-align: center;
        }
        @media(min-width:768px) {
            .footer-pillars-grid {
                flex-direction: row;
                justify-content: center;
                gap: 0;
                text-align: left;
            }
        }
        .footer-pillar {
            display: flex;
            flex-direction: column;
            gap: .3rem;
            padding: 0 2.5rem;
            flex: 1;
        }
        .footer-pillar-word {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: .01em;
        }
        .footer-pillar-desc {
            font-size: .78rem;
            color: rgba(255,255,255,.6);
            line-height: 1.5;
            max-width: 220px;
        }
        @media(min-width:768px) { .footer-pillar-desc { max-width: none; } }
        .footer-pillar-divider {
            width: 1px;
            background: rgba(255,255,255,.12);
            align-self: stretch;
            flex-shrink: 0;
            display: none;
        }
        @media(min-width:768px) { .footer-pillar-divider { display: block; } }

        /* Main footer body */
        .footer-body {
            background-color: var(--slate-blue);
            padding: 3.5rem 0 2.5rem;
        }
        .footer-main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        @media(min-width:768px) {
            .footer-main-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 3.5rem; }
        }

        /* Brand column */
        .footer-brand {}
        .footer-logo {
            display: flex;
            align-items: center;
            gap: .7rem;
            margin-bottom: 1.1rem;
            text-decoration: none;
        }
        .footer-logo img { border-radius: 6px; flex-shrink: 0; }
        .footer-logo span {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: white;
        }
        .footer-strapline {
            font-size: .85rem;
            color: rgba(255,255,255,.65);
            line-height: 1.65;
            margin-bottom: 1.6rem;
            max-width: 340px;
        }
        .footer-contact { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.5rem; }
        .footer-contact-row {
            display: flex;
            align-items: flex-start;
            gap: .7rem;
            font-size: .84rem;
            color: rgba(255,255,255,.75);
            text-decoration: none;
            transition: color .2s;
        }
        .footer-contact-row:hover { color: var(--gold); }
        .footer-contact-row i { color: var(--gold); width: 16px; flex-shrink: 0; margin-top: 2px; font-size: .82rem; }
        .footer-hours { cursor: default; }
        .footer-hours:hover { color: rgba(255,255,255,.75); }
        .footer-map-wrap {
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,.1);
        }

        /* Nav columns */
        .footer-nav-col {}
        .footer-nav-heading {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: .9rem;
            padding-bottom: .5rem;
            border-bottom: 1px solid rgba(255,255,255,.1);
        }
        .footer-nav-heading::after { display: none; }
        .footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
        .footer-nav-list a {
            font-size: .84rem;
            color: rgba(255,255,255,.72);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: .45rem;
            transition: color .2s, gap .2s;
        }
        .footer-nav-list a::before {
            content: '';
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width .2s;
            flex-shrink: 0;
        }
        .footer-nav-list a:hover { color: white; gap: .65rem; }
        .footer-nav-list a:hover::before { width: 10px; }

        /* Accreditation badges */
        .footer-badges {
            display: flex;
            flex-direction: column;
            gap: .7rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,.1);
        }
        .footer-badge {
            display: flex;
            align-items: center;
            gap: .7rem;
        }
        .footer-badge i {
            color: var(--gold);
            font-size: .9rem;
            width: 18px;
            flex-shrink: 0;
        }
        .footer-badge strong {
            display: block;
            font-size: .78rem;
            color: white;
            font-weight: 600;
            line-height: 1.2;
        }
        .footer-badge span {
            display: block;
            font-size: .72rem;
            color: rgba(255,255,255,.5);
        }

        /* Copyright bar */
        .footer-copyright {
            background: rgba(0,0,0,0.3);
            padding: 1.1rem 0;
            border-top: 1px solid rgba(255,255,255,.06);
        }
        .footer-copyright-inner {
            display: flex;
            flex-direction: column;
            gap: .3rem;
            align-items: center;
            text-align: center;
            font-size: .75rem;
            color: rgba(255,255,255,.45);
        }
        @media(min-width:768px) {
            .footer-copyright-inner {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }
        .footer-copyright-inner strong { color: rgba(255,255,255,.65); font-weight: 500; }

        /* desktop footer grid (kept for legacy usage) */
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
        
        /* === RESPONSIVE DESIGN === */
        @media (min-width: 768px) {
            h1 {
                font-size: 3.5rem;
            }
            
            .mobile-menu-btn {
                display: none;
            }
            
            /* ════════════════════════════════════════
               NAV — DESKTOP (768px+)
               ════════════════════════════════════════ */

            .nav-links {
                display: flex;
                flex-direction: row;
                align-items: center;
                position: static;
                width: auto;
                background: transparent;
                box-shadow: none;
                padding: 0;
                gap: 2px;
                max-height: none;
                overflow: visible;
            }

            /* Top-level plain links */
            .nav-links > a {
                padding: 0.5rem 1rem;
                border-bottom: none;
                border-radius: 6px;
                font-size: 0.84rem;
                display: inline-block;
            }
            .nav-links > a:hover { background: var(--ivory); }

            /* Nav item */
            .nav-item {
                border-bottom: none;
            }

            /* Parent button */
            .nav-parent {
                padding: 0.5rem 1rem;
                border-radius: 6px;
                font-size: 0.84rem;
                width: auto;
                justify-content: flex-start;
            }

            /* ── DESKTOP DROPDOWN: hidden until hover ──
               Key principles:
               1. No padding-top on panel — that shifts content and causes jump.
               2. Bridge gap with a ::before pseudo on the nav-item itself.
               3. Caret is ::before on the PANEL (not ::after) so it sits
                  outside overflow:hidden and doesn't affect layout.
               4. translate only on opacity transition — no Y movement. */

            /* Invisible bridge: fills gap between button bottom and panel top
               so the mouse can travel without triggering mouseleave. */
            .nav-item::before {
                content: '';
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                height: 12px;      /* matches margin-top on panel */
                z-index: 1001;
                pointer-events: all;
                display: none;     /* shown only on desktop via below rule */
            }
            .nav-item:hover::before { display: block; }

            .nav-item > .dropdown {
                display: block;           /* always in DOM — JS never touches it on desktop */
                visibility: hidden;
                opacity: 0;
                pointer-events: none;
                position: absolute;
                top: calc(100% + 12px);   /* 12px gap — bridged by ::before */
                left: 50%;
                transform: translateX(-50%);   /* NO Y shift — prevents jump */
                min-width: 460px;
                background: white;
                border: 1px solid var(--medium-gray);
                border-radius: 12px;
                box-shadow: 0 20px 60px rgba(46,58,68,0.15);
                transition: opacity 0.18s ease, visibility 0.18s;
                z-index: 1000;
                overflow: visible;         /* allow caret to poke above border */
                padding-top: 0;
            }

            /* Caret arrow — sits above the panel, outside overflow */
            .nav-item > .dropdown::before {
                content: '';
                position: absolute;
                top: -7px;
                left: 50%;
                transform: translateX(-50%) rotate(45deg);
                width: 12px;
                height: 12px;
                background: white;
                border-left: 1px solid var(--medium-gray);
                border-top: 1px solid var(--medium-gray);
                pointer-events: none;
                z-index: 1;
            }

            /* Clip just the inner content box so border-radius still works */
            .nav-item > .dropdown .dropdown-inner {
                border-radius: 12px;
                overflow: hidden;
            }

            /* Show on hover — :focus-within keeps it open while tabbing */
            .nav-item:hover > .dropdown,
            .nav-item:focus-within > .dropdown {
                visibility: visible;
                opacity: 1;
                pointer-events: all;
            }

            /* Two-column layout on desktop */
            .nav-item > .dropdown .dropdown-inner { grid-template-columns: 1fr 1fr; }
            .nav-item > .dropdown .dropdown-inner--single { grid-template-columns: 1fr; }
            .nav-item > .dropdown .dropdown-col + .dropdown-col { border-top: none; border-left: 1px solid var(--medium-gray); }
            .nav-item > .dropdown .dropdown-col { padding: 1.4rem 1.6rem 1.6rem; }
            .nav-item > .dropdown .dropdown-link { padding: 0.6rem 0.5rem; }

            .nav-links .btn-outline {
                margin: 0 0 0 0.5rem;
                width: auto;
            }
            
            .hero-btns {
                flex-direction: row;
            }
            
            .service-areas-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .journey-steps {
                flex-direction: row;
            }
            
            .journey-step {
                flex: 1;
            }
            
            .trust-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

			  .gpservice-grid {
                grid-template-columns: repeat(3, 1fr);
            }

			.gpservice-steps {
                flex-direction: row;
            }
            
            .gpservice-step {
                flex: 1;
            }
            
            .selector-options {
                grid-template-columns: repeat(2, 1fr);
            }
            
            /* footer now uses .footer-main-grid — responsive handled inline */
            
        }
        
        @media (min-width: 992px) {
            .service-areas-grid {
                grid-template-columns: repeat(5, 1fr);
            }
            
			.gpservice-grid{
                grid-template-columns: repeat(3, 1fr);
            }
              .team-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* === SECTION ILLUSTRATION IMAGES === */
        .section-illustration {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 16px 48px rgba(46,58,68,0.12);
            display: block;
            margin: 0 auto;
        }
        .services-img-wrap,
        .journey-img-wrap,
        .compliance-img-wrap {
            margin-top: 3rem;
            text-align: center;
        }

          .contact-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 5rem;
                align-items: start;
            }
            @media (max-width: 768px) {
                .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
            }
            .contact-info-block p {
                display: flex;
                align-items: flex-start;
                gap: .6rem;
                color: var(--text-secondary);
                font-size: .93rem;
                margin-bottom: .8rem;
            }
            .contact-info-block i {
                color: var(--gold);
                width: 18px;
                flex-shrink: 0;
                margin-top: 3px;
            }
            .contact-info-block a { color: var(--slate-blue); text-decoration: none; font-weight: 600; }
            .contact-info-block a:hover { color: var(--gold); }
            .contact-divider {
                width: 50px; height: 2px;
                background: var(--gold);
                margin: 1.2rem 0 1.8rem;
            }
            .contact-trust {
                display: flex;
                flex-direction: column;
                gap: .7rem;
                margin-top: 2rem;
                padding-top: 2rem;
                border-top: 1px solid var(--medium-gray);
            }
            .contact-trust-item {
                display: flex;
                align-items: center;
                gap: .6rem;
                font-size: .82rem;
                color: var(--text-secondary);
            }
            .contact-trust-item i { color: var(--sagedark); font-size: .85rem; }

            /* ── Zoho form reset & restyle ── */
            #crmWebToEntityForm.zcwf_lblLeft {
                background: white !important;
                padding: 2rem !important;
                border-radius: 8px !important;
                border: 1px solid var(--medium-gray) !important;
                box-shadow: 0 8px 30px rgba(46,58,68,0.07) !important;
                max-width: 100% !important;
                color: var(--text-primary) !important;
            }
            /* Remove Zoho's float layout — use block rows instead */
            #crmWebToEntityForm .zcwf_row {
                margin: 0 0 1.1rem 0 !important;
                display: block !important;
            }
            #crmWebToEntityForm .zcwf_col_lab {
                width: 100% !important;
                float: none !important;
                padding: 0 0 .3rem 0 !important;
                margin: 0 !important;
                font-family: 'Inter', sans-serif !important;
                font-size: .78rem !important;
                font-weight: 600 !important;
                color: var(--slate-blue) !important;
                letter-spacing: .02em !important;
            }
            #crmWebToEntityForm .zcwf_col_fld {
                width: 100% !important;
                float: none !important;
                padding: 0 !important;
                margin: 0 !important;
            }
            /* All text inputs and textarea */
            #crmWebToEntityForm .zcwf_col_fld input[type=text],
            #crmWebToEntityForm .zcwf_col_fld textarea {
                width: 100% !important;
                float: none !important;
                padding: .75rem 1rem !important;
                border: 1px solid var(--medium-gray) !important;
                border-radius: 4px !important;
                background: var(--ivory) !important;
                font-family: 'Inter', sans-serif !important;
                font-size: .9rem !important;
                color: var(--text-primary) !important;
                transition: border-color .2s ease !important;
                resize: vertical !important;
            }
            #crmWebToEntityForm .zcwf_col_fld input[type=text]:focus,
            #crmWebToEntityForm .zcwf_col_fld textarea:focus {
                outline: none !important;
                border-color: var(--gold) !important;
                background: white !important;
                box-shadow: 0 0 0 3px rgba(198,167,94,.12) !important;
            }
            #crmWebToEntityForm .zcwf_col_fld textarea {
                min-height: 110px !important;
            }
            /* Privacy row */
            #crmWebToEntityForm .zcwf_privacy {
                padding: .2rem 0 .8rem !important;
                display: flex !important;
                align-items: flex-start !important;
                gap: .6rem !important;
            }
            #crmWebToEntityForm .zcwf_privacy .dIB.vaT {
                flex-shrink: 0 !important;
                padding-top: 2px !important;
            }
            #crmWebToEntityForm .zcwf_privacy_txt {
                font-family: 'Inter', sans-serif !important;
                font-size: .78rem !important;
                color: var(--text-secondary) !important;
                line-height: 1.5 !important;
            }
            #crmWebToEntityForm .zcwf_privacy_txt span {
                font-family: 'Inter', sans-serif !important;
                background: none !important;
                color: var(--text-secondary) !important;
            }
            /* Submit + Clear buttons */
            #crmWebToEntityForm .zcwf_col_fld input[type=submit],
            #crmWebToEntityForm .formsubmit.zcwf_button {
                width: 100% !important;
                padding: .95rem 1.5rem !important;
                background: var(--sagedark) !important;
                background-image: none !important;
                color: white !important;
                border: none !important;
                border-radius: 4px !important;
                font-family: 'Inter', sans-serif !important;
                font-size: .95rem !important;
                font-weight: 600 !important;
                letter-spacing: .04em !important;
                cursor: pointer !important;
                transition: background .2s ease !important;
                max-width: 100% !important;
                overflow: visible !important;
                text-overflow: unset !important;
                white-space: normal !important;
            }
            #crmWebToEntityForm .zcwf_col_fld input[type=submit]:hover,
            #crmWebToEntityForm .formsubmit.zcwf_button:hover {
                background: var(--slate-blue) !important;
            }
            #crmWebToEntityForm input[type=reset].zcwf_button {
                display: none !important;  /* hide Clear — cleaner UX */
            }
            /* Privacy error */
            #privacyErr944993000000527342 {
                font-family: 'Inter', sans-serif !important;
                font-size: .78rem !important;
                color: #c0392b !important;
                padding-left: 0 !important;
                margin-top: .3rem !important;
            }
            /* Name row — two columns side by side */
            .ah-name-row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: .8rem;
            }
            @media (max-width: 480px) {
                .ah-name-row { grid-template-columns: 1fr; }
            }
            /* ─── STATS ──────────────────────────────────── */
.stats{background:var(--sagedark);padding:16px 0}
.stats-g{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:rgba(255,255,255,.18)}
@media(min-width:640px){.stats-g{grid-template-columns:repeat(4,1fr)}}
.stat{background:var(--sagedark);padding:12px 10px;text-align:center}
.stat-n{font-family:var(--fd);font-size:2.4rem;font-weight:300;color:#fff;line-height:1;display:block}
.stat-l{font-size:.7rem;letter-spacing:.09em;text-transform:uppercase;color:rgba(255,255,255,.68);margin-top:5px;display:block}

/* ─── MISSING STYLES MERGED FROM style.css ───────────────────────────────── */

/* ─── BASE ELEMENT RESETS (not in main.css) ─── */
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font-family:var(--fb)}

/* ─── LAYOUT ─── */
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 20px}
@media(min-width:768px){.wrap{padding:0 32px}}
@media(min-width:1200px){.wrap{padding:0 40px}}

/* ─── TYPE UTILITIES ─── */
.label{display:flex;align-items:center;gap:10px;font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;font-weight:600;color:var(--sage);margin-bottom:14px}
.label::before{content:'';display:block;width:28px;height:1px;background:var(--sage);flex-shrink:0}
.label.lw{color:var(--gold-l)}.label.lw::before{background:var(--gold)}
.sec-intro{color:var(--muted);max-width:580px;margin-top:10px;font-size:.96rem}
.sh{margin-bottom:44px}

/* ─── BUTTON VARIANTS (style.css naming, not in main.css) ─── */
.bg{background:var(--gold);color:var(--ink)}.bg:hover{background:var(--gold-l);transform:translateY(-1px);box-shadow:0 4px 18px rgba(184,147,62,.38)}
.bs{background:var(--sage);color:#fff}.bs:hover{background:var(--sage-l)}
.bd{background:var(--ink);color:#fff}.bd:hover{background:#1c3020}
.bo{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.38)}.bo:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.7)}
.bdo{background:transparent;color:var(--ink);border:1px solid var(--border)}.bdo:hover{background:var(--ink);color:#fff}

/* ─── ANNOUNCEMENT BAR ─── */
.ann{background:var(--sage);color:#fff;text-align:center;padding:9px 16px;font-size:.76rem;letter-spacing:.07em;font-weight:500;line-height:1.4}
.ann a{color:var(--gold-l);text-decoration:underline}

/* ─── HEADER (style.css structure) ─── */
.hdr{display:flex;align-items:center;justify-content:space-between;height:68px;gap:12px}
.logo-txt{display:none}
@media(min-width:480px){.logo-txt{display:flex;flex-direction:column;line-height:1}}
.logo-n{font-family:var(--fd);font-size:1.35rem;font-weight:600;color:var(--ink)}
.logo-t{font-size:.58rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);font-weight:500}
.htel{display:none}
@media(min-width:1100px){.htel{display:block;font-size:.78rem;color:var(--muted);white-space:nowrap}.htel strong{color:var(--ink)}}
.ham{display:flex;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:6px}
.ham span{display:block;width:22px;height:2px;background:var(--ink);transition:.3s;border-radius:1px}
@media(min-width:980px){.ham{display:none}}

/* ─── MOBILE NAV (style.css) ─── */
.mnav{display:none;position:fixed;top:68px;left:0;right:0;bottom:0;background:#fff;z-index:190;overflow-y:auto;padding:24px 20px;flex-direction:column;gap:4px;border-top:1px solid var(--border)}
.mnav.open{display:flex}
.mnav a{font-size:1.05rem;font-weight:400;color:var(--ink);padding:14px 0;border-bottom:1px solid var(--border);transition:color .2s}
.mnav a:last-child{border:none}
.mnav a:hover{color:var(--sage)}
.mnav-cta{display:block;margin-top:16px;text-align:center;background:var(--sage);color:#fff!important;padding:14px;border-radius:var(--r);font-size:.85rem;letter-spacing:.08em;text-transform:uppercase;font-weight:500;border:none!important}

/* ─── HERO (style.css structure — additive classes) ─── */
.hero-bg{position:absolute;inset:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center top;filter:brightness(.45) saturate(.85)}
.hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(15,26,20,.95) 0%,rgba(15,26,20,.6) 60%,rgba(15,26,20,.2) 100%)}
.hero-cnt{position:relative;z-index:2;padding:80px 0}
.hero-cnt .wrap{display:flex;flex-direction:column;align-items:flex-start}
.kicker{display:inline-flex;align-items:center;gap:10px;font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;color:var(--gold-l);font-weight:600;margin-bottom:22px}
.kicker::before{content:'';display:block;width:32px;height:1px;background:var(--gold);flex-shrink:0}
.hero-lead{color:rgba(255,255,255,.72);font-size:1.05rem;max-width:520px;margin-bottom:36px;line-height:1.72}

.trust1{display:flex;flex-wrap:wrap;gap:18px 28px}
.trust-item1{display:flex;align-items:center;gap:8px;font-size:.74rem;color:var(--gold);letter-spacing:.04em}
.trust-dot1{width:6px;height:6px;border-radius:50%;background:var(--gold);flex-shrink:0}

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

/* ─── PAGE HERO ─── */
.phero{position:relative;background:var(--ink);overflow:hidden;min-height:52vh;display:flex;align-items:center}
.phero-bg{position:absolute;inset:0}
.phero-bg img{width:100%;height:100%;object-fit:cover;object-position:center;filter:brightness(.38) saturate(.8)}
.phero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(110deg,rgba(15,26,20,.97) 0%,rgba(15,26,20,.7) 55%,transparent 100%)}
.phero-cnt{position:relative;z-index:2;padding:72px 0}
.bc{display:flex;align-items:center;flex-wrap:wrap;gap:6px;font-size:.72rem;color:rgba(255,255,255,.38);letter-spacing:.06em;margin-bottom:18px}
.bc a{color:rgba(255,255,255,.38);transition:color .2s}.bc a:hover{color:var(--gold-l)}
.bc span{color:rgba(255,255,255,.2)}
.phero h1{color:#fff;margin-bottom:18px}
.phero h1 em{color:rgba(255,255,255,.6)}
.phero-lead{color:rgba(255,255,255,.68);font-size:1rem;max-width:520px;margin-bottom:28px;line-height:1.7}
.pills{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:28px}
.pill{display:inline-flex;align-items:center;gap:6px;padding:6px 13px;border:1px solid rgba(255,255,255,.2);border-radius:100px;font-size:.7rem;letter-spacing:.06em;color:rgba(255,255,255,.65)}
.pill-dot{width:5px;height:5px;border-radius:50%;background:var(--gold);flex-shrink:0}
.phero-acts{display:flex;flex-wrap:wrap;gap:10px}

/* ─── SPLIT LAYOUT ─── */
.split{display:grid;grid-template-columns:1fr}
@media(min-width:768px){.split{grid-template-columns:1fr 1fr}}
.split-img{min-height:300px;overflow:hidden}
@media(min-width:768px){.split-img{min-height:460px}}
.split-img img{width:100%;height:100%;object-fit:cover}
.split-txt{padding:48px 24px;display:flex;flex-direction:column;justify-content:center}
@media(min-width:768px){.split-txt{padding:64px 56px}}
@media(min-width:1024px){.split-txt{padding:80px 72px}}
.split-txt h2{margin-bottom:18px}
.split-txt p{font-size:.93rem;color:var(--muted);margin-bottom:12px}
.split-txt ul{margin:10px 0 18px;display:flex;flex-direction:column;gap:8px}
.split-txt li{display:flex;gap:10px;align-items:flex-start;font-size:.88rem;color:var(--muted)}
.split-txt li::before{content:'✦';color:var(--gold);font-size:.6rem;margin-top:4px;flex-shrink:0}
.split-txt .btn{align-self:flex-start;margin-top:14px}
.bg-w{background:#fff}.bg-p{background:var(--paper)}.bg-c{background:var(--cream)}.bg-i{background:var(--ink)}
.bg-i h2{color:#fff}.bg-i h2 em{color:var(--gold-l)}
.bg-i p{color:rgba(255,255,255,.68)}
.bg-i li{color:rgba(255,255,255,.68)!important}
.bg-i .label{color:var(--gold-l)}.bg-i .label::before{background:var(--gold)}

/* ─── CARD GRID ─── */
.grid{display:grid;gap:20px;grid-template-columns:1fr}
@media(min-width:540px){.g2{grid-template-columns:repeat(2,1fr)}}
@media(min-width:540px){.g3{grid-template-columns:repeat(2,1fr)}}
@media(min-width:768px){.g3{grid-template-columns:repeat(3,1fr)}}
@media(min-width:640px){.g4{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.g4{grid-template-columns:repeat(4,1fr)}}
.card{background:#fff;border:1px solid var(--border);border-radius:var(--r);overflow:hidden;display:flex;flex-direction:column;transition:box-shadow .2s,transform .25s}
.card:hover{box-shadow:var(--sh2);transform:translateY(-3px)}
.c-img{height:190px;overflow:hidden;flex-shrink:0}
.c-img img{width:100%;height:100%;object-fit:cover;transition:transform .45s}
.card:hover .c-img img{transform:scale(1.06)}
.c-body{padding:24px;flex:1;display:flex;flex-direction:column}
.c-body h3{margin-bottom:9px;font-family:var(--fd)}
.c-body p{font-size:.86rem;color:var(--muted);flex:1}
.c-link{display:inline-flex;align-items:center;gap:6px;font-size:.75rem;letter-spacing:.07em;text-transform:uppercase;font-weight:500;color:var(--sage);margin-top:16px;transition:gap .2s}
.c-link:hover{gap:11px}

/* ─── PRICING ─── */
.price-grid{display:grid;gap:20px;grid-template-columns:1fr}
@media(min-width:540px){.price-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:860px){.price-grid{grid-template-columns:repeat(3,1fr)}}
.pcard{background:#fff;border:1px solid var(--border);border-radius:var(--r);overflow:hidden;display:flex;flex-direction:column;transition:box-shadow .2s,transform .2s}
.pcard:hover{box-shadow:var(--sh2);transform:translateY(-2px)}
.pcard.pk{background:var(--ink);border-color:var(--ink)}
.pc-img{height:160px;overflow:hidden}
.pc-img img{width:100%;height:100%;object-fit:cover}
.pc-body{padding:26px;flex:1;display:flex;flex-direction:column}
.pc-tag{font-size:.63rem;letter-spacing:.14em;text-transform:uppercase;font-weight:700;color:var(--gold);margin-bottom:7px}
.pcard.pk .pc-tag{color:var(--gold-l)}
.pc-name{font-family:var(--fd);font-size:1.25rem;font-weight:500;margin-bottom:4px}
.pcard.pk .pc-name{color:#fff}
.pc-price{font-family:var(--fd);font-size:2.6rem;font-weight:300;line-height:1;margin:12px 0 4px;color:var(--ink)}
.pcard.pk .pc-price{color:#fff}
.pc-per{font-size:.77rem;color:var(--muted);margin-bottom:20px}
.pcard.pk .pc-per{color:rgba(255,255,255,.5)}
.pc-list{flex:1;margin-bottom:22px}
.pc-list li{display:flex;gap:9px;font-size:.85rem;color:var(--muted);padding:7px 0;border-bottom:1px solid var(--border)}
.pcard.pk .pc-list li{color:rgba(255,255,255,.68);border-color:rgba(255,255,255,.12)}
.pc-list li:last-child{border:none}
.chk{width:17px;height:17px;border-radius:50%;background:var(--sage);flex-shrink:0;margin-top:1px;display:flex;align-items:center;justify-content:center}
.chk svg{width:9px;height:9px;color:#fff}

/* ─── FAQ (style.css structure — different from main.css .faq-item/.faq-question) ─── */
.faq-wrap{max-width:800px;margin:0 auto}
.faq-q{width:100%;background:none;border:none;padding:20px 0;display:flex;justify-content:space-between;align-items:center;cursor:pointer;text-align:left;font-family:var(--fb);font-size:.93rem;font-weight:500;color:var(--ink);gap:16px}
.faq-q:hover{color:var(--sage)}
.faq-ico{width:26px;height:26px;border-radius:50%;border:1px solid var(--border);flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:1.15rem;font-weight:300;color:var(--muted);transition:.25s}
.faq-item.open .faq-ico{background:var(--sage);border-color:var(--sage);color:#fff;transform:rotate(45deg)}
.faq-a{font-size:.9rem;color:var(--muted);line-height:1.78;max-height:0;overflow:hidden;transition:max-height .38s ease,padding .3s}
.faq-item.open .faq-a{max-height:500px;padding-bottom:20px}

/* ─── GALLERY STRIP ─── */
.gal{overflow:hidden;height:200px;display:grid;grid-template-columns:repeat(3,1fr)}
@media(min-width:540px){.gal{height:240px;grid-template-columns:repeat(4,1fr)}}
@media(min-width:860px){.gal{height:280px;grid-template-columns:repeat(5,1fr)}}
.gal-img{overflow:hidden}
.gal-img img{width:100%;height:100%;object-fit:cover;filter:brightness(.72) saturate(.85);transition:filter .3s,transform .45s}
.gal-img:hover img{filter:brightness(.95) saturate(1.05);transform:scale(1.08)}

/* ─── CTA BAND ─── */
.cta-band{background:var(--sage);padding:64px 0;text-align:center}
.cta-band h2{color:#fff;margin-bottom:14px}
.cta-band h2 em{color:var(--gold-l)}
.cta-band p{color:rgba(255,255,255,.72);max-width:540px;margin:0 auto 30px}
.cta-acts{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* ─── COMPLIANCE ─── */
.comp-grid{display:grid;gap:20px;grid-template-columns:1fr}
@media(min-width:540px){.comp-grid{grid-template-columns:repeat(3,1fr)}}
.comp-card{background:#fff;border:1px solid var(--border);padding:28px 24px;border-radius:var(--r);text-align:center}
.comp-badge{font-size:.63rem;letter-spacing:.14em;text-transform:uppercase;font-weight:700;color:var(--sage);background:var(--sage-p);padding:5px 12px;border-radius:100px;display:inline-block;margin-bottom:12px}
.comp-card h3{font-family:var(--fd);font-size:1.1rem;font-weight:500;margin-bottom:8px}
.comp-card p{font-size:.84rem;color:var(--muted);line-height:1.65}
.comp-ref{font-size:.73rem;color:var(--gold);font-weight:600;margin-top:9px;display:block}

/* ─── CONTACT SPLIT ─── */
.contact-split{display:grid;grid-template-columns:1fr}
@media(min-width:768px){.contact-split{grid-template-columns:1fr 1fr;min-height:620px}}
.contact-img{position:relative;min-height:300px;overflow:hidden}
.contact-img img{width:100%;height:100%;object-fit:cover;filter:brightness(.52)}
.contact-img-ov{position:absolute;inset:0;background:linear-gradient(to top,rgba(15,26,20,.96) 0%,rgba(15,26,20,.3) 60%);display:flex;flex-direction:column;justify-content:flex-end;padding:36px 28px}
@media(min-width:768px){.contact-img-ov{padding:48px}}
.contact-img-ov h2{font-family:var(--fd);font-size:clamp(1.6rem,3vw,2.4rem);font-weight:300;color:#fff;margin-bottom:10px}
.contact-img-ov h2 em{color:var(--gold-l)}
.contact-img-ov p{color:rgba(255,255,255,.6);font-size:.88rem;max-width:380px;margin-bottom:20px}
.ci-list{display:flex;flex-direction:column;gap:11px}
.ci-list li{display:flex;align-items:flex-start;gap:11px;font-size:.84rem;color:rgba(255,255,255,.6)}
.ci-list li svg{flex-shrink:0;margin-top:1px;opacity:.7;width:15px;height:15px}
.ci-list a{color:rgba(255,255,255,.6);transition:color .2s}
.ci-list a:hover{color:var(--gold-l)}
.contact-form-wrap{background:var(--ink);padding:40px 24px;display:flex;flex-direction:column;justify-content:center}
@media(min-width:768px){.contact-form-wrap{padding:60px 48px}}
.contact-form-wrap h3{font-family:var(--fd);font-size:1.7rem;font-weight:400;color:#fff;margin-bottom:6px}
.contact-form-wrap p.sub{color:rgba(255,255,255,.45);font-size:.84rem;margin-bottom:26px}

/* ─── FORM (style.css structure) ─── */
.frow{display:grid;grid-template-columns:1fr;gap:14px}
@media(min-width:480px){.frow{grid-template-columns:1fr 1fr}}
.fg{display:flex;flex-direction:column;gap:5px;margin-bottom:12px}
.fg label{font-size:.68rem;letter-spacing:.08em;text-transform:uppercase;font-weight:500;color:rgba(255,255,255,.42)}
.fg input,.fg select,.fg textarea{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.15);border-radius:var(--r);padding:11px 13px;font-size:.87rem;color:#fff;font-family:var(--fb);outline:none;transition:border-color .2s;appearance:none;-webkit-appearance:none}
.fg input::placeholder,.fg textarea::placeholder{color:rgba(255,255,255,.28)}
.fg select option{background:var(--ink);color:#fff}
.fg input:focus,.fg select:focus,.fg textarea:focus{border-color:var(--gold)}
.fg textarea{resize:vertical;min-height:84px}
.fsub{width:100%;justify-content:center;margin-top:6px}
.fnote{font-size:.7rem;color:rgba(255,255,255,.28);text-align:center;margin-top:8px}

/* ─── FOOTER (style.css structure — additive to main.css footer) ─── */
.ftr-g{display:grid;grid-template-columns:1fr;gap:36px;margin-bottom:40px}
@media(min-width:640px){.ftr-g{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.ftr-g{grid-template-columns:2fr 1fr 1fr 1fr}}
.fb-name{font-family:var(--fd);font-size:1.3rem;font-weight:500;color:#fff;display:block}
.fb-sub{font-size:.6rem;letter-spacing:.13em;text-transform:uppercase;color:rgba(255,255,255,.35);display:block;margin:3px 0 14px}
.fb-desc{font-size:.82rem;line-height:1.72;color:rgba(255,255,255,.45);max-width:300px;margin-bottom:18px}
.fb-contact{display:flex;flex-direction:column;gap:9px}
.fb-contact li{display:flex;gap:8px;align-items:flex-start;font-size:.8rem}
.fb-contact li svg{width:13px;height:13px;flex-shrink:0;margin-top:2px;opacity:.55}
.fb-contact a:hover{color:#fff}
.fcol h4{font-size:.66rem;letter-spacing:.13em;text-transform:uppercase;font-weight:600;color:rgba(255,255,255,.35);margin-bottom:14px}
.fcol ul{display:flex;flex-direction:column;gap:8px}
.fcol ul a{font-size:.8rem;transition:color .2s}
.fcol ul a:hover{color:#fff}
.ftr-bot{border-top:1px solid rgba(255,255,255,.08);padding-top:22px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;font-size:.72rem;color:rgba(255,255,255,.28)}
.fcerts{display:flex;gap:10px;flex-wrap:wrap}
.fcert{font-size:.62rem;letter-spacing:.07em;text-transform:uppercase;padding:3px 9px;border:1px solid rgba(255,255,255,.14);border-radius:100px;color:rgba(255,255,255,.38)}

/* ─── REVEAL ANIMATION ─── */
.rv{opacity:0;transform:translateY(20px);transition:opacity .55s ease,transform .55s ease}
.rv.vis{opacity:1;transform:none}

/* ─── CSS TOKENS FROM style.css NOT IN main.css ─── */
:root {
    --sage-l: #6b8f62;
    --sage-p: rgba(74,103,65,.09);
    --gold-l: #d4ab58;
    --muted: #6b7268;
    --border: rgba(15,26,20,.12);
    --sh: 0 4px 32px rgba(15,26,20,.08);
    --sh2: 0 10px 56px rgba(15,26,20,.16);
    --r: 2px;
    --fd: 'Cormorant Garamond', Georgia, serif;
    --fb: 'DM Sans', system-ui, sans-serif;
    --wrap: 1200px;
}

.slabel {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--sage);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px
}

.slabel::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--sage)
}

.slabel.light {
    color: var(--gold-light)
}

.slabel.light::before {
    background: var(--gold)
}

/* ── CARDS ── */
.cards-grid {
    display: grid;
    gap: 20px
}

.cards-3 {
    grid-template-columns: repeat(3, 1fr)
}

@media (max-width: 768px) {
    .cards-3 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .cards-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px)
}

.card-img {
    height: 300px;
    overflow: hidden
}

@media (max-width: 768px) {
    .card-img {
        height: 200px;
    }
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.card:hover .card-img img {
    transform: scale(1.05)
}

.card-body {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

@media (max-width: 768px) {
    .card-body {
        padding: 20px;
    }
}

.card h3 {
    font-family: var(--fd);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.card p {
    font-size: .87rem;
    color: var(--muted);
    line-height: 1.65;
    flex-grow: 1
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--sage);
    margin-top: 18px;
    transition: gap .2s
}

.card-link:hover {
    gap: 10px
}

@media (max-width: 767px) {
    .booking-widget { opacity: 1 !important; pointer-events: all !important; }
}

/* ─────────────────────────────────────────────────────────────
   CSS VARIABLES (matches main.css palette)
───────────────────────────────────────────────────────────── */
:root {
    --ivory:       #F6F5F2;
    --slate-blue:  #2E3A44;
    --sagedark:    #4a6741;
    --gold:        #C6A75E;
    --white:       #FFFFFF;
    --text-secondary: #5A656E;
    --medium-gray: #E5E9ED;
}
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Inter',sans-serif; background:#111; }
 
/* ─────────────────────────────────────────────────────────────
   HERO SLIDER WRAPPER
───────────────────────────────────────────────────────────── */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 580px;
    max-height: 900px;
    overflow: hidden;
    background: #0a1a14;
}
 
/* ─────────────────────────────────────────────────────────────
   SLIDES — stacked, each fills the container
───────────────────────────────────────────────────────────── */
.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    /* Crossfade: 1s in/out */
    transition: opacity 1s ease;
    will-change: opacity;
    z-index: 1;
}
.hs-slide.is-active  { opacity: 1; z-index: 2; }
.hs-slide.is-prev    { opacity: 0; z-index: 3; } /* fading out sits on top */
 
/* ─────────────────────────────────────────────────────────────
   BACKGROUND IMAGE + KEN BURNS ZOOM/PAN
   Each slide has a unique animation direction for variety.
───────────────────────────────────────────────────────────── */
.hs-slide__bg {
    position: absolute;
    inset: -6%; /* oversized so zoom/pan never reveals edges */
    background-size: cover;
    background-repeat: no-repeat;
    will-change: transform;
    /* Start all slides at a neutral slightly-scaled state so when
       the animation begins there is no visible snap from scale(1) */
    transform: scale(1.06);
}

/* Ken Burns directions — all start FROM the resting scale so no jump */
@keyframes kb-zoom-in-center { from { transform: scale(1.06); }              to { transform: scale(1.14); } }
@keyframes kb-zoom-in-right  { from { transform: scale(1.06) translateX(0); } to { transform: scale(1.12) translateX(-2%); } }
@keyframes kb-zoom-in-left   { from { transform: scale(1.06) translateX(0); } to { transform: scale(1.12) translateX(2%); } }
@keyframes kb-pan-right       { from { transform: scale(1.08) translateX(-2%); } to { transform: scale(1.08) translateX(2%); } }
@keyframes kb-pan-left        { from { transform: scale(1.08) translateX(2%);  } to { transform: scale(1.08) translateX(-2%); } }
@keyframes kb-zoom-out        { from { transform: scale(1.14); }              to { transform: scale(1.06); } }
 
/* Assign per slide — runs only while .is-active */
.hs-slide:nth-child(1).is-active .hs-slide__bg { animation: kb-pan-right   7s linear forwards; }
.hs-slide:nth-child(2).is-active .hs-slide__bg { animation: kb-zoom-in-center 7s ease-out forwards; }
.hs-slide:nth-child(3).is-active .hs-slide__bg { animation: kb-pan-left    7s linear forwards; }
.hs-slide:nth-child(4).is-active .hs-slide__bg { animation: kb-zoom-in-right  7s ease-out forwards; }
.hs-slide:nth-child(5).is-active .hs-slide__bg { animation: kb-zoom-out    7s ease-in  forwards; }
.hs-slide:nth-child(6).is-active .hs-slide__bg { animation: kb-zoom-in-left   7s ease-out forwards; }
 
/* Background positions per slide for best framing */
.hs-slide:nth-child(1) .hs-slide__bg { background-position: center 40%; }
.hs-slide:nth-child(2) .hs-slide__bg { background-position: center 35%; }
.hs-slide:nth-child(3) .hs-slide__bg { background-position: center 50%; }
.hs-slide:nth-child(4) .hs-slide__bg { background-position: center 45%; }
.hs-slide:nth-child(5) .hs-slide__bg { background-position: center 50%; }
.hs-slide:nth-child(6) .hs-slide__bg { background-position: center 45%; }
 
/* ─────────────────────────────────────────────────────────────
   GRADIENT OVERLAY — dark teal matches site palette
───────────────────────────────────────────────────────────── */
.hs-slide__overlay {
    position: absolute;
    inset: 0;
    /* Left side darker for text legibility, right side opens up */
    background: linear-gradient(
        105deg,
        rgba(8, 18, 14, 0.82) 0%,
        rgba(8, 18, 14, 0.60) 50%,
        rgba(8, 18, 14, 0.22) 100%
    );
    z-index: 1;
}
 
/* ─────────────────────────────────────────────────────────────
   HERO CONTENT — sits above overlay
───────────────────────────────────────────────────────────── */
.hs-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 0 5vw;
}
.hs-content-inner {
    max-width: 720px;
    color: white;
}
.hs-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}
.hs-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}
.hs-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.82);
    font-weight: 300;
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 2.2rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s;
}
.hs-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.7s ease 0.9s, transform 0.7s ease 0.9s;
}
/* Animate content in when slide is active */
.hero-slider.is-playing .hs-eyebrow,
.hero-slider.is-playing .hs-title,
.hero-slider.is-playing .hs-subtitle,
.hero-slider.is-playing .hs-btns {
    opacity: 1;
    transform: translateY(0);
}
 
.hs-btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 3px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    flex: 1;
    text-align: center;
    min-width: 0;
}
.hs-btn-primary {
    background: var(--gold);
    color: white;
    border: none;
}
.hs-btn-primary:hover { background: #b89a4f; transform: translateY(-2px); }
.hs-btn-secondary {
    background: rgba(255,255,255,0.12);
    color: white;
    border: 1px solid rgba(255,255,255,0.45);
    backdrop-filter: blur(6px);
}
.hs-btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

@media (max-width: 768px) {
    .hs-btns {
        flex-direction: column;
        gap: 0.6rem;
    }
    .hs-btn {
        width: 100%;
    }
}
 
/* Trust strip */
.hs-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 2.4rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.7s ease 1.1s, transform 0.7s ease 1.1s;
}
.hero-slider.is-playing .hs-trust { opacity: 1; transform: translateY(0); }
.hs-trust-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.72);
    font-weight: 500;
    letter-spacing: 0.02em;
}
.hs-trust-item i { color: var(--gold); font-size: 0.8rem; }
 
/* ─────────────────────────────────────────────────────────────
   SLIDE CAPTION — bottom-right label that changes per slide
───────────────────────────────────────────────────────────── */
.hs-caption {
    position: absolute;
    bottom: 5rem;
    right: 2rem;
    z-index: 10;
    text-align: right;
    pointer-events: none;
}
.hs-caption-text {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
    padding: 0.4rem 0.8rem;
    border-radius: 2px;
    transition: opacity 0.5s ease;
}
 
/* ─────────────────────────────────────────────────────────────
   PROGRESS BAR
───────────────────────────────────────────────────────────── */
.hs-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.12);
    z-index: 20;
    overflow: hidden;
}
.hs-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #e8c878);
    width: 0%;
    /* JS drives this via CSS custom property */
    transition: none;
}
 
/* ─────────────────────────────────────────────────────────────
   DOT NAVIGATION
───────────────────────────────────────────────────────────── */
.hs-dots {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.55rem;
    align-items: center;
}
.hs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: 1.5px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, width 0.3s ease;
}
.hs-dot.is-active {
    background: var(--gold);
    border-color: var(--gold);
    width: 24px;
    border-radius: 4px;
}
 
/* ─────────────────────────────────────────────────────────────
   PREV / NEXT ARROW BUTTONS
───────────────────────────────────────────────────────────── */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s ease, transform 0.2s ease;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease;
}
.hero-slider:hover .hs-arrow { opacity: 1; }
.hs-arrow:hover { background: rgba(255,255,255,0.22); }
.hs-arrow-prev { left: 1.5rem; }
.hs-arrow-next { right: 1.5rem; }
.hs-arrow:active { transform: translateY(-50%) scale(0.92); }
 
/* ─────────────────────────────────────────────────────────────
   PAUSE INDICATOR
───────────────────────────────────────────────────────────── */
.hs-pause-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    z-index: 20;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: none;
    align-items: center;
    gap: 0.3rem;
}
.hero-slider.is-paused .hs-pause-badge { display: flex; }
 
/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .hs-content { padding: 0 1.2rem; align-items: flex-end; padding-bottom: 5rem; }
    .hs-trust { display: none; }
    .hs-caption { display: none; }
    .hs-arrow { display: none; }
    .hero-slider { max-height: 640px; }
}
 
/* ─────────────────────────────────────────────────────────────
   DEMO PAGE ONLY — remove when dropping into real site
───────────────────────────────────────────────────────────── */
.demo-note {
    background: #1a2a24;
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 1.2rem;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    font-family: monospace;
}
.demo-note strong { color: var(--gold); }
/* ═══════════════════════════════════════════════════════════
   INNER PAGE HERO — single static image with overlay
   Used on all service/inner pages. One image per page.
   ═══════════════════════════════════════════════════════════ */
.inner-hero {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
@media (min-width: 768px) { .inner-hero { height: 440px; } }

/* Dark gradient — heavier at bottom where text sits */
.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8,18,14,0.35) 0%,
        rgba(8,18,14,0.72) 60%,
        rgba(8,18,14,0.88) 100%
    );
    z-index: 1;
}

/* Subtle Ken Burns on inner hero — single animation, no JS needed */
.inner-hero::after {
    content: '';
    position: absolute;
    inset: -4%;
    background: inherit;
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: ih-zoom 12s ease-out forwards;
}
@keyframes ih-zoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1.0); }
}

.inner-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2.5rem 0;
}
.inner-hero__eyebrow {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}
.inner-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: white;
    margin-bottom: .8rem;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.inner-hero__sub {
    font-size: clamp(.9rem, 2vw, 1.05rem);
    color: rgba(255,255,255,.82);
    max-width: 580px;
    line-height: 1.65;
    margin-bottom: 1.4rem;
}
.inner-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    margin-top: 1rem;
}
.inner-hero__meta-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: rgba(255,255,255,.72);
}
.inner-hero__meta-item i { color: var(--gold); font-size: .75rem; }

/* Per-page background images — set via class on .inner-hero */
.ih-reception       { background-image: url('../images/polished/reception.jpg'); }
.ih-consultation    { background-image: url('../images/polished/consultation-room.jpg'); }
.ih-womens          { background-image: url('../images/polished/womens-health.jpg'); }
.ih-treatment       { background-image: url('../images/polished/treatment-room.jpg'); }
.ih-mental          { background-image: url('../images/polished/waiting-area.jpg'); }
.ih-msk             { background-image: url('../images/polished/treatment-room.jpg'); }
.ih-surgery         { background-image: url('../images/polished/operating-theatre.jpg'); }
.ih-health-checks   { background-image: url('../images/polished/health-screening-consultation.jpg'); }
.ih-nursing         { background-image: url('../images/polished/treatment-room.jpg'); }
.ih-corporate       { background-image: url('../images/polished/reception.jpg'); }
.ih-executive       { background-image: url('../images/polished/consultation-room.jpg'); }
.ih-medicals        { background-image: url('../images/polished/consultation-room.jpg'); }
.ih-memberships     { background-image: url('../images/polished/reception.jpg'); }
.ih-default         { background-image: url('../images/polished/bollin-sign.jpg'); }