*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:      #0b1d36;
      --navy-mid:  #132848;
      --gold:      #b8913a;
      --gold-lt:   #d4a84b;
      --white:     #ffffff;
      --off-white: #f7f8fa;
      --gray-100:  #eef0f4;
      --gray-400:  #9aa3b2;
      --gray-700:  #3d4a5c;
      --text:      #1a2535;
      --radius:    6px;
      --shadow:    0 4px 24px rgba(0,0,0,.10);
      --transition: .22s ease;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      font-size: 16px;
      line-height: 1.65;
    }

    /* ── UTILITY ───────────────────────────────────────── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .section   { padding: 96px 0; }
    .section--alt { background: var(--off-white); }
    .text-center { text-align: center; }
    .mt-40 { margin-top: 40px; }
    .services-more-note { color: var(--gray-400); margin-bottom: 18px; }
    .mt-32 { margin-top: 32px; }
    .map-embed-wrap { margin-top: 56px; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.1); }
    .map-embed { display: block; width: 100%; border: 0; }

    .label {
      display: inline-block;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      color: var(--navy);
      line-height: 1.22;
      margin-bottom: 16px;
    }

    h3 {
      font-size: 1.08rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px;
    }

    p { color: var(--gray-700); }

    .btn {
      display: inline-block;
      padding: 14px 32px;
      border-radius: var(--radius);
      font-size: .95rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
      border: none;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--white);
    }
    .btn-primary:hover {
      background: var(--gold-lt);
      box-shadow: 0 6px 20px rgba(184,145,58,.35);
      transform: translateY(-1px);
    }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,.55);
    }
    .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255,255,255,.08);
    }
    .btn-navy {
      background: var(--navy);
      color: var(--white);
    }
    .btn-navy:hover {
      background: var(--navy-mid);
      transform: translateY(-1px);
    }

    /* ── NAV ───────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 900;
      background: rgba(11,29,54,.97);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 104px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
    }
    .nav-logo-mark {
      width: 38px; height: 38px;
      background: var(--gold);
      border-radius: 4px;
      display: grid;
      place-items: center;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--white);
      flex-shrink: 0;
    }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .nav-logo-text span:first-child {
      font-weight: 700;
      font-size: .95rem;
      color: var(--white);
      letter-spacing: .01em;
    }
    .nav-logo-text span:last-child {
      font-size: .72rem;
      color: var(--gold-lt);
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      font-size: .875rem;
      font-weight: 500;
      color: rgba(255,255,255,.72);
      transition: color var(--transition);
    }
    .nav-links a:hover { color: var(--white); }

    .nav-cta { margin-left: 8px; padding: 10px 22px; font-size: .875rem; }

    /* ── DROPDOWN ── */
    .nav-dropdown { position: relative; }
    .nav-chevron { font-size: .7rem; margin-left: 3px; display: inline-block; transition: transform .2s ease; }
    .nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }
    .nav-submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: #0d2240;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 10px;
      padding: 14px 0 8px;
      list-style: none;
      min-width: 230px;
      box-shadow: 0 12px 40px rgba(0,0,0,.35);
      z-index: 1000;
    }
    .nav-dropdown:hover .nav-submenu { display: block; }
    .nav-submenu li a {
      display: block;
      padding: 9px 20px;
      font-size: .84rem;
      color: rgba(255,255,255,.72);
      white-space: nowrap;
      transition: background var(--transition), color var(--transition);
    }
    .nav-submenu li a:hover { background: rgba(255,255,255,.06); color: var(--white); }
    .nav-submenu-all { border-top: 1px solid rgba(255,255,255,.08); margin-top: 4px; padding-top: 4px; }
    .nav-submenu-all a { color: var(--gold-lt) !important; font-weight: 600; }

    .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

    @media (max-width: 900px) {
      .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); flex-direction: column; gap: 0; padding: 12px 0; }
      .nav-links.open { display: flex; }
      .nav-links li { width: 100%; }
      .nav-links a { display: block; padding: 12px 24px; }
      .nav-cta { margin: 12px 24px; width: calc(100% - 48px); text-align: center; }
      .nav-toggle { display: flex; }
      .nav-submenu {
        display: none;
        position: static;
        transform: none;
        background: rgba(255,255,255,.04);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        min-width: unset;
      }
      .nav-dropdown.open .nav-submenu { display: block; }
      .nav-submenu li a { padding: 10px 36px; font-size: .84rem; }
      .nav-submenu-all { border-top: 1px solid rgba(255,255,255,.06); margin-top: 0; }
      .nav-dropdown-toggle { display: flex; justify-content: space-between; align-items: center; width: 100%; }
    }

    /* ── HERO ──────────────────────────────────────────── */
    #home {
      min-height: 100vh;
      background: linear-gradient(135deg, #0b1d36 0%, #132848 55%, #0f2240 100%);
      display: flex;
      align-items: center;
      padding-top: 68px;
      position: relative;
      overflow: hidden;
    }

    /* subtle geometric accent */
    #home::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184,145,58,.10) 0%, transparent 70%);
      pointer-events: none;
    }
    #home::after {
      content: '';
      position: absolute;
      bottom: -80px; left: 30%;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184,145,58,.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 64px;
      align-items: center;
      width: 100%;
      position: relative;
      z-index: 1;
    }
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-photo-wrap { display: none; }
    }

    .hero-content {
      max-width: 680px;
    }

    .hero-photo-wrap {
      position: relative;
      flex-shrink: 0;
    }
    .hero-photo-wrap img {
      width: 320px;
      height: 420px;
      object-fit: cover;
      object-position: top center;
      border-radius: 12px;
      display: block;
      box-shadow: 0 24px 64px rgba(0,0,0,.45);
    }
    .hero-photo-accent {
      position: absolute;
      inset: -10px;
      border: 2px solid rgba(184,145,58,.35);
      border-radius: 14px;
      pointer-events: none;
    }
    .hero-photo-badge {
      position: absolute;
      bottom: -16px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--white);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 8px 20px;
      border-radius: 100px;
      white-space: nowrap;
      box-shadow: 0 4px 16px rgba(184,145,58,.45);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(184,145,58,.18);
      border: 1px solid rgba(184,145,58,.35);
      border-radius: 100px;
      padding: 6px 14px;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--gold-lt);
      margin-bottom: 24px;
    }
    .hero-badge svg { width: 14px; height: 14px; fill: var(--gold-lt); }

    .hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 6vw, 4.4rem);
      color: var(--white);
      line-height: 1.12;
      margin-bottom: 22px;
    }
    .hero-content h1 em { font-style: normal; color: var(--gold-lt); }

    .hero-content > p {
      font-size: 1.15rem;
      color: rgba(255,255,255,.8);
      max-width: 680px;
      margin-bottom: 38px;
      line-height: 1.7;
    }

    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    .hero-trust {
      margin-top: 60px;
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,.12);
    }
    .hero-trust-item {
      display: flex;
      flex-direction: column;
    }
    .hero-trust-item strong {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
    }
    .hero-trust-item span {
      font-size: .78rem;
      color: rgba(255,255,255,.5);
      text-transform: uppercase;
      letter-spacing: .07em;
    }

        /* ── TRUST BAR ─────────────────────────────────────── */
    .trust-bar {
      background: var(--gold);
      padding: 0;
    }
    .trust-bar-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 32px;
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
      align-items: center;
      min-height: 88px;
    }
    .trust-bar-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px 16px;
      text-align: center;
    }
    .trust-bar-item strong {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: .01em;
      line-height: 1.2;
    }
    .trust-bar-item span {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(11,29,54,.65);
      margin-top: 3px;
    }
    .trust-bar-divider {
      width: 1px;
      height: 40px;
      background: rgba(11,29,54,.2);
    }
    @media (max-width: 768px) {
      .trust-bar-inner { grid-template-columns: 1fr 1fr; min-height: auto; }
      .trust-bar-divider { display: none; }
      .trust-bar-item { border-bottom: 1px solid rgba(11,29,54,.1); }
    }
      25%  { transform: translateY(-50%) skewX(-3deg) scaleY(0.97); }
      50%  { transform: translateY(-50%) skewX(0deg) scaleY(1); }
      75%  { transform: translateY(-50%) skewX(3deg) scaleY(0.97); }
      100% { transform: translateY(-50%) skewX(0deg) scaleY(1); }
    }

    /* ── SERVICES ──────────────────────────────────────── */
    .services-intro { max-width: 640px; margin-bottom: 56px; }
    .services-intro p { font-size: 1.05rem; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 22px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: 10px;
      padding: 28px 22px;
      transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    }
    .service-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-4px);
      border-color: var(--gold);
    }

    .service-icon {
      width: 46px; height: 46px;
      background: rgba(184,145,58,.1);
      border-radius: 8px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
    }
    .service-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

    .service-card h3 { font-size: 1rem; margin-bottom: 7px; }
    .service-card p { font-size: .875rem; line-height: 1.55; }

    /* ── ABOUT ─────────────────────────────────────────── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 72px;
      align-items: start;
    }
    @media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

    .about-img-wrap {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 4/5;
    }
    .about-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .about-img-badge {
      position: absolute;
      bottom: 20px; left: 20px;
      background: var(--navy);
      color: var(--white);
      padding: 10px 16px;
      border-radius: 6px;
      font-size: .8rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .about-img-badge svg { width: 16px; height: 16px; fill: var(--gold); }

    .about-text h2 { margin-bottom: 18px; }
    .about-text p { margin-bottom: 16px; font-size: .95rem; }

    .about-services-list {
      margin: 20px 0;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }
    .about-service-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }
    .about-service-item::before {
      content: '';
      display: block;
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 8px;
    }
    .about-service-item p { font-size: .88rem; margin: 0; }
    .about-service-item strong { color: var(--navy); }

    .about-licenses {
      margin-top: 20px;
      padding: 16px 20px;
      background: var(--off-white);
      border-radius: 8px;
      border-left: 3px solid var(--gold);
    }
    .about-licenses p { font-size: .85rem; margin: 0; }

    .about-lower {
      margin-top: 40px;
      padding-top: 36px;
      border-top: 1px solid var(--gray-100);
    }
    .about-lower .about-licenses {
      margin-top: 0;
      margin-bottom: 24px;
    }
    .about-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    @media (max-width: 768px) {
      .about-pillars { grid-template-columns: 1fr; gap: 14px; }
    }
    .pillar {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .pillar-dot {
      width: 8px; height: 8px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 7px;
    }
    .pillar p { font-size: .9rem; margin: 0; }

    /* ── FINANCIAL PLANNING SECTION ────────────────────── */
    .fp-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    @media (max-width: 768px) { .fp-grid { grid-template-columns: 1fr; gap: 40px; } }

    .fp-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    @media (max-width: 600px) { .fp-list { grid-template-columns: 1fr; } }
    .fp-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 14px 18px;
      background: var(--white);
      border-radius: 8px;
      border: 1px solid var(--gray-100);
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    .fp-item:hover { border-color: var(--gold); box-shadow: var(--shadow); }
    .fp-item-icon {
      width: 36px; height: 36px;
      background: rgba(184,145,58,.1);
      border-radius: 6px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }
    .fp-item-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; }
    .fp-item-text h4 { font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
    .fp-item-text p  { font-size: .82rem; margin: 0; }

    .fp-cta-card {
      background: var(--navy);
      border-radius: 12px;
      padding: 40px;
      position: sticky;
      top: 88px;
    }
    .fp-cta-card h3 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 12px; }
    .fp-cta-card p  { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 28px; }
    .fp-cta-card .btn { width: 100%; text-align: center; margin-bottom: 12px; display: block; }
    .fp-cta-note { font-size: .78rem; color: rgba(255,255,255,.4); text-align: center; margin: 0 !important; }

    /* ── BUSINESS BENEFITS SECTION ─────────────────────── */
    .benefits-intro { max-width: 640px; margin-bottom: 56px; }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .benefit-card {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 20px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px;
      transition: background var(--transition), border-color var(--transition);
    }
    .benefit-card:hover {
      background: rgba(255,255,255,.09);
      border-color: rgba(184,145,58,.4);
    }
    .benefit-card-icon {
      width: 36px; height: 36px;
      background: rgba(184,145,58,.15);
      border-radius: 6px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }
    .benefit-card-icon svg { width: 16px; height: 16px; stroke: var(--gold-lt); fill: none; stroke-width: 2; }
    .benefit-card h4 { color: var(--white); font-size: .92rem; font-weight: 600; margin-bottom: 4px; }
    .benefit-card p  { color: rgba(255,255,255,.6); font-size: .82rem; margin: 0; }

    .benefits-bottom {
      margin-top: 48px;
      text-align: center;
      padding: 36px;
      background: rgba(184,145,58,.1);
      border: 1px solid rgba(184,145,58,.25);
      border-radius: 12px;
    }
    .benefits-bottom p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 24px; max-width: 700px; margin-left: auto; margin-right: auto; }

    /* ── CHAMBER / MEAP SECTION ────────────────────────── */
    #chamber { padding: 96px 0; background: var(--navy); }
    .chamber-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
    .chamber-header .label { color: var(--gold-lt); display: block; margin-bottom: 10px; }
    .chamber-header h2 { color: var(--white); margin-bottom: 10px; }
    .chamber-sub { font-size: .95rem; color: rgba(255,255,255,.45); font-style: italic; }

    .chamber-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 40px;
    }
    @media (max-width: 768px) { .chamber-cards { grid-template-columns: 1fr; } }

    .chamber-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 12px;
      padding: 36px 32px;
      transition: background .22s, border-color .22s;
      text-decoration: none;
      display: block;
    }
    .chamber-card:hover {
      background: rgba(255,255,255,.09);
      border-color: var(--gold);
    }
    .chamber-card-tag {
      display: inline-block;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold-lt);
      background: rgba(184,145,58,.15);
      border-radius: 100px;
      padding: 4px 12px;
      margin-bottom: 16px;
    }
    .chamber-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
    .chamber-card p  { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.6; margin-bottom: 20px; }
    .chamber-card-link {
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--gold-lt);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .chamber-card-link::after { content: '\2192'; font-size: 1rem; }

    .chamber-contact {
      text-align: center;
      padding: 32px;
      border: 1px solid rgba(184,145,58,.3);
      border-radius: 12px;
      background: rgba(184,145,58,.07);
    }
    .chamber-contact p { color: rgba(255,255,255,.7); font-size: .97rem; margin-bottom: 20px; }
    .chamber-contact .btn { margin: 0 8px; }

    /* ── QUOTE FORM ────────────────────────────────────── */
    .quote-wrap {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 64px;
      align-items: start;
    }
    @media (max-width: 900px) { .quote-wrap { grid-template-columns: 1fr; } }

    .quote-intro h2 { margin-bottom: 16px; }
    .quote-intro p { font-size: .97rem; margin-bottom: 28px; }

    .quote-reasons { display: flex; flex-direction: column; gap: 16px; }
    .quote-reason {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .quote-reason-num {
      width: 32px; height: 32px;
      background: var(--navy);
      color: var(--white);
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: .78rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    .quote-reason p { font-size: .9rem; margin: 0; padding-top: 4px; }

    .quote-form-card {
      background: var(--white);
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 8px 40px rgba(0,0,0,.1);
    }
    .quote-form-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      margin-bottom: 8px;
    }
    .quote-form-card > p { font-size: .88rem; margin-bottom: 28px; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    @media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

    .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .field label { font-size: .82rem; font-weight: 600; color: var(--navy); }
    .field input, .field select, .field textarea {
      padding: 11px 14px;
      border: 1.5px solid var(--gray-100);
      border-radius: var(--radius);
      font-family: inherit;
      font-size: .92rem;
      color: var(--text);
      background: var(--off-white);
      transition: border-color var(--transition);
      outline: none;
    }
    .field input:focus, .field select:focus, .field textarea:focus {
      border-color: var(--gold);
      background: var(--white);
    }
    .field textarea { resize: vertical; min-height: 90px; }

    .form-submit { width: 100%; padding: 15px; font-size: 1rem; margin-top: 4px; }

    .form-disclaimer {
      font-size: .75rem;
      color: var(--gray-400);
      text-align: center;
      margin-top: 12px;
      line-height: 1.5;
    }

    /* ── BOOKING ───────────────────────────────────────── */
    #booking {
      background: var(--navy);
      padding: 96px 0;
    }
    .booking-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    @media (max-width: 900px) { .booking-inner { grid-template-columns: 1fr; gap: 40px; } }

    .booking-text .label { color: var(--gold-lt); }
    .booking-text h2 { color: var(--white); }
    .booking-text p { color: rgba(255,255,255,.7); margin-bottom: 32px; font-size: .97rem; }

    .booking-steps { display: flex; flex-direction: column; gap: 20px; }
    .booking-step {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .booking-step-icon {
      width: 40px; height: 40px;
      background: rgba(184,145,58,.15);
      border: 1px solid rgba(184,145,58,.3);
      border-radius: 8px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }
    .booking-step-icon svg { width: 18px; height: 18px; stroke: var(--gold-lt); fill: none; stroke-width: 1.8; }
    .booking-step-text h4 { color: var(--white); font-size: .93rem; margin-bottom: 3px; }
    .booking-step-text p  { color: rgba(255,255,255,.6); font-size: .85rem; }

    .booking-cta-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 12px;
      padding: 48px 40px;
      text-align: center;
    }
    .booking-cta-card h3 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 14px; }
    .booking-cta-card > p { color: rgba(255,255,255,.65); font-size: .95rem; margin-bottom: 32px; max-width: 360px; margin-left: auto; margin-right: auto; }
    .booking-cta-card .btn { font-size: 1rem; padding: 16px 40px; }
    .booking-meta {
      margin-top: 28px;
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }
    .booking-meta-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
    .booking-meta-item strong { color: var(--white); font-size: .88rem; }
    .booking-meta-item span  { color: rgba(255,255,255,.45); font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; }

    /* ── CONTACT STRIP ─────────────────────────────────── */
    .contact-strip {
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .contact-item-icon {
      width: 44px; height: 44px;
      background: rgba(184,145,58,.12);
      border-radius: 8px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }
    .contact-item-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
    .contact-item-text span {
      display: block;
      font-size: .75rem;
      color: var(--gray-400);
      text-transform: uppercase;
      letter-spacing: .07em;
      margin-bottom: 2px;
    }
    .contact-item-text a, .contact-item-text p {
      font-weight: 600;
      font-size: .95rem;
      color: var(--navy);
      text-decoration: none;
    }
    .contact-item-text a:hover { color: var(--gold); }

    /* ── FOOTER ────────────────────────────────────────── */
    footer {
      background: var(--navy);
      padding: 52px 0 32px;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 32px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      margin-bottom: 28px;
    }

    .footer-brand-logo {
      display: inline-flex;
      gap: 10px;
      align-items: center;
      text-decoration: none;
    }
    .footer-logo-img { height: 120px; width: 120px; object-fit: contain; }
    .footer-bottom-links { display: flex; gap: 16px; }

    .footer-brand p {
      color: rgba(255,255,255,.5);
      font-size: .875rem;
      max-width: 300px;
      margin-top: 12px;
    }

    .footer-links h4 { color: var(--white); font-size: .85rem; margin-bottom: 14px; letter-spacing: .04em; }
    .footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { color: rgba(255,255,255,.55); font-size: .875rem; text-decoration: none; transition: color var(--transition); }
    .footer-links a:hover { color: var(--gold-lt); }

    .footer-social { display: flex; gap: 12px; margin-top: 16px; }
    .social-btn {
      width: 38px; height: 38px;
      border-radius: 6px;
      background: rgba(255,255,255,.07);
      display: grid;
      place-items: center;
      text-decoration: none;
      transition: background var(--transition);
    }
    .social-btn:hover { background: var(--gold); }
    .social-btn svg { width: 16px; height: 16px; fill: var(--white); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { color: rgba(255,255,255,.35); font-size: .78rem; }
    .footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .78rem; }

    .disclaimer {
      font-size: .72rem;
      color: rgba(255,255,255,.28);
      max-width: 760px;
      margin: 20px auto 0;
      text-align: center;
      line-height: 1.6;
    }
    .disclaimer a { color: rgba(255,255,255,.45); }

    .footer-powered {
      text-align: center;
      font-size: .72rem;
      color: rgba(255,255,255,.25);
      margin-top: 16px;
    }
    .footer-powered a { color: rgba(255,255,255,.4); text-decoration: none; }
    .footer-powered a:hover { color: rgba(255,255,255,.65); }

    /* ── SCROLL REVEAL ─────────────────────────────────── */
    .reveal { opacity: 1; transform: translateY(0); transition: opacity .55s ease, transform .55s ease; }
    .reveal.hidden { opacity: 0; transform: translateY(24px); }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── SECTION WITH DARK BG ──────────────────────────── */
    .section--dark {
      background: var(--navy);
    }
    .section--dark h2 { color: var(--white); }
    .section--dark .label { color: var(--gold-lt); }
    .section--dark p { color: rgba(255,255,255,.7); }