/* ============================================================================
   NORDIC SEA ADVENTURES — V2 DESIGN SYSTEM
   ============================================================================

   One stylesheet, one system. Every page on the site loads this file and
   nothing else — the V1 stack it replaced (base/layout/components/pages.css)
   has been removed now that no page references it.

   PRINCIPLES
   - Premium through restraint. Deep maritime navy, warm off-white, one accent.
   - Photography sells the experience; type supports it.
   - Mobile first. Every scale below starts at the phone and grows.
   - One spacing scale, one type scale, one radius set, one shadow set.
     If a value is not on a scale, it does not belong here.
   ========================================================================== */

/* ---------------------------------------------------------------- tokens -- */
:root{
  /* Palette --------------------------------------------------------------
     Navy is the brand's ground. Paper is warm, not clinical white. The
     accent is the red of a Norwegian boathouse — authentic to the coast and
     unmistakable as "this is the action", used sparingly and never for
     decoration. */
  --ink:        #0B1F33;
  --ink-2:      #14324F;
  --ink-3:      #22415F;

  --paper:      #FBFAF7;
  --paper-2:    #F3EFE9;
  --paper-3:    #EAE4DB;

  --line:       #E3DDD4;
  --line-2:     #D3CABE;

  --text:       #0B1F33;
  --muted:      #55677A;
  --muted-2:    #7A889A;

  --accent:     #B0472A;
  --accent-ink: #8E361D;
  --accent-soft:#F6EBE6;

  --ok:         #1D6B52;
  --warn:       #9A6212;

  --on-dark:        rgba(255,255,255,0.96);
  --on-dark-muted:  rgba(255,255,255,0.74);
  --on-dark-line:   rgba(255,255,255,0.16);

  /* Spacing scale (4-based) ---------------------------------------------- */
  --s1: 4px;  --s2: 8px;   --s3: 12px; --s4: 16px; --s5: 20px;
  --s6: 24px; --s7: 32px;  --s8: 40px; --s9: 48px; --s10: 64px;
  --s11: 80px; --s12: 96px;

  /* Section rhythm: compact on a phone, generous on a desk. */
  --section-y: clamp(44px, 7vw, 96px);
  --section-y-tight: clamp(32px, 5vw, 64px);

  /* Container ------------------------------------------------------------ */
  --max:      1180px;
  --max-text: 68ch;
  --max-prose: 60ch;
  --gutter:   clamp(18px, 5vw, 40px);

  /* Type scale (fluid) ---------------------------------------------------- */
  --t-display: clamp(34px, 7.2vw, 68px);
  --t-h1:      clamp(30px, 6vw, 52px);
  --t-h2:      clamp(24px, 3.6vw, 38px);
  --t-h3:      clamp(19px, 2.2vw, 24px);
  --t-lead:    clamp(16px, 1.9vw, 20px);
  --t-body:    16px;
  --t-h4:      17px;
  --t-small:   14px;
  --t-micro:   12px;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";

  /* Radius / depth -------------------------------------------------------- */
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(11,31,51,0.06), 0 2px 8px rgba(11,31,51,0.05);
  --shadow:    0 2px 6px rgba(11,31,51,0.07), 0 10px 30px rgba(11,31,51,0.09);
  --shadow-lg: 0 8px 24px rgba(11,31,51,0.10), 0 24px 60px rgba(11,31,51,0.16);

  --header-h: 62px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----------------------------------------------------------------- reset -- */
*, *::before, *::after{ box-sizing: border-box; }

html{ -webkit-text-size-adjust: 100%; }

body{
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font);
  font-size: var(--t-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Nothing may push the page sideways on a phone. */
  overflow-x: hidden;
}

img, svg, video{ display: block; max-width: 100%; }
img{ height: auto; }
figure{ margin: 0; }

a{ color: inherit; text-decoration: none; }

h1,h2,h3,h4{ margin: 0; font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; }
p{ margin: 0; }
ul,ol{ margin: 0; padding: 0; }

button{ font: inherit; color: inherit; }

::selection{ background: rgba(176,71,42,0.16); }

/* Visible, consistent focus. Never removed — only shaped. */
:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.sr-only{
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link{
  position: absolute; left: var(--s4); top: -100px;
  z-index: 200; padding: 10px 16px; border-radius: var(--r);
  background: var(--ink); color: #fff; font-weight: 600;
  transition: top .15s var(--ease);
}
.skip-link:focus{ top: var(--s4); }

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ------------------------------------------------------------- structure -- */
.container{
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow{ max-width: 860px; }

.section{ padding-block: var(--section-y); }
.section--tight{ padding-block: var(--section-y-tight); }
.section--paper2{ background: var(--paper-2); }
.section--ink{ background: var(--ink); color: var(--on-dark); }
.section--ink .section-lead,
.section--ink .muted{ color: var(--on-dark-muted); }

/* Section heading block: eyebrow → title → lead, one rhythm everywhere. */
.eyebrow{
  display: block;
  font-size: var(--t-micro);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.section--ink .eyebrow{ color: rgba(255,255,255,0.62); }

.section-head{ max-width: var(--max-text); }
.section-head .eyebrow + .section-title{ margin-top: var(--s3); }
.section-title{
  font-family: var(--font-display);
  font-size: var(--t-h2);
  font-weight: 500;
  text-wrap: balance;
}
.section-lead{
  margin-top: var(--s4);
  max-width: var(--max-prose);
  font-size: var(--t-lead);
  color: var(--muted);
  text-wrap: pretty;
}
.section-head + *{ margin-top: clamp(24px, 4vw, 48px); }

/* ---------------------------------------------------------------- header -- */
.header{
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,31,51,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--on-dark-line);
}
.header__inner{
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s4);
}
.brand{
  display: inline-flex; align-items: baseline; gap: 8px;
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: clamp(15px, 4.2vw, 17px); font-weight: 500; letter-spacing: -0.01em;
  /* Must be able to shrink: at 320px the full name plus both controls is
     wider than the viewport, and a nowrap brand pushed the page sideways. */
  flex: 0 1 auto; min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.brand small{
  font-family: var(--font);
  font-size: 10px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--on-dark-muted);
}
.nav{ display: none; }
.nav a{
  color: var(--on-dark-muted);
  font-size: 14px; font-weight: 500;
  padding-block: 6px;
  border-bottom: 1px solid transparent;
  transition: color .15s var(--ease), border-color .15s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"]{
  color: var(--on-dark); border-bottom-color: var(--accent);
}
.header__actions{ display: flex; align-items: center; gap: var(--s2); }

.lang-toggle{
  min-width: 44px; height: 44px; padding-inline: 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--on-dark-line);
  background: rgba(255,255,255,0.06);
  color: var(--on-dark);
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  cursor: pointer;
  transition: background .15s var(--ease);
}
.lang-toggle:hover{ background: rgba(255,255,255,0.13); }

.burger{
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r);
  border: 1px solid var(--on-dark-line);
  background: rgba(255,255,255,0.06);
  cursor: pointer;
}
.burger span{
  display: block; position: relative;
  width: 17px; height: 1.5px; border-radius: 2px;
  background: var(--on-dark);
}
.burger span::before, .burger span::after{
  content: ""; position: absolute; left: 0;
  width: 17px; height: 1.5px; border-radius: 2px; background: inherit;
}
.burger span::before{ top: -5px; }
.burger span::after{ top: 5px; }

@media (min-width: 900px){
  .nav{ display: flex; align-items: center; gap: var(--s7); }
  .burger{ display: none; }
}

/* Mobile drawer -------------------------------------------------------- */
.drawer{
  position: fixed; inset: 0; z-index: 150;
  display: none;
}
.drawer[open], .drawer.is-open{ display: block; }
.drawer__scrim{
  position: absolute; inset: 0;
  background: rgba(6,16,28,0.55);
  backdrop-filter: blur(4px);
}
.drawer__panel{
  position: absolute; inset: 0 0 auto 0;
  background: var(--ink);
  padding: var(--s4) var(--gutter) var(--s7);
  border-bottom: 1px solid var(--on-dark-line);
  animation: drawer-in .22s var(--ease);
}
@keyframes drawer-in{ from{ transform: translateY(-12px); opacity: 0; } }
.drawer__top{
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--s2);
}
.drawer__close{
  width: 44px; height: 44px; border-radius: var(--r);
  border: 1px solid var(--on-dark-line);
  background: rgba(255,255,255,0.06); color: var(--on-dark);
  font-size: 18px; line-height: 1; cursor: pointer;
}
.drawer__list{ list-style: none; display: grid; gap: 2px; }
.drawer__list a{
  display: block; padding: 14px 12px;
  border-radius: var(--r);
  color: var(--on-dark);
  font-size: 17px; font-weight: 500;
}
.drawer__list a:hover{ background: rgba(255,255,255,0.07); }
.drawer__cta{ margin-top: var(--s5); }

/* --------------------------------------------------------------- buttons -- */
.btn{
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  --btn-bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s2);
  min-height: 48px;
  padding: 0 var(--s6);
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 15px; font-weight: 600; letter-spacing: -0.005em;
  text-align: center;
  cursor: pointer;
  transition: transform .12s var(--ease), background .15s var(--ease),
              border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn[disabled], .btn[aria-disabled="true"]{
  opacity: .45; cursor: not-allowed; transform: none;
}

.btn--primary{
  --btn-bg: var(--accent); --btn-bd: var(--accent);
  box-shadow: 0 1px 2px rgba(142,54,29,.28), 0 8px 22px rgba(142,54,29,.22);
}
.btn--primary:hover{ --btn-bg: var(--accent-ink); --btn-bd: var(--accent-ink); }

.btn--ghost{
  --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-2);
}
.btn--ghost:hover{ --btn-bg: var(--paper-2); --btn-bd: var(--muted-2); }

.btn--on-dark{
  --btn-bg: rgba(255,255,255,0.10); --btn-fg: #fff;
  --btn-bd: rgba(255,255,255,0.34);
  backdrop-filter: blur(6px);
}
.btn--on-dark:hover{ --btn-bg: rgba(255,255,255,0.20); }

.btn--lg{ min-height: 54px; padding-inline: var(--s8); font-size: 16px; }
.btn--block{ width: 100%; }

.btn-row{ display: flex; flex-wrap: wrap; gap: var(--s3); }
@media (max-width: 559px){
  .btn-row{ flex-direction: column; }
  .btn-row .btn{ width: 100%; }
}

.link-quiet{
  color: var(--muted); text-decoration: underline;
  text-underline-offset: 3px; text-decoration-color: var(--line-2);
}
.link-quiet:hover{ color: var(--ink); text-decoration-color: var(--accent); }

/* ------------------------------------------------------------------ hero -- */
.hero{
  position: relative;
  display: grid;
  isolation: isolate;
  background: var(--ink);
  color: var(--on-dark);
  /* Sizes to CONTENT with a sensible floor. No max-height cap: a cap plus
     overflow:hidden is what silently clipped content in V1. */
  min-height: min(78svh, 660px);
  align-content: end;
  padding-block: clamp(40px, 8vw, 104px);
  overflow: clip;
}
.hero__media{
  position: absolute; inset: 0; z-index: -2;
}
.hero__media img{
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 45%;
}
.hero::after{
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(6,17,29,.92) 0%, rgba(6,17,29,.58) 42%, rgba(6,17,29,.30) 100%),
    linear-gradient(to right, rgba(6,17,29,.55) 0%, rgba(6,17,29,0) 70%);
}
.hero__title{
  margin-top: var(--s4);
  font-family: var(--font-display);
  font-size: var(--t-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.028em;
  max-width: 18ch;
  text-wrap: balance;
}
.hero__lead{
  margin-top: var(--s5);
  max-width: 46ch;
  font-size: var(--t-lead);
  color: var(--on-dark-muted);
  text-wrap: pretty;
}
.hero__cta{ margin-top: clamp(24px, 3.5vw, 36px); }
.hero .eyebrow{ color: rgba(255,255,255,0.68); }

/* A short facts strip under the hero — price / duration / group size. */
.hero__facts{
  margin-top: clamp(24px, 3.5vw, 36px);
  display: flex; flex-wrap: wrap;
  gap: var(--s3) var(--s7);
  padding-top: var(--s5);
  list-style: none;
}
.hero__facts li{ font-size: var(--t-small); color: var(--on-dark-muted); }
.hero__facts b{
  display: block; font-size: 17px; font-weight: 600; color: var(--on-dark);
  font-variant-numeric: tabular-nums;
}

/* Page hero (shorter, for non-home pages) */
.hero--page{ min-height: min(52svh, 460px); }
/* Listing hero (tours.html): three lines of text under a bottom-anchored
   grid left a large empty field above them on phones. 60px shorter floor
   lifts the whole block by exactly 60px at any screen height. */
@media (max-width: 559px){
  .hero--list{ min-height: min(calc(52svh - 60px), 400px); }
}

/* About hero: three short lines inside the shared 460px floor, and .hero
   anchors content to the bottom, so 231px of empty background piled up above
   the eyebrow on a 390px screen. Scoped to this page so no other hero moves. */
.hero--about{ min-height: min(calc(52svh - 140px), 320px); }
.hero--page .hero__title{ font-size: var(--t-h1); }

/* ------------------------------------------------------- experience list -- */
/* Editorial rows, not a grid of boxes. The primary experience leads. */
.xp{
  display: grid;
  gap: clamp(20px, 3vw, 40px);
}
.xp + .xp{ margin-top: clamp(40px, 6vw, 88px); }

.xp__media{
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-3);
}
.xp__media img{
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .6s var(--ease);
}
.xp:hover .xp__media img{ transform: scale(1.02); }

.xp__flag{
  position: absolute; left: var(--s4); top: var(--s4);
  padding: 6px 12px; border-radius: var(--r-pill);
  background: rgba(11,31,51,.86);
  backdrop-filter: blur(6px);
  color: #fff; font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
}
.xp__title{
  font-family: var(--font-display);
  font-size: var(--t-h2); font-weight: 500;
  text-wrap: balance;
}
.xp__lead{
  margin-top: var(--s4); max-width: 52ch;
  color: var(--muted); text-wrap: pretty;
}
.xp__meta{
  margin-top: var(--s5);
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: var(--s2) var(--s6);
  padding-top: var(--s5);
  border-top: 1px solid var(--line);
  list-style: none;
}
.xp__price{
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 34px); font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.xp__price span{
  font-family: var(--font);
  font-size: var(--t-small); font-weight: 500; color: var(--muted);
  letter-spacing: 0;
}
.xp__fact{ font-size: var(--t-small); color: var(--muted); }
.xp__cta{ margin-top: var(--s6); }

@media (min-width: 860px){
  .xp{ grid-template-columns: 1.05fr 1fr; align-items: center; gap: clamp(32px, 4vw, 64px); }
  .xp--flip .xp__media{ order: 2; }
  .xp--lead .xp__media img{ aspect-ratio: 5 / 4; }
}

/* ---------------------------------------------------------------- values -- */
/* Four short reasons. Text only — no icon grid, no cards. */
.values{
  display: grid; gap: var(--s6);
  list-style: none;
  counter-reset: v;
}
.values li{ padding-top: var(--s4); border-top: 1px solid var(--line); }
.section--ink .values li{ border-top-color: var(--on-dark-line); }
.values h3{ font-size: var(--t-h3); font-weight: 600; }
.values p{ margin-top: var(--s2); color: var(--muted); font-size: var(--t-small); }
.section--ink .values p{ color: var(--on-dark-muted); }
@media (min-width: 640px){ .values{ grid-template-columns: repeat(2,1fr); gap: var(--s7); } }
@media (min-width: 1000px){ .values{ grid-template-columns: repeat(4,1fr); } }

/* ----------------------------------------------------------------- story -- */
.story{ display: grid; gap: clamp(24px, 4vw, 56px); align-items: center; }
.story__media img{
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r-lg);
}
/* Portrait photograph, shown at its own 3:4 ratio. The landscape .story
   frame cropped 44% of the height and took the face with it; matching the
   source ratio means nothing is cropped at all, so no object-position value
   can ever remove the head again. */
.story__media--portrait img{ aspect-ratio: 3 / 4; object-position: center top; }
/* Stacked, a full-width 3:4 frame gets very tall on a wide phone or tablet
   (922px at 768). Capping the width keeps the whole photograph -- nothing is
   cropped, it is simply not blown up. Above the breakpoint the two-column
   grid already constrains it. */
@media (max-width: 859px){
  .story__media--portrait img{ max-width: 420px; margin-inline: auto; }
}

/* Third-level heading inside prose. Display face so it belongs to the
   headings, but only a step above body copy so it groups paragraphs
   without competing with the section title. */
.prose h4{
  font-family: var(--font-display);
  font-size: var(--t-h4);
  font-weight: 600;
  color: var(--ink);
}
.prose > h4 + p{ margin-top: var(--s2); }
.prose > * + h4{ margin-top: var(--s6); }
.prose > * + *{ margin-top: var(--s4); }
.prose p{ color: var(--muted); max-width: var(--max-prose); text-wrap: pretty; }
.story__media--caption{ margin: 0; }
.story__media--caption img{
  aspect-ratio: auto; max-width: 420px; margin-inline: auto;
}
.story__media--caption figcaption{
  margin-top: var(--s3);
  font-size: var(--t-small);
  font-style: italic;
  color: var(--muted-2);
  text-align: center;
}

@media (min-width: 860px){ .story{ grid-template-columns: 1fr 1fr; } }

/* Mirrored variant, so two profile sections alternate instead of repeating.
   Only above the breakpoint: stacked on mobile the source order is what
   matters, and the image must stay above its text. */
@media (min-width: 860px){
  .story--flip .story__media{ order: 2; }
}


/* ------------------------------------------------------------ trust box -- */
/* Small, quiet credibility note placed near a booking decision. Same left
   rule as .notice so it belongs to the family; accent colour because this
   one is a reason to book rather than a caveat. */
.trust{
  border-left: 3px solid var(--accent);
  background: var(--paper-2);
  border-radius: 0 var(--r) var(--r) 0;
  padding: var(--s4) var(--s5);
  text-align: left;
  max-width: var(--max-prose);
}
.trust .trust__title{
  font-size: var(--t-small);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.trust p, .trust .trust__title + p{ margin: var(--s2) 0 0 0; font-size: var(--t-small); color: var(--muted); }

/* ------------------------------------------------------------- spec list -- */
/* "What's included" / practical info. A definition list, not cards. */
.spec{ display: grid; gap: 0; list-style: none; }
.spec li{
  display: grid; gap: var(--s1);
  padding-block: var(--s4);
  border-bottom: 1px solid var(--line);
}
.spec li:first-child{ border-top: 1px solid var(--line); }
.spec dt, .spec__k{
  font-size: var(--t-micro); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2);
}
.spec dd, .spec__v{ margin: 0; color: var(--text); }
@media (min-width: 700px){
  .spec li{ grid-template-columns: 200px 1fr; gap: var(--s6); align-items: baseline; }
}

.checks{ list-style: none; display: grid; gap: var(--s3); }
.checks li{
  position: relative; padding-left: 28px; color: var(--text);
}
.checks li::before{
  content: ""; position: absolute; left: 0; top: 8px;
  width: 16px; height: 9px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------------------------------------------------------------- notice -- */
.notice{
  padding: var(--s4) var(--s5);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r) var(--r) 0;
  background: var(--paper-2);
  color: var(--muted);
  font-size: var(--t-small);
}
.notice strong{ color: var(--text); }
.notice--error{
  border-color: #E4C5BD; border-left-color: var(--accent);
  background: var(--accent-soft); color: var(--accent-ink);
}
.notice--ok{
  border-color: #C4DBD0; border-left-color: var(--ok); background: #EFF6F2;
  color: #14503D;
}

/* --------------------------------------------------------------- gallery -- */
.gallery{
  display: grid; gap: var(--s3);
  grid-template-columns: repeat(2, 1fr);
}
.gallery img{
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--r);
}
.gallery > *:first-child{ grid-column: 1 / -1; }
.gallery > *:first-child img{ aspect-ratio: 16 / 10; }
@media (min-width: 700px){
  .gallery{ grid-template-columns: repeat(4, 1fr); }
  .gallery > *:first-child{ grid-column: span 2; grid-row: span 2; }
  .gallery > *:first-child img{ aspect-ratio: 1; }
}

/* ---------------------------------------------------------------- footer -- */
.footer{
  background: var(--ink); color: var(--on-dark);
  padding-block: var(--s10) var(--s7);
}
.footer a{ color: var(--on-dark-muted); }
.footer a:hover{ color: var(--on-dark); }
.footer__grid{ display: grid; gap: var(--s8); }
.footer__brand{ font-family: var(--font-display); font-size: 22px; font-weight: 500; }
.footer__tag{ margin-top: var(--s3); color: var(--on-dark-muted); max-width: 34ch; font-size: var(--t-small); }
.footer h4{
  font-size: var(--t-micro); letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,0.52); font-weight: 600;
}
.footer ul{ list-style: none; margin-top: var(--s4); display: grid; gap: var(--s3); font-size: var(--t-small); }
.footer__bottom{
  margin-top: var(--s9); padding-top: var(--s5);
  border-top: 1px solid var(--on-dark-line);
  display: flex; flex-wrap: wrap; gap: var(--s3) var(--s6);
  justify-content: space-between;
  font-size: var(--t-micro); color: rgba(255,255,255,0.55);
}
@media (min-width: 760px){
  .footer__grid{ grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s10); }
}

/* -------------------------------------------------- sticky mobile CTA bar -- */
.bookbar{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  align-items: center; gap: var(--s4);
  padding: 10px var(--gutter);
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: rgba(11,31,51,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--on-dark-line);
  color: var(--on-dark);
}
.bookbar__info{ min-width: 0; }
.bookbar__price{
  font-size: 15px; font-weight: 600; white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.bookbar__sub{
  font-size: var(--t-micro); color: var(--on-dark-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bookbar .btn{ margin-left: auto; flex: 0 0 auto; min-height: 46px; padding-inline: var(--s6); }
@media (max-width: 899px){
  .bookbar{ display: flex; }
  body.has-bookbar{ padding-bottom: 76px; }
}

/* ============================================================================
   BOOKING FLOW
   ========================================================================== */
.booking{ padding-block: var(--section-y-tight) var(--section-y); }

.booking__head{ max-width: var(--max-text); }
.booking__title{
  font-family: var(--font-display);
  font-size: var(--t-h1); font-weight: 500; text-wrap: balance;
}
.booking__lead{ margin-top: var(--s4); color: var(--muted); font-size: var(--t-lead); }

.booking__layout{ margin-top: clamp(28px, 4vw, 48px); display: grid; gap: var(--s8); }
@media (min-width: 1000px){
  .booking__layout{ grid-template-columns: minmax(0,1fr) 360px; gap: var(--s10); align-items: start; }
  .booking__aside{ position: sticky; top: calc(var(--header-h) + 24px); }
}

/* Progress: a quiet rail, not a loud stepper. */
.steps{
  display: flex; align-items: center; gap: var(--s2);
  list-style: none; margin-bottom: var(--s7);
}
.steps li{
  flex: 1 1 0; min-width: 0;
  display: grid; gap: 6px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted-2);
}
.steps li::before{
  content: ""; display: block; height: 3px; border-radius: 2px;
  background: var(--line);
  transition: background .3s var(--ease);
}
.steps .is-done{ color: var(--muted); }
.steps .is-done::before{ background: var(--line-2); }
.steps .is-current{ color: var(--accent); }
.steps .is-current::before{ background: var(--accent); }
.steps__label{ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 479px){
  /* Keep the rail, drop the words — five labels never fit at 320px. */
  .steps__label{ display: none; }
  .steps{ gap: 6px; margin-bottom: var(--s6); }
}

.step-title{
  font-family: var(--font-display);
  font-size: var(--t-h2); font-weight: 500; text-wrap: balance;
}
.step-sub{ margin-top: var(--s3); color: var(--muted); }
.step-title + .choice-list,
.step-title + .step-sub + .choice-list,
.step-title + .form,
.step-title + .step-sub + .form{ margin-top: var(--s7); }

.back-link{
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: var(--s5);
  padding: 8px 14px 8px 10px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  background: none;
  color: var(--muted);
  font-size: var(--t-small); font-weight: 600;
  cursor: pointer;
}
.back-link:hover{ background: var(--paper-2); color: var(--ink); }

/* --- selectable option (experience / departure) ------------------------- */
.choice-list{ display: grid; gap: var(--s3); }

.choice{
  position: relative;
  display: grid;
  width: 100%;
  text-align: left;
  padding: var(--s5);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  cursor: pointer;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease),
              transform .12s var(--ease);
}
.choice:hover{ border-color: var(--muted-2); box-shadow: var(--shadow-sm); }
.choice:active{ transform: translateY(1px); }
.choice[disabled]{
  opacity: .55; cursor: not-allowed; background: var(--paper-2);
}
.choice[disabled]:hover{ border-color: var(--line); box-shadow: none; }

/* Selection must be unmistakable: accent border + tint + a mark. */
.choice.is-selected{
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-sm);
  background: var(--accent-soft);
}
.choice.is-selected::after{
  content: ""; position: absolute; right: var(--s5); top: var(--s5);
  width: 15px; height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.choice__media{
  margin: calc(var(--s5) * -1) calc(var(--s5) * -1) var(--s5);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
}
.choice__media img{ width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.choice__title{ font-size: var(--t-h3); font-weight: 600; }
.choice__desc{ margin-top: var(--s2); font-size: var(--t-small); color: var(--muted); }
.choice__row{
  margin-top: var(--s4);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--s2) var(--s5);
}
.choice__price{
  font-size: 19px; font-weight: 600; font-variant-numeric: tabular-nums;
}
.choice__price small{ font-size: var(--t-small); font-weight: 500; color: var(--muted); }
.choice__fact{ font-size: var(--t-small); color: var(--muted); }

/* Departure row: date left, availability right. */
.choice--row{
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s4); padding: var(--s4) var(--s5);
}
.choice--row.is-selected::after{ display: none; }
.choice__when strong{ display: block; font-size: 16px; font-weight: 600; }
.choice__when span{ font-size: var(--t-small); color: var(--muted); }
.seats{
  flex: 0 0 auto;
  font-size: var(--t-small); font-weight: 600; color: var(--ok);
  text-align: right;
}
.seats--low{ color: var(--warn); }
.seats--out{ color: var(--muted-2); font-weight: 500; }

/* --- quantity stepper --------------------------------------------------- */
.ticket{
  display: flex; align-items: center; gap: var(--s4);
  padding: var(--s5) 0;
  border-bottom: 1px solid var(--line);
}
.ticket:first-child{ border-top: 1px solid var(--line); }
.ticket__info{ min-width: 0; flex: 1 1 auto; }
.ticket__name{ font-size: 17px; font-weight: 600; }
.ticket__desc{ margin-top: 4px; font-size: var(--t-small); color: var(--muted); }
.ticket__price{
  margin-top: var(--s2); font-size: var(--t-small); font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.ticket__price span{ font-weight: 500; color: var(--muted); }

.stepper{
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 2px;
  padding: 4px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  background: #fff;
}
.stepper button{
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: transparent;
  font-size: 20px; line-height: 1; color: var(--ink);
  cursor: pointer;
  transition: background .12s var(--ease);
}
.stepper button:hover:not([disabled]){ background: var(--paper-2); }
.stepper button[disabled]{ color: var(--line-2); cursor: not-allowed; }
.stepper output{
  min-width: 32px; text-align: center;
  font-size: 17px; font-weight: 600; font-variant-numeric: tabular-nums;
}

.pill{
  display: inline-block; margin-left: var(--s2);
  padding: 2px 9px; border-radius: var(--r-pill);
  background: var(--paper-2); border: 1px solid var(--line);
  font-size: 11px; font-weight: 600; color: var(--muted);
  vertical-align: 2px;
}

/* --- running total ------------------------------------------------------ */
.total{
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--s4);
  margin-top: var(--s6);
  padding-top: var(--s5);
  border-top: 2px solid var(--ink);
}
.total__label{ font-size: var(--t-small); color: var(--muted); }
.total__value{
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 30px); font-weight: 500;
  font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
}
.remaining{ margin-top: var(--s3); font-size: var(--t-small); color: var(--muted); }

/* --- form --------------------------------------------------------------- */
.form{ display: grid; gap: var(--s5); }
.form__row{ display: grid; gap: var(--s5); }
@media (min-width: 560px){ .form__row{ grid-template-columns: 1fr 1fr; } }

.field{ display: grid; gap: 6px; }
.field label{ font-size: var(--t-small); font-weight: 600; }
.field .hint{ font-size: var(--t-micro); color: var(--muted-2); font-weight: 500; }
.field select{
  width: 100%; max-width: 100%; min-width: 0;
  min-height: 50px; padding: 13px var(--s4);
  border: 1px solid var(--line-2); border-radius: var(--r);
  background: #fff; color: var(--text);
  font-family: var(--font); font-size: 16px;
}
.field select:focus{
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(176,71,42,.14);
}
/* Grid children default to min-width:auto, which lets a wide control push the
   whole row past the viewport instead of shrinking. */
.form__row > *{ min-width: 0; }

.field input, .field textarea{
  width: 100%;
  min-height: 50px;
  padding: 13px var(--s4);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  /* 16px: anything smaller makes iOS Safari zoom on focus mid-booking. */
  font-size: 16px;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea{ min-height: 92px; resize: vertical; line-height: 1.5; }
.field input:focus, .field textarea:focus{
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(176,71,42,.14);
}
.field input[aria-invalid="true"]{ border-color: var(--accent); background: #FFFBFA; }
.field__error{ font-size: var(--t-small); color: var(--accent-ink); font-weight: 500; }

.errors:empty{ display: none; }
.errors{
  display: grid; gap: 4px;
  padding: var(--s4);
  border-radius: var(--r);
  background: var(--accent-soft);
  border: 1px solid #E4C5BD;
  color: var(--accent-ink);
  font-size: var(--t-small);
}

/* --- review / summary card --------------------------------------------- */
.summary{
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  overflow: hidden;
}
.summary__media img{ width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.summary__body{ padding: var(--s5); }
.summary__title{ font-size: var(--t-h3); font-weight: 600; text-wrap: balance; }
.summary__when{ margin-top: var(--s2); color: var(--muted); font-size: var(--t-small); }
.summary__lines{
  list-style: none; margin-top: var(--s5);
  display: grid; gap: var(--s3);
  padding-top: var(--s4); border-top: 1px solid var(--line);
  font-size: var(--t-small);
}
.summary__lines li{ display: flex; justify-content: space-between; gap: var(--s4); }
.summary__lines b{ font-variant-numeric: tabular-nums; font-weight: 600; }
.summary__who{
  margin-top: var(--s5); padding-top: var(--s4);
  border-top: 1px solid var(--line);
  font-size: var(--t-small); color: var(--muted); line-height: 1.7;
}
.summary .total{ margin-top: var(--s4); }

.pay-note{
  margin-top: var(--s4);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: var(--t-micro); color: var(--muted);
}

/* --- confirmation ------------------------------------------------------- */
.confirm{ max-width: 720px; margin-inline: auto; text-align: center; }
.confirm__mark{
  width: 64px; height: 64px; margin: 0 auto var(--s6);
  display: grid; place-items: center;
  border-radius: 50%;
  background: #EFF6F2; border: 1px solid #C4DBD0;
}
.confirm__mark::after{
  content: ""; width: 22px; height: 12px;
  border-left: 2.5px solid var(--ok); border-bottom: 2.5px solid var(--ok);
  transform: rotate(-45deg) translate(2px, -2px);
}
.confirm__title{
  font-family: var(--font-display);
  font-size: var(--t-h1); font-weight: 500;
}
.confirm__ref{
  margin-top: var(--s5);
  display: inline-flex; flex-direction: column; gap: 4px;
  padding: var(--s4) var(--s7);
  border: 1px dashed var(--line-2); border-radius: var(--r);
  background: #fff;
}
.confirm__ref span{
  font-size: var(--t-micro); letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-2); font-weight: 600;
}
.confirm__ref strong{
  font-family: var(--font-display);
  font-size: 26px; font-weight: 500; letter-spacing: .04em;
}
.confirm .spec{ margin-top: var(--s8); text-align: left; }
.confirm__next{ margin-top: var(--s8); text-align: left; }

/* --- states ------------------------------------------------------------- */
.skeleton{
  display: grid; gap: var(--s3);
}
.skeleton div{
  height: 84px; border-radius: var(--r-lg);
  background: linear-gradient(90deg, var(--paper-2) 25%, var(--paper-3) 37%, var(--paper-2) 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}
@keyframes shimmer{ from{ background-position: 100% 0; } to{ background-position: 0 0; } }

.empty{
  padding: var(--s8) var(--s5);
  text-align: center; color: var(--muted);
  border: 1px dashed var(--line-2); border-radius: var(--r-lg);
}

/* --------------------------------------------------------------- utility -- */
.muted{ color: var(--muted); }
.small{ font-size: var(--t-small); }
.center{ text-align: center; }
.stack-4 > * + *{ margin-top: var(--s4); }
.stack-6 > * + *{ margin-top: var(--s6); }
.mt-6{ margin-top: var(--s6); }
.mt-8{ margin-top: var(--s8); }

/* Header CTA: desktop only — on mobile the drawer and the sticky bar carry it. */
.header__book{ display: none; min-height: 40px; padding-inline: 18px; font-size: 14px; }
@media (min-width: 900px){ .header__book{ display: inline-flex; } }

/* In-page anchors must clear the sticky header, or "Explore experiences"
   lands with the heading hidden behind it. */
[id]{ scroll-margin-top: calc(var(--header-h) + 12px); }

/* <picture> is only a wrapper for format negotiation — it must not change
   layout, so it behaves exactly as the <img> did before. */
picture{ display: block; }
.hero__media picture{ width: 100%; height: 100%; }

/* ---------------------------------------------------- future experiences -- */
/* A status marker, deliberately NOT a button: nothing here is clickable,
   because nothing here is bookable. */
.status{
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid var(--on-dark-line);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  color: var(--on-dark);
  font-size: var(--t-micro); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
}
/* On paper backgrounds the same marker inverts. */
.section .status{
  border-color: var(--line-2);
  background: var(--paper-2);
  backdrop-filter: none;
  color: var(--accent-ink);
}
.status--lg{ padding: 10px 22px; font-size: var(--t-small); letter-spacing: .12em; }

.hero--future{ min-height: min(68svh, 600px); }
.hero__note{
  margin-top: var(--s5);
  font-size: var(--t-small);
  color: var(--on-dark-muted);
}
.hero--future .hero__title{ margin-top: var(--s5); }

/* The "not decided yet" list reuses .values but reads as candid, not as a
   feature grid, so the headings stay quiet. */
.section--ink .values h3{ font-size: var(--t-h3); font-weight: 600; }

/* Future-experience cards on the experience index. Quieter than a bookable
   experience by design — muted photograph, no price, no book button. */
.future-grid{ display: grid; gap: var(--s5); }
@media (min-width: 700px){ .future-grid{ grid-template-columns: 1fr 1fr; } }

.future-card{
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease),
              transform .12s var(--ease);
}
.future-card:hover{
  border-color: var(--line-2); box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.future-card img{
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  filter: saturate(.82);
  transition: filter .3s var(--ease);
}
.future-card:hover img{ filter: saturate(1); }
.future-card__body{ padding: var(--s5); }
.future-card__body h3{ margin-top: var(--s4); font-size: var(--t-h3); font-weight: 600; }
.future-card__body p{ margin-top: var(--s2); color: var(--muted); font-size: var(--t-small); }

/* ------------------------------------------------------------- souvenirs -- */
/* An editorial price list, not an e-commerce table. */
.price-list{ list-style: none; display: grid; gap: 0; }
.price-list li{
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--s5);
  padding-block: var(--s5);
  border-bottom: 1px solid var(--line);
}
.price-list li:first-child{ border-top: 1px solid var(--line); }
.price-list__name{ font-size: var(--t-h3); font-weight: 500; }
.price-list__value{
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px); font-weight: 500;
  font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
}

/* The information sheet is a document, not a photograph: it is meant to be
   read, so it keeps its own proportions and is never cropped to fit a frame. */
.sheet{
  max-width: 820px; margin-inline: auto;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; background: #fff;
  box-shadow: var(--shadow-sm);
}
.sheet img{ width: 100%; height: auto; object-fit: contain; }

/* --------------------------------------------------------------- video -- */
/* The Atlantic Road clip is portrait phone footage, so it gets a column of
   its own rather than being stretched across the page. */
.video-row{ display: grid; gap: clamp(24px, 4vw, 56px); align-items: center; }
@media (min-width: 860px){
  .video-row{ grid-template-columns: 1fr minmax(0, 360px); }
}

.video-frame{
  margin: 0;
  max-width: 380px;
  margin-inline: auto;
  width: 100%;
}
.video-frame video{
  display: block;
  width: 100%;
  height: auto;
  /* Reserves the box before metadata arrives, so nothing jumps. */
  aspect-ratio: 9 / 16;
  border-radius: var(--r-lg);
  background: var(--ink);
  box-shadow: var(--shadow);
}
.video-frame figcaption{
  margin-top: var(--s3);
  font-size: var(--t-micro);
  color: var(--muted-2);
  text-align: center;
}
