    /* ── Reveal override: blur-dissolve with spring easing ── */
    .reveal   { opacity:0; transform:translateY(36px);  filter:blur(4px); transition:opacity .85s var(--spring),transform .85s var(--spring),filter .7s var(--spring); }
    .reveal-l { opacity:0; transform:translateX(-48px); filter:blur(4px); transition:opacity .85s var(--spring),transform .85s var(--spring),filter .7s var(--spring); }
    .reveal-r { opacity:0; transform:translateX(48px);  filter:blur(4px); transition:opacity .85s var(--spring),transform .85s var(--spring),filter .7s var(--spring); }
    .reveal.on,.reveal-l.on,.reveal-r.on { opacity:1; transform:none; filter:blur(0); }

    /* ── Eyebrow override: left-aligned with rule line ── */
    .eyebrow { justify-content:flex-start; text-align:left; }
    .eyebrow::before { content:''; width:24px; height:1.5px; background:var(--teal); border-radius:1px; }
    .eyebrow-c { justify-content:center; }
    .eyebrow-c::before { display:none; }

    /* ── HERO ── */
    .hero { background:var(--navy-deep); position:relative; overflow:hidden; }
    .hero-bg { position:absolute; inset:0; background:
      radial-gradient(ellipse at 20% 50%, rgba(43,191,204,.18) 0%, transparent 55%),
      radial-gradient(ellipse at 80% 20%, rgba(98,199,112,.12) 0%, transparent 50%),
      linear-gradient(135deg, #0B1D2F 0%, #1C3D5A 60%, #164A5C 100%); }
    .hero-grid-bg { position:absolute; inset:0; background-image:linear-gradient(rgba(43,191,204,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(43,191,204,.04) 1px,transparent 1px); background-size:60px 60px; animation:gshift 20s linear infinite; }
    @keyframes gshift { 0%{background-position:0 0} 100%{background-position:60px 60px} }
    .hero-orb { position:absolute; border-radius:50%; filter:blur(80px); animation:forb 10s ease-in-out infinite; }
    .hero-orb1 { width:460px; height:460px; background:rgba(43,191,204,.1); top:-80px; right:0; }
    .hero-orb2 { width:300px; height:300px; background:rgba(98,199,112,.08); bottom:-40px; right:30%; animation-delay:-5s; }
    @keyframes forb { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-24px)} }
    .hero-inner { position:relative; z-index:10; max-width:860px; margin:0 auto; padding:160px 40px 130px; text-align:center; }
    .hero-wave { position:absolute; bottom:0; left:0; right:0; z-index:5; line-height:0; }
    .hero h1 { font-size:clamp(2.2rem,3.8vw,3.2rem); line-height:1.15; margin-bottom:20px; }
    .hero-sub { font-size:1rem; color:rgba(255,255,255,.58); line-height:1.85; font-weight:300; max-width:580px; margin:0 auto; }

    /* ── BOOKING SECTION ── */
    .booking-section { background:#fff; }
    .booking-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; padding:100px 40px; }

    /* ── FORM WRAP ── */
    .booking-form-wrap { }
    .booking-form-wrap .s-title { margin-bottom:10px; }
    .booking-form-sub { font-size:.93rem; color:var(--text-mid); line-height:1.8; margin-bottom:36px; }

    .booking-form { display:flex; flex-direction:column; gap:18px; }
    .form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
    .form-group { display:flex; flex-direction:column; gap:6px; }
    .form-group label { font-size:.72rem; font-weight:600; color:var(--text-mid); text-transform:uppercase; letter-spacing:.9px; }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background:var(--cream);
      border:1.5px solid var(--cream-dark);
      border-radius:12px;
      padding:14px 18px;
      font-family:'Outfit',sans-serif;
      font-size:.95rem;
      color:var(--navy);
      width:100%;
      outline:none;
      transition:border-color .25s, box-shadow .25s;
      appearance:none;
      -webkit-appearance:none;
    }
    .form-group select {
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234a5a6a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
      background-repeat:no-repeat;
      background-position:right 16px center;
      padding-right:42px;
      cursor:pointer;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color:var(--teal);
      box-shadow:0 0 0 3px rgba(43,191,204,.1);
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color:var(--text-light); }
    .form-group textarea { min-height:120px; resize:vertical; }

    .booking-submit {
      background:linear-gradient(135deg, var(--teal), var(--teal-dark));
      color:#fff;
      border:none;
      border-radius:50px;
      padding:16px 32px;
      font-size:1rem;
      font-weight:600;
      font-family:'Outfit',sans-serif;
      cursor:pointer;
      width:100%;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      transition:transform .3s var(--spring), box-shadow .3s;
      margin-top:4px;
    }
    .booking-submit:hover { transform:translateY(-2px); box-shadow:0 12px 32px rgba(43,191,204,.3); }
    .booking-submit:active { transform:scale(0.98); }
    .booking-submit:disabled { cursor:default; }

    .form-note { font-size:.8rem; color:var(--text-light); line-height:1.65; text-align:center; margin-top:6px; }

    /* ── CONTACT INFO ── */
    .booking-info { }
    .booking-info-heading { font-family:'Playfair Display',serif; font-size:1.6rem; font-weight:600; color:var(--navy); line-height:1.3; margin-bottom:28px; }
    .booking-info-heading em { font-style:italic; color:var(--teal); }

    .contact-card { background:var(--cream); border-radius:20px; padding:24px 28px; display:flex; align-items:flex-start; gap:18px; margin-bottom:16px; transition:background .2s, box-shadow .25s; }
    .contact-card:hover { background:#fff; box-shadow:0 8px 28px rgba(43,191,204,.1); }
    .contact-card-icon { width:44px; height:44px; border-radius:14px; background:rgba(43,191,204,.12); display:flex; align-items:center; justify-content:center; font-size:1.1rem; color:var(--teal); flex-shrink:0; }
    .contact-card-body { flex:1; min-width:0; }
    .contact-card-title { font-size:.78rem; font-weight:600; color:var(--text-light); text-transform:uppercase; letter-spacing:.8px; margin-bottom:4px; }
    .contact-card-detail { font-size:1rem; font-weight:500; color:var(--navy); }
    .contact-card-sub { font-size:.82rem; color:var(--text-light); margin-top:2px; }
    .contact-card-action { font-size:.82rem; color:var(--teal); text-decoration:none; display:block; margin-top:4px; }
    .contact-card-action:hover { color:var(--teal-dark); }

    /* ── HOURS BOX ── */
    .hours-box { background:var(--navy); border-radius:20px; padding:28px 32px; margin-top:24px; }
    .hours-title { font-size:.78rem; font-weight:600; color:var(--teal-light); text-transform:uppercase; letter-spacing:.8px; margin-bottom:16px; }
    .hours-row { display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.07); font-size:.88rem; }
    .hours-row:last-child { border-bottom:none; }
    .hours-day { color:rgba(255,255,255,.65); }
    .hours-time { color:#fff; font-weight:500; font-family:'DM Mono',monospace; font-size:.82rem; }
    .hours-closed { color:rgba(255,255,255,.3); font-family:'DM Mono',monospace; font-size:.82rem; }

    /* ── WHAT TO EXPECT SECTION ── */
    .expect-section { background:var(--cream); padding:100px 40px; }
    .expect-head { text-align:center; margin-bottom:64px; }
    .expect-head .s-sub { margin:0 auto; }
    .expect-grid { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }

    .expect-shell { background:rgba(43,191,204,.06); border:1px solid rgba(43,191,204,.14); border-radius:28px; padding:3px; transition:border-color .4s; }
    .expect-shell:hover { border-color:rgba(43,191,204,.35); }
    .expect-card { background:#fff; border-radius:25px; padding:36px 32px; box-shadow:inset 0 1px 1px rgba(255,255,255,.8); height:100%; }
    .expect-num { font-family:'DM Mono',monospace; font-size:3.5rem; font-weight:500; color:rgba(43,191,204,.18); line-height:1; margin-bottom:4px; }
    .expect-icon { width:52px; height:52px; background:linear-gradient(135deg, var(--teal), var(--green)); border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:1.2rem; color:#fff; margin-bottom:20px; box-shadow:0 8px 24px rgba(43,191,204,.25); }
    .expect-title { font-family:'Playfair Display',serif; font-size:1.25rem; font-weight:600; color:var(--navy); margin-bottom:12px; }
    .expect-body { font-size:.88rem; color:var(--text-mid); line-height:1.85; }

    /* ── PREP SECTION ── */
    .prep-section { padding:100px 40px; background:var(--navy); position:relative; overflow:hidden; }
    .prep-section::before { content:''; position:absolute; top:-120px; right:-120px; width:600px; height:600px; background:radial-gradient(ellipse,rgba(43,191,204,.08),transparent 70%); border-radius:50%; }
    .prep-section::after { content:''; position:absolute; bottom:-80px; left:-80px; width:400px; height:400px; background:radial-gradient(ellipse,rgba(98,199,112,.06),transparent 70%); border-radius:50%; }
    .prep-head { text-align:center; margin-bottom:64px; position:relative; z-index:1; }
    .prep-head .eyebrow { color:var(--teal-light); justify-content:center; }
    .prep-head .eyebrow::before { background:var(--teal-light); }
    .prep-head .s-title { color:#fff; text-align:center; }

    .prep-grid { display:grid; grid-template-columns:repeat(2,1fr); max-width:900px; margin:0 auto; gap:20px; position:relative; z-index:1; }
    .prep-item { background:rgba(255,255,255,.04); border:1px solid rgba(43,191,204,.12); border-radius:18px; padding:24px 28px; display:flex; align-items:flex-start; gap:16px; transition:background .2s, border-color .3s; }
    .prep-item:hover { background:rgba(255,255,255,.07); border-color:rgba(43,191,204,.25); }
    .prep-item-icon { width:40px; height:40px; border-radius:12px; background:rgba(43,191,204,.12); display:flex; align-items:center; justify-content:center; color:var(--teal); font-size:.95rem; flex-shrink:0; }
    .prep-item-body { flex:1; }
    .prep-item-title { font-size:.88rem; font-weight:600; color:#fff; margin-bottom:4px; }
    .prep-item-text { font-size:.82rem; color:rgba(255,255,255,.52); line-height:1.65; }

    /* ── FAQ SECTION ── */
    .faq-section { background:var(--cream); padding:100px 40px; }
    .faq-head { text-align:center; margin-bottom:64px; }
    .faq-head .s-sub { margin:0 auto; }
    .faq-list { max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
    .faq-item { background:#fff; border:1px solid rgba(43,191,204,.12); border-radius:18px; overflow:hidden; transition:border-color .35s,box-shadow .35s; }
    .faq-item.open { border-color:rgba(43,191,204,.35); box-shadow:0 8px 32px rgba(43,191,204,.1); }
    .faq-q { display:flex; justify-content:space-between; align-items:center; padding:22px 28px; cursor:pointer; gap:20px; user-select:none; }
    .faq-q span { font-size:.97rem; font-weight:500; color:var(--navy); line-height:1.45; }
    .faq-tog { width:32px; height:32px; background:var(--cream); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--teal-dark); font-size:.8rem; transition:all .4s var(--ease-bounce); }
    .faq-item.open .faq-tog { background:var(--teal); color:#fff; transform:rotate(45deg) scale(1.1); }
    .faq-a { max-height:0; overflow:hidden; transition:max-height .45s cubic-bezier(.4,0,.2,1); }
    .faq-a.open { max-height:400px; }
    .faq-a p { padding:0 28px 24px; font-size:.9rem; color:var(--text-mid); line-height:1.85; }

    /* ── CTA overrides ── */
    .cta-inner { position:relative; z-index:1; max-width:1200px; margin:0 auto; }
    .cta .eyebrow { color:var(--teal-light); justify-content:center; }
    .cta .eyebrow::before { background:var(--teal-light); }
    .cta .s-title { color:#fff; text-align:center; max-width:600px; margin:0 auto 20px; }
    @keyframes breathe { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:.7} 50%{transform:translate(-50%,-50%) scale(1.06);opacity:.15} }

    /* ── RESPONSIVE ── */
    @media(max-width:1024px) {
      .booking-inner { grid-template-columns:1fr; gap:60px; }
      .expect-grid { grid-template-columns:1fr; max-width:600px; }
    }
    @media(max-width:768px) {
      .hero-inner { padding:120px 24px 100px; }
      .booking-inner { padding:72px 24px; gap:48px; }
      .booking-section { }
      .form-row { grid-template-columns:1fr; }
      .expect-section { padding:72px 24px; }
      .prep-section { padding:72px 24px; }
      .prep-grid { grid-template-columns:1fr; max-width:100%; }
      .faq-section { padding:72px 24px; }
      .hours-box { padding:24px; }
    }
