/* ══════════════════════════════════════════════════
   EndlessBlue Charters — Light / Black-Frame / Coral Theme
   Full-bleed aerial hero · black header & footer · light airy body
══════════════════════════════════════════════════ */

/* ---- Design tokens ---- */
:root {
  /* Frame + surfaces */
  --black: #000000;
  --sand: #F7F4EF;       /* warm sand white (alternating section) */
  --off-white: #FBF8F2;  /* warm off-white body / primary section (replaces stark #FFF) */
  --white: #FFFFFF;      /* clean white — kept for cards/buttons so they lift off the warm body */

  /* Accents */
  --coral: #0E8CAF;        /* primary CTA / accent */
  --coral-deep: #0A6E8C;   /* coral hover */
  --teal: #0E8CAF;         /* small details / links only */
  --seafoam: #1f9e7a;      /* shop accent (darkened for light-bg legibility) */
  --seafoam-dim: rgba(31, 158, 122, 0.10);

  /* Text */
  --text: #1A1A1A;
  --text-dim: #555555;
  --text-faint: #8a8a8a;

  --border: rgba(0, 0, 0, 0.10);
  --border-strong: rgba(0, 0, 0, 0.18);

  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 16px 44px rgba(0, 0, 0, 0.14);
  --shadow-glow: 0 0 0 3px rgba(14, 140, 175, 0.18);

  --radius: 0.75rem;
  --radius-lg: 1.1rem;
  --transition: 0.28s ease;
  --topbar-h: 4.75rem;        /* top bar (logo · social · call+CTA) */
  --navbar-h: 2.9rem;         /* slim exposed-nav bar */
  --nav-height: 7.65rem;      /* combined header height (content offset) */
  --maxw: 1200px;

  /* Legacy token remaps — keep inline var() usages in the HTML rendering on the light theme */
  --bg-900: #FFFFFF;
  --bg-800: #F7F4EF;
  --bg-panel: #FFFFFF;
  --bg-panel-2: #eef1f2;
  --aqua: #0E8CAF;         /* stray inline accent → coral */
  --aqua-light: #0E8CAF;   /* stray inline heading accent → teal */
  --teal-deep: #0d81A0;
  --body-text: #1A1A1A;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

body {
  background: var(--off-white);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: 0.005em;
}

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--coral); }

img { max-width: 100%; display: block; }
/* <picture> wrappers are layout-transparent so the inner <img> keeps the exact
   grid/flex/block behavior it had before responsive sources were added. */
picture { display: contents; }

.accent { color: var(--teal); }
.seafoam { color: var(--seafoam); }
.text-light { color: #ffffff; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

section { padding: 5.5rem 0; }

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}

.section-title { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1.25rem; color: var(--text); }
.section-intro { color: var(--text-dim); max-width: 60ch; font-size: 1.12rem; margin-bottom: 2.5rem; }

/* ---- Section backgrounds: alternate clean white / sand ---- */
.bg-deep { background: var(--off-white); }
.bg-panel { background: var(--sand); }

/* ── Section hero banner (e.g. homepage "Where We Go") — full-bleed photo with the section label + heading overlaid on a dark scrim ── */
.section-hero { position: relative; width: 100%; overflow: hidden; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-hero__img { display: block; width: 100%; height: clamp(260px, 34vw, 460px); object-fit: cover; object-position: center 60%; }
.section-hero__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,42,48,0.76) 0%, rgba(7,42,48,0.34) 44%, rgba(7,42,48,0.08) 80%, rgba(7,42,48,0.16) 100%); }
.section-hero__cap { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; padding-top: 0; padding-bottom: clamp(1.25rem, 3.5vw, 2.25rem); }
.section-hero__cap .section-label { color: #8AE3C6; }
.section-hero__cap .section-title { color: #fff; margin: 0.35rem 0 0; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }

/* ── "Where We Go" photo bento mosaic (homepage #destinations + /destinations) ── */
.wwg-grid{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:210px;gap:16px}
.wwg-card{position:relative;border-radius:16px;overflow:hidden;background:#0d2338;border:1px solid rgba(255,255,255,.06);box-shadow:0 18px 40px -22px rgba(0,0,0,.9);text-decoration:none;color:#eaf2f8;display:block;isolation:isolate}
.wwg-card.wwg-feature{grid-column:span 2;grid-row:span 2}
.wwg-card.wwg-wide{grid-column:span 2}
.wwg-photo{position:absolute;inset:0}
.wwg-photo img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .7s cubic-bezier(.2,.7,.2,1)}
.wwg-card:hover .wwg-photo img{transform:scale(1.07)}
.wwg-scrim{position:absolute;inset:0;background:linear-gradient(180deg,rgba(4,16,31,.05),rgba(4,16,31,.15) 42%,rgba(4,16,31,.82));transition:background .4s ease}
.wwg-card:hover .wwg-scrim{background:linear-gradient(180deg,rgba(4,16,31,.15),rgba(4,16,31,.45) 45%,rgba(4,16,31,.92))}
.wwg-badge{position:absolute;top:14px;left:14px;z-index:3;font-size:10.5px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;padding:5px 10px;border-radius:999px}
.wwg-badge.usvi{background:rgba(233,182,77,.92);color:#3a2708}
.wwg-badge.bvi{background:rgba(57,194,201,.92);color:#04322f}
.wwg-content{position:absolute;left:0;right:0;bottom:0;z-index:3;padding:16px}
.wwg-place{font-size:12px;letter-spacing:.09em;color:#fff;font-weight:700;text-transform:uppercase;margin-bottom:4px;text-shadow:0 1px 5px rgba(0,0,0,.7)}
.wwg-name{font-family:'Cormorant Garamond',Georgia,serif;font-size:22px;font-weight:700;line-height:1.1;margin-bottom:6px}
.wwg-card.wwg-feature .wwg-name{font-size:30px}
.wwg-hook{font-size:13px;line-height:1.45;color:#d4e2ee;max-height:0;opacity:0;overflow:hidden;transition:max-height .45s ease,opacity .35s ease,margin .45s ease}
.wwg-card:hover .wwg-hook,.wwg-card.wwg-feature .wwg-hook{max-height:160px;opacity:1;margin:2px 0 10px}
.wwg-pill{display:inline-flex;align-items:center;gap:7px;margin-top:8px;font-size:12.5px;font-weight:600;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.22);color:#fff;padding:7px 12px;border-radius:999px;transition:background .25s,border-color .25s,color .25s}
.wwg-card:hover .wwg-pill{background:#e9b64d;border-color:#e9b64d;color:#3a2708}
.wwg-card.wwg-feature:hover .wwg-pill{background:#39c2c9;border-color:#39c2c9;color:#04322f}
@media(max-width:860px){.wwg-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:180px}.wwg-card.wwg-feature{grid-column:span 2;grid-row:span 1}.wwg-card.wwg-feature .wwg-name{font-size:24px}.wwg-hook{max-height:0;opacity:0}.wwg-card.wwg-feature .wwg-hook,.wwg-card:active .wwg-hook{max-height:160px;opacity:1}}
@media(max-width:520px){.wwg-grid{grid-template-columns:1fr;grid-auto-rows:200px}.wwg-card.wwg-feature,.wwg-card.wwg-wide{grid-column:span 1}}

/* Pizza Pi menu panel (opened by the Where We Go "Pizza Pi" tile — no outbound pizza-pi.com link) */
.wwg-modal{position:fixed;inset:0;background:rgba(3,10,20,.74);display:none;align-items:center;justify-content:center;z-index:1000;padding:20px}
.wwg-modal.open{display:flex}
.wwg-modal__panel{background:#0b2135;color:#eaf2f8;border:1px solid rgba(233,182,77,.35);border-radius:18px;max-width:560px;width:100%;max-height:88vh;overflow:auto}
.wwg-modal__hero{height:120px;background:linear-gradient(180deg,#8fe0e6,#2f9bb0 60%,#124b63);border-radius:18px 18px 0 0;position:relative}
.wwg-modal__close{position:absolute;top:12px;right:12px;width:34px;height:34px;border-radius:50%;background:rgba(4,16,31,.6);border:1px solid rgba(255,255,255,.3);color:#fff;font-size:20px;line-height:1;cursor:pointer}
.wwg-modal__body{padding:20px 22px 24px}
.wwg-modal__title{font-family:Georgia,serif;font-size:25px;margin:2px 0 10px}
.wwg-modal__body p{font-size:14px;line-height:1.55;color:#cfe0ef;margin-bottom:14px}
.wwg-modal__row{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:14px}
.wwg-modal__chip{flex:1;min-width:150px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.16);border-radius:10px;padding:9px 12px;font-size:12.5px}
.wwg-modal__chip b{display:block;color:#fff;margin-bottom:2px}
.wwg-modal__order{background:rgba(233,182,77,.1);border:1px solid rgba(233,182,77,.3);border-radius:12px;padding:13px 16px;margin-bottom:16px;font-size:13px;color:#cfe0ef}
.wwg-modal__order b{color:#e9b64d}
.wwg-modal__order ul{margin:8px 0 0 18px;line-height:1.65}
.wwg-modal__links{display:flex;gap:10px;flex-wrap:wrap}
.wwg-modal__links a{font-size:13px;font-weight:600;text-decoration:none;padding:10px 15px;border-radius:999px}
.wwg-modal__links a.primary{background:#e9b64d;color:#3a2708}
.wwg-modal__links a.ghost{border:1px solid rgba(255,255,255,.25);color:#eaf2f8}

/* Contact page — image-free gradient hero (Great Vibes headline) */
.chero{position:relative;min-height:84vh;display:flex;align-items:center;justify-content:center;overflow:hidden;text-align:center;padding:90px 22px 70px}
.chero__bg{position:absolute;inset:0;background:linear-gradient(160deg,#062744 0%,#0a3a63 46%,#12507c 100%)}
.chero__tint{position:absolute;inset:0;background:
  radial-gradient(58% 52% at 80% 16%, rgba(77,182,240,.32), transparent 60%),
  radial-gradient(70% 62% at 10% 90%, rgba(31,95,168,.44), transparent 62%),
  linear-gradient(120deg, rgba(5,16,32,.55) 0%, rgba(10,40,78,.30) 44%, rgba(20,95,150,.22) 100%),
  linear-gradient(180deg, rgba(4,14,28,.10), rgba(3,12,26,.55))}
.chero__frame{position:absolute;inset:20px;border:1px solid rgba(130,195,240,.34);border-radius:14px;pointer-events:none}
.chero__inner{position:relative;z-index:2;max-width:920px;width:100%}
.chero__eyebrow{display:inline-flex;align-items:center;gap:12px;color:#8fd0f5;font-size:12.5px;letter-spacing:.36em;text-transform:uppercase;font-weight:600;margin-bottom:18px}
.chero__eyebrow::before,.chero__eyebrow::after{content:"";height:1px;width:40px;background:linear-gradient(90deg,transparent,#8fd0f5)}
.chero__eyebrow::after{background:linear-gradient(90deg,#8fd0f5,transparent)}
.chero__title{line-height:1.05;margin-bottom:20px}
.chero__script{font-family:'Great Vibes',cursive;font-weight:400;font-size:clamp(42px,7.5vw,82px);line-height:1.2;
  background:linear-gradient(180deg,#ffffff 0%,#d3ecff 46%,#4db6f0 100%);-webkit-background-clip:text;background-clip:text;color:transparent;
  filter:drop-shadow(0 6px 28px rgba(0,20,45,.55));display:inline-block;padding:.1em .18em .22em}
.chero__lede{font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(19px,2.4vw,26px);font-weight:500;color:#eaf1f6;max-width:640px;margin:0 auto 34px;line-height:1.5}
.chero__cta{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-bottom:44px}
.chero__btn{display:inline-flex;align-items:center;gap:9px;font-weight:600;font-size:15px;text-decoration:none;padding:15px 28px;border-radius:999px;transition:transform .2s ease,box-shadow .2s ease,background .2s ease}
.chero__btn--solid{background:linear-gradient(180deg,#5bc0f5,#2f8fd8);color:#04223b;box-shadow:0 12px 30px -12px rgba(47,143,216,.75)}
.chero__btn--solid:hover{transform:translateY(-2px);box-shadow:0 16px 36px -12px rgba(47,143,216,.95)}
.chero__btn--ghost{border:1px solid rgba(255,255,255,.5);color:#fff}
.chero__btn--ghost:hover{background:rgba(255,255,255,.12);transform:translateY(-2px)}
.chero__chips{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;max-width:820px;margin:0 auto}
.chero__chip{flex:1;min-width:210px;background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.16);border-radius:14px;padding:15px 18px;text-align:left;backdrop-filter:blur(8px)}
.chero__lbl{color:#7fc7ef;font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-weight:700;margin-bottom:5px}
.chero__val{font-size:14px;color:#eef4f8;line-height:1.4}
.chero__val b{font-weight:600;color:#fff}
@media(max-width:640px){.chero{min-height:88vh;padding:80px 18px 54px}.chero__frame{inset:12px}.chero__chips{flex-direction:column}.chero__lede{font-size:19px}}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: 0.01em;
  padding: 0.9rem 1.9rem; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
    background var(--transition), border-color var(--transition), color var(--transition);
}
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(14, 140, 175, 0.38); }

/* default outline = dark, for light backgrounds */
.btn-outline { background: transparent; border-color: var(--border-strong); color: var(--text); }
.btn-outline:hover { transform: translateY(-2px); border-color: var(--coral); color: var(--coral); }

/* outline over a hero image = white */
.hero .btn-outline, .image-band .btn-outline { border-color: rgba(255,255,255,0.75); color: #fff; }
.hero .btn-outline:hover, .image-band .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }

.btn-seafoam { background: var(--seafoam); color: #fff; }
.btn-seafoam:hover { background: #17876a; color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(31, 158, 122, 0.35); }

/* ══════════════════════════════════════════════════
   NAV — transparent + scrim over hero, solid black on scroll / non-hero pages
══════════════════════════════════════════════════ */
/* ══ UNIFIED STICKY HEADER — one surface: top row + nav row share the same background ══ */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition); }
/* scrim covers the WHOLE header (top row + nav) over the hero; fades out when solid */
.site-header::before { content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 100%); transition: opacity var(--transition); }
.site-header--solid { background: var(--black); box-shadow: 0 2px 14px rgba(0,0,0,0.3); }
.site-header--solid::before { opacity: 0; }

/* TOP ROW */
.topbar { position: relative; height: var(--topbar-h); display: flex; align-items: center; }
.topbar__inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; }
.topbar__right { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 0.7rem; }

.nav__logo { grid-column: 1; justify-self: start;
  font-family: 'Great Vibes', cursive; font-size: 2.5rem; font-weight: 400; color: #fff;
  line-height: 1; letter-spacing: .5px;
  display: inline-flex; align-items: baseline; gap: 0.3rem; white-space: nowrap; }
.nav__logo .accent { color: var(--teal); font-size: 1em; font-weight: 400; }
.nav__logo:hover { color: #fff; }

/* Solid turquoise oval — high-contrast tap-to-call in BOTH header states */
.nav__phone { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: 0.04rem; line-height: 1.12; white-space: nowrap; color: #fff;
  background: var(--coral); border: 1px solid var(--coral); border-radius: 999px; padding: 0.4rem 1.15rem;
  box-shadow: 0 2px 10px rgba(14,140,175,0.28);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition); }
.nav__phone::after { content: none !important; }
.nav__phone:hover { background: var(--coral-deep); border-color: var(--coral-deep); box-shadow: 0 4px 16px rgba(10,110,140,0.42); }
.nav__phone-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: #fff; }
.nav__phone-num { font-weight: 700; font-size: 0.95rem; color: #fff; }
.nav__cta { white-space: nowrap; }

/* NAV ROW — shares the header surface (transparent over hero, solid when scrolled); hairline divider above */
.navbar { background: transparent; height: var(--navbar-h); border-top: 1px solid rgba(255,255,255,0.16); }
.navbar__links { display: flex; align-items: center; justify-content: center; flex-wrap: nowrap;
  gap: 1.5rem; height: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; list-style: none; }
.navbar__links a { color: #fff; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  white-space: nowrap; transition: color var(--transition); }
.navbar__links a:hover, .navbar__links a[aria-current="page"] { color: var(--coral); }
.navbar__call { display: none; } /* call link shown only inside the mobile hamburger menu */
.navbar__call a { color: var(--coral); font-weight: 700; }

/* nav dropdowns — same slim-black theme; reveal on hover / focus (desktop) */
.navbar__dd { position: relative; }
.navbar__caret { font-size: 0.7em; margin-left: 0.15rem; }
.navbar__menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(0.6rem);
  min-width: 168px; list-style: none; margin: 0; padding: 0.4rem;
  background: #0c0c0c; border: 1px solid rgba(255,255,255,0.12); border-radius: 0.55rem;
  box-shadow: 0 14px 36px rgba(0,0,0,0.5); z-index: 1001;
  opacity: 0; visibility: hidden; transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.navbar__dd:hover .navbar__menu, .navbar__dd:focus-within .navbar__menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0.1rem);
}
.navbar__menu li { width: 100%; }
.navbar__menu a { display: block; padding: 0.55rem 0.85rem; border-radius: 0.4rem; white-space: nowrap; }
.navbar__menu a:hover { background: rgba(14,140,175,0.18); color: var(--coral); }

/* Dot separators between every top-level nav item (desktop bar only) */
@media (min-width: 761px) {
  .navbar__links { gap: 0; }
  .navbar__links > li::before { content: "·"; color: rgba(255,255,255,0.45); margin: 0 0.85rem; pointer-events: none; }
  .navbar__links > li.navbar__call::before,
  .navbar__links > li.navbar__call + li::before { content: none; }
}

/* hamburger (mobile only) */
.navbar__toggle { display: none; background: none; border: 0; cursor: pointer; width: 2.6rem; height: 2.6rem; position: relative; }
.navbar__toggle span { position: absolute; left: 0.5rem; right: 0.5rem; height: 2px; background: #fff;
  transition: transform var(--transition), opacity var(--transition), top var(--transition); }
.navbar__toggle span:nth-child(1) { top: 0.85rem; }
.navbar__toggle span:nth-child(2) { top: 1.25rem; }
.navbar__toggle span:nth-child(3) { top: 1.65rem; }
.site-header.open .navbar__toggle span:nth-child(1) { top: 1.25rem; transform: rotate(45deg); }
.site-header.open .navbar__toggle span:nth-child(2) { opacity: 0; }
.site-header.open .navbar__toggle span:nth-child(3) { top: 1.25rem; transform: rotate(-45deg); }

/* SOCIAL ICONS (placeholder until accounts go live) */
.topbar__social { grid-column: 2; justify-self: center; display: inline-flex; align-items: center; gap: 0.45rem; }
.social-bar { display: inline-flex; align-items: center; gap: 0.55rem; }
.social-ico { width: 2rem; height: 2rem; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; color: #fff; border: 1px solid rgba(255,255,255,0.4);
  transition: color var(--transition), border-color var(--transition), background var(--transition); }
.social-ico svg { width: 1.02rem; height: 1.02rem; fill: currentColor; display: block; }
.social-ico:hover { color: var(--coral); border-color: var(--coral); }
.social-ico[aria-disabled="true"] { cursor: default; }
.social-soon { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.72); white-space: nowrap; }
.footer .social-bar { margin-top: 1rem; }
.footer .social-soon { display: block; margin-top: 0.5rem; color: rgba(255,255,255,0.5); }

/* Official social links (footer) — static markup with rel="me" for SEO identity */
.ebc-social { display: flex; gap: 1rem; align-items: center; }
.ebc-social a { color: inherit; opacity: 0.85; transition: opacity 0.2s, transform 0.2s; display: inline-flex; }
.ebc-social a:hover { opacity: 1; transform: translateY(-2px); }
.footer .ebc-social { margin-top: 1rem; }

/* Dropdowns — dark panel to match the black header */
.nav__item--has-dropdown { position: relative; }
.nav__parent .caret { display: inline-block; font-size: 0.7em; margin-left: 0.25rem; transition: transform var(--transition); transform: translateY(1px); }
.nav__item--has-dropdown:hover .caret,
.nav__item--has-dropdown:focus-within .caret,
.nav__item--has-dropdown.open .caret { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute; top: 100%; left: 0; min-width: 210px; list-style: none;
  margin: 0.6rem 0 0; padding: 0.45rem;
  background: #0c0c0c; border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); box-shadow: 0 14px 40px rgba(0,0,0,0.5); z-index: 1001;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown,
.nav__item--has-dropdown.open .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown li { width: 100%; }
.nav__dropdown a { display: block; padding: 0.6rem 0.85rem; border-radius: 0.55rem; color: #fff; font-size: 0.95rem; white-space: nowrap; }
.nav__dropdown a::after { content: none !important; }
.nav__dropdown a:hover { background: rgba(14, 140, 175,0.16); color: var(--coral); }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; width: 2.75rem; height: 2.75rem; position: relative; }
.nav__toggle span {
  position: absolute; left: 0.5rem; right: 0.5rem; height: 2px; background: #fff;
  transition: transform var(--transition), opacity var(--transition), top var(--transition);
}
.nav__toggle span:nth-child(1) { top: 0.9rem; }
.nav__toggle span:nth-child(2) { top: 1.35rem; }
.nav__toggle span:nth-child(3) { top: 1.8rem; }
.nav.open .nav__toggle span:nth-child(1) { top: 1.35rem; transform: rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { top: 1.35rem; transform: rotate(-45deg); }

/* ══════════════════════════════════════════════════
   HERO — full-bleed, headline in the LEFT third
══════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
  padding-top: var(--nav-height);
  /* CSS fallback: dark teal → black. Replace with hero-aerial.jpg via background-image. */
  background: linear-gradient(120deg, #0c3b42 0%, #06181c 55%, #000000 100%);
  background-size: cover; background-position: center;
}
/* hero photo as a real <img> (preloadable LCP) — sits beneath the scrims/content */
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 45%; z-index: 0;
}
/* left scrim so white headline stays legible over bright water */
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 32%, rgba(0,0,0,0) 64%);
}
/* bottom-up scrim behind headline / trust line / CTA (keeps the upper-third rainbow clear) */
.hero--photo::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: auto;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 35%, transparent 65%);
}
/* soft fade from the hero photo into the warm off-white body — kills the hard bottom edge.
   Sits above the photo + scrims (z1) but below the hero content (z2), so it blends the image
   into the body without washing over the headline/CTA/cruise card. Colour = --off-white #FBF8F2. */
.hero__fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 7%;
  z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(251,248,242,0) 0%,
    rgba(251,248,242,0) 55%,
    rgba(251,248,242,1) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 3rem 1.5rem; }
.hero__content { max-width: 600px; }
.hero__title { color: #fff; font-size: clamp(2.7rem, 6vw, 5rem); line-height: 1.02; max-width: 16ch; }
.hero__title .accent { color: var(--coral); }
.hero__sub { color: rgba(255,255,255,0.92); font-size: clamp(1.15rem, 2.3vw, 1.5rem); margin-top: 1.1rem; font-weight: 400; max-width: 46ch; }
.hero__tag { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.1rem, 2.4vw, 1.5rem); color: rgba(255,255,255,0.88); margin-top: 0.75rem; letter-spacing: 0.03em; }
.hero__buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }
.hero__trust {
  margin-top: 1.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.3rem 0.7rem;
  color: rgba(255,255,255,0.9); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
.hero__trust-sep { color: rgba(255,255,255,0.45); }

/* Cruise CTA card (dark translucent on hero) */
.cruise-card {
  margin-top: 2.75rem; max-width: 540px;
  background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg); padding: 1.6rem 1.75rem; backdrop-filter: blur(6px);
}
.cruise-card h3 { font-size: 1.7rem; margin-bottom: 0.3rem; color: #fff; }
.cruise-card p { color: rgba(255,255,255,0.8); font-size: 0.98rem; margin-bottom: 1.1rem; }
.cruise-card__btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cruise-card .btn { padding: 0.7rem 1.4rem; font-size: 0.95rem; }
.badge-soon {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); border: 1px solid var(--teal); border-radius: 999px; padding: 0.12rem 0.55rem;
  margin-left: 0.5rem; vertical-align: middle;
}

/* ══════════════════════════════════════════════════
   INTERIOR PAGE HEADER (light)
══════════════════════════════════════════════════ */
.page-header {
  padding-top: calc(var(--nav-height) + 3.5rem); padding-bottom: 3rem;
  background: var(--sand); border-bottom: 1px solid var(--border);
}
.page-header h1 { font-size: clamp(2.6rem, 7vw, 5rem); color: var(--text); }
.page-header p { color: var(--text-dim); font-size: 1.15rem; margin-top: 0.75rem; max-width: 65ch; }

/* ── Fleet page hero — Pau Hana & Kai Lana wide panorama + teal scrim (scoped; does not affect other .page-header pages) ── */
.page-header--ocean {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;  /* anchor heading + paragraph to the bottom */
  min-height: clamp(540px, 74vh, 640px);                              /* taller so the open water below the boats has room for the text */
  padding-bottom: clamp(1.25rem, 3vh, 2rem);                          /* drop the text band down into that water */
  border-bottom: none;                 /* no border line under the block */
  background-color: #073A40;           /* deep-teal fallback while the photo loads */
  background-image:
    linear-gradient(0deg, rgba(7,42,48,0.82) 0%, rgba(7,42,48,0.50) 12%, rgba(7,42,48,0.00) 30%),  /* slim bottom band — keeps the boats above it clear */
    image-set(url('images/fleet-2026/hero-pau-hana-kai-lana-panorama-1920.webp') type('image/webp'),
              url('images/fleet-2026/hero-pau-hana-kai-lana-panorama.jpg') type('image/jpeg'));        /* Pau Hana & Kai Lana wide panorama */
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}
.page-header--ocean .wrap {
  position: relative; z-index: 1;        /* content above the scrim */
  display: flex; flex-direction: column; align-items: flex-start;  /* full-width text along the bottom */
  text-align: left;
}
.page-header--ocean .wrap > * { max-width: none; }
.page-header--ocean .section-label { color: #8AE3C6; }       /* light seafoam eyebrow */
.page-header--ocean h1 {
  color: #FFFFFF;
  white-space: nowrap;                        /* keep the headline to one slim line */
  font-size: clamp(1.05rem, 3.4vw, 2.4rem);
  line-height: 1.05;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);  /* keep white text crisp over a bright photo */
}
.page-header--ocean p  {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.8rem, 1.3vw, 0.95rem);   /* slim supporting line */
  line-height: 1.4;
  text-shadow: 0 1px 10px rgba(0,0,0,0.30);
}
/* Soft fade into the light section below (every ocean hero flows into a
   sand/off-white section) instead of a hard horizontal edge. The transparent
   top keeps the headline clear, and z-index:0 keeps it behind the text band,
   jump-menu pills, etc. — they stay fully legible on top. */
.page-header--ocean::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 38px;
  background: linear-gradient(180deg, rgba(247,244,239,0) 0%, rgba(247,244,239,0) 55%, var(--sand) 100%);
  z-index: 0;
  pointer-events: none;
}
.page-header--ocean .meta-row,
.page-header--ocean .meta-row a { color: #8AE3C6; }          /* harmless if no meta-row exists */
/* jump-menu pills sit inside the white text band — make them legible over the photo */
.page-header--ocean .jump-menu { margin-top: 1rem; }
.page-header--ocean .jump-menu a {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.55);
  background: rgba(7,42,48,0.30);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.page-header--ocean .jump-menu a:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
/* No wave / no light element at the bottom — the photo block ends flush against the section below. */

.page-header .meta-row { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1.5rem; color: var(--teal); font-weight: 500; }
.page-header .meta-row a { color: var(--teal); }
.page-header .meta-row a:hover { color: var(--coral); }
.page-header .meta-row span { display: inline-flex; align-items: center; gap: 0.45rem; }

/* /cruise "P.O.V." editorial block — understated, no box; kicker sits inline with the lead line */
.pov { margin-top: 1.5rem; max-width: 640px; }
.pov-eyebrow {
  font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal); margin-right: 0.75rem;
}
.pov-star {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 600;
  font-size: 1.5rem; line-height: 1.45; color: var(--text); margin: 0 0 1.2rem;
}
.pov-body { font-size: 1.06rem; line-height: 1.8; color: var(--text-dim); max-width: 640px; margin: 1.2rem 0; }
.pov-hook {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 600;
  font-size: 1.35rem; color: var(--text); max-width: 640px; margin: 1.4rem 0 0;
}

/* Dream Girl (Soggy Dollar) — photo column left of the lead paragraph, with breathing room */
.dg-feature { display: grid; grid-template-columns: minmax(0, 42%) 1fr; gap: 2.25rem; align-items: start; margin: 0.5rem 0 0.5rem; }
.dg-feature__photos { display: flex; flex-direction: column; gap: 1.5rem; }
.dg-feature__photos img { width: 100%; height: auto; display: block; border-radius: 14px; border: 6px solid #fff; box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 10px 30px rgba(0,0,0,0.18); box-sizing: border-box; }
.dg-feature__text { align-self: center; }
@media (max-width: 760px) { .dg-feature { grid-template-columns: 1fr; gap: 1.5rem; } }

/* Featured vessel — full-width horizontal card (image left, details right) */
.boat-card.boat-card--feature { display: grid; grid-template-columns: minmax(0, 1.1fr) 0.9fr; align-items: stretch; margin-top: 1.5rem; }
.boat-card.boat-card--feature .boat-card__media { min-height: 340px; }
.boat-card.boat-card--feature .boat-card__body { align-self: center; padding: 2.4rem 2.6rem; }
.boat-card.boat-card--feature h3 { font-size: 2.4rem; }
@media (max-width: 760px) {
  .boat-card.boat-card--feature { grid-template-columns: 1fr; }
  .boat-card.boat-card--feature .boat-card__media { min-height: 240px; }
  .boat-card.boat-card--feature .boat-card__body { padding: 1.8rem; }
}

/* ══════════════════════════════════════════════════
   CARDS / GRIDS
══════════════════════════════════════════════════ */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.9rem; box-shadow: 0 2px 14px rgba(0,0,0,0.04);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); border-color: var(--coral); box-shadow: var(--shadow-hover); }
.card__icon { font-size: 2.4rem; margin-bottom: 0.85rem; }
.card h3 { font-size: 1.7rem; margin-bottom: 0.5rem; color: var(--text); }
.card p { color: var(--text-dim); font-size: 1rem; flex-grow: 1; }
.card__link { margin-top: 1.1rem; font-weight: 600; color: var(--coral); display: inline-flex; align-items: center; gap: 0.4rem; }
.card__link:hover { gap: 0.7rem; color: var(--coral-deep); }

.card--featured { border-color: var(--coral); box-shadow: 0 0 0 1px var(--coral), 0 12px 34px rgba(14, 140, 175,0.14); position: relative; }
.card--featured::before {
  content: 'Most Popular'; position: absolute; top: 1.2rem; right: 1.2rem;
  font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--coral); border-radius: 999px; padding: 0.25rem 0.7rem;
}

/* ── Trips cards: compact one-line headings + turquoise subtitle, centered featured badge ──
   Scoped to #trips so it does NOT affect the Destinations cards (also article.card). */
#trips article.card h3 {
  font-size: 1.35rem; white-space: nowrap; min-height: 1.6em;
  display: flex; flex-direction: column; justify-content: flex-start;
}
#trips article.card h3 .card__subtitle {
  display: block; font-size: 0.7em; font-weight: 500; color: #0E8CAF; /* turquoise accent, not coral */
  letter-spacing: 0.01em; margin-top: 0.1em; white-space: nowrap;
}
#trips .card--featured { padding-top: 1.9rem; }
#trips .card--featured::before {
  left: 50%; right: auto; top: 0; transform: translate(-50%, -50%);
  white-space: nowrap; padding: 0.18rem 1.1rem;
}

/* ── Vessel single framed photo (one clean photo per card, no swipe) ── */
article.vessel-card .vessel-card__photo.has-photo { border-radius: 18px; overflow: visible; padding: 1.1rem; }
.vessel-card__photo.has-photo img {
  width: 100%; height: auto; object-fit: contain; display: block; box-sizing: border-box;
  border-radius: 14px; border: 6px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 10px 30px rgba(0,0,0,0.18);
}
img[src*="kai-lana-trips.jpg"] { filter: brightness(1.12) saturate(1.25) contrast(1.04); }
.kai-shade-note { text-align: center; font-style: italic; color: #0E8CAF; margin-top: 0.6rem; }
.kai-cta-wrap { text-align: center; margin-top: 1.5rem; }

/* Dream Girl vessel card (#vessels) — two stacked photos (boat + Soggy Dollar), top-aligned, enlarged a little */
#dream-girl .vessel-card__photo { flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 1.1rem; }
#dream-girl .bvi-customs { margin: 1.5rem 0 0; }  /* CTA-above-customs spacing, scoped to this card only */
@media (min-width: 760px) {
  #dream-girl { grid-template-columns: 48% 1fr; }
}

/* ---- Inclusion chips ---- */
.inclusions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.5rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 999px;
  padding: 0.55rem 1.1rem; font-size: 0.95rem; color: var(--text); box-shadow: 0 1px 6px rgba(0,0,0,0.03);
}
.chip .ico { font-size: 1.15rem; }

/* ---- Info two-column (trip pages) ---- */
.info-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: start; }
#about .info-grid { align-items: center; }  /* center text beside the taller portrait family photo */
.info-block { margin-bottom: 2rem; }
.info-block h3 { font-size: 1.55rem; margin-bottom: 0.6rem; color: var(--text); }
.info-list { list-style: none; }
.info-list li { padding: 0.4rem 0 0.4rem 1.6rem; position: relative; color: var(--text-dim); }
.info-list li::before { content: '›'; position: absolute; left: 0; color: var(--coral); font-weight: 700; }

.callout {
  background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--coral);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0;
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
}
.callout--seafoam { border-left-color: var(--seafoam); }
.callout strong { color: var(--text); }

/* ---- Map placeholder panel ---- */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--white); }
.map-link {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.8rem; height: 320px; text-align: center; padding: 1.5rem; text-decoration: none; color: var(--text);
  background: linear-gradient(135deg, #e7eff0, #d6e6ea);
  transition: transform var(--transition);
}
.map-link:hover { transform: scale(1.01); color: var(--text); }
.map-link .pin { font-size: 2.75rem; line-height: 1; }
.map-link .label { font-weight: 600; font-size: 1.1rem; max-width: 32ch; color: var(--text); }
.map-link .go {
  display: inline-flex; align-items: center; gap: 0.4rem; background: var(--coral); color: #fff;
  font-weight: 600; font-size: 0.92rem; padding: 0.55rem 1.3rem; border-radius: 999px; transition: background var(--transition);
}
.map-link:hover .go { background: var(--coral-deep); }

/* ══════════════════════════════════════════════════
   FLEET / VESSELS
══════════════════════════════════════════════════ */
.boat-card { overflow: hidden; padding: 0; }
.boat-card__media {
  aspect-ratio: 16/9; background: linear-gradient(135deg, #dfeaec, #c9dde1);
  display: flex; align-items: center; justify-content: center; color: #6f8084;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; overflow: hidden;
}
.boat-card__media:has(img) { background: none; }
.boat-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* inline boat photo inside trip "Your Boat" blocks */
.boat-photo { width: 100%; border-radius: var(--radius-lg); display: block; margin-top: 1rem; box-shadow: 0 2px 14px rgba(0,0,0,0.18); }
/* centered, capped feature photo (good for portrait shots) */
.feature-photo { display: block; width: 100%; max-width: 460px; margin: 1.75rem auto 0; border-radius: var(--radius-lg); box-shadow: 0 4px 20px rgba(0,0,0,0.22); }

/* ---- Life Aboard gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin-top: 2rem; }
.gallery-tile { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 2px 14px rgba(0,0,0,0.12); }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--transition); }
.gallery-tile:hover img { transform: scale(1.05); }
.gallery-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1rem 0.85rem; color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0));
}
.boat-card__body { padding: 1.8rem; }
.boat-card__tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); margin-bottom: 0.6rem; }
.boat-card__tag.cruise { color: var(--seafoam); }
.boat-card h3 { font-size: 2rem; margin-bottom: 0.4rem; color: var(--text); }
.boat-card dl { display: grid; grid-template-columns: auto 1fr; gap: 0.35rem 1rem; margin: 1rem 0; font-size: 0.95rem; }
.boat-card dt { color: var(--text-faint); }
.boat-card dd { color: var(--text); }

/* ══════════════════════════════════════════════════
   OUR VESSELS — grouped private fleet
══════════════════════════════════════════════════ */
.vessel-group { margin-top: 3.5rem; }
.vessel-group__loc {
  display: inline-block; position: relative; padding-bottom: 0.55rem;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem); color: var(--text);
}
.vessel-group__loc::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 3rem; height: 3px;
  background: var(--coral); border-radius: 2px;
}
.vessel-group__subhead { color: var(--text-dim); font-size: 1.1rem; margin: 0.85rem 0 1.75rem; max-width: 64ch; }

/* Cruise concierge callout — coral-accented panel */
.concierge {
  background: linear-gradient(135deg, rgba(14, 140, 175,0.05), rgba(14, 140, 175,0.02)), var(--white);
  border: 1px solid rgba(14, 140, 175,0.3); border-left: 5px solid var(--coral);
  border-radius: var(--radius-lg); padding: 2rem 2.25rem; margin-bottom: 2.25rem; box-shadow: var(--shadow);
}
.concierge h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--text); margin-bottom: 0.6rem; }
.concierge p { color: var(--text-dim); max-width: 68ch; margin-bottom: 1.4rem; }

/* Vessel card — photo + body */
.vessel-card {
  display: grid; grid-template-columns: 1fr; overflow: hidden;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: 0 2px 14px rgba(0,0,0,0.05); margin-bottom: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.vessel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(14, 140, 175,0.4); }
.vessel-card__photo {
  position: relative; min-height: 240px; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #4d6b6b; overflow: hidden;
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  background: linear-gradient(135deg, #eaf3f3, #dcebeb); /* soft turquoise-tinted neutral */
}
/* placeholder (no photo yet) — looks intentional, not broken */
.vplaceholder { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; padding: 1.5rem; color: #4d6b6b; }
.vplaceholder small { font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75; }

/* ---- vessel photo gallery: ONE hero + swipe for more, full boat (no crop) ---- */
.vgallery { position: relative; width: 100%; }
.vgallery__viewport {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch;
}
.vgallery__viewport::-webkit-scrollbar { display: none; }
.vgallery__slide {
  flex: 0 0 100%; scroll-snap-align: center; margin: 0;
  aspect-ratio: 4 / 3; /* matches the landscape boat photos; portraits/panoramas mat gracefully */
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #eaf3f3, #dcebeb);
}
.vgallery__slide img { width: 100%; height: 100%; object-fit: contain; display: block; } /* FULL boat, never cropped */
.vgallery__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 2.4rem; height: 2.4rem; border-radius: 50%; border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.9); color: var(--coral); font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: background var(--transition), color var(--transition);
}
.vgallery__arrow:hover { background: var(--coral); color: #fff; }
.vgallery__arrow--prev { left: 0.5rem; }
.vgallery__arrow--next { right: 0.5rem; }
.vgallery__dots { position: absolute; bottom: 0.6rem; left: 0; right: 0; display: flex; justify-content: center; gap: 0.4rem; z-index: 2; }
.vgallery__dot { width: 8px; height: 8px; padding: 0; border-radius: 50%; border: 1px solid rgba(0,0,0,0.25); background: rgba(255,255,255,0.7); cursor: pointer; }
.vgallery__dot[aria-current="true"] { background: var(--coral); border-color: var(--coral); }
.vgallery[data-single] .vgallery__arrow, .vgallery[data-single] .vgallery__dots { display: none; }
.vessel-card__body { padding: 2rem; }
.vessel-card__badge {
  display: inline-block; color: var(--coral); font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.6rem;
}
.vessel-card__name { font-size: 2.1rem; color: var(--text); margin-bottom: 0.4rem; }
.vessel-card__type {
  font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 1.1rem;
}
.vessel-card__desc { color: var(--text-dim); margin-bottom: 1.3rem; }
.trip-callout {
  margin: 0 0 1.4rem; padding: 1.1rem 1.3rem;
  background: rgba(14, 140, 175, 0.06); border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius) var(--radius) 0; color: var(--text-dim); line-height: 1.6;
}
.trip-callout .lead { color: var(--coral); font-weight: 700; font-size: 1.12em; }

/* "Before you go" BVI customs action panel */
.bvi-customs {
  margin: 0 0 1.4rem; padding: 1.1rem 1.3rem;
  border: 1px solid rgba(14, 140, 175, 0.4); border-radius: var(--radius);
  background: rgba(14, 140, 175, 0.04);
}
.bvi-customs__head { font-family: 'Cormorant Garamond', serif; color: var(--coral); font-size: 1.5rem; font-weight: 700; line-height: 1.15; margin: 0 0 0.5rem; }
.bvi-customs > p { color: var(--text-dim); line-height: 1.55; font-size: 0.97rem; margin-bottom: 1rem; }
.bvi-customs__note { font-size: 0.82rem; color: var(--text-faint); margin: 0.7rem 0 0; }
/* button + receipt note share one row; note wraps below on narrow screens */
.bvi-customs__action { display: flex; align-items: center; flex-wrap: wrap; gap: 0.9rem; margin-top: 1rem; }
.bvi-customs__action .btn-sm { flex: 0 0 auto; }
.bvi-customs__action .bvi-customs__note { margin: 0; flex: 1 1 16rem; }
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.92rem; }
.spec-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1.4rem; }
.chip--teal {
  display: inline-flex; align-items: center; background: rgba(20,165,184,0.10);
  border: 1px solid rgba(20,165,184,0.32); color: var(--teal);
  font-size: 0.85rem; font-weight: 600; padding: 0.4rem 0.95rem; border-radius: 999px;
}
@media (min-width: 760px) {
  .vessel-card { grid-template-columns: 42% 1fr; align-items: stretch; }
  .vessel-card__photo { min-height: 340px; }
}

/* ══════════════════════════════════════════════════
   IMAGE BANDS (Midjourney swap targets, gradient fallback)
══════════════════════════════════════════════════ */
.image-band {
  position: relative; min-height: 46vh; display: flex; align-items: flex-end; overflow: hidden;
  background-size: cover; background-position: center; color: #fff;
}
.image-band--aerial { background: linear-gradient(120deg, #0e5563 0%, #093540 50%, #021216 100%); }
.image-band--reef { background: linear-gradient(160deg, #0a7d93 0%, #064b63 45%, #021a2b 100%); }
.image-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 100%); }
.image-band__cap { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 2.5rem 1.5rem; }
.image-band__cap h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); max-width: 18ch; }
.image-band__cap p { color: rgba(255,255,255,0.9); max-width: 48ch; margin-top: 0.5rem; }

/* ---- Photo slots ---- */
.photo-slot {
  aspect-ratio: 4/3; border-radius: var(--radius-lg); border: 1px dashed var(--seafoam);
  background: var(--seafoam-dim); display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--seafoam); font-size: 0.9rem; padding: 1rem; letter-spacing: 0.04em; overflow: hidden;
}
.photo-slot:has(img) { border-style: solid; border-color: var(--border); padding: 0; }
.photo-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Blue Bar hero override ---- */
.bluebar-hero { background: linear-gradient(120deg, #0f5e49 0%, #07281e 55%, #000000 100%); }
.bluebar-section .section-label { color: var(--seafoam); }

/* ══════════════════════════════════════════════════
   BLUE BAR — Coming Soon landing page
══════════════════════════════════════════════════ */
.vision__label {
  color: var(--coral); font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.vision .card__icon { font-size: 2.6rem; margin-bottom: 0.6rem; }

.coming-line { text-align: center; max-width: 820px; margin: 0 auto; }
.coming-line p {
  font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--text);
  font-size: clamp(1.5rem, 3.2vw, 2.3rem); line-height: 1.3;
}
.coming-line strong { color: var(--coral); font-style: normal; font-weight: 600; }

/* Notify form: center the reused newsletter form */
.notify-block { text-align: center; max-width: 620px; margin: 0 auto; }
.notify-block .newsletter-form { justify-content: center; }

/* Buildout gallery */
.gallery-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-tile {
  position: relative; aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden;
  display: flex; align-items: flex-end;
  background: linear-gradient(150deg, #1c1c1c 0%, #0b0b0b 100%);
  background-size: cover; background-position: center;
}
.gallery-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.6) 100%);
}
.gallery-tile span {
  position: relative; z-index: 2; color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif; font-size: 0.85rem; letter-spacing: 0.04em; padding: 0.85rem 1rem;
}
.gallery-cap {
  text-align: center; margin-top: 1.5rem;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.5rem; color: var(--text-dim);
}
@media (max-width: 760px) { .gallery-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .gallery-row { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   CONTACT STRIP (light band)
══════════════════════════════════════════════════ */
.contact-strip {
  text-align: center; border-top: 1px solid var(--border);
  background: radial-gradient(80% 140% at 50% 0%, rgba(14, 140, 175,0.07), transparent 60%), var(--sand);
}
.contact-strip h2 { font-size: clamp(2rem, 5vw, 3rem); color: var(--text); }
.contact-methods { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; margin-top: 1.75rem; }
.contact-methods a, .contact-methods span { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text); font-weight: 500; }
.contact-methods a:hover { color: var(--coral); }

/* ══════════════════════════════════════════════════
   FOOTER (solid black)
══════════════════════════════════════════════════ */
.footer { background: var(--black); border-top: 0; padding: 3rem 0 2rem; }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; align-items: flex-start; }
.footer__logo { font-family: 'Great Vibes', cursive; font-size: 2.2rem; font-weight: 400; line-height: 1; letter-spacing: .5px; color: #fff; }
.footer__logo .accent { color: var(--teal); font-size: inherit; font-weight: inherit; }
.footer p { color: rgba(255,255,255,0.7) !important; }
.footer__col h4 { font-size: 1.05rem; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 0.75rem; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 0.5rem; }
.footer__col a, .footer__col span { color: rgba(255,255,255,0.72); font-size: 0.95rem; }
.footer__col a:hover { color: var(--coral); }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.45); font-size: 0.85rem; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.5rem 1.5rem; }
.footer__bottom-links a { color: rgba(255,255,255,0.6); }
.footer__bottom-links a:hover { color: var(--coral); }
.footer__label { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); }
@media (max-width: 600px) { .footer__bottom { justify-content: center; text-align: center; } }

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

/* ══════════════════════════════════════════════════
   COGNITO FORM — light theme (contact page)
══════════════════════════════════════════════════ */
.cog-cognito {
  background: var(--white) !important; border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important; box-shadow: var(--shadow) !important;
  padding: 2.25rem 2rem !important; font-family: 'Inter', sans-serif !important;
}
.cog-cognito .cog-form__container, .cog-cognito .cog-body, .cog-cognito .cog-form__page { background: transparent !important; }
.cog-cognito .cog-heading, .cog-cognito h1 { font-family: 'Cormorant Garamond', serif !important; color: var(--text) !important; }
.cog-cognito .cog-label, .cog-cognito .cog-label label { color: var(--text) !important; font-family: 'Inter', sans-serif !important; font-weight: 600 !important; }
.cog-cognito .cog-help-text, .cog-cognito .cog-rich-text { color: var(--text-dim) !important; }
.cog-cognito .cog-asterisk, .cog-cognito .cog-required { color: var(--coral) !important; }
.cog-cognito .el-input__inner, .cog-cognito .el-textarea__inner,
.cog-cognito input[type="text"], .cog-cognito input[type="email"], .cog-cognito input[type="tel"],
.cog-cognito textarea, .cog-cognito select {
  background: var(--white) !important; border: 1.5px solid var(--border-strong) !important;
  border-radius: 0.5rem !important; color: var(--text) !important;
}
.cog-cognito .el-input__inner:focus, .cog-cognito .el-textarea__inner:focus,
.cog-cognito input:focus, .cog-cognito textarea:focus, .cog-cognito select:focus {
  border-color: var(--coral) !important; box-shadow: var(--shadow-glow) !important; outline: none !important;
}
.cog-cognito input::placeholder, .cog-cognito textarea::placeholder { color: var(--text-faint) !important; }
.cog-cognito .cog-button--primary, .cog-cognito .el-button.cog-button {
  background: var(--coral) !important; border: 0 !important; color: #fff !important; border-radius: 999px !important;
  font-family: 'Inter', sans-serif !important; font-weight: 600 !important; padding: 0.85rem 2.25rem !important;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition) !important;
}
.cog-cognito .cog-button--primary:hover, .cog-cognito .el-button.cog-button:hover {
  background: var(--coral-deep) !important; transform: translateY(-2px) !important; box-shadow: 0 8px 22px rgba(14, 140, 175,0.4) !important;
}

/* ══════════════════════════════════════════════════
   NEWSLETTER SIGNUP (Mailchimp JSONP)
══════════════════════════════════════════════════ */
.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: stretch; max-width: 500px; margin: 1.5rem auto 0; }
.newsletter-input {
  flex: 1 1 260px; min-width: 0; background: var(--white); border: 1.5px solid var(--border-strong);
  border-radius: 999px; padding: 0.85rem 1.4rem; color: var(--text); font-family: 'Inter', sans-serif; font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.newsletter-input:focus { outline: none; border-color: var(--coral); box-shadow: var(--shadow-glow); }
.newsletter-input::placeholder { color: var(--text-faint); }
.newsletter-btn {
  flex: 0 0 auto; background: var(--coral); color: #fff; border: 0; border-radius: 999px;
  padding: 0.85rem 1.9rem; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
}
.newsletter-btn:hover:not(:disabled) { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(14, 140, 175,0.4); }
.newsletter-btn:disabled { opacity: 0.55; cursor: default; }
.newsletter-message { margin-top: 1.1rem; font-weight: 500; min-height: 1.3em; font-size: 1.02rem; opacity: 0; transform: translateY(4px); transition: opacity 0.4s ease, transform 0.4s ease; }
.newsletter-message.show { opacity: 1; transform: none; }
.newsletter-message--success { color: var(--teal); }
.newsletter-message--error { color: #d9534f; }

/* ══════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════ */
.check-list, .excl-list { list-style: none; margin-top: 1.75rem; display: grid; gap: 1.15rem; max-width: 760px; }
.check-list li, .excl-list li { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; }
.check-list li::before {
  content: '✓'; display: inline-flex; align-items: center; justify-content: center;
  width: 1.7rem; height: 1.7rem; border-radius: 50%; flex: none;
  background: rgba(14, 140, 175, 0.12); color: var(--coral); font-weight: 700; font-size: 0.9rem;
  margin-top: 0.15rem;
}
.excl-list li::before {
  content: '–'; display: inline-flex; align-items: center; justify-content: center;
  width: 1.7rem; height: 1.7rem; flex: none; color: var(--text-faint); font-weight: 700; font-size: 1.3rem;
  margin-top: 0.1rem;
}
.check-list li > div, .excl-list li > div { color: var(--text-dim); line-height: 1.55; }
.check-list b, .excl-list b { color: var(--text); font-weight: 600; }

/* FAQ accordion */
.faq-group { max-width: 840px; }
.faq-cat {
  color: var(--coral); font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer; position: relative; padding: 1.15rem 2.5rem 1.15rem 0;
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--text);
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 0.1rem; top: 50%; transform: translateY(-50%);
  font-family: 'Inter', sans-serif; font-size: 1.5rem; font-weight: 400; color: var(--coral); line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--coral); }
.faq-item summary:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; border-radius: 3px; }
.faq-answer { padding: 0 2.5rem 1.3rem 0; color: var(--text-dim); line-height: 1.65; max-width: 72ch; }
.faq-answer a { color: var(--coral); font-weight: 600; }
.faq-answer a:hover { color: var(--coral-deep); }

/* Jump-link menu for long pages */
.jump-menu { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.6rem; }
.jump-menu a {
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--coral); border: 1px solid rgba(14, 140, 175, 0.4); border-radius: 999px; padding: 0.4rem 1.05rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.jump-menu a:hover { background: var(--coral); border-color: var(--coral); color: #fff; }

/* Booking steps — horizontal on desktop, stacked on mobile */
.book-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; margin-top: 2.5rem; counter-reset: step; }
.book-step { text-align: center; }
.book-step__num {
  width: 3rem; height: 3rem; border-radius: 50%; background: var(--coral); color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.2rem;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.book-step h3 { font-size: 1.35rem; margin-bottom: 0.4rem; color: var(--text); }
.book-step p { color: var(--text-dim); font-size: 0.96rem; }
@media (max-width: 860px) {
  .book-steps { grid-template-columns: 1fr; gap: 1.75rem; }
  .book-step { text-align: left; display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; }
  .book-step__num { margin-bottom: 0; }
}

/* ══════════════════════════════════════════════════
   REVIEWS CAROUSEL
══════════════════════════════════════════════════ */
.carousel { position: relative; margin-top: 0.5rem; }
.carousel__viewport { overflow: hidden; }
.carousel__track { display: flex; gap: 1.5rem; transition: transform 0.5s ease; will-change: transform; align-items: stretch; }
.carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 2.8rem; height: 2.8rem; border-radius: 50%;
  border: 1px solid var(--border-strong); background: rgba(255,255,255,0.94); color: var(--coral);
  font-size: 1.5rem; line-height: 1; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.carousel__arrow--prev { left: -0.6rem; }
.carousel__arrow--next { right: -0.6rem; }
.carousel__arrow:hover { background: var(--coral); color: #fff; border-color: var(--coral); }
@media (max-width: 640px) {
  .carousel__arrow--prev { left: 0; }
  .carousel__arrow--next { right: 0; }
  .review-card { padding-left: 3rem; padding-right: 3rem; } /* clear the overlay arrows */
}
.carousel__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.75rem; }
.carousel__dot {
  width: 0.7rem; height: 0.7rem; border-radius: 50%; border: 0; cursor: pointer; padding: 0;
  background: rgba(14, 140, 175, 0.25); transition: background var(--transition), transform var(--transition);
}
.carousel__dot[aria-selected="true"] { background: var(--coral); transform: scale(1.25); }

.review-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 1.9rem; display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.review-card__stars { color: var(--coral); font-size: 1.05rem; letter-spacing: 0.12em; margin-bottom: 0.9rem; }
.review-card__quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.28rem;
  color: var(--text); line-height: 1.4; flex-grow: 1; margin-bottom: 1.3rem;
}
.review-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.review-card__name { font-weight: 600; color: var(--text); }
.review-card__source {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--coral); background: rgba(14, 140, 175, 0.1); border-radius: 999px; padding: 0.3rem 0.7rem; white-space: nowrap;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 760px) {
  /* mobile header = top bar only; second bar collapses into the hamburger */
  :root { --nav-height: 4.9rem; }
  .navbar { display: none; }
  .navbar__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .topbar__social { display: none; }   /* header social hidden on phones — footer social remains */
  .nav__cta { display: none; }         /* keep top bar uncluttered; phone pill stays */
  .nav__logo { font-size: 1.95rem; }
  .nav__phone { display: none; }       /* phone moves into the hamburger menu on phones (space) */
  .navbar__call { display: block; }

  /* opened hamburger = full-width black panel of ALL nav links, under the top bar */
  .site-header.open .navbar {
    display: block; position: absolute; top: var(--topbar-h); left: 0; right: 0;
    background: var(--black); border-top: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 14px 30px rgba(0,0,0,0.4); height: auto;
  }
  .site-header.open .navbar__links {
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; height: auto; padding: 0.4rem 0;
  }
  .site-header.open .navbar__links li { width: 100%; }
  .site-header.open .navbar__links a { display: block; padding: 0.9rem 1.5rem; font-size: 0.95rem; }
  /* dropdowns flatten inside the mobile menu — children shown indented, always visible */
  .site-header.open .navbar__menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: 0; box-shadow: none; margin: 0; padding: 0; min-width: 0;
  }
  .site-header.open .navbar__menu a { padding: 0.7rem 1.5rem 0.7rem 2.6rem; font-size: 0.9rem; color: rgba(255,255,255,0.72); }
  .site-header.open .navbar__caret { display: none; }

  section { padding: 3.75rem 0; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 1.75rem; }
  .hero__title { max-width: none; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .newsletter-message { transition: none; }
}

/* ---- Display-only "Call" elements: keep the look, remove all interaction ---- */
.is-static {
  cursor: default;
  pointer-events: none;   /* no hover/click interaction */
}
