/* ============================================================
   KRABI FEELGOOD — photo-led redesign
   Display: Fraunces · Text/UI: Hanken Grotesk
   Accent: teal (--sea) for brand, coral (--coral) for actions
   ============================================================ */

*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

:root{
  --ink:#0B1F22;        /* near-black teal, primary text */
  --ink-soft:#2C3F40;   /* secondary text */
  --muted:#62716F;      /* tertiary text */
  --faint:#8A9794;
  --line:rgba(11,31,34,.10);
  --line-2:rgba(11,31,34,.06);

  --bg:#F4EFE6;         /* warm sand — page background */
  --bg-2:#EFE8DB;       /* deeper sand */
  --bg-3:#E6DFD0;
  --surface:#FAF6EE;    /* card surface (slightly lighter than page) */

  --sea:#0E8F8A;        /* brand teal */
  --sea-deep:#0A6E6A;
  --sea-700:#075855;
  --sea-tint:#E5F2F0;

  --coral:#F0633C;      /* action */
  --coral-deep:#DC4F2A;
  --gold:#E89A33;

  --r:16px;
  --r-sm:10px;
  --r-lg:26px;

  --shadow-sm:0 1px 2px rgba(11,31,34,.05), 0 4px 12px -6px rgba(11,31,34,.10);
  --shadow:0 2px 4px rgba(11,31,34,.05), 0 18px 40px -20px rgba(11,31,34,.22);
  --shadow-lg:0 6px 14px rgba(11,31,34,.08), 0 40px 70px -32px rgba(11,31,34,.34);

  --maxw:1180px;
  --pad:clamp(18px, 5vw, 44px);
  --header-h:68px;      /* header height — keep the fixed menu/backdrop in sync */

  --ff-display:"Fraunces", Georgia, "Times New Roman", serif;
  --ff-sans:"Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

body{
  margin:0;
  font-family:var(--ff-sans);
  color:var(--ink);
  background:var(--bg);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }

/* ---------- type helpers ---------- */
h1,h2,h3,h4,.h1{ font-family:var(--ff-display); font-weight:500; line-height:1.08; margin:0; letter-spacing:-.01em; color:var(--ink); }
.eyebrow{
  font-family:var(--ff-sans); font-weight:600; font-size:.72rem;
  letter-spacing:.16em; text-transform:uppercase; color:var(--sea-deep);
  display:inline-block;
}
.eyebrow.on-dark{ color:#9FE0D6; }
.lede{ font-size:clamp(1.05rem,1rem + .5vw,1.3rem); color:var(--ink-soft); line-height:1.55; }
.muted{ color:var(--muted); }

.wrap{
  width:100%; max-width:var(--maxw); margin-inline:auto;
  padding-inline:var(--pad);
  /* with viewport-fit=cover, keep content clear of the notch in landscape */
  padding-inline:max(var(--pad), env(safe-area-inset-left)) max(var(--pad), env(safe-area-inset-right));
}
section{ position:relative; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  font-weight:600; font-size:.98rem; line-height:1;
  padding:.95em 1.4em; border-radius:999px; border:1.5px solid transparent;
  min-height:48px; transition:transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{ background:var(--coral); color:#fff; box-shadow:0 8px 22px -10px rgba(240,99,60,.8); }
.btn-primary:hover{ background:var(--coral-deep); box-shadow:0 12px 26px -10px rgba(240,99,60,.9); }
.btn-dark{ background:var(--ink); color:#fff; }
.btn-dark:hover{ background:#13312F; }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--ink); }
.btn-white{ background:rgba(255,255,255,.16); color:#fff; border-color:rgba(255,255,255,.55); backdrop-filter:blur(6px); }
.btn-white:hover{ background:#fff; color:var(--ink); border-color:#fff; }
.btn-sea{ background:var(--sea); color:#fff; }
.btn-sea:hover{ background:var(--sea-deep); }
.btn-gold{ background:var(--gold); color:var(--ink); box-shadow:0 8px 22px -12px rgba(232,154,51,.9); }
.btn-gold:hover{ background:#D98A28; box-shadow:0 12px 26px -12px rgba(232,154,51,1); }
.btn-block{ width:100%; }
.btn-sm{ min-height:42px; padding:.7em 1.1em; font-size:.9rem; }

.arrow-link{ display:inline-flex; align-items:center; gap:.4em; font-weight:600; color:var(--sea-deep); }
.arrow-link svg{ transition:transform .2s ease; }
.arrow-link:hover svg{ transform:translateX(3px); }

/* ---------- photo frame with graceful fallback ---------- */
.ph{ position:relative; overflow:hidden; background:var(--ph,linear-gradient(155deg,#2F9E91,#0A6E6A)); }
.ph img{ width:100%; height:100%; object-fit:cover; transition:transform .7s cubic-bezier(.2,.7,.2,1), opacity .4s ease; }
.ph img.failed{ opacity:0; }
.ph::after{ /* faint sheen so fallback gradients don't look flat */
  content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(120% 80% at 80% 0%, rgba(255,255,255,.18), transparent 60%);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(255,255,255,.78);
  backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid transparent;
  border-bottom-left-radius:18px; border-bottom-right-radius:18px;
  transition:border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled{ border-bottom-color:var(--line); box-shadow:0 6px 20px -18px rgba(11,31,34,.5); }
/* transparent over hero on home */
body.home-top .site-header:not(.scrolled){ background:transparent; }
body.home-top .site-header:not(.scrolled) .brand,
body.home-top .site-header:not(.scrolled) .nav-link,
body.home-top .site-header:not(.scrolled) .burger{ color:#fff; }
body.home-top .site-header:not(.scrolled) .brand-mark{ background:#fff; color:var(--sea-deep); }
body.home-top .site-header:not(.scrolled) .nav-link::after{ background:#fff; }

.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:1rem; height:var(--header-h); }
.brand{ display:flex; align-items:center; gap:.6rem; font-family:var(--ff-display); font-weight:600; font-size:1.18rem; letter-spacing:-.02em; color:var(--ink); }
.brand-mark{
  width:34px; height:34px; border-radius:9px; background:var(--sea); color:#fff;
  display:grid; place-items:center; flex:none;
}
.brand-mark svg{ width:20px; height:20px; }
.brand small{ display:block; font-family:var(--ff-sans); font-weight:600; font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); margin-top:2px; }
body.home-top .site-header:not(.scrolled) .brand small{ color:#F4B962; }

.nav{ display:none; align-items:center; gap:2rem; margin-left:auto; margin-right:1.6rem; }
.nav-link{ position:relative; font-weight:600; font-size:.95rem; color:var(--ink-soft); padding:.3rem 0; }
.nav-link::after{ content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px; background:var(--sea); transition:right .25s ease; }
.nav-link:hover::after,.nav-link.active::after{ right:0; }
.nav-link.active{ color:var(--ink); }
.header-cta{ display:none; }
.header-actions{ display:none; align-items:center; gap:.75rem; }

/* floating bottom-right control holding the language + currency switches */
/* compact combined pill: language as a circular 2-letter badge + currency code */
.floating-switch{
  position:fixed; right:clamp(12px,2vw,26px); bottom:clamp(12px,2vw,26px); z-index:75;
  right:max(clamp(12px,2vw,26px), env(safe-area-inset-right));
  bottom:max(clamp(12px,2vw,26px), env(safe-area-inset-bottom));
  display:inline-flex; align-items:center; gap:3px;
  background:var(--surface); border:1px solid var(--line); border-radius:999px;
  box-shadow:0 10px 28px -12px rgba(11,31,34,.45); padding:4px;
  transition:transform .3s ease, opacity .3s ease;
}
/* tuck away while the visitor scrolls down (content first); any upward scroll brings it back */
body.scroll-down .floating-switch{ transform:translateY(calc(100% + 40px)); opacity:0; pointer-events:none; }
/* landscape phones: the sticky booking bar + pill would eat a third of the
   screen — the burger menu carries the same pickers there */
@media (max-height:480px){ .floating-switch{ display:none; } }
/* hidden while the slide-down menu is open (the menu carries its own pickers) */
body.menu-open .floating-switch{ display:none; }
/* sit above the mobile sticky booking bar (a pill ~60px tall at bottom:12px) */
body.show-mobilebar .floating-switch{ bottom:calc(84px + env(safe-area-inset-bottom)); }
body.show-mobilebar.booking-visible .floating-switch,
body.show-mobilebar.footer-visible .floating-switch{ bottom:clamp(12px,2vw,26px); }
@media (min-width:920px){ body.show-mobilebar .floating-switch{ bottom:clamp(12px,2vw,26px); } }

/* WhatsApp contact button — now lives inside the floating language/currency switcher */
.wa-fab{
  width:40px; height:40px; border-radius:50%; flex:none;
  display:inline-flex; align-items:center; justify-content:center;
  background:#25D366; color:#fff; cursor:pointer;
  transition:filter .18s ease, transform .18s ease;
}
.wa-fab:hover{ filter:brightness(1.07); transform:scale(1.04); }
.wa-fab svg{ width:24px; height:24px; }
/* on mobile tour pages the sticky booking bar already carries WhatsApp — hide the switcher's WhatsApp there to avoid duplication */
@media (max-width:919px){ body.show-mobilebar .wa-fab{ display:none; } }
.floating-switch .lang-switch, .floating-switch .cur-switch{ position:relative; display:flex; }
/* menus open UPWARD from the floating control */
.floating-switch .cur-menu, .floating-switch .lang-menu{ top:auto; bottom:calc(100% + 10px); }
/* language = circular 2-letter code badge */
.floating-switch .lang-switch > button{
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:50%; border:none; cursor:pointer;
  background:var(--sea-deep); color:#fff; font-weight:700; font-size:.8rem; letter-spacing:.03em;
  transition:filter .2s, box-shadow .2s;
}
.floating-switch .lang-switch > button:hover{ filter:brightness(1.12); }
.floating-switch .lang-switch.open > button{ box-shadow:0 0 0 3px var(--sea-mist); }
/* currency = code text in a soft tinted pill */
.floating-switch .cur-switch > button{
  display:inline-flex; align-items:center; justify-content:center;
  height:40px; padding:0 1.05rem; border:none; border-radius:999px; cursor:pointer;
  background:var(--sea-mist); color:var(--sea-deep); font-weight:700; font-size:.9rem; letter-spacing:.02em;
  transition:filter .2s, box-shadow .2s;
}
.floating-switch .cur-switch > button:hover{ filter:brightness(.96); }
.floating-switch .cur-switch.open > button{ box-shadow:0 0 0 3px var(--sea-mist); }

/* currency switch */
.cur-switch{ position:relative; }
.cur-switch > button{
  display:inline-flex; align-items:center; gap:.4rem;
  height:38px; padding:0 .8rem; border-radius:999px;
  border:1px solid var(--line); background:var(--surface); color:var(--ink);
  font-weight:600; font-size:.88rem; cursor:pointer;
  transition:border-color .2s, background .2s, color .2s;
}
.cur-switch > button:hover{ border-color:var(--sea); color:var(--sea-deep); }
.cur-switch > button svg{ width:14px; height:14px; opacity:.7; transition:transform .2s; }
.cur-switch.open > button svg{ transform:rotate(180deg); }
body.home-top .site-header:not(.scrolled) .cur-switch > button{
  background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.45); color:#fff;
  backdrop-filter:saturate(140%) blur(6px);
}
.cur-menu{
  position:absolute; top:calc(100% + 8px); right:0; min-width:170px;
  background:var(--surface); border:1px solid var(--line); border-radius:14px;
  box-shadow:0 18px 40px -22px rgba(11,31,34,.35);
  padding:.35rem; display:none; z-index:60;
}
.cur-switch.open .cur-menu{ display:block; }
.cur-menu button{
  display:flex; width:100%; align-items:center; justify-content:space-between;
  gap:.8rem; padding:.55rem .7rem; border:none; background:transparent;
  border-radius:10px; color:var(--ink); font-weight:600; font-size:.9rem;
  cursor:pointer; text-align:left;
}
.cur-menu button:hover{ background:var(--sea-mist); color:var(--sea-deep); }
.cur-menu button[aria-current="true"]{ background:var(--sea-mist); color:var(--sea-deep); }
.cur-menu .csym{ color:var(--muted); font-weight:500; }

/* language switch — mirrors the currency switch */
.lang-switch{ position:relative; }
.lang-switch > button{
  display:inline-flex; align-items:center; gap:.4rem;
  height:38px; padding:0 .75rem; border-radius:999px;
  border:1px solid var(--line); background:var(--surface); color:var(--ink);
  font-weight:600; font-size:.88rem; cursor:pointer;
  transition:border-color .2s, background .2s, color .2s;
}
.lang-switch > button:hover{ border-color:var(--sea); color:var(--sea-deep); }
.lang-switch > button .globe{ width:16px; height:16px; opacity:.85; }
.lang-switch > button .chev{ width:14px; height:14px; opacity:.7; transition:transform .2s; }
.lang-switch.open > button .chev{ transform:rotate(180deg); }
body.home-top .site-header:not(.scrolled) .lang-switch > button{
  background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.45); color:#fff;
  backdrop-filter:saturate(140%) blur(6px);
}
.lang-menu{
  position:absolute; top:calc(100% + 8px); right:0; min-width:190px; max-height:64vh; overflow:auto;
  background:var(--surface); border:1px solid var(--line); border-radius:14px;
  box-shadow:0 18px 40px -22px rgba(11,31,34,.35);
  padding:.35rem; display:none; z-index:60;
}
.lang-switch.open .lang-menu{ display:block; }
.lang-menu button{
  display:flex; width:100%; align-items:center; gap:.6rem;
  padding:.55rem .7rem; border:none; background:transparent;
  border-radius:10px; color:var(--ink); font-weight:600; font-size:.9rem;
  cursor:pointer; text-align:left;
}
.lang-menu button:hover{ background:var(--sea-mist); color:var(--sea-deep); }
.lang-menu button[aria-current="true"]{ background:var(--sea-mist); color:var(--sea-deep); }
.lang-menu .lcode{ margin-left:auto; color:var(--muted); font-weight:500; font-size:.74rem; text-transform:uppercase; letter-spacing:.04em; }

/* mobile currency row inside slide-down menu */
.menu-cur{
  display:flex; flex-wrap:wrap; gap:.4rem; padding:.6rem 0 .2rem;
  border-top:1px solid var(--line); margin-top:.4rem;
}
.menu-cur span{ width:100%; font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); font-weight:600; }
.menu-cur button{
  flex:1 1 auto; padding:.55rem .8rem; border-radius:999px;
  border:1px solid var(--line); background:var(--surface); color:var(--ink);
  font-weight:600; font-size:.85rem; cursor:pointer;
}
.menu-cur button[aria-current="true"]{ background:var(--sea); border-color:var(--sea); color:#fff; }

/* mobile language row inside slide-down menu */
.menu-lang{
  display:flex; flex-wrap:wrap; gap:.4rem; padding:.6rem 0 .2rem;
  border-top:1px solid var(--line); margin-top:.4rem;
}
.menu-lang span{ width:100%; font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); font-weight:600; }
.menu-lang button{
  flex:1 1 auto; padding:.55rem .8rem; border-radius:999px;
  border:1px solid var(--line); background:var(--surface); color:var(--ink);
  font-weight:600; font-size:.85rem; cursor:pointer;
}
.menu-lang button[aria-current="true"]{ background:var(--sea); border-color:var(--sea); color:#fff; }

.burger{
  width:44px; height:44px; border:none; background:transparent; color:var(--ink);
  display:grid; place-items:center; border-radius:10px; margin-right:-8px;
}
.burger svg{ width:26px; height:26px; }

@media (min-width:860px){
  .nav{ display:flex; }
  .header-cta{ display:inline-flex; }
  .burger{ display:none; }
  .header-actions{ display:flex; }
}

/* mobile menu */
.menu{
  display:none; flex-direction:column; gap:.2rem;
  padding:.6rem var(--pad) 1.2rem;
  background:var(--surface); border-bottom:1px solid var(--line);
}
.menu.open{ display:flex; }
.menu a{ padding:.85rem .2rem; font-weight:600; font-size:1.05rem; border-bottom:1px solid var(--line-2); color:var(--ink); }
.menu a:last-of-type{ border-bottom:none; }
.menu .btn{ margin-top:.8rem; }
@media (min-width:860px){ .menu{ display:none !important; } }

/* =========================================================
   VIEWS
   ========================================================= */
.view{ display:none; }
.view.is-active{ display:block; animation:fade .4s ease; }
@keyframes fade{ from{ opacity:0; transform:translateY(6px); } to{ opacity:1; transform:none; } }

/* =========================================================
   HERO (home)
   ========================================================= */
.hero{ position:relative; min-height:88vh; display:flex; align-items:flex-end; color:#fff; isolation:isolate; margin-top:-68px; }
.hero .ph{ position:absolute; inset:0; z-index:-2; }
.hero::after{
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(to top, rgba(7,40,42,.86) 0%, rgba(7,40,42,.30) 38%, rgba(7,40,42,.08) 62%, rgba(7,40,42,.44) 100%);
}
.hero-inner{ padding-top:calc(68px + 9vh); padding-bottom:clamp(28px,6vh,64px); }
.hero h1,.hero .h1{
  color:#fff; font-weight:500;
  font-size:clamp(2.5rem, 1.6rem + 4.6vw, 5.1rem);
  line-height:1.02; letter-spacing:-.02em;
  max-width:16ch; text-wrap:balance;
  text-shadow:0 2px 30px rgba(0,0,0,.25);
}
.hero h1 em,.hero .h1 em{ font-style:italic; font-weight:400; color:#BDEAE2; }
.hero p{ margin:1.1rem 0 0; max-width:46ch; font-size:clamp(1.05rem,1rem + .45vw,1.28rem); color:rgba(255,255,255,.92); line-height:1.5; }
.hero .eyebrow{ color:#9FE0D6; margin-bottom:1.1rem; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:.8rem; margin-top:1.8rem; }
.hero-meta{
  margin-top:1.6rem; display:flex; flex-wrap:wrap; gap:1.4rem 2rem; align-items:center;
  font-size:.9rem; color:rgba(255,255,255,.9);
}
.hero-meta .hm{ display:flex; align-items:center; gap:.55rem; }
.hero-meta svg{ width:18px; height:18px; opacity:.85; flex:none; }
.hero-meta .dot{ width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,.4); }
@media (max-width:600px){ .hero-meta .dot{ display:none; } .hero-meta{ gap:.7rem 1.4rem; } }

/* hero thumbnail gallery on the right */
.hero .ph img{ transition:opacity .6s ease; }
.hero-thumbs{
  position:absolute; right:clamp(16px,3vw,40px); top:50%; transform:translateY(-50%);
  z-index:2; display:flex; flex-direction:column; gap:.6rem;
  max-height:62vh; overflow-y:auto; padding:.4rem;
  scrollbar-width:none;
}
.hero-thumbs::-webkit-scrollbar{ display:none; }
.hero-thumb{
  flex:none; width:84px; height:108px; border-radius:14px; overflow:hidden;
  border:2px solid rgba(255,255,255,.35); cursor:pointer; padding:0; background:none;
  position:relative; box-shadow:0 8px 24px -12px rgba(0,0,0,.55);
  transition:transform .25s ease, border-color .25s ease, width .25s ease;
}
.hero-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.hero-thumb:hover{ transform:translateX(-4px); border-color:rgba(255,255,255,.7); }
.hero-thumb.is-active{ border-color:#fff; transform:translateX(-6px); }
.hero-thumb.is-active::after{
  content:""; position:absolute; inset:0; box-shadow:inset 0 0 0 2px rgba(255,255,255,.9); border-radius:12px;
}
@media (max-width:900px){
  .hero-thumbs{
    position:static; transform:none; flex-direction:row; max-height:none;
    overflow-x:auto; gap:.5rem; padding:.2rem 0 1rem;
    margin-top:1.4rem; scroll-snap-type:x mandatory;
  }
  .hero-thumb{ width:88px; height:64px; border-radius:10px; scroll-snap-align:start; }
.hero-thumb:hover, .hero-thumb.is-active{ transform:none; }
}

/* =========================================================
   SECTION HEAD
   ========================================================= */
.sec-head{ max-width:640px; margin-bottom:clamp(28px,4vw,46px); }
.sec-head h2,.sec-head h1{ font-size:clamp(1.9rem,1.4rem + 2.4vw,3.1rem); margin-top:.7rem; text-wrap:balance; }
.sec-head p{ margin:.9rem 0 0; }
.sec-head.center{ margin-inline:auto; text-align:center; }
.sec-head-split{ display:flex; justify-content:space-between; align-items:flex-start; gap:1.5rem; max-width:none; margin-bottom:clamp(28px,4vw,46px); }
.sec-head-split .sec-head-text{ max-width:640px; }
.sec-head-split .btn{ margin-top:.7rem; }

/* browse-by-experience / browse-by-destination photo tiles */
.facet-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(12px,1.5vw,20px); }
.facet-tile{
  position:relative; display:block; border:none; padding:0; cursor:pointer;
  aspect-ratio:1/1; border-radius:18px; overflow:hidden; background:var(--line);
  color:#fff; text-align:left; isolation:isolate;
}
.facet-tile img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .45s ease; z-index:-2; }
.facet-tile::after{ content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(to top, rgba(8,24,26,.82) 0%, rgba(8,24,26,.25) 48%, rgba(8,24,26,.05) 100%); }
.facet-tile:hover img{ transform:scale(1.07); }
.facet-tile:focus-visible{ outline:3px solid var(--sea); outline-offset:2px; }
.facet-tile .ft-body{ position:absolute; left:0; right:0; bottom:0; padding:clamp(.8rem,1.5vw,1.05rem); }
.facet-tile .ft-title{ display:block; font-family:var(--ff-display); font-weight:600; font-size:clamp(1.02rem,1.3vw,1.22rem); line-height:1.15; text-wrap:balance; }
.facet-tile .ft-count{ display:block; font-size:.8rem; opacity:.88; margin-top:.18rem; }
@media (max-width:880px){ .facet-grid{ grid-template-columns:repeat(2,1fr); gap:12px; } }

/* Featured Destinations — rich cards (reuse the .card look) */
.dest-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(18px,2.4vw,28px); }
@media (max-width:980px){ .dest-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .dest-grid{ grid-template-columns:1fr; } }
.dest-card{ text-decoration:none; color:inherit; }

.facet-notice{ display:flex; align-items:center; gap:.7rem; margin:0 0 1.1rem; }
.facet-notice > span{ font-family:var(--ff-display); font-weight:600; font-size:1.1rem; color:var(--ink); }
.facet-notice button{ border:1px solid var(--line); background:var(--surface); color:var(--ink); border-radius:999px; padding:.34rem .85rem; font-weight:600; font-size:.84rem; cursor:pointer; }
.facet-notice button:hover{ border-color:var(--sea); color:var(--sea-deep); }

/* "Why choose us" trust cards */
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(14px,1.8vw,24px); }
@media (max-width:880px){ .why-grid{ grid-template-columns:1fr; gap:14px; } }
.why-card{
  background:var(--surface); border:1px solid var(--line); border-radius:18px;
  padding:clamp(1.1rem,2vw,1.5rem);
}
.why-card .why-ic{
  display:inline-flex; align-items:center; justify-content:center;
  width:46px; height:46px; border-radius:14px; margin-bottom:.9rem;
  background:var(--sea-mist); color:var(--sea-deep);
}
.why-card .why-ic svg{ width:24px; height:24px; }
.why-card h3{ font-family:var(--ff-display); font-weight:600; font-size:1.18rem; margin:0 0 .35rem; }
.why-card p{ margin:0; color:var(--ink-soft); font-size:.96rem; line-height:1.55; }
.footer-bottom .tat-badge{ font-size:.8rem; opacity:.9; }

.section-pad{ padding:clamp(54px,8vw,104px) 0; }
.bg-soft{ background:var(--bg-2); }

/* =========================================================
   TOUR CARDS
   ========================================================= */
.tour-grid{ display:grid; grid-template-columns:1fr; gap:clamp(22px,3vw,32px); }
@media (min-width:1080px){ .tour-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:1079px){
  .tour-grid{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    gap:18px;
  }
  .tour-grid::-webkit-scrollbar{ display:none; }
  .tour-grid .card{
    flex:0 0 85%;
    max-width:320px;
    scroll-snap-align:start;
  }
  /* the /tours catalog stays a vertical grid — swiping a 20+ tour strip is
     unbrowsable; the strip remains for the homepage rail + "other days out" */
  .tour-grid.catalog{
    display:grid; grid-template-columns:1fr;
    overflow-x:visible; scroll-snap-type:none;
    gap:clamp(18px,2.5vw,26px);
  }
  .tour-grid.catalog .card{ flex:none; max-width:none; }
}
@media (min-width:600px) and (max-width:1079px){
  .tour-grid.catalog{ grid-template-columns:repeat(2,1fr); }
}
@media (min-width:900px) and (max-width:1079px){
  .tour-grid.catalog{ grid-template-columns:repeat(3,1fr); }
}

.card{
  position:relative; display:flex; flex-direction:column;
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r);
  overflow:hidden; cursor:pointer;
  /* .card is an <a> (crawlable tour link) — reset default link styling so the
     card text keeps its own colours and never underlines. */
  color:inherit; text-decoration:none;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:transparent; }
.card .card-media{ position:relative; aspect-ratio:4/3; }
.card:hover .card-media img{ transform:scale(1.05); }
.card .chip{
  position:absolute; top:12px; left:12px; z-index:2;
  background:rgba(255,255,255,.92); color:var(--ink);
  font-weight:600; font-size:.72rem; letter-spacing:.06em; text-transform:uppercase;
  padding:.4em .75em; border-radius:999px; backdrop-filter:blur(4px);
}
.card .price-flag{
  position:absolute; bottom:12px; right:12px; z-index:2;
  background:var(--ink); color:#fff; padding:.45em .8em; border-radius:999px;
  font-weight:600; font-size:.85rem;
}
.card .price-flag b{ font-weight:600; }

/* ---- Premium tour treatment (tasteful gold) ---- */
.premium-badge{
  position:absolute; top:12px; right:12px; z-index:3;
  display:inline-flex; align-items:center; gap:.35em;
  font-weight:700; font-size:.7rem; letter-spacing:.07em; text-transform:uppercase;
  color:#6f5212; background:linear-gradient(180deg,#FBE7AC,#EFC152);
  border:1px solid #E0AC41; border-radius:999px; padding:.36em .72em .36em .56em;
  box-shadow:0 2px 9px rgba(176,131,38,.32);
}
.premium-badge svg{ width:14px; height:14px; }
.card.is-premium{ border-color:#E8CD83; box-shadow:0 0 0 1px #EBCE82, 0 16px 36px -20px rgba(176,131,38,.55); }
.card.is-premium:hover{ box-shadow:0 0 0 1px #E3C46B, var(--shadow-lg); }
/* on the dark detail hero the badge sits in the text flow, not pinned to a corner */
.detail-hero-text .premium-badge{ position:static; margin-bottom:.7rem; }

/* ---- Boat options (price tiers) on the detail page ---- */
.boats{ margin-top:.4rem; }
.boat-list{ display:grid; gap:.6rem; margin-top:.7rem; }
.boat-opt{
  display:flex; align-items:center; justify-content:space-between; gap:.9rem;
  border:1px solid var(--line); border-radius:14px; padding:.85rem 1.05rem; background:var(--surface);
}
.boat-ic{ flex:none; width:26px; height:26px; color:var(--brand,#0E8F8A); display:inline-flex; }
.boat-ic svg{ width:100%; height:100%; }
.boat-main{ display:flex; flex-direction:column; gap:.15rem; min-width:0; flex:1; }
.boat-name{ font-weight:600; color:var(--ink); }
.boat-blurb{ font-size:.85rem; color:var(--muted); }
.boat-price{ font-weight:600; color:var(--ink); white-space:nowrap; font-variant-numeric:tabular-nums; text-align:right; }
.boat-price small{ display:block; font-size:.7rem; color:var(--faint); font-weight:400; }

/* boat selector inside the booking card */
.booking .bk-boat{
  width:100%; padding:.7rem .8rem; border:1px solid var(--line); border-radius:var(--r-sm);
  background:var(--surface); font:inherit; color:var(--ink); cursor:pointer;
}
.booking .bk-boat:focus{ outline:none; border-color:var(--sea); box-shadow:0 0 0 3px var(--sea-tint); }

.card-body{ padding:1.15rem 1.25rem 1.35rem; display:flex; flex-direction:column; flex:1; }
.card-body h3{ font-size:1.32rem; line-height:1.12; }
.card-body .sub{ margin:.5rem 0 0; color:var(--muted); font-size:.95rem; line-height:1.5; flex:1; }
.card-meta{ display:flex; flex-wrap:wrap; gap:.4rem 1.1rem; margin-top:1rem; padding-top:1rem; border-top:1px solid var(--line-2); font-size:.85rem; color:var(--ink-soft); }
.card-meta span{ display:inline-flex; align-items:center; gap:.4em; }
.card-meta svg{ width:15px; height:15px; color:var(--sea); flex:none; }
.card-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:1.1rem; }

/* SEO landing pages (server-rendered #view-landing) */
.landing-wrap .sec-head{ margin-bottom:clamp(20px,3vw,32px); }
.landing-intro{ max-width:70ch; margin:0 0 clamp(28px,4vw,44px); font-size:1.05rem; line-height:1.7; }
.landing-intro p{ margin:0 0 1em; }
.landing-faq{ max-width:72ch; margin:clamp(44px,6vw,72px) 0 0; }
.landing-faq > h2{ margin:0 0 .8rem; }
.faq-item{ border-top:1px solid var(--line); padding:1.05rem 0; }
.faq-item summary{ cursor:pointer; font-weight:600; font-size:1.05rem; list-style:none; display:flex; justify-content:space-between; gap:1rem; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; color:var(--sea); font-weight:400; }
.faq-item[open] summary::after{ content:"–"; }
.faq-a{ margin-top:.6rem; color:var(--muted); line-height:1.65; }

/* =========================================================
   FILTERS
   ========================================================= */
.filters{ display:flex; flex-wrap:wrap; gap:.55rem; margin-bottom:clamp(26px,3.5vw,40px); }
.chip-btn{
  border:1.5px solid var(--line); background:var(--surface); color:var(--ink-soft);
  font-weight:600; font-size:.9rem; padding:.6em 1.05em; border-radius:999px; min-height:42px;
  transition:all .18s ease;
}
.chip-btn:hover{ border-color:var(--ink); }
.chip-btn.active{ background:var(--sea); border-color:var(--sea); color:#fff; }

/* =========================================================
   WIDE PHOTO QUOTE
   ========================================================= */
.quote-band{ position:relative; color:#fff; isolation:isolate; padding:clamp(70px,12vw,150px) 0; }
.quote-band .ph{ position:absolute; inset:0; z-index:-2; }
.quote-band::after{ content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(110deg, rgba(7,40,42,.82), rgba(7,40,42,.45)); }
.quote-band blockquote{ margin:0; max-width:760px; }
.quote-band .q{ font-family:var(--ff-display); font-weight:500; font-style:italic; font-size:clamp(1.5rem,1.1rem + 2.2vw,2.5rem); line-height:1.22; letter-spacing:-.01em; text-wrap:balance; }
.quote-band .cite{ margin-top:1.4rem; font-size:.95rem; color:#BDEAE2; font-weight:600; letter-spacing:.02em; }
.stars{ display:flex; gap:3px; margin-bottom:1.3rem; color:#FFC861; }
.stars svg{ width:20px; height:20px; }

/* =========================================================
   STORY / ABOUT
   ========================================================= */
.story{ display:grid; grid-template-columns:1fr; gap:clamp(28px,4vw,56px); align-items:center; }
.story .ph{ border-radius:var(--r-lg); aspect-ratio:4/5; box-shadow:var(--shadow); }
.story h2{ font-size:clamp(1.8rem,1.3rem + 2.2vw,2.9rem); }
.story p{ color:var(--ink-soft); margin:1rem 0 0; }
.story .small-stats{ display:flex; gap:2rem; margin-top:1.8rem; flex-wrap:wrap; }
.story .small-stats .n{ font-family:var(--ff-display); font-size:2rem; font-weight:600; color:var(--sea-deep); line-height:1; }
.story .small-stats .l{ font-size:.82rem; color:var(--muted); margin-top:.35rem; }
@media (min-width:720px){ .story{ grid-template-columns:1fr 1.05fr; } .story.flip .ph{ order:2; } }

/* =========================================================
   CTA band
   ========================================================= */
.cta{ background:var(--ink); color:#fff; border-radius:var(--r-lg); padding:clamp(36px,6vw,72px); text-align:center; position:relative; overflow:hidden; }
.cta::before{ content:""; position:absolute; inset:0; background:radial-gradient(90% 140% at 50% -20%, rgba(14,143,138,.55), transparent 60%); }
.cta > *{ position:relative; }
.cta h2{ color:#fff; font-size:clamp(1.8rem,1.3rem + 2.4vw,3rem); max-width:18ch; margin-inline:auto; }
.cta p{ color:rgba(255,255,255,.82); max-width:48ch; margin:1rem auto 0; }
.cta-actions{ display:flex; flex-wrap:wrap; gap:.8rem; justify-content:center; margin-top:2rem; }

/* =========================================================
   DETAIL PAGE
   ========================================================= */
.detail-hero{ position:relative; color:#fff; isolation:isolate; min-height:clamp(360px,56vh,620px); display:flex; flex-direction:column; justify-content:flex-end; margin-top:-68px; cursor:zoom-in; }
.detail-hero a, .detail-hero button{ cursor:pointer; }
.detail-hero .ph{ position:absolute; inset:0; z-index:-2; }
.detail-hero::after{ content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(to top, rgba(7,40,42,.88), rgba(7,40,42,.28) 55%, rgba(7,40,42,.52)); }
.detail-hero-inner{ padding-top:5rem; padding-bottom:clamp(52px,7vw,84px); display:flex; justify-content:space-between; align-items:flex-end; gap:1.5rem; flex-wrap:wrap; }
.detail-hero-text{ flex:1 1 auto; min-width:0; }
.detail-hero h1{ color:#fff; font-size:clamp(2.1rem,1.4rem + 3.4vw,3.8rem); max-width:18ch; margin-top:.8rem; text-wrap:balance; }
.detail-hero .tagline{ margin:.9rem 0 0; max-width:50ch; color:rgba(255,255,255,.9); font-size:clamp(1rem,.95rem + .4vw,1.2rem); }

/* min-width/max-width + own scrolling at EVERY width: with 10+ photos the strip
   is ~1000px wide and used to push the page sideways between 921–1180px (iPad
   landscape) where the mobile overflow guard below didn't apply. */
.detail-thumbs{ display:flex; gap:.5rem; flex:0 0 auto; align-items:center; flex-wrap:nowrap; min-width:0; max-width:100%; overflow-x:auto; scrollbar-width:none; }
.detail-thumbs::-webkit-scrollbar{ display:none; }
.detail-thumbs .hero-thumb{ width:76px; height:48px; border-radius:10px; overflow:hidden; border:2px solid rgba(255,255,255,.35); cursor:pointer; padding:0; background:none; position:relative; box-shadow:0 6px 18px -10px rgba(0,0,0,.5); transition:border-color .25s ease; flex:none; transform:none; box-sizing:border-box; }
.detail-thumbs .hero-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.detail-thumbs .hero-thumb:hover{ border-color:rgba(255,255,255,.7); transform:none; }
.detail-thumbs .hero-thumb.is-active{ border-color:rgba(255,255,255,.7); transform:none; }
.detail-thumbs .hero-thumb.is-active::after{ display:none; }
@media (max-width:920px){
  .detail-hero-inner{ flex-direction:column; align-items:stretch; gap:1.1rem; padding-bottom:clamp(76px,10vw,108px); }
  .detail-hero-text{ order:0; }
  .detail-thumbs{ order:1; margin-top:.2rem; gap:.45rem; overflow-x:auto; scrollbar-width:none; -webkit-overflow-scrolling:touch; scroll-snap-type:x mandatory; padding-bottom:.2rem; }
  .detail-thumbs::-webkit-scrollbar{ display:none; }
  .detail-thumbs .hero-thumb{ width:68px; height:44px; border-radius:8px; border-width:1.5px; scroll-snap-align:start; }
}

.backbar{ margin-bottom:.9rem; }
.back-link{ display:inline-flex; align-items:center; gap:.45rem; color:#fff; font-weight:600; font-size:.9rem; background:rgba(0,0,0,.2); padding:.5em .9em; border-radius:999px; backdrop-filter:blur(4px); }
.back-link:hover{ background:rgba(0,0,0,.34); }

.facts{
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  background:var(--surface); border:1px solid var(--line);
  border-radius:var(--r-lg); overflow:hidden;
  margin-top:-32px; position:relative; z-index:2;
  box-shadow:var(--shadow);
}
.fact{ background:var(--surface); padding:1.15rem 1.2rem; border-right:1px solid var(--line-2); border-bottom:1px solid var(--line-2); }
.fact:nth-child(2n){ border-right:none; }
.fact:nth-child(3), .fact:nth-child(4){ border-bottom:none; }
.fact .k{ font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--faint); font-weight:600; }
.fact .v{ font-family:var(--ff-display); font-size:1.22rem; font-weight:600; margin-top:.35rem; color:var(--ink); line-height:1.15; }
.fact .v small{ font-family:var(--ff-sans); font-weight:500; font-size:.82rem; color:var(--muted); margin-left:.2rem; }
@media (min-width:680px){
  .facts{ grid-template-columns:repeat(4,1fr); margin-top:-44px; }
  .fact{ padding:1.35rem 1.6rem; border-bottom:none; }
  .fact:nth-child(2n){ border-right:1px solid var(--line-2); }
  .fact:nth-child(4n){ border-right:none; }
}

.detail-grid{ display:grid; grid-template-columns:1fr; gap:clamp(34px,5vw,64px); margin-top:clamp(34px,5vw,60px); }
@media (min-width:920px){ .detail-grid{ grid-template-columns:minmax(0,1fr) 360px; align-items:start; } }

.prose h2{ font-size:clamp(1.4rem,1.15rem + 1.2vw,1.9rem); margin:0 0 .7rem; }
.prose h2:not(:first-child){ margin-top:clamp(1.6rem,2.8vw,2.4rem); }
.prose p{ color:var(--ink-soft); margin:0 0 1rem; }
.prose p:last-child{ margin-bottom:0; }

/* itinerary timeline */
.timeline{ position:relative; margin-top:.6rem; padding-left:1.4rem; }
.timeline::before{ content:""; position:absolute; left:5px; top:8px; bottom:8px; width:2px; background:linear-gradient(var(--sea), var(--sea-tint)); }
.t-step{ position:relative; padding:0 0 1.6rem; }
.t-step:last-child{ padding-bottom:0; }
.t-step::before{ content:""; position:absolute; left:-1.4rem; top:4px; width:16px; height:16px; border-radius:50%; background:#fff; border:3px solid var(--sea); box-shadow:0 0 0 4px var(--bg); }
.t-step .t-time{ font-family:var(--ff-display); font-weight:600; color:var(--sea-deep); font-size:.95rem; }
.t-step h4{ font-size:1.12rem; margin:.15rem 0 .35rem; font-weight:600; }
.t-step p{ margin:0; color:var(--muted); font-size:.94rem; line-height:1.5; }

/* include / bring lists */
.col-2{ display:grid; grid-template-columns:1fr; gap:clamp(22px,3vw,40px); }
@media (min-width:560px){ .col-2{ grid-template-columns:1fr 1fr; } }
.ticklist{ list-style:none; margin:.3rem 0 0; padding:0; display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:.15rem 1.4rem; }
.ticklist li{ display:flex; align-items:center; gap:.65rem; padding:.5rem 0; color:var(--ink-soft); font-size:.96rem; }
.ticklist li svg{ flex:0 0 auto; width:16px; height:16px; padding:4px; border-radius:50%; box-sizing:content-box; }
.ticklist.yes li svg{ color:var(--sea); background:rgba(14,143,138,.12); }
.ticklist.bring li svg{ color:var(--gold); background:rgba(196,154,46,.16); }

.notes{ background:var(--bg-2); border-radius:var(--r); padding:1rem 1.2rem; margin-top:.5rem; }
.notes ul{ margin:0; padding-left:1.1rem; }
.notes li{ color:var(--ink-soft); font-size:.93rem; margin:.3rem 0; }

/* tabs */
.tabs{ margin-top:.4rem; position:relative; }
/* right-edge fade — shown (via .nav-more, toggled in wireDetailTabs) only while
   more tabs are hidden past the edge, so the scrollable row is discoverable */
.tabs::after{
  content:""; position:absolute; top:0; right:0; width:56px; height:3rem;
  pointer-events:none; opacity:0; transition:opacity .25s ease;
  background:linear-gradient(to right, rgba(244,239,230,0), var(--bg) 75%);
}
.tabs.nav-more::after{ opacity:1; }
.tabs-nav{ display:inline-flex; gap:.25rem; border-bottom:1px solid var(--line); margin-bottom:1.2rem; overflow-x:auto; scrollbar-width:none; }
.tabs-nav::-webkit-scrollbar{ display:none; }
.tab-btn{ appearance:none; background:none; border:none; margin:0; padding:.85rem 1.05rem; text-align:left; font:inherit; font-size:1rem; font-weight:700; color:var(--muted); cursor:pointer; border-bottom:2.5px solid transparent; margin-bottom:-1px; white-space:nowrap; transition:color .2s ease, border-color .2s ease; }
.tab-btn:first-child{ padding-left:0; }
.tab-btn:hover{ color:var(--ink); }
.tab-btn.is-active{ color:var(--ink); border-bottom-color:var(--sea); }
.tab-panel{ display:none; animation:tabfade .25s ease; }
.tab-panel.is-active{ display:block; background:var(--surface); border:1px solid var(--line); border-radius:16px; padding:clamp(1.1rem,2.4vw,1.5rem) clamp(1.2rem,2.6vw,1.75rem); }
.tab-panel.is-active .notes{ background:none; border-radius:0; padding:0; margin:0; }
@keyframes tabfade{ from{ opacity:0; transform:translateY(4px); } to{ opacity:1; transform:none; } }
.tab-panel > .timeline,
.tab-panel > .ticklist,
.tab-panel > .notes{ margin-top:0; }
@media (max-width:560px){
  .tab-btn{ padding:.7rem .75rem; font-size:.93rem; }
}

/* booking card */
.booking{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r); box-shadow:var(--shadow); padding:1.5rem; position:sticky; top:88px; scroll-margin-top:88px; }
.booking .price-row{ display:flex; align-items:baseline; gap:.5rem; }
.booking .price{ font-family:var(--ff-display); font-size:2.2rem; font-weight:600; color:var(--ink); line-height:1; }
.booking .price.price-req{ font-size:1.4rem; } /* "Price on request" — too long for the big numeric size */
.booking .per{ color:var(--muted); font-size:.9rem; }
.booking .field{ margin-top:1.1rem; }
.booking label{ display:block; font-weight:600; font-size:.82rem; letter-spacing:.04em; text-transform:uppercase; color:var(--faint); margin-bottom:.45rem; }
.booking input[type=date]{
  width:100%; font-family:inherit; font-size:1rem; padding:.75rem .85rem;
  border:1.5px solid var(--line); border-radius:var(--r-sm); color:var(--ink); background:var(--surface); min-height:48px;
}
.booking input[type=date]:focus{ outline:none; border-color:var(--sea); box-shadow:0 0 0 3px var(--sea-tint); }
.stepper{ display:flex; align-items:center; justify-content:space-between; border:1.5px solid var(--line); border-radius:var(--r-sm); padding:.35rem .45rem; }
.stepper button{ width:40px; height:40px; border-radius:8px; border:none; background:var(--bg-2); color:var(--ink); font-size:1.3rem; line-height:1; display:grid; place-items:center; }
.stepper button:hover{ background:var(--bg-3); }
.stepper .count{ font-weight:600; font-size:1.05rem; }
.total-row{ display:flex; align-items:center; justify-content:space-between; margin-top:1.2rem; padding-top:1.2rem; border-top:1px solid var(--line); }
.total-row .tlabel{ color:var(--muted); font-size:.92rem; }
.total-row .tval{ font-family:var(--ff-display); font-weight:600; font-size:1.5rem; }
.booking .btn{ margin-top:1.1rem; }
.booking .reassure{ margin-top:.9rem; font-size:.8rem; color:var(--faint); text-align:center; line-height:1.4; }
.booking .ok{ background:var(--sea-tint); border:1px solid #BFE3DD; color:var(--sea-700); border-radius:var(--r-sm); padding:1rem 1.1rem; margin-top:1rem; font-size:.92rem; line-height:1.5; }
.booking .ok strong{ color:var(--sea-deep); }

.bk-included{ margin-top:1.1rem; padding-top:1.1rem; border-top:1px solid var(--line-2); }
.bk-included h4{ font-family:var(--ff-sans); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--faint); margin:0 0 .65rem; font-weight:600; }
.bk-included ul{ list-style:none; margin:0; padding:0; }
.bk-included li{ display:flex; align-items:flex-start; gap:.55rem; padding:.35rem 0; color:var(--ink-soft); font-size:.88rem; line-height:1.4; }
.bk-included li svg{ flex:none; width:16px; height:16px; color:var(--sea); margin-top:1px; }

/* gallery */
.gallery{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:.6rem; }
.gallery .ph{ border-radius:var(--r-sm); aspect-ratio:1/1; }
.gallery .ph:first-child{ grid-column:1/-1; aspect-ratio:16/9; }
@media (min-width:560px){
  .gallery{ grid-template-columns:repeat(2,1fr); }
  .gallery .ph:first-child{ grid-column:1/-1; aspect-ratio:2/1; }
}

/* mobile sticky book bar */
.mobile-bar{
  position:fixed; left:14px; right:14px; bottom:calc(12px + env(safe-area-inset-bottom)); z-index:55;
  left:max(14px, env(safe-area-inset-left)); right:max(14px, env(safe-area-inset-right));
  display:none; align-items:center; justify-content:space-between; gap:1rem;
  background:var(--surface); border:1px solid var(--line); border-radius:22px; padding:.6rem .65rem .6rem 1.15rem;
  box-shadow:0 16px 36px -14px rgba(11,31,34,.42);
  transition:transform .35s ease;
}
.mobile-bar .mb-price{ font-family:var(--ff-display); font-weight:600; font-size:1.2rem; line-height:1; }
.mobile-bar .mb-price small{ display:block; font-family:var(--ff-sans); font-weight:500; font-size:.72rem; color:var(--muted); margin-top:2px; }
body.show-mobilebar .mobile-bar{ display:flex; }
/* hide the sticky CTA while the booking card itself is on screen, or once the
   footer is in view so it never floats over (and obscures) the footer */
body.show-mobilebar.booking-visible .mobile-bar,
body.show-mobilebar.footer-visible .mobile-bar{ transform:translateY(calc(100% + 30px + env(safe-area-inset-bottom))); }
@media (min-width:920px){ body.show-mobilebar .mobile-bar{ display:none; } }
/* clear the sticky bar for the SAME width range that shows it (not just ≤720px,
   which left iPads and landscape phones with content pinned under the bar) */
@media (max-width:919px){
  body.show-mobilebar{ padding-bottom:calc(92px + env(safe-area-inset-bottom)); }
}
/* landscape phones: slim the bar — vertical space is scarce */
@media (max-height:480px){
  .mobile-bar{ padding:.45rem .5rem .45rem .95rem; }
}

/* other tours mini */
.other-tours{ margin-top:clamp(46px,7vw,80px); }

/* customer reviews — a full-bleed band that breaks out of the detail .wrap and
   re-centers its content in an inner .wrap. Uses the site's soft-section idiom
   (deeper-sand band + lighter surface cards, like .bg-soft). Only rendered when
   the owner has entered real reviews; grid collapses to one column on mobile. */
.reviews{
  width:100vw; margin:clamp(34px,5vw,56px) calc(50% - 50vw) 0;
  background:var(--bg-2); padding:clamp(38px,6vw,64px) 0;
}
.reviews .sec-head{ margin-bottom:clamp(20px,3vw,32px); }
.reviews .sec-head h2{ font-size:clamp(1.5rem,1.2rem + 1.4vw,2.1rem); margin-top:.5rem; }
.review-grid{ display:grid; grid-template-columns:1fr; gap:clamp(16px,2vw,22px); }
@media (min-width:680px){ .review-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1080px){ .review-grid{ grid-template-columns:repeat(3,1fr); } }
.review-card{
  display:flex; flex-direction:column; margin:0;
  background:var(--surface); border:1px solid var(--line); border-radius:var(--r);
  padding:clamp(1.15rem,2vw,1.5rem); box-shadow:var(--shadow-sm);
}
.review-card .stars{ margin-bottom:.9rem; }
.review-text{ margin:0; color:var(--ink-soft); font-size:1rem; line-height:1.6; flex:1; }
.review-meta{
  display:flex; flex-wrap:wrap; align-items:baseline; gap:.2rem .7rem;
  margin-top:1rem; padding-top:.9rem; border-top:1px solid var(--line-2);
}
.review-author{ font-weight:600; color:var(--ink); }
.review-date{ font-size:.85rem; color:var(--muted); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--ink); color:rgba(255,255,255,.72); padding:clamp(48px,7vw,80px) 0 2rem; margin-top:clamp(54px,8vw,104px); }
.footer-grid{ display:grid; grid-template-columns:1fr; gap:2.4rem; }
@media (min-width:680px){ .footer-grid{ grid-template-columns:1.4fr 1fr 1fr; } }
.site-footer .brand{ color:#fff; }
.site-footer .brand small{ color:rgba(255,255,255,.6); }
.footer-blurb{ margin:1.1rem 0 0; max-width:34ch; font-size:.94rem; line-height:1.6; }
.footer-brand{ display:inline-block; }
.footer-logo{ height:88px; width:auto; display:block; }
.footer-col h4{ color:#fff; font-family:var(--ff-sans); font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; font-weight:700; margin-bottom:1rem; }
.footer-col a, .footer-col p{ display:block; color:rgba(255,255,255,.72); font-size:.95rem; margin:.55rem 0; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{ display:flex; flex-wrap:wrap; gap:.6rem 1.5rem; justify-content:space-between; align-items:center; margin-top:3rem; padding-top:1.6rem; border-top:1px solid rgba(255,255,255,.12); font-size:.82rem; color:rgba(255,255,255,.5); }
.fb-left{ display:flex; align-items:center; flex-wrap:wrap; gap:.6rem 1.2rem; }
.footer-pay{ display:flex; align-items:center; flex-wrap:wrap; gap:.5rem; }
.footer-pay .pay-label{ font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-right:.35rem; }
.footer-pay .pay-ic{ background:#fff; border-radius:6px; height:36px; padding:0 .6rem; display:inline-flex; align-items:center; justify-content:center; box-shadow:0 1px 2px rgba(0,0,0,.2); }
.footer-pay .pay-ic svg, .footer-pay .pay-ic img{ height:24px; width:auto; display:block; }

/* reveal */
[data-reveal]{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in{ opacity:1; transform:none; }
html.no-js [data-reveal]{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1 !important; transform:none !important; transition:none; }
  .view.is-active{ animation:none; }
  .ph img{ transition:none; }
}

/* =========================================================
   MOBILE REFINEMENTS  (≤ 720px)
   Tighter rhythm, scroll-snap filters, touch-friendly menu,
   better cards, polished sticky book bar, and safe-area love.
   ========================================================= */
@media (hover:none){
  /* don't leave cards in lifted state after tap */
  .card:hover{ transform:none; box-shadow:var(--shadow-sm); border-color:var(--line); }
  .card:hover .card-media img{ transform:none; }
  .card:active{ transform:scale(.985); transition:transform .15s ease; }
  .btn:hover{ box-shadow:none; }
  .arrow-link:hover svg{ transform:none; }
}

@media (max-width:720px){
  body{ font-size:16.5px; }

  /* tighter, classier page padding */
  :root{ --pad:28px; --header-h:60px; }

  /* header — slimmer, crisper */
  .brand{ font-size:1.05rem; gap:.55rem; }
  .brand-mark{ width:30px; height:30px; border-radius:8px; }
  .brand-mark svg{ width:17px; height:17px; }
  .brand small{ font-size:.56rem; letter-spacing:.16em; }

  /* HERO — better fit on phone screens */
  .hero{ min-height:min(86svh, 720px); }
  .hero-inner{ padding-top:10svh; padding-bottom:max(36px, env(safe-area-inset-bottom)); }
  .hero h1,.hero .h1{ font-size:clamp(2.35rem, 2rem + 4.5vw, 3.4rem); max-width:14ch; }
  .hero p{ font-size:1.02rem; margin-top:.9rem; }
  .hero .eyebrow{ margin-bottom:.85rem; }
  .hero-actions{ gap:.6rem; margin-top:1.4rem; }
  .hero-actions .btn{ flex:1 1 auto; min-width:0; padding:.95em 1em; }
  .hero-meta{
    margin-top:1.7rem; gap:.55rem .9rem;
    padding-top:1.1rem; border-top:1px solid rgba(255,255,255,.18);
    font-size:.82rem;
  }
  .hero-meta .dot{ display:none; }
  .hero-meta .hm{ gap:.4rem; }
  .hero-meta svg{ width:16px; height:16px; }

  /* SECTION rhythm — less air, still breathable */
  .section-pad{ padding:54px 0; }
  .values{ padding:46px var(--pad) 8px; }
  .sec-head{ margin-bottom:24px; }
  .sec-head h2,.sec-head h1{ font-size:clamp(1.85rem, 1.5rem + 3vw, 2.4rem); }
  .sec-head p{ font-size:1rem; }
  .sec-head-split{ flex-direction:column; align-items:flex-start; gap:1rem; }
  .sec-head-split .btn{ width:100%; text-align:center; }

  /* VALUE PROPS — softer cards on mobile */
  .value{ padding:1.3rem 1.2rem 1.4rem; }
  .value h3{ font-size:1.05rem; }
  .value p{ font-size:.92rem; line-height:1.5; }

  /* FILTERS — wrap within the content padding (no edge-to-edge scroll) */
  .filters{
    flex-wrap:wrap; gap:.5rem;
    margin-bottom:clamp(22px,4vw,34px);
  }
  .chip-btn{ font-size:.85rem; padding:.5em .9em; min-height:44px; } /* 44px = comfortable thumb target */

  /* TOURS — slimmer cards, larger touch */
  .tour-grid{ gap:18px; }
  .card{ border-radius:14px; box-shadow:var(--shadow-sm); }
  .card .card-media{ aspect-ratio:5/4; }
  .card-body{ padding:14px 16px 16px; }
  .card-body h3{ font-size:1.18rem; }
  .card-body .sub{ font-size:.92rem; margin-top:.45rem; }
  .card-meta{ gap:.35rem .85rem; margin-top:.85rem; padding-top:.85rem; font-size:.8rem; }
  .card-foot{ margin-top:.9rem; }
  .card .price-flag{ font-size:.8rem; padding:.4em .7em; bottom:10px; right:10px; }
  .card .chip{ font-size:.66rem; top:10px; left:10px; }

  /* QUOTE band — less vertical */
  .quote-band{ padding:60px 0; }
  .quote-band .q{ font-size:1.4rem; line-height:1.3; }

  /* STORY — photo first, smaller frame */
  .story .ph{ aspect-ratio:5/4; border-radius:18px; }
  .story h2{ font-size:1.85rem; }
  .story .small-stats{ gap:1.4rem; margin-top:1.3rem; }
  .story .small-stats .n{ font-size:1.65rem; }

  /* CTA band — full-bleed, full-width buttons */
  .cta{ border-radius:20px; padding:34px 22px; }
  .cta-actions{ flex-direction:column; gap:.55rem; margin-top:1.4rem; }
  .cta-actions .btn{ width:100%; }

  /* DETAIL */
  .detail-hero{ min-height:64svh; }
  .detail-hero-inner{ padding-top:4.5rem; padding-bottom:clamp(44px,10vw,64px); gap:.9rem; }
  .detail-hero h1{ font-size:2rem; max-width:16ch; }
  .detail-hero .tagline{ font-size:.98rem; margin-top:.7rem; }
  .detail-thumbs{ gap:.4rem; margin-top:.2rem; }
  .detail-thumbs .hero-thumb{ width:64px; height:42px; border-radius:8px; border-width:1.5px; }
  .backbar{ margin-bottom:.7rem; }
  .facts{ border-radius:14px; margin-top:-32px; }
  .fact{ padding:1rem 1.05rem; }
  .fact .v{ font-size:1.1rem; }

  /* booking card — looks better inline on mobile */
  .booking{ position:static; padding:1.2rem; border-radius:14px; }
  .booking .price{ font-size:1.9rem; }

  /* gallery — single hero tile then 2-col */
  .gallery{ gap:12px; }

  /* timeline + lists — more breathing room */
  .timeline{ padding-right:1rem; }
  .ticklist li{ padding-right:1rem; }

  /* MOBILE STICKY BOOK BAR — polish */
  .mobile-bar{
    padding:.55rem .6rem .55rem 1.1rem;
    box-shadow:0 16px 36px -14px rgba(11,31,34,.42);
    backdrop-filter:saturate(140%) blur(10px);
    background:rgba(255,255,255,.94);
  }
  .mobile-bar .mb-price{ font-size:1.1rem; }
  .mobile-bar .btn{ flex:1 1 auto; max-width:62%; }

  /* FOOTER — friendlier on phones */
  .site-footer{ padding-top:46px; margin-top:60px; }
  .footer-grid{ gap:1.8rem; }
  .footer-col h4{ margin-bottom:.6rem; }
  .footer-col a, .footer-col p{ margin:.45rem 0; font-size:.95rem; padding:.15rem 0; }
  .footer-bottom{ margin-top:2rem; gap:.5rem 1rem; font-size:.78rem; }
}

/* ----- Mobile menu: full-panel feel ----- */
@media (max-width:859px){
  .menu{
    /* var(--header-h), NOT a literal: between 721–859px the header is still
       68px tall and a hardcoded 60px tucked the menu top under the header */
    position:fixed; left:0; right:0; top:var(--header-h);
    z-index:59; padding:14px var(--pad) calc(20px + env(safe-area-inset-bottom));
    padding-left:max(var(--pad), env(safe-area-inset-left));
    padding-right:max(var(--pad), env(safe-area-inset-right));
    box-shadow:0 24px 40px -24px rgba(11,31,34,.45);
    max-height:calc(100svh - var(--header-h)); overflow-y:auto;
    animation:menuIn .22s cubic-bezier(.2,.7,.2,1);
  }
  .menu a{
    padding:1rem .25rem; font-size:1.08rem;
    display:flex; align-items:center; justify-content:space-between;
  }
  .menu a:not(.btn)::after{
    content:""; width:8px; height:8px;
    border-right:2px solid var(--faint); border-top:2px solid var(--faint);
    transform:rotate(45deg); opacity:.7;
  }
  .menu .btn{ margin-top:1rem; width:100%; justify-content:center; }
  /* backdrop */
  body.menu-open::before{
    content:""; position:fixed; inset:var(--header-h) 0 0; z-index:58;
    background:rgba(11,31,34,.38); animation:fadeIn .22s ease;
  }
  body.menu-open{ overflow:hidden; }
}
@keyframes menuIn{ from{ opacity:0; transform:translateY(-8px); } to{ opacity:1; transform:none; } }
@keyframes fadeIn{ from{ opacity:0; } to{ opacity:1; } }

/* Smaller phones — extra tightening */
@media (max-width:380px){
  .hero h1,.hero .h1{ font-size:2.1rem; }
  .hero-actions{ flex-direction:column; }
  .hero-actions .btn{ width:100%; }
  .brand small{ display:none; }
}

/* ---- added for real tour catalog (stops timeline, highlights, prices, lightbox) ---- */
.muted{ color:#6b7280; font-size:.92rem; }

/* "Where you'll go" — timeline with right-side clickable thumbnails */
.stops{ margin:.6rem 0 0; }
.stop{ display:grid; grid-template-columns:auto auto minmax(0,1fr); gap:.2rem 1rem; align-items:start; padding-bottom:1.5rem; }
.stop-line{ display:flex; justify-content:center; position:relative; grid-row:1 / span 2; align-self:stretch; }
.stop-dot{ width:13px; height:13px; border-radius:50%; background:#0E8F8A; margin-top:.4rem; box-shadow:0 0 0 4px rgba(14,143,138,.15); position:relative; z-index:1; }
.stop:not(:last-child) .stop-line::after{ content:""; position:absolute; left:50%; transform:translateX(-50%); top:.7rem; bottom:-2.5rem; width:2px; background:rgba(14,143,138,.55); z-index:0; }
.stop-body{ grid-column:3; }
.stop-body h4{ margin:.15rem 0 .3rem; font-size:1.06rem; }
.stop-body p{ margin:0; color:#4b5563; font-size:.95rem; line-height:1.5; }
.stop-thumb{ grid-column:2; grid-row:1 / span 2; flex:0 0 auto; width:104px; height:78px; padding:0; border:0; border-radius:12px; overflow:hidden; cursor:zoom-in; background:#e8efee; box-shadow:0 2px 9px rgba(0,0,0,.13); transition:transform .2s, box-shadow .2s; }
.stop-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.stop-thumb:hover{ transform:scale(1.05); box-shadow:0 7px 20px rgba(0,0,0,.22); }
.stop-thumb:focus-visible{ outline:2px solid #0E8F8A; outline-offset:2px; }
@media(max-width:560px){ .stop-thumb{ width:76px; height:60px; } .stop-body h4{ font-size:1rem; } }

/* highlights grid */
.hl-block{ margin-top:1.9rem; }
.hl-list{ margin-top:.7rem; }
.hl-row{ display:grid; grid-template-columns:minmax(0,1fr) auto; gap:1rem; align-items:center; padding:1rem 0; border-top:1px solid #e7e3db; }
.hl-row:first-child{ border-top:0; padding-top:.3rem; }
.hl-body h4{ margin:0 0 .25rem; font-size:1.02rem; }
.hl-body p{ margin:0; font-size:.92rem; color:#4b5563; line-height:1.5; }
.hl-thumb{ flex:0 0 auto; width:104px; height:78px; padding:0; border:0; border-radius:12px; overflow:hidden; cursor:zoom-in; background:#e8efee; box-shadow:0 2px 9px rgba(0,0,0,.13); transition:transform .2s, box-shadow .2s; }
.hl-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.hl-thumb:hover{ transform:scale(1.05); box-shadow:0 7px 20px rgba(0,0,0,.22); }
@media(max-width:560px){ .hl-thumb{ width:76px; height:60px; } }

/* price table */
.price-table{ width:100%; border-collapse:collapse; font-size:.95rem; }
.price-table th, .price-table td{ text-align:left; padding:.55rem .6rem; border-bottom:1px solid #ececec; }
.price-table thead th{ font-size:.78rem; text-transform:uppercase; letter-spacing:.04em; color:#6b7280; font-weight:600; }
.price-table tbody th{ font-weight:600; }
.price-table td{ font-variant-numeric:tabular-nums; }
.price-table small{ color:#9ca3af; font-weight:400; }

/* WhatsApp button */
.wa-btn{ display:inline-flex; align-items:center; justify-content:center; gap:.5rem; text-decoration:none; }
.wa-btn svg{ width:18px; height:18px; flex:0 0 auto; }

/* lightbox */
body.lb-open{ overflow:hidden; }
.lightbox{ position:fixed; inset:0; z-index:300; display:none; flex-direction:column; align-items:center; justify-content:center; gap:.8rem; background:rgba(8,12,14,.88); padding:4vmin; }
.lightbox.open{ display:flex; }
.lightbox figure{ margin:0; max-width:min(1100px,94vw); display:flex; flex-direction:column; gap:.6rem; }
.lightbox img{ max-width:100%; max-height:70vh; object-fit:contain; border-radius:8px; box-shadow:0 14px 44px rgba(0,0,0,.55); }
.lightbox figcaption{ color:#e9eef0; text-align:center; font-size:.95rem; }
.lb-close{ position:absolute; top:max(18px, env(safe-area-inset-top)); right:max(22px, env(safe-area-inset-right)); width:44px; height:44px; border:0; border-radius:50%; background:rgba(255,255,255,.14); color:#fff; font-size:1.7rem; line-height:1; cursor:pointer; z-index:2; }
.lb-close:hover{ background:rgba(255,255,255,.26); }
/* lightbox: prev/next + thumbnail strip to cycle through every tour photo */
.lb-nav{ position:absolute; top:50%; transform:translateY(-50%); width:48px; height:48px; border:0; border-radius:50%; background:rgba(255,255,255,.14); color:#fff; font-size:2rem; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; z-index:2; }
.lb-nav:hover{ background:rgba(255,255,255,.26); }
.lb-prev{ left:max(22px, env(safe-area-inset-left)); } .lb-next{ right:max(22px, env(safe-area-inset-right)); }
.lb-thumbs{ display:flex; gap:.5rem; max-width:min(1100px,94vw); overflow-x:auto; padding:.25rem 2px; scrollbar-width:none; scroll-snap-type:x proximity; }
.lb-thumbs::-webkit-scrollbar{ display:none; }
.lb-thumb{ flex:none; width:64px; height:48px; border-radius:8px; overflow:hidden; border:2px solid transparent; background:none; padding:0; cursor:pointer; opacity:.55; transition:opacity .2s ease, border-color .2s ease; scroll-snap-align:center; }
.lb-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.lb-thumb:hover{ opacity:.85; }
.lb-thumb.is-active{ opacity:1; border-color:#fff; }
/* keep the 44px tap minimum on phones: nav buttons stay 44px, thumbs keep 64×48 */
@media(max-width:600px){ .lb-nav{ width:44px; height:44px; font-size:1.6rem; } .lb-prev{ left:max(8px, env(safe-area-inset-left)); } .lb-next{ right:max(8px, env(safe-area-inset-right)); } }

/* currency dropdown — widen so labels never wrap */
#cur-menu{ min-width:240px; width:max-content; }
#cur-menu button{ white-space:nowrap; }
#cur-menu button > span{ white-space:nowrap; }

/* mobile: stop the nowrap gallery strip & grid tracks from forcing the page
   wider than the screen (classic flex/grid min-content overflow). */
@media (max-width: 920px){
  .detail-hero-inner, .detail-hero-text, .detail-thumbs, .detail-grid, .prose, .facts, .stops, .stop, .hl-list, .hl-row, .tabs, .tabs-nav{ min-width:0; max-width:100%; }
  .detail-thumbs{ width:100%; }
  .detail-grid{ grid-template-columns:minmax(0,1fr); }
  .tabs-nav{ display:flex; }
}

/* Skip link: visually hidden until keyboard-focused */
.skip-link{ position:absolute; left:-9999px; top:0; z-index:1000; background:#0B1F22; color:#fff; padding:.7rem 1.1rem; border-radius:0 0 10px 0; font-weight:600; }
.skip-link:focus{ left:0; }

/* "What's editable" outlines — Content-module Live Preview helper. The pill +
   outlines exist only inside Directus preview frames (see initFieldOutlines in
   kfg-app.js); normal visitors never see any of this. */
#kfg-fields-toggle{ position:fixed; left:14px; bottom:14px; z-index:290; background:#0B1F22; color:#fff; border:0; border-radius:999px; padding:.6rem 1rem; font:600 .8rem/1 "Hanken Grotesk",sans-serif; cursor:pointer; box-shadow:0 6px 20px rgba(0,0,0,.25); opacity:.85; }
#kfg-fields-toggle:hover{ opacity:1; }
.kfg-show-fields [data-directus]{ position:relative; outline:2px dashed #7C4DFF; outline-offset:3px; }
.kfg-show-fields [data-directus]::before{ content:attr(data-kfg-fields); position:absolute; left:0; top:-3px; transform:translateY(-100%); background:#7C4DFF; color:#fff; font:600 .62rem/1.1 "Hanken Grotesk",sans-serif; letter-spacing:.02em; padding:.2rem .45rem; border-radius:4px; white-space:nowrap; z-index:250; pointer-events:none; }
