    /* ── TOKENS ────────────────────────────────── */
    :root {
      --sans: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, sans-serif;
      --navy:   #1B3A5C;
      --teal:   #1A8A8A;
      --teal2:  #17A0A0;
      --orange: #E8450A;
      --gold:   #F0A020;
      --sand:   #F5E8D0;
      --sand2:  #FAF3E8;
      --white:  #FFFFFF;
      --text:   #1A2A3A;
      --muted:  #5A7080;
      --radius: 16px;
      --shadow: 0 4px 24px rgba(27,58,92,.12);
    }

    /* ── RESET ─────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Fraunces', 'Georgia', serif; color: var(--text); background: var(--white); line-height: 1.65; }
    img  { max-width: 100%; display: block; }
    a    { color: inherit; text-decoration: none; }

    /* ── TYPOGRAPHY ────────────────────────────── */
    h1, h2, h3, h4 { font-family: 'Fraunces', 'Georgia', serif; font-weight: 900; line-height: 1.15; }
    .sans { font-family: var(--sans); }
    .hero h1 em { font-style: italic; font-weight: 600; color: #F0C068; }

    /* ── UTILITIES ─────────────────────────────── */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    .section    { padding: 80px 0; }
    /* Day-into-Dusk: sand sections become a translucent tint so the
       page-wide sunset (painted on <body> by JS) shows through */
    .section--sand { background: rgba(27,58,92,.05); }
    .section--navy { background: var(--navy); color: var(--white); }
    .section--teal { background: var(--teal); color: var(--white); }
    .text-center { text-align: center; }
    .tag {
      display: inline-block;
      background: var(--sand);
      color: var(--teal);
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 100px;
      margin-bottom: 16px;
    }
    .section--navy .tag, .section--teal .tag { background: rgba(255,255,255,.15); color: var(--white); }

    /* ── BUTTONS ───────────────────────────────── */
    .btn {
      display: inline-block;
      font-family: var(--sans);
      font-weight: 700;
      font-size: 1rem;
      padding: 16px 36px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      transition: transform .15s, box-shadow .15s, opacity .15s, background-position .45s ease;
      letter-spacing: .02em;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
    .btn:active { transform: translateY(0); }
    /* Liquid fill: teal water rises inside the button on hover */
    .btn--primary {
      background: linear-gradient(to top, var(--teal) 50%, var(--orange) 50%);
      background-size: 100% 201%;
      background-position: top;
      color: var(--white);
    }
    .btn--primary:hover { background-position: bottom; }
    .btn--gold {
      background: linear-gradient(to top, var(--teal) 50%, var(--gold) 50%);
      background-size: 100% 201%;
      background-position: top;
    }
    .btn--gold:hover { background-position: bottom; color: var(--white); }
    .btn--secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
    .btn--teal      { background: var(--teal); color: var(--white); }
    .btn--navy      { background: var(--navy); color: var(--white); }
    .btn--gold      { color: var(--navy); }
    .btn--sm        { padding: 10px 24px; font-size: .9rem; }

    /* ── NAV ───────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 24px;
      background: transparent;
      transition: background .3s, box-shadow .3s;
    }
    .nav.scrolled {
      background: var(--navy);
      box-shadow: 0 2px 16px rgba(0,0,0,.2);
    }
    .nav__logo { height: 137px; object-fit: contain; }
    .nav__logo-text {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-weight: 900;
      font-size: 1.25rem;
      color: var(--white);
      letter-spacing: .05em;
    }
    .nav__links { display: flex; gap: 28px; align-items: center; }
    .nav__links a {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: .9rem;
      font-weight: 600;
      color: var(--white);
      opacity: .9;
      transition: opacity .15s;
    }
    .nav__links a:hover { opacity: 1; }
    .nav__cta { background: var(--orange); color: var(--white) !important; padding: 10px 22px; border-radius: 100px; opacity: 1 !important; }
    .nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .nav__hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
    .nav__mobile { display: none; flex-direction: column; gap: 0; background: var(--navy); position: fixed; top: 84px; left: 0; right: 0; z-index: 99; padding: 12px 0 20px; box-shadow: 0 8px 24px rgba(0,0,0,.25); }
    .nav__mobile.open { display: flex; }
    .nav__mobile a { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-weight: 600; color: var(--white); padding: 14px 28px; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,.08); }
    .nav__mobile a:last-child { border-bottom: none; margin: 12px 24px 0; background: var(--orange); text-align: center; border-radius: 100px; padding: 14px 24px; }

    @media (max-width: 768px) {
      .nav__links { display: none; }
      .nav__hamburger { display: flex; }
    }

    /* ── HERO ──────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center;
      overflow: hidden;
      padding: 140px 20px 70px; /* clears the fixed nav */
      background: #0D2A42;
    }
    /* Cinematic opening wall: the golden-hour lake, slowly breathing */
    .hero::before {
      content: '';
      position: absolute; inset: -4%;
      background: url('hero-bg.jpg') center / cover no-repeat;
      animation: kenBurns 42s ease-in-out infinite alternate;
      z-index: 0;
    }
    /* Dusk veil for legibility + mystery */
    .hero::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(13,42,66,.66) 0%, rgba(13,42,66,.42) 45%, rgba(13,42,66,.82) 100%);
      z-index: 1;
    }
    .hero > * { position: relative; z-index: 2; }
    @keyframes kenBurns {
      0%   { transform: scale(1) translateY(0); }
      100% { transform: scale(1.08) translateY(-1.5%); }
    }
    @media (prefers-reduced-motion: reduce) { .hero::before { animation: none; } }

    /* ── FIREFLIES: gold specks drifting up through the dusk ── */
    .fireflies { position: absolute !important; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
    .firefly {
      position: absolute; bottom: -2%;
      width: 5px; height: 5px; border-radius: 50%;
      background: #F0C068;
      box-shadow: 0 0 8px 2px rgba(240,192,104,.55);
      opacity: 0;
      animation: fireflyRise linear infinite, fireflyBlink 3.4s ease-in-out infinite;
    }
    @keyframes fireflyRise {
      0%   { transform: translateY(0) translateX(0); }
      25%  { transform: translateY(-28vh) translateX(14px); }
      50%  { transform: translateY(-55vh) translateX(-10px); }
      75%  { transform: translateY(-80vh) translateX(10px); }
      100% { transform: translateY(-108vh) translateX(-6px); }
    }
    @keyframes fireflyBlink { 0%,100% { opacity: 0; } 18% { opacity: .9; } 45% { opacity: .35; } 70% { opacity: .8; } }

    /* ── THE LAKE'S CLOCK: hero follows real Puerto Rico time ── */
    .hero--dawn::after {
      background: linear-gradient(180deg, rgba(58,38,66,.55) 0%, rgba(122,76,84,.36) 45%, rgba(13,42,66,.78) 100%);
    }
    .hero--golden::after {
      background: linear-gradient(180deg, rgba(42,30,60,.5) 0%, rgba(150,86,40,.32) 45%, rgba(13,42,66,.8) 100%);
    }
    .hero--night::before { filter: brightness(.6) saturate(.85); }
    .hero--night::after {
      background: linear-gradient(180deg, rgba(5,10,18,.68) 0%, rgba(8,15,25,.52) 45%, rgba(4,8,14,.88) 100%);
    }
    /* fireflies: a healthy crowd by day, more at golden hour, all 20 at night */
    .hero--day .firefly:nth-child(n+10) { display: none; }
    .hero--dawn .firefly:nth-child(n+12) { display: none; }
    .hero--golden .firefly:nth-child(n+16) { display: none; }
    .hero--night .firefly { box-shadow: 0 0 10px 3px rgba(240,192,104,.7); }

    /* ── HEARTBEAT LINE: live weather + golden hour countdown ── */
    .lake-now {
      display: none;
      margin: -16px auto 26px;
      font-family: var(--sans);
      font-size: .8rem; font-weight: 600;
      letter-spacing: .06em;
      color: rgba(255,255,255,.78);
      text-shadow: 0 1px 8px rgba(0,0,0,.4);
    }
    .lake-now.show { display: block; }
    .firefly:nth-child(1)  { left: 6%;  --rest: 22%; animation-duration: 16s, 3.1s; animation-delay: 0s, .2s; }
    .firefly:nth-child(2)  { left: 14%; --rest: 58%; animation-duration: 21s, 4.2s; animation-delay: 3s, 0s; width: 4px; height: 4px; }
    .firefly:nth-child(3)  { left: 23%; --rest: 35%; animation-duration: 18s, 3.7s; animation-delay: 7s, 1s; }
    .firefly:nth-child(4)  { left: 31%; --rest: 70%; animation-duration: 24s, 2.9s; animation-delay: 1.5s, .6s; width: 3px; height: 3px; }
    .firefly:nth-child(5)  { left: 42%; --rest: 18%; animation-duration: 17s, 4.6s; animation-delay: 9s, .3s; }
    .firefly:nth-child(6)  { left: 51%; --rest: 48%; animation-duration: 22s, 3.3s; animation-delay: 4.5s, 1.4s; width: 4px; height: 4px; }
    .firefly:nth-child(7)  { left: 60%; --rest: 64%; animation-duration: 19s, 4s;   animation-delay: 11s, 0s; }
    .firefly:nth-child(8)  { left: 68%; --rest: 28%; animation-duration: 25s, 3.6s; animation-delay: 2s, .8s; width: 3px; height: 3px; }
    .firefly:nth-child(9)  { left: 77%; --rest: 52%; animation-duration: 16s, 4.4s; animation-delay: 6s, .1s; }
    .firefly:nth-child(10) { left: 85%; --rest: 38%; animation-duration: 23s, 3s;   animation-delay: 8.5s, 1.2s; width: 4px; height: 4px; }
    .firefly:nth-child(11) { left: 92%; --rest: 60%; animation-duration: 20s, 3.9s; animation-delay: 0.8s, .5s; }
    .firefly:nth-child(12) { left: 37%; --rest: 44%; animation-duration: 26s, 4.8s; animation-delay: 13s, .9s; width: 3px; height: 3px; }
    .firefly:nth-child(13) { left: 10%; --rest: 75%; animation-duration: 19s, 3.4s; animation-delay: 1s, .4s; width: 4px; height: 4px; }
    .firefly:nth-child(14) { left: 19%; --rest: 15%; animation-duration: 23s, 4.1s; animation-delay: 5s, 1.1s; }
    .firefly:nth-child(15) { left: 27%; --rest: 55%; animation-duration: 17s, 3.8s; animation-delay: 10s, .7s; width: 3px; height: 3px; }
    .firefly:nth-child(16) { left: 46%; --rest: 68%; animation-duration: 21s, 3.2s; animation-delay: 2.5s, 0s; }
    .firefly:nth-child(17) { left: 56%; --rest: 25%; animation-duration: 25s, 4.5s; animation-delay: 7.5s, 1.3s; width: 4px; height: 4px; }
    .firefly:nth-child(18) { left: 64%; --rest: 42%; animation-duration: 18s, 3.5s; animation-delay: 0.4s, .9s; }
    .firefly:nth-child(19) { left: 73%; --rest: 72%; animation-duration: 22s, 4.3s; animation-delay: 12s, .2s; width: 3px; height: 3px; }
    .firefly:nth-child(20) { left: 89%; --rest: 32%; animation-duration: 24s, 3.7s; animation-delay: 3.8s, 1s; }
    /* Reduce Motion users: fireflies still glow — they just hold still */
    @media (prefers-reduced-motion: reduce) {
      .firefly { animation: none; opacity: .5; bottom: var(--rest, 40%); }
    }

    /* ── DUSK THREAD: scroll progress in sunset colors ── */
    .dusk-thread {
      position: fixed; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, #1B3A5C 0%, #1A8A8A 45%, #F0A020 80%, #F0C068 100%);
      transform: scaleX(0); transform-origin: left;
      z-index: 200; pointer-events: none;
    }

    /* ── NEXT ESCAPE STRIP ─────────────────────── */
    .next-escape {
      display: none; align-items: center; gap: 10px;
      margin: 0 auto 30px; padding: 11px 24px;
      font-family: var(--sans); font-size: .8rem; font-weight: 700;
      letter-spacing: .12em; text-transform: uppercase;
      color: rgba(255,255,255,.9);
      border: 1px solid rgba(240,160,32,.5); border-radius: 100px;
      background: rgba(13,42,66,.35); backdrop-filter: blur(4px);
      width: fit-content; max-width: 92%;
    }
    .next-escape.show { display: inline-flex; }
    .next-escape__dot {
      width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
      background: var(--gold);
      animation: escPulse 2.2s ease-in-out infinite;
    }
    @keyframes escPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.8); } }
    .hero__bg {
      position: absolute; inset: 0;
      background-image: url('hero.jpg');
      background-size: cover; background-position: center;
      opacity: .35;
    }
    /* Animated gradient overlay */
    .hero__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(13,42,66,.3) 0%, rgba(13,42,66,.7) 100%);
    }
    .hero__content {
      position: relative; z-index: 2;
      max-width: 800px;
      padding: 0 24px;
      animation: fadeUp .8s ease both;
    }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
    .hero__logo {
      height: 120px;
      margin: 0 auto 32px;
      object-fit: contain;
      filter: drop-shadow(0 4px 16px rgba(0,0,0,.4));
    }
    .hero__logo-placeholder {
      width: 120px; height: 120px; margin: 0 auto 32px;
      background: rgba(255,255,255,.1);
      border: 2px dashed rgba(255,255,255,.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.5);
      font-size: .75rem;
      font-family: var(--sans);
    }
    .hero__eyebrow {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: .85rem;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .hero h1 {
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 20px;
      text-shadow: 0 2px 16px rgba(0,0,0,.45);
    }

    /* ── HERO ENTRANCE: headline, sub, strip and buttons rise on load ── */
    @keyframes heroRise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
    .hero h1 { animation: heroRise .9s cubic-bezier(.2,.7,.3,1) both; }
    .hero__eyebrow { animation: heroRise .7s cubic-bezier(.2,.7,.3,1) both; }
    .hero__sub { animation: heroRise .9s .25s cubic-bezier(.2,.7,.3,1) both; }
    .next-escape.show { animation: heroRise .9s .45s cubic-bezier(.2,.7,.3,1) both; }
    .hero__ctas { animation: heroRise .9s .6s cubic-bezier(.2,.7,.3,1) both; }
    @media (prefers-reduced-motion: reduce) {
      .hero h1, .hero__eyebrow, .hero__sub, .next-escape.show, .hero__ctas { animation: none; }
    }
    .hero__sub {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      color: rgba(255,255,255,.88);
      margin-bottom: 40px;
      max-width: 580px;
      margin-left: auto; margin-right: auto;
    }
    .hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .hero__scroll {
      position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,.5);
      font-size: .75rem;
      font-family: var(--sans);
      letter-spacing: .1em;
      text-transform: uppercase;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      animation: bounce 2s infinite;
    }
    .hero__scroll::after { content: '↓'; font-size: 1.2rem; }
    @keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

    /* ── WHAT IS SECTION ───────────────────────── */
    .what-is { }
    .what-is h2 { font-size: clamp(2.2rem, 5vw, 3.3rem); margin-bottom: 20px; color: var(--navy); }
    .what-is p  { font-size: 1.1rem; color: var(--muted); max-width: 680px; margin: 0 auto 16px; }
    .what-is .highlight {
      display: inline-block;
      background: linear-gradient(135deg, var(--teal), var(--navy));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ── INCLUDED GRID ─────────────────────────── */
    .included__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 16px;
      margin-top: 48px;
    }
    .included__card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px 16px;
      text-align: center;
      box-shadow: var(--shadow);
      transition: transform .2s, box-shadow .2s;
      border: 1px solid rgba(26,138,138,.1);
    }
    .included__card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(27,58,92,.16); }
    .included__icon { font-size: 2.2rem; margin-bottom: 12px; }
    .included__label {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: .9rem;
      font-weight: 700;
      color: var(--navy);
    }

    /* ── PRICING ───────────────────────────────── */
    .pricing__card {
      background: linear-gradient(135deg, var(--navy) 0%, #0D2A42 100%);
      border-radius: 24px;
      padding: 56px 40px;
      max-width: 520px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(27,58,92,.3);
    }
    .pricing__card::before {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 200px; height: 200px;
      background: rgba(240,160,32,.1);
      border-radius: 50%;
    }
    .pricing__badge {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      font-family: var(--sans);
      font-size: .8rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 100px;
      margin-bottom: 24px;
    }
    .pricing__price {
      font-size: 4.5rem;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
      margin-bottom: 6px;
    }
    .pricing__per {
      font-family: var(--sans);
      font-size: .95rem;
      color: rgba(255,255,255,.6);
      margin-bottom: 32px;
    }
    .pricing__list {
      list-style: none;
      text-align: left;
      margin-bottom: 36px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .pricing__list li {
      font-family: var(--sans);
      font-size: .9rem;
      color: rgba(255,255,255,.85);
      display: flex; align-items: center; gap: 8px;
    }
    .pricing__list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

    /* ── WHY CHOOSE ────────────────────────────── */
    .why__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 48px;
    }
    .why__card {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius);
      padding: 28px 24px;
      display: flex; gap: 16px; align-items: flex-start;
    }
    .why__icon {
      font-size: 1.8rem;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .why__title {
      font-family: var(--sans);
      font-weight: 700;
      font-size: 1rem;
      color: var(--white);
      margin-bottom: 6px;
    }
    .why__desc {
      font-family: var(--sans);
      font-size: .875rem;
      color: rgba(255,255,255,.7);
      line-height: 1.55;
    }

    /* ── TESTIMONIALS ──────────────────────────── */
    .testi__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 48px;
    }
    .testi__card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(26,138,138,.08);
      position: relative;
    }
    .testi__quote { font-size: 3rem; color: var(--teal); opacity: .2; position: absolute; top: 12px; left: 20px; line-height: 1; font-family: Georgia, serif; }
    .testi__stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }
    .testi__text { font-size: 1rem; color: var(--text); font-style: italic; margin-bottom: 16px; line-height: 1.6; }
    .testi__author { display: flex; align-items: center; gap: 12px; }
    .testi__avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--navy));
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      font-family: var(--sans);
      font-weight: 700;
      font-size: .9rem;
      flex-shrink: 0;
    }
    .testi__name { font-family: var(--sans); font-weight: 700; font-size: .9rem; color: var(--navy); }
    .testi__loc  { font-family: var(--sans); font-size: .8rem; color: var(--muted); }

    /* ── FAQ ───────────────────────────────────── */
    .faq__list { max-width: 720px; margin: 48px auto 0; }
    .faq__item {
      border-bottom: 1px solid rgba(26,138,138,.15);
      overflow: hidden;
    }
    .faq__q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 22px 0;
      font-family: Georgia, serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      cursor: pointer;
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
    }
    .faq__q:hover { color: var(--teal); }
    .faq__icon { flex-shrink: 0; font-size: 1.4rem; color: var(--teal); transition: transform .3s; line-height: 1; }
    .faq__item.open .faq__icon { transform: rotate(45deg); }
    .faq__a {
      font-family: var(--sans);
      font-size: .95rem;
      color: var(--muted);
      line-height: 1.7;
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
      padding-bottom: 0;
    }
    .faq__item.open .faq__a { max-height: 200px; padding-bottom: 20px; }

    /* ── BOOKING MODAL ─────────────────────────── */
    .modal-overlay {
      display: none;
      position: fixed; inset: 0; z-index: 200;
      background: rgba(13,42,66,.75);
      align-items: flex-start; justify-content: center;
      padding: 24px 16px;
      overflow-y: auto;
      backdrop-filter: blur(4px);
    }
    .modal-overlay.open { display: flex; }
    .modal {
      background: var(--white);
      border-radius: 24px;
      padding: 40px 36px;
      width: 100%;
      max-width: 560px;
      margin: auto;
      position: relative;
      box-shadow: 0 24px 64px rgba(0,0,0,.3);
      animation: fadeUp .3s ease both;
    }
    .modal__close {
      position: absolute; top: 16px; right: 20px;
      background: none; border: none; font-size: 1.6rem; cursor: pointer;
      color: var(--muted); line-height: 1;
    }
    .modal h2 { font-size: 1.8rem; color: var(--navy); margin-bottom: 6px; }
    .modal__sub { font-family: var(--sans); font-size: .9rem; color: var(--muted); margin-bottom: 28px; }
    .modal__step { display: none; }
    .modal__step.active { display: block; }
    .form__group { margin-bottom: 18px; }
    .form__label {
      display: block;
      font-family: var(--sans);
      font-size: .85rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .form__input, .form__select {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid #D0E0E8;
      border-radius: 10px;
      font-family: var(--sans);
      font-size: .95rem;
      color: var(--text);
      background: var(--white);
      transition: border-color .2s;
      outline: none;
    }
    .form__input:focus, .form__select:focus { border-color: var(--teal); }
    .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .booking__cal { margin-bottom: 20px; }
    .booking__cal h3 { font-size: 1rem; color: var(--navy); margin-bottom: 14px; }
    .dates__grid { display: flex; flex-wrap: wrap; gap: 10px; }
    .date-card {
      border: 2px solid #D0E0E8;
      border-radius: 10px;
      padding: 10px 16px;
      cursor: pointer;
      font-family: var(--sans);
      font-size: .85rem;
      transition: all .2s;
      text-align: center;
    }
    .date-card:hover, .date-card.selected { border-color: var(--teal); background: rgba(26,138,138,.06); }
    .date-card.sold-out { opacity: .45; cursor: not-allowed; text-decoration: line-through; }
    .date-card.limited { border-color: var(--orange); }
    .date-card__date { font-weight: 700; color: var(--navy); }
    .date-card__spots { font-size: .75rem; color: var(--muted); margin-top: 2px; }
    .date-card.limited .date-card__spots { color: var(--orange); }
    .spots-selector { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
    .spots-selector label { font-family: var(--sans); font-size: .9rem; font-weight: 700; color: var(--navy); }
    .spots-btn { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--teal); background: none; color: var(--teal); font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; font-weight: 700; transition: .2s; }
    .spots-btn:hover { background: var(--teal); color: var(--white); }
    .spots-count { font-family: var(--sans); font-size: 1.2rem; font-weight: 700; color: var(--navy); min-width: 24px; text-align: center; }
    .modal__total {
      background: var(--sand2);
      border-radius: 12px;
      padding: 16px 20px;
      display: flex; justify-content: space-between; align-items: center;
      font-family: var(--sans);
      margin-bottom: 24px;
    }
    .modal__total-label { font-size: .9rem; color: var(--muted); }
    .modal__total-price { font-size: 1.5rem; font-weight: 900; color: var(--navy); }
    .confirm__box {
      background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      color: var(--white);
    }
    .confirm__icon { font-size: 3rem; margin-bottom: 12px; }
    .confirm__num { font-size: 1.5rem; font-weight: 900; letter-spacing: .1em; margin: 8px 0; }
    .confirm__note { font-family: var(--sans); font-size: .875rem; color: rgba(255,255,255,.75); margin-top: 12px; }
    .modal__progress { display: flex; gap: 6px; margin-bottom: 28px; }
    .modal__progress-step { flex: 1; height: 4px; border-radius: 100px; background: #D0E0E8; }
    .modal__progress-step.done { background: var(--teal); }

    /* ── CTA BAND ──────────────────────────────── */
    .cta-band {
      background: linear-gradient(135deg, var(--orange) 0%, #C83408 100%);
      padding: 60px 24px;
      text-align: center;
    }
    .cta-band h2 { font-size: clamp(2.2rem, 5vw, 3.1rem); color: var(--white); margin-bottom: 12px; }
    .cta-band p  { font-family: var(--sans); font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 32px; }

    /* ── FOOTER ────────────────────────────────── */
    .footer {
      background: #0A1E30;
      color: rgba(255,255,255,.6);
      padding: 48px 24px 32px;
    }
    .footer__inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start;
    }
    .footer__brand { max-width: 320px; }
    .footer__brand-name {
      font-family: var(--sans); font-weight: 900; font-size: 1.2rem;
      color: var(--white); letter-spacing: .06em; margin-bottom: 8px;
    }
    .footer__brand-tagline { font-style: italic; color: var(--gold); font-size: .9rem; margin-bottom: 16px; }
    .footer__brand p { font-family: var(--sans); font-size: .85rem; line-height: 1.6; }
    .footer__links { display: flex; flex-direction: column; gap: 8px; text-align: right; }
    .footer__links a {
      font-family: var(--sans); font-size: .85rem; color: rgba(255,255,255,.55);
      transition: color .15s;
    }
    .footer__links a:hover { color: var(--white); }
    .footer__social { display: flex; gap: 14px; margin-top: 16px; }
    .footer__social a {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      font-size: 1rem;
      transition: background .2s;
    }
    .footer__social a:hover { background: var(--teal); }
    .footer__bottom {
      max-width: 1100px; margin: 32px auto 0;
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 20px;
      display: flex; justify-content: space-between; align-items: center;
      font-family: var(--sans); font-size: .8rem;
      flex-wrap: wrap; gap: 8px;
    }
    .footer__hibiscus { color: var(--orange); }

    @media (max-width: 600px) {
      .footer__inner { grid-template-columns: 1fr; }
      .footer__links { text-align: left; }
      .pricing__list { grid-template-columns: 1fr; }
      .form__row { grid-template-columns: 1fr; }
      .modal { padding: 28px 20px; }
    }

    /* ── GALLERY ───────────────────────────────── */
    .gallery-section { background: #080F14; padding: 90px 0; }
    .gallery-section .tag { background: rgba(255,255,255,.1); color: var(--gold); }
    .gallery-section h2 { color: var(--white); font-size: clamp(2.4rem,5.5vw,3.5rem); margin-bottom: 12px; }
    .gallery-section > .container > p { font-family: var(--sans); color: rgba(255,255,255,.55); margin-bottom: 48px; font-size: 1rem; }

    /* Teaser strip — always visible */
    .gallery-teaser {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      grid-template-rows: 320px 220px;
      gap: 6px;
      border-radius: 18px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }
    .gallery-teaser__cell {
      overflow: hidden;
      position: relative;
    }
    .gallery-teaser__cell:first-child {
      grid-row: 1 / 3;
    }
    .gallery-teaser__cell img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .55s cubic-bezier(.25,.46,.45,.94), filter .55s;
      filter: brightness(.88) saturate(1.12) sepia(.12); /* warm dusk signature */
    }
    .gallery-teaser__cell:hover img {
      transform: scale(1.06);
      filter: brightness(1) saturate(1.22) sepia(.1);
    }
    .gallery-teaser__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55) 100%);
      pointer-events: none;
    }
    /* "See all" badge on last visible cell */
    .gallery-teaser__more {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      background: rgba(8,15,20,.72);
      backdrop-filter: blur(3px);
      color: var(--white);
      font-family: var(--sans);
      transition: background .3s;
    }
    .gallery-teaser__more:hover { background: rgba(8,15,20,.5); }
    .gallery-teaser__more-num { font-size: 2.4rem; font-weight: 900; line-height: 1; }
    .gallery-teaser__more-label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; opacity: .75; margin-top: 4px; }
    .gallery-cta { text-align: center; margin-top: 28px; }

    /* Curiosity caption strip */
    .gallery-caption {
      display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
      margin-top: 24px;
    }
    .gallery-caption__pill {
      font-family: var(--sans); font-size: .8rem;
      color: rgba(255,255,255,.45);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 100px;
      padding: 6px 16px;
      transition: color .2s, border-color .2s;
      cursor: default;
    }
    .gallery-caption__pill:hover { color: var(--gold); border-color: var(--gold); }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed; inset: 0; z-index: 300;
      background: rgba(0,0,0,.96);
      align-items: center; justify-content: center;
      flex-direction: column;
    }
    .lightbox.open { display: flex; }
    .lightbox__img-wrap {
      position: relative;
      max-width: 94vw; max-height: 82vh;
      display: flex; align-items: center; justify-content: center;
    }
    .lightbox__img {
      max-width: 94vw; max-height: 82vh;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 24px 80px rgba(0,0,0,.8);
      filter: saturate(1.08) sepia(.08); /* warm dusk signature, light touch */
      transition: opacity .25s;
    }
    .lightbox__prev, .lightbox__next {
      position: fixed; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,.1);
      border: none; color: var(--white); font-size: 1.8rem;
      width: 52px; height: 52px; border-radius: 50%;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background .2s;
      backdrop-filter: blur(6px);
      z-index: 301;
    }
    .lightbox__prev { left: 16px; }
    .lightbox__next { right: 16px; }
    .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.22); }
    .lightbox__close {
      position: fixed; top: 16px; right: 20px; z-index: 302;
      background: rgba(255,255,255,.1); border: none; color: var(--white);
      font-size: 1.4rem; width: 44px; height: 44px; border-radius: 50%;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background .2s; backdrop-filter: blur(6px);
    }
    .lightbox__close:hover { background: rgba(255,255,255,.22); }
    .lightbox__counter {
      font-family: var(--sans); font-size: .85rem; color: rgba(255,255,255,.4);
      margin-top: 16px; letter-spacing: .1em;
    }
    .lightbox__caption {
      font-family: var(--sans); font-size: .9rem; color: rgba(255,255,255,.6);
      margin-top: 8px; font-style: italic;
    }
    .lightbox__dots {
      display: flex; gap: 6px; margin-top: 12px;
    }
    .lightbox__dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: rgba(255,255,255,.25); cursor: pointer;
      transition: background .2s, transform .2s;
    }
    .lightbox__dot.active { background: var(--gold); transform: scale(1.4); }

    /* Full grid (hidden, shown in lightbox mode) */
    .gallery-grid-full {
      display: none;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 8px;
      margin-top: 32px;
      border-radius: 16px;
      overflow: hidden;
    }
    .gallery-grid-full.visible { display: grid; }
    .gallery-grid-full__cell {
      overflow: hidden; position: relative;
      aspect-ratio: 4/3; cursor: pointer;
    }
    .gallery-grid-full__cell.portrait { aspect-ratio: 3/4; }
    .gallery-grid-full__cell img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .4s, filter .4s;
      filter: brightness(.85) saturate(1.12) sepia(.12); /* warm dusk signature */
    }
    .gallery-grid-full__cell:hover img { transform: scale(1.07); filter: brightness(1) saturate(1.25) sepia(.1); }

    @media (max-width: 700px) {
      .gallery-teaser { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 160px; }
      .gallery-teaser__cell:first-child { grid-row: 1; grid-column: 1 / 3; }
    }

    /* ── CHATBOT ────────────────────────────────── */
    .chat-bubble {
      position: fixed; bottom: 28px; right: 28px; z-index: 200;
      width: 60px; height: 60px;
      background: linear-gradient(135deg, var(--teal), var(--navy));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 24px rgba(26,138,138,.45);
      cursor: pointer;
      transition: transform .2s, box-shadow .2s;
      font-size: 1.6rem;
      border: none;
    }
    .chat-bubble:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(26,138,138,.6); }
    .chat-bubble__badge {
      position: absolute; top: -4px; right: -4px;
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--orange);
      color: white; font-family: var(--sans); font-size: .7rem; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      border: 2px solid white;
      animation: pulse 2s infinite;
    }
    @keyframes pulse { 0%,100%{transform:scale(1);}50%{transform:scale(1.2);} }

    .chat-window {
      position: fixed; bottom: 100px; right: 28px; z-index: 199;
      width: 360px; max-height: 540px;
      background: var(--white);
      border-radius: 20px;
      box-shadow: 0 16px 56px rgba(0,0,0,.22);
      display: flex; flex-direction: column;
      overflow: hidden;
      transform: scale(0.85) translateY(20px);
      transform-origin: bottom right;
      opacity: 0;
      pointer-events: none;
      transition: transform .25s cubic-bezier(.34,1.56,.64,1), opacity .2s;
    }
    .chat-window.open {
      transform: scale(1) translateY(0);
      opacity: 1;
      pointer-events: all;
    }
    .chat-header {
      background: linear-gradient(135deg, var(--teal), var(--navy));
      padding: 16px 18px;
      display: flex; align-items: center; gap: 12px;
      flex-shrink: 0;
    }
    .chat-header__avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; flex-shrink: 0;
    }
    .chat-header__info { flex: 1; }
    .chat-header__name { font-family: var(--sans); font-weight: 800; font-size: .95rem; color: white; }
    .chat-header__status { font-family: var(--sans); font-size: .75rem; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 5px; }
    .chat-header__dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; }
    .chat-header__close { background: none; border: none; color: rgba(255,255,255,.7); font-size: 1.3rem; cursor: pointer; padding: 0 0 0 8px; transition: color .15s; }
    .chat-header__close:hover { color: white; }

    .chat-messages {
      flex: 1; overflow-y: auto; padding: 16px;
      display: flex; flex-direction: column; gap: 12px;
      scroll-behavior: smooth;
    }
    .chat-messages::-webkit-scrollbar { width: 4px; }
    .chat-messages::-webkit-scrollbar-thumb { background: #D0E0E8; border-radius: 4px; }

    .msg { display: flex; gap: 8px; align-items: flex-end; max-width: 85%; }
    .msg--bot { align-self: flex-start; }
    .msg--user { align-self: flex-end; flex-direction: row-reverse; }
    .msg__avatar {
      width: 28px; height: 28px; border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--navy));
      display: flex; align-items: center; justify-content: center;
      font-size: .85rem; flex-shrink: 0;
    }
    .msg__bubble {
      font-family: var(--sans); font-size: .875rem; line-height: 1.55;
      padding: 10px 14px; border-radius: 16px;
    }
    .msg--bot  .msg__bubble { background: #F0F4F8; color: var(--text); border-bottom-left-radius: 4px; }
    .msg--user .msg__bubble { background: var(--teal); color: white; border-bottom-right-radius: 4px; }

    .msg__typing { display: flex; gap: 4px; align-items: center; padding: 12px 14px; }
    .msg__typing span {
      width: 7px; height: 7px; border-radius: 50%; background: #94A3B8;
      animation: typing .9s infinite;
    }
    .msg__typing span:nth-child(2) { animation-delay: .15s; }
    .msg__typing span:nth-child(3) { animation-delay: .3s; }
    @keyframes typing { 0%,60%,100%{transform:translateY(0);}30%{transform:translateY(-6px);} }

    .chat-quick-replies {
      display: flex; flex-wrap: wrap; gap: 6px;
      padding: 0 16px 12px;
    }
    .qr-btn {
      font-family: var(--sans); font-size: .78rem; font-weight: 600;
      padding: 6px 12px; border-radius: 100px;
      border: 1.5px solid var(--teal); color: var(--teal);
      background: none; cursor: pointer;
      transition: background .15s, color .15s;
      white-space: nowrap;
    }
    .qr-btn:hover { background: var(--teal); color: white; }

    .chat-input-row {
      padding: 12px 14px;
      border-top: 1px solid #EEF2F6;
      display: flex; gap: 8px; align-items: center;
      flex-shrink: 0;
    }
    .chat-input {
      flex: 1; border: 1.5px solid #D0E0E8; border-radius: 100px;
      padding: 9px 16px; font-family: var(--sans); font-size: .875rem;
      outline: none; transition: border-color .2s; color: var(--text);
    }
    .chat-input:focus { border-color: var(--teal); }
    .chat-send {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--teal); border: none;
      color: white; font-size: 1rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background .15s, transform .15s; flex-shrink: 0;
    }
    .chat-send:hover { background: var(--navy); transform: scale(1.05); }

    @media (max-width: 420px) {
      .chat-window { width: calc(100vw - 24px); right: 12px; bottom: 90px; }
    }

    /* ── LANGUAGE TOGGLE ───────────────────────── */
    .lang-toggle {
      display: flex; align-items: center;
      background: rgba(255,255,255,.12);
      border-radius: 100px; padding: 3px; gap: 2px;
      margin-right: 4px;
    }
    .lang-btn {
      padding: 5px 13px; border-radius: 100px; border: none;
      font-family: var(--sans); font-size: .78rem; font-weight: 800;
      cursor: pointer; letter-spacing: .05em;
      transition: background .2s, color .2s;
      color: rgba(255,255,255,.55); background: transparent;
    }
    .lang-btn.active { background: var(--white); color: var(--navy); }
    .lang-btn:hover:not(.active) { color: var(--white); }

    /* ── MANIFESTO BAND ────────────────────────── */
    .manifesto {
      background: linear-gradient(180deg, #0D2A42 0%, #1B3A5C 60%, #14506B 100%);
      padding: clamp(90px, 14vw, 150px) 24px;
      text-align: center;
    }
    .manifesto__line {
      color: var(--white);
      font-size: clamp(2.2rem, 6.5vw, 4rem);
      line-height: 1.18;
      font-style: italic;
      font-weight: 600;
      max-width: 18ch;
      margin: 0 auto 18px;
    }
    .manifesto__sub {
      font-family: var(--sans);
      font-size: clamp(.8rem, 1.6vw, .95rem);
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ── FIRST-VISIT LANGUAGE POPUP ────────────── */
    .lang-popup {
      position: fixed; inset: 0; z-index: 9999;
      display: none; align-items: center; justify-content: center;
      background: rgba(27,58,92,.82); backdrop-filter: blur(6px);
      padding: 20px;
    }
    .lang-popup.open { display: flex; }
    .lang-popup__card {
      background: var(--white); border-radius: 24px; padding: 40px 36px;
      max-width: 420px; width: 100%; text-align: center;
      box-shadow: 0 24px 80px rgba(0,0,0,.35);
      animation: langPop .35s ease;
    }
    @keyframes langPop { from { opacity: 0; transform: scale(.92) translateY(12px); } to { opacity: 1; transform: none; } }
    .lang-popup__title { font-size: 1.5rem; color: var(--navy); margin: 10px 0 4px; }
    .lang-popup__sub { font-family: var(--sans); font-size: .9rem; color: var(--muted); margin-bottom: 26px; }
    .lang-popup__btn {
      display: block; width: 100%; padding: 16px; margin-bottom: 12px;
      border-radius: 14px; border: 2px solid var(--teal); cursor: pointer;
      font-family: var(--sans); font-size: 1.05rem; font-weight: 800;
      background: var(--white); color: var(--navy);
      transition: transform .15s, background .2s, color .2s;
    }
    .lang-popup__btn:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
    .lang-popup__note { font-family: var(--sans); font-size: .75rem; color: var(--muted); margin-top: 10px; }

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

    /* ── DAWN/DUSK SPLIT: two halves of one day, two doorways in ── */
    .daysplit { display: flex; min-height: 440px; }
    .daysplit__panel {
      flex: 1; display: flex; flex-direction: column;
      align-items: center; justify-content: center; text-align: center;
      padding: 70px 32px; cursor: pointer;
      transition: flex .5s cubic-bezier(.25,.8,.3,1);
    }
    @media (hover: hover) { .daysplit__panel:hover { flex: 1.45; } }
    .daysplit__panel--dawn {
      background: linear-gradient(180deg, #FDF6E3 0%, #F3D9A4 55%, #E2B36B 100%);
      color: var(--navy);
    }
    .daysplit__panel--dusk {
      background: linear-gradient(180deg, #1B2A4A 0%, #6E3A50 50%, #D87A3A 100%);
      color: #FDF3E0;
    }
    .daysplit__eyebrow {
      font-family: var(--sans); font-size: .78rem; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase; margin-bottom: 14px;
    }
    .daysplit__panel--dawn .daysplit__eyebrow { color: #9A6A1C; }
    .daysplit__panel--dusk .daysplit__eyebrow { color: #F0C068; }
    .daysplit__name { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 12px; line-height: 1.1; }
    .daysplit__name em { font-weight: 600; }
    .daysplit__panel--dusk .daysplit__name em { color: #F0C068; }
    .daysplit__line { font-family: var(--sans); font-size: 1rem; opacity: .85; margin-bottom: 26px; max-width: 34ch; }
    .daysplit__cta {
      font-family: var(--sans); font-weight: 700; font-size: .95rem;
      border-bottom: 2px solid currentColor; padding-bottom: 3px;
    }
    @media (max-width: 700px) { .daysplit { flex-direction: column; } .daysplit__panel { min-height: 300px; } }

    /* ── WAVE DIVIDERS: the page floats on the lake ── */
    .wave-divider { line-height: 0; }
    .wave-divider svg { display: block; width: 100%; height: 52px; }
    .wave-divider--manifesto { background: transparent; }
    .wave-divider--gallery { background: transparent; }

    /* Night zone (after the gallery): light ink on the darkened page */
    #location h2 { color: #F3EAD8 !important; }
    #location > .container > p { color: rgba(243,234,216,.78) !important; }
    #location > .container > p strong { color: #7FD49B !important; }

    /* ── TURNDOWN SERVICE: details nobody notices, everybody feels ── */
    ::selection { background: rgba(240,160,32,.9); color: #1B3A5C; }
    html { scrollbar-color: #1A8A8A #0D2A42; scrollbar-width: thin; }
    ::-webkit-scrollbar { width: 11px; }
    ::-webkit-scrollbar-track { background: #0D2A42; }
    ::-webkit-scrollbar-thumb { background: #1A8A8A; border-radius: 8px; border: 2px solid #0D2A42; }
    ::-webkit-scrollbar-thumb:hover { background: #F0A020; }

    /* ── FOG REVEAL: gallery photos arrive veiled, clear as you reach them ── */
    .fog-anim { transition: filter 1.15s ease; }
    .fogged { filter: blur(16px) brightness(.72) saturate(.85); }
    .gallery-earned {
      font-style: italic;
      color: var(--gold);
      font-size: 1.02rem;
      margin: -6px 0 26px;
    }

    /* ── EXPERIENCE VIEW: the whole truth before booking ── */
    .xp {
      background: var(--white);
      border-radius: 24px;
      width: 100%;
      max-width: 980px;
      margin: auto;
      position: relative;
      box-shadow: 0 24px 64px rgba(0,0,0,.3);
      animation: fadeUp .3s ease both;
      overflow: hidden;
    }
    .xp__grid { display: grid; grid-template-columns: 350px 1fr; align-items: stretch; }
    .xp__book {
      background: linear-gradient(180deg, #FDF6E3 0%, #F3D9A4 55%, #E2B36B 100%);
      color: var(--navy);
      padding: 44px 30px;
      display: flex; flex-direction: column; gap: 13px;
    }
    .xp__eyebrow {
      font-family: var(--sans); font-size: .75rem; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase; color: #9A6A1C;
    }
    .xp__title { font-size: 2rem; line-height: 1.1; color: var(--navy); }
    .xp__title em { font-weight: 600; }
    .xp__price { font-family: var(--sans); font-weight: 900; font-size: 2.2rem; color: var(--navy); }
    .xp__price-note { font-family: var(--sans); font-size: .85rem; color: #7A5A20; margin-top: -12px; }
    .xp__dates-h {
      font-family: var(--sans); font-size: .78rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase; color: #9A6A1C; margin-top: 6px;
    }
    .xp__date {
      font-family: var(--sans); font-size: .88rem; color: var(--navy);
      background: rgba(255,255,255,.55); border: 1px solid rgba(154,106,28,.25);
      border-radius: 10px; padding: 9px 12px;
      display: flex; justify-content: space-between; gap: 10px;
    }
    .xp__date span:last-child { color: #7A5A20; font-size: .8rem; }
    .xp__cta { margin-top: 10px; width: 100%; font-size: 1.02rem; }
    .xp__seats, .xp__secure { font-family: var(--sans); font-size: .8rem; color: #7A5A20; line-height: 1.5; }
    .xp__story { padding: 44px 40px; }
    .xp__story-eyebrow {
      font-family: var(--sans); font-size: .75rem; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px;
    }
    .xp__h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--navy); line-height: 1.15; }
    .xp__intro { font-family: var(--sans); font-size: .95rem; color: var(--muted); line-height: 1.65; margin: 10px 0 26px; }
    .xp__step { display: flex; gap: 14px; margin-bottom: 18px; }
    .xp__step-dot { flex-shrink: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); margin-top: 7px; }
    .xp__step-time { font-family: var(--sans); font-weight: 800; font-size: .95rem; color: var(--navy); }
    .xp__step-text { font-family: var(--sans); font-size: .92rem; color: var(--text); line-height: 1.6; margin-top: 3px; }
    .xp__block-h { font-size: 1.25rem; color: var(--navy); margin: 30px 0 4px; }
    .xp__list { list-style: none; padding: 0; margin: 10px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
    .xp__list--single { grid-template-columns: 1fr; }
    .xp__list li { font-family: var(--sans); font-size: .9rem; color: var(--text); line-height: 1.55; }
    .xp__buy {
      background: rgba(154,106,28,.07); border: 1px solid rgba(154,106,28,.22);
      border-radius: 12px; padding: 14px 16px; margin-top: 14px;
    }
    .xp__buy-h { font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #9A6A1C; margin-bottom: 6px; }
    /* Dusk theme for the Atardecer booking pane (matches its doorway) */
    .xp__book--dusk {
      background: linear-gradient(180deg, #1B2A4A 0%, #6E3A50 50%, #D87A3A 100%);
      color: #FDF3E0;
    }
    .xp__book--dusk .xp__eyebrow, .xp__book--dusk .xp__dates-h { color: #F0C068; }
    .xp__book--dusk .xp__title, .xp__book--dusk .xp__price { color: #FDF3E0; }
    .xp__book--dusk .xp__title em { color: #F0C068; }
    .xp__book--dusk .xp__price-note, .xp__book--dusk .xp__seats, .xp__book--dusk .xp__secure { color: rgba(253,243,224,.82); }
    .xp__book--dusk .xp__date { background: rgba(255,255,255,.12); border-color: rgba(240,192,104,.35); color: #FDF3E0; }
    .xp__book--dusk .xp__date span:last-child { color: #F0C068; }
    @media (max-width: 860px) {
      .xp__grid { grid-template-columns: 1fr; }
      .xp__story { order: 1; padding: 40px 24px 28px; }
      .xp__book { order: 2; }
      .xp__list { grid-template-columns: 1fr; }
    }
