/* ===========================================================
   Meridian Fairways Travel
   Light throughout. Feature bands use .tint - a pale fairway wash -
   rather than a dark inversion. Every component reads the same
   tokens, so .tint restyles a whole section with no extra rules.
   Green (#1F5C46) is the golf reference and primary highlight;
   brass is kept only for prices and the 30-degree figure.
   =========================================================== */

:root {
  /* Page surface */
  --bg:      #F8F6F0;   /* warm chalk                                  */
  --surface: #EFEBE0;   /* raised panel                                */
  --rule:    #DDD7C8;   /* hairline                                    */
  --text:    #14180F;   /* primary   (16.6:1 on --bg)                  */
  --text-2:  #5C5F52;   /* secondary  (5.8:1 on --bg)                  */

  /* Green is the golf reference and the primary highlight. */
  --accent:  #1F5C46;   /* fairway green (7.4:1 on --bg)               */
  --accent-lt:#2F8562;  /* lighter green, hovers and fills             */
  --accent-2:#7C8674;   /* muted sage, structural marks                */
  --warm:    #7A6B18;   /* brass, kept for prices and the 30 degrees   */

  /* Type */
  --display: "Fraunces", Georgia, serif;
  --body:    "Archivo", system-ui, -apple-system, sans-serif;
  --mono:    "Azeret Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Space scale - one ladder, used everywhere */
  --s1: .5rem;
  --s2: .85rem;
  --s3: 1.4rem;
  --s4: 2.2rem;
  --s5: clamp(2.4rem, 4vw, 3.4rem);
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --band:   clamp(3.5rem, 7vw, 6.5rem);
  --maxw:   76rem;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* Tinted feature band - a pale fairway wash, not a dark inversion */
.tint {
  --bg:      #EDF2EA;
  --surface: #E2EAE0;
  --rule:    #CFDACB;
  background: var(--bg);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; font-weight: 400; line-height: 1.06; }
p { margin: 0; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.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 {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--bg);
  padding: .6rem 1rem; font-weight: 600;
}
.skip:focus { left: 0; }

/* coming-soon notice — every page, always visible, not dismissible */
.soon {
  display: flex; align-items: center; justify-content: center;
  padding: .7rem 1rem;
  background: var(--text); color: var(--bg);
  text-align: center;
}
.soon__text {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center;
  gap: .5rem .6rem;
  font-size: .84rem;
  max-width: 60rem;
}
.soon__badge {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--warm);
  border: 1px solid currentColor; border-radius: 2px;
  padding: .15rem .45rem;
}
.soon .ilink { color: var(--bg); }
.soon .ilink:hover { color: var(--warm); }

/* --- shared -------------------------------------------------- */

.eyebrow {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s2);
}

.btn {
  display: inline-block;
  padding: .85rem 1.6rem;
  font-family: var(--body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .03em;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease), transform .22s var(--ease);
}
.btn--solid { background: var(--accent); color: var(--bg); }
.btn--solid:hover { background: var(--text); transform: translateY(-2px); }
.btn--ghost { border-color: var(--rule); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.section {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--band) var(--gutter);
}
/* A tinted band bleeds full width; its inner content keeps the measure. */
.bandwrap { background: var(--bg); }
.bandwrap > .section { background: transparent; }

.h-lg, .h-md {
  font-family: var(--display);
  letter-spacing: -.02em;
}
.h-lg {
  font-variation-settings: "opsz" 100, "wght" 350, "SOFT" 30, "WONK" 1;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  margin-bottom: var(--s3);
  max-width: 22ch;
}
.h-md {
  font-variation-settings: "opsz" 60, "wght" 420, "SOFT" 20, "WONK" 1;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}

.lede { max-width: 54ch; color: var(--text-2); font-size: clamp(1rem, 1.4vw, 1.1rem); }
.note { color: var(--text-2); font-size: .93rem; max-width: 62ch; }

/* Vertical rhythm. Blocks that follow a heading or a note get one
   consistent gap instead of per-instance inline margins. */
.h-lg + .note,
.h-lg + .lede { margin-top: calc(var(--s3) * -0.35); }

.note + .panels,  .note + .trips,   .note + .chart,
.note + .inc,     .note + .gallery, .note + .sched,
.note + .ptable,  .note + .facts,   .note + .twocol,
.note + .navcards { margin-top: var(--s5); }

.h-lg + .panels,  .h-lg + .trips,   .h-lg + .sched,
.h-lg + .inc,     .h-lg + .gallery, .h-lg + .ptable,
.h-lg + .navcards,.h-lg + .facts,   .h-lg + .twocol { margin-top: var(--s4); }

.lede + .panels,  .lede + .trips,   .lede + .facts { margin-top: var(--s5); }

.ilink {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: .18em;
  text-decoration-thickness: 1px;
  transition: color .2s var(--ease);
}
.ilink:hover { color: var(--text); }

.num { font-family: var(--mono); color: var(--accent); }

/* --- nav ----------------------------------------------------- */

/* Banner + nav stick together as one block — sticking .nav alone would let
   it cover the banner the moment the page scrolls, so the banner would
   only ever be visible before the first scroll. */
.topstack { position: sticky; top: 0; z-index: 100; }

.nav {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1rem var(--gutter);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav__mark {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--display);
  font-variation-settings: "opsz" 30, "wght" 520, "SOFT" 20, "WONK" 1;
  font-size: 1.04rem;
  white-space: nowrap;
}
.nav__rule { width: 1px; height: 1.05em; background: var(--accent); }
.nav__mark-b { color: var(--text-2); }

.nav__links {
  display: flex; gap: 1.15rem;
  margin-left: auto;
  font-size: .82rem;
  color: var(--text-2);
}
/* Nav labels must never wrap — German and Swedish run longer than English
   and were breaking across two lines in the bar. */
.nav__links a { white-space: nowrap; }
.nav__links a { transition: color .2s var(--ease); }
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: var(--text); }

.nav__cta { padding: .58rem 1.15rem; }

/* language + currency switchers */
.switches { display: flex; align-items: center; gap: .7rem; margin-left: 1rem; flex: 0 0 auto; }

.lang { display: flex; align-items: center; gap: .15rem; }
.lang__btn {
  display: flex; align-items: center; gap: .3rem;
  font-family: var(--mono);
  font-size: .58rem; letter-spacing: .08em; text-transform: uppercase;
  background: none; border: 1px solid transparent; cursor: pointer;
  color: var(--text-2);
  padding: .26rem .4rem;
  border-radius: 3px;
  transition: color .2s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease);
}
/* Inline SVG, not emoji: Windows ships no colour flag glyphs, so
   regional-indicator emoji render as the bare letters "SE" / "GB". */
.flag {
  width: 16px; height: 10px; display: block; flex: 0 0 auto;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .12);
}
.lang__btn:hover { color: var(--text); background: var(--surface); }
.lang__btn[aria-pressed="true"] { color: var(--text); background: var(--surface); border-color: var(--accent); }

.cur { display: flex; align-items: center; gap: .05rem; padding-left: .7rem; border-left: 1px solid var(--rule); flex-wrap: nowrap; }
.cur__btn {
  font-family: var(--mono);
  font-size: .58rem; letter-spacing: .1em; text-transform: uppercase;
  background: none; border: 1px solid transparent; cursor: pointer;
  color: var(--text-2);
  padding: .3rem .42rem;
  border-radius: 3px;
  transition: color .2s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease);
}
.cur__btn:hover { color: var(--text); background: var(--surface); }
.cur__btn[aria-pressed="true"] { color: var(--text); background: var(--surface); border-color: var(--accent); }

.money { white-space: nowrap; }

/* hamburger — the nav used to simply vanish below 900px */
.burger {
  display: none;
  margin-left: auto;
  width: 42px; height: 38px;
  background: none; border: 1px solid var(--rule); border-radius: 2px;
  cursor: pointer;
  align-items: center; justify-content: center;
  padding: 0;
}
.burger__bar { display: block; width: 17px; height: 1.5px; background: var(--text); position: relative; transition: background-color .2s var(--ease); }
.burger__bar::before, .burger__bar::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.5px; background: var(--text);
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.burger__bar::before { top: -6px; }
.burger__bar::after  { top: 6px; }
.burger[aria-expanded="true"] .burger__bar { background: transparent; }
.burger[aria-expanded="true"] .burger__bar::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav { flex-wrap: wrap; gap: .8rem; }
  .nav__cta { order: 3; font-size: .78rem; padding: .52rem 1rem; }
  .lang { order: 2; margin-left: 0; }

  .nav__links {
    order: 4;
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    border-top: 1px solid var(--rule);
    padding-top: .4rem;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a {
    padding: .85rem .2rem;
    border-bottom: 1px solid var(--rule);
    font-size: 1rem;
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__links a[aria-current="page"] { color: var(--accent); }
}

/* --- breadcrumbs / page hero --------------------------------- */

.crumbs {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 1.5rem var(--gutter) 0;
  font-family: var(--mono);
  font-size: .63rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-2);
  display: flex; flex-wrap: wrap; gap: .6rem;
}
.crumbs a:hover { color: var(--accent); }
.crumbs [aria-current="page"] { color: var(--accent); }

.phero {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(2.2rem, 5vw, 4rem) var(--gutter) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--rule);
}
.phero__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "wght" 350, "SOFT" 30, "WONK" 1;
  font-size: clamp(2.1rem, 5.4vw, 4rem);
  letter-spacing: -.025em;
  margin-bottom: 1.1rem;
}

/* --- thank-you landing (tack.html) ------------------------------ */

.thanks {
  max-width: 34rem;
  margin-inline: auto;
  padding: clamp(4rem, 10vw, 7rem) var(--gutter);
  text-align: center;
}
.thanks__mark {
  width: 3.2rem; height: 3.2rem;
  margin: 0 auto 1.6rem;
  color: var(--accent);
}
.thanks__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "wght" 350, "SOFT" 30, "WONK" 1;
  font-size: clamp(2rem, 4.6vw, 2.8rem);
  letter-spacing: -.025em;
  margin-bottom: 1rem;
}
.thanks__lede { color: var(--text-2); font-size: clamp(1rem, 1.4vw, 1.1rem); margin-bottom: 2.2rem; }
.thanks__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; }

/* --- hero (tinted band) ---------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) var(--gutter) 0;
}
.hero__in { max-width: var(--maxw); margin-inline: auto; position: relative; z-index: 1; }
.hero__scene { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__scene::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    var(--bg) 0%,
    color-mix(in srgb, var(--bg) 86%, transparent) 34%,
    transparent 64%);
}
.contour { width: 100%; height: 100%; display: block; }
.contour__lines path { fill: none; stroke: var(--accent); stroke-width: 1.15; opacity: .45; }
.contour__lines path:nth-child(n + 5) { stroke: var(--accent-2); opacity: .5; }
.contour__sun { fill: var(--warm); opacity: .14; }
.contour__meridian { stroke: var(--accent); stroke-width: 1; opacity: .4; stroke-dasharray: 4 7; }

.hero__body { max-width: 46rem; }

.split {
  display: flex; align-items: flex-end;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
  border-bottom: 1px solid var(--rule);
}
.split__side { flex: 1; min-width: 0; }
.split__num {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 20, "WONK" 0;
  font-size: clamp(3rem, 10vw, 6.4rem);
  line-height: .84;
  letter-spacing: -.03em;
}
/* --text-2 rather than --accent-2: the olive/slate reads at only ~3.2:1
   on the dark band, which is too faint for the page's opening statement. */
.split__num--cold { color: var(--text-2); }
.split__num--warm { color: var(--warm); }
.split__label {
  font-family: var(--mono);
  font-size: .64rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--text-2);
  margin-top: .85rem;
}
.split__vs {
  font-family: var(--mono);
  font-size: .58rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-2); text-align: center; line-height: 1.5;
  padding-bottom: .9rem;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.3rem, 6.6vw, 5rem);
  font-variation-settings: "opsz" 144, "wght" 370, "SOFT" 30, "WONK" 1;
  letter-spacing: -.025em;
  margin-bottom: 1.4rem;
}
.hero__line { display: block; }
.hero__line--em {
  color: var(--accent);
  font-style: italic;
  font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 60, "WONK" 1;
}
.hero__lede { max-width: 36rem; color: var(--text-2); font-size: clamp(1rem, 1.5vw, 1.1rem); margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  background: var(--rule);
  border-top: 1px solid var(--rule);
}
.stat { background: var(--bg); padding: 1.15rem 0 1.5rem; }
.stat dt {
  font-family: var(--mono);
  font-size: .63rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: .45rem;
}
.stat dd {
  margin: 0;
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "wght" 400, "SOFT" 20, "WONK" 0;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  line-height: 1;
}
.stat__unit { font-family: var(--mono); font-size: .6rem; color: var(--text-2); margin-left: .3rem; letter-spacing: .08em; }

@media (max-width: 620px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .split { flex-direction: column; align-items: stretch; gap: 1.3rem; }
  .split__vs { display: none; }
}

/* --- prose grid ---------------------------------------------- */

.pgrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  column-gap: clamp(2rem, 5vw, 4.5rem);
  row-gap: var(--s3);
  align-items: start;
}
/* The grid owns the spacing between the two columns, so the heading
   must not also carry a bottom margin - that was doubling the gap
   every time the layout stacked. */
.pgrid > .h-lg { margin-bottom: 0; }
.pgrid__body { color: var(--text-2); display: grid; gap: var(--s3); }
.pgrid__body p { max-width: 52ch; }
@media (max-width: 860px) { .pgrid { grid-template-columns: 1fr; } }

/* --- season band --------------------------------------------- */

.chart { margin: clamp(2rem, 5vw, 3.5rem) 0 0; }
.band { position: relative; }
.band__rowlabel {
  font-family: var(--mono);
  font-size: .62rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: .5rem;
}
.band__rowlabel + .band__row { margin-bottom: 1.4rem; }
.band__row { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(2px, .4vw, 6px); }
.mn { height: clamp(2.6rem, 6vw, 4.25rem); }
.mn__cell { display: block; width: 100%; height: 100%; border-radius: 2px; transform-origin: bottom; }

.band__row--se .mn[data-state="oppet"]  .mn__cell { background: var(--accent); }
.band__row--se .mn[data-state="stangt"] .mn__cell {
  background: repeating-linear-gradient(-45deg, var(--surface) 0 5px, var(--bg) 5px 10px);
  border: 1px solid var(--rule);
}
.band__row--mu .mn[data-state="hog"]    .mn__cell { background: var(--accent); }
.band__row--mu .mn[data-state="mellan"] .mn__cell { background: var(--accent-2); opacity: .45; }

.band__axis {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(2px, .4vw, 6px);
  margin-top: .7rem; padding-top: .7rem;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: clamp(.5rem, .82vw, .64rem);
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-2); text-align: center;
}
.band__marker {
  position: absolute; top: 1.3rem; bottom: 2.3rem;
  width: 2px; background: var(--text);
  box-shadow: 0 0 12px color-mix(in srgb, var(--text) 55%, transparent);
  pointer-events: none;
}
.band__marker::after {
  content: ""; position: absolute; top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50%; background: var(--text);
}

.card { margin: 1.8rem 0 0; padding-top: 1.3rem; border-top: 1px solid var(--rule); }
.card__default { font-family: var(--mono); font-size: .76rem; color: var(--text-2); line-height: 1.7; }

.legend {
  display: flex; flex-wrap: wrap; gap: 1.3rem;
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-2);
}
.legend li { display: flex; align-items: center; gap: .5rem; }
.legend__key { width: 14px; height: 10px; border-radius: 2px; display: block; }
.legend__key--oppet  { background: var(--accent); }
.legend__key--stangt { background: repeating-linear-gradient(-45deg, var(--surface) 0 4px, var(--bg) 4px 8px); border: 1px solid var(--rule); }
.legend__key--hog    { background: var(--accent); }

/* --- panels (courses, options, inclusions) -------------------- */

/* Separators are drawn as cell borders, not as a 1px gap over a coloured
   container. With auto-fit the last row is often short, and the old trick
   painted those empty cells solid. */
.panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.panel {
  padding: clamp(1.4rem, 2.8vw, 2.1rem);
  display: flex; flex-direction: column;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background-color .25s var(--ease);
}
.panel:hover { background: var(--surface); }

.panel__k {
  font-family: var(--mono);
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .95rem;
}
.panel__t {
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "wght" 430, "SOFT" 20, "WONK" 1;
  font-size: 1.35rem;
  margin-bottom: .4rem;
}
.panel__meta {
  font-family: var(--mono);
  font-size: .66rem; letter-spacing: .05em;
  color: var(--text-2);
  margin-bottom: 1.1rem;
  min-height: 2.4em;
}
.panel__stats { display: flex; gap: 1.8rem; margin-bottom: 1.2rem; }
.panel__stats dt {
  font-family: var(--mono);
  font-size: .56rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--text-2); margin-bottom: .3rem;
}
.panel__stats dd {
  margin: 0;
  font-family: var(--display);
  font-variation-settings: "opsz" 40, "wght" 400, "SOFT" 20, "WONK" 0;
  font-size: 1.25rem; line-height: 1;
}
.panel__body { color: var(--text-2); font-size: .92rem; margin-top: auto; }
.panel--plain { justify-content: center; }
.panel--plain .panel__body { margin-top: 0; }

.pills { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: 1.1rem; }
.pill {
  font-family: var(--mono);
  font-size: .55rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-2);
  padding: .25rem .55rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
}
.pill--check { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 40%, transparent); }

/* --- trips --------------------------------------------------- */

.trips { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.trip {
  background: var(--bg);
  padding: clamp(1.5rem, 3vw, 2.3rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr) minmax(0, .9fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
  transition: background-color .25s var(--ease);
}
.trip:hover { background: var(--surface); }
.trip--lead { background: var(--surface); }
.trip--lead:hover { background: color-mix(in srgb, var(--surface) 80%, var(--accent) 8%); }

.trip__badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: .55rem; letter-spacing: .12em; text-transform: uppercase;
  background: var(--accent); color: var(--bg);
  padding: .25rem .6rem; border-radius: 999px;
  margin-bottom: .7rem;
}
.trip__name {
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "wght" 430, "SOFT" 20, "WONK" 1;
  font-size: 1.45rem;
  margin-bottom: .35rem;
}
.trip__meta {
  font-family: var(--mono);
  font-size: .64rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-2);
}
.trip__body { color: var(--text-2); font-size: .93rem; }
.trip__list { display: grid; gap: .5rem; margin-top: .9rem; }
.trip__list li { font-size: .87rem; color: var(--text-2); padding-left: 1.1rem; position: relative; }
.trip__list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 1px; background: var(--accent-2);
}
.trip__price {
  font-family: var(--display);
  font-variation-settings: "opsz" 100, "wght" 380, "SOFT" 20, "WONK" 0;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  line-height: 1; margin-bottom: .3rem;
}
.trip__from { font-family: var(--mono); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2); display: block; margin-bottom: .5rem; }
.trip__unit { font-family: var(--mono); font-size: .62rem; color: var(--text-2); margin-left: .35rem; }
.trip__cta { margin-top: 1rem; }

@media (max-width: 900px) { .trip { grid-template-columns: 1fr; } }

/* --- schedule / rhythm --------------------------------------- */

.sched { width: 100%; border-collapse: collapse; }
.sched thead th {
  text-align: left;
  font-family: var(--mono);
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 400; color: var(--text-2);
  padding: 0 1rem 1rem 0;
  border-bottom: 1px solid var(--text-2);
}
.sched tbody th, .sched tbody td {
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: baseline; text-align: left; font-weight: 400;
}
.sched tbody th { font-family: var(--mono); font-size: .76rem; color: var(--text-2); width: 6rem; }
.sched tbody td:nth-child(2) {
  font-family: var(--display);
  font-variation-settings: "opsz" 40, "wght" 400, "SOFT" 20, "WONK" 0;
  font-size: 1.05rem;
}
.sched tr.is-golf th { color: var(--accent); }
.sched tbody td:last-child { width: 7rem; text-align: right; padding-right: 0; }

.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: .58rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .65rem; border-radius: 999px;
  border: 1px solid var(--rule);
  color: var(--text-2);
}
.tag--golf { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }

@media (max-width: 640px) {
  .sched thead { display: none; }
  .sched tbody tr { display: grid; grid-template-columns: 4.6rem 1fr auto; gap: .2rem .8rem; padding: .9rem 0; border-bottom: 1px solid var(--rule); }
  .sched tbody th, .sched tbody td { border: 0; padding: 0; width: auto; }
  .sched tbody td:last-child { width: auto; }
}

/* --- lists --------------------------------------------------- */

.twocol { display: grid; grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); gap: clamp(2rem, 5vw, 4rem); }
.lst__h {
  font-family: var(--mono);
  font-size: .64rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 1rem; padding-bottom: .75rem;
  border-bottom: 1px solid var(--rule);
}
.lst__h--in  { color: var(--accent); }
.lst__h--out { color: var(--text-2); }
.lst { display: grid; gap: .75rem; }
.lst li { font-size: .92rem; color: var(--text-2); padding-left: 1.2rem; position: relative; }
.lst li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 1px; background: var(--accent-2); }

.inc {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 0;
  border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
.inc li {
  padding: 1.2rem clamp(1.1rem, 2.2vw, 1.6rem);
  font-size: .91rem; color: var(--text-2);
  display: flex; align-items: baseline; gap: .75rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.inc li::before { content: ""; flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); transform: translateY(-1px); }

/* --- facts --------------------------------------------------- */

.facts { display: grid; gap: clamp(1.6rem, 3.5vw, 2.4rem); }
.fact {
  padding-top: 1.3rem;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: minmax(0, 14rem) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
}
.fact__h { font-family: var(--mono); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--accent); }
.fact__b { color: var(--text-2); font-size: .94rem; display: grid; gap: .85rem; }
.fact__b strong { color: var(--text); font-weight: 500; }
@media (max-width: 720px) { .fact { grid-template-columns: 1fr; gap: .8rem; } }

/* --- price table --------------------------------------------- */

.ptable { width: 100%; border-collapse: collapse; }
.ptable caption { text-align: left; margin-bottom: 1.1rem; color: var(--text-2); font-size: .9rem; }
.ptable th, .ptable td {
  text-align: left; padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid var(--rule);
  font-weight: 400; vertical-align: baseline;
}
.ptable thead th {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--text-2); border-bottom-color: var(--text-2); padding-bottom: .85rem;
}
.ptable tbody th { font-family: var(--display); font-variation-settings: "opsz" 40, "wght" 420, "SOFT" 20, "WONK" 0; font-size: 1.05rem; }
.ptable td { font-family: var(--mono); font-size: .86rem; color: var(--text-2); }
.ptable .is-rec th { color: var(--accent); }
.ptable .unit { color: var(--text-2); font-size: .78em; letter-spacing: .04em; }
.ptable td:last-child, .ptable th:last-child { padding-right: 0; }
@media (max-width: 640px) {
  .ptable thead { display: none; }
  .ptable tbody tr { display: block; padding: 1rem 0; border-bottom: 1px solid var(--rule); }
  .ptable tbody th, .ptable tbody td { display: block; border: 0; padding: 0 0 .3rem; }
}

/* --- navigation cards / pager -------------------------------- */

/* Exactly six cards, so a fixed 3-up keeps the last row full. */
.navcards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
.navcard {
  padding: clamp(1.5rem, 3vw, 2.1rem); display: flex; flex-direction: column;
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  transition: background-color .25s var(--ease);
}
@media (max-width: 900px) { .navcards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .navcards { grid-template-columns: 1fr; } }
.navcard:hover { background: var(--surface); }
.navcard__k { font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: .9rem; }
.navcard__t { font-family: var(--display); font-variation-settings: "opsz" 60, "wght" 420, "SOFT" 20, "WONK" 1; font-size: 1.35rem; margin-bottom: .55rem; }
.navcard__d { color: var(--text-2); font-size: .9rem; margin-bottom: 1.5rem; }
.navcard__go { margin-top: auto; font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-2); }
.navcard:hover .navcard__go { color: var(--accent); }

/* No container background here - it used to paint the horizontal padding
   as a solid slab either side of the links. */
.pager {
  max-width: var(--maxw); margin-inline: auto;
  padding: 0 var(--gutter) var(--band);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 0;
}
.pager__link {
  padding: 1.5rem clamp(1.1rem, 2.4vw, 1.7rem); display: block;
  border-top: 1px solid var(--rule);
  transition: background-color .25s var(--ease);
}
.pager__link + .pager__link { border-left: 1px solid var(--rule); }
.pager__link:hover { background: var(--surface); }
.pager__k { display: block; font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-2); margin-bottom: .45rem; }
.pager__t { display: block; font-family: var(--display); font-variation-settings: "opsz" 40, "wght" 420, "SOFT" 20, "WONK" 0; font-size: 1.1rem; }
.pager__link:hover .pager__t { color: var(--accent); }

/* --- media --------------------------------------------------- */

.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(.6rem, 1.4vw, 1.1rem); }
.gitem { min-width: 0; }
.gitem--4 { grid-column: span 4; }
.gitem--3 { grid-column: span 3; }
.gitem--2 { grid-column: span 2; }
.gitem figure { margin: 0; }

.gframe {
  display: block; position: relative; overflow: hidden;
  border-radius: 3px;
  background: var(--surface);
  border: 1px solid var(--rule);
  /* --cap bounds upscaling of low-resolution sources. */
  max-width: var(--cap, none);
  margin-inline: auto;
}
.gframe img, .gframe video {
  display: block; width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease), filter .35s var(--ease);
}
.gframe--32  { aspect-ratio: 3 / 2; }
.gframe--43  { aspect-ratio: 4 / 3; }
.gframe--169 { aspect-ratio: 16 / 9; }
.gitem--film .gframe { background: #000; }
.gitem--film .gframe video { object-fit: contain; }
.gitem:not(.gitem--film) .gframe:hover img { transform: scale(1.03); filter: brightness(1.05); }

.gcap { margin-top: .65rem; font-size: .84rem; color: var(--text-2); line-height: 1.55; }
.gcap b {
  display: block; font-family: var(--mono);
  font-size: .58rem; letter-spacing: .13em; text-transform: uppercase;
  font-weight: 400; color: var(--accent); margin-bottom: .35rem;
}
.gcap .meta { color: var(--accent-2); }

/* empty slot awaiting a licensed photograph */
.gslot {
  display: grid; place-content: center; text-align: center;
  gap: .5rem; padding: 1.5rem;
  background: repeating-linear-gradient(-45deg,
    var(--surface) 0 10px, transparent 10px 20px);
  border: 1px dashed var(--rule);
}
.gslot__k { font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.gslot__d { font-family: var(--mono); font-size: .62rem; color: var(--text-2); }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gitem--4, .gitem--3, .gitem--2 { grid-column: span 1; }
}
@media (max-width: 600px) {
  .gallery { grid-template-columns: 1fr; }
  .gitem--4, .gitem--3, .gitem--2 { grid-column: span 1; }
}

/* --- vector artwork ------------------------------------------ */

/* Opacities are tuned for the light page - the earlier dark-band values
   washed out completely against chalk. */
.art { display: block; width: 100%; height: auto; }
.art .ln    { fill: none; stroke: var(--accent-2); stroke-width: 1; opacity: .85; }
.art .ln-2  { fill: none; stroke: var(--accent); stroke-width: 1.3; opacity: 1; }
.art .fill  { fill: var(--accent-2); opacity: .3; }
.art .fill-2{ fill: var(--accent); opacity: .35; }
.art .dot   { fill: var(--accent); }
.art .lbl   { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; fill: var(--text-2); }

/* --- step builder -------------------------------------------- */

.wiz { display: grid; gap: var(--s5); }

.step {
  border-top: 1px solid var(--rule);
  padding-top: var(--s3);
  display: grid;
  grid-template-columns: minmax(0, 13rem) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
}
@media (max-width: 760px) { .step { grid-template-columns: 1fr; gap: var(--s2); } }

/* --stack-h is measured by main.js from the actual banner+nav height, since
   the banner can wrap to two or three lines depending on language/width. */
.step__head { position: sticky; top: calc(var(--stack-h, 5.5rem) + 1rem); }
@media (max-width: 760px) { .step__head { position: static; } }
.step__n {
  font-family: var(--mono);
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .4rem;
}
.step__t {
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "wght" 430, "SOFT" 20, "WONK" 1;
  font-size: 1.3rem;
  margin-bottom: .4rem;
}
.step__d { color: var(--text-2); font-size: .86rem; }

/* nights control */
.nights { display: flex; align-items: center; gap: var(--s3); flex-wrap: wrap; }
.nights input[type="range"] { flex: 1 1 16rem; accent-color: var(--accent); min-width: 12rem; }
.nights__out {
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "wght" 420, "SOFT" 20, "WONK" 0;
  font-size: 1.9rem; line-height: 1;
  min-width: 5.5rem;
}
.nights__out span { font-family: var(--mono); font-size: .62rem; color: var(--text-2); margin-left: .3rem; }

/* option cards (radio) */
.opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); gap: .6rem; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt__box {
  display: block; height: 100%;
  border: 1px solid var(--rule); border-radius: 3px;
  padding: var(--s3);
  cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.opt__box:hover { border-color: var(--accent-2); background: var(--surface); }
.opt input:checked + .opt__box { border-color: var(--accent); background: var(--surface); box-shadow: inset 0 0 0 1px var(--accent); }
.opt input:focus-visible + .opt__box { outline: 2px solid var(--accent); outline-offset: 2px; }
.opt__t { font-weight: 600; font-size: .95rem; margin-bottom: .3rem; }
.opt__d { color: var(--text-2); font-size: .82rem; margin-bottom: .5rem; }
.opt__p { font-family: var(--mono); font-size: .74rem; color: var(--accent); }

/* day-by-day planner */
.days { display: grid; gap: .4rem; }
.day {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) auto;
  gap: .8rem;
  align-items: center;
  padding: .55rem .7rem;
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: var(--bg);
}
.day--fixed { background: var(--surface); color: var(--text-2); }
.day__n { font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-2); }
.day select {
  font-family: var(--body); font-size: .88rem;
  padding: .45rem .5rem;
  border: 1px solid var(--rule); border-radius: 2px;
  background: var(--bg); color: var(--text);
  width: 100%;
}
.day__p { font-family: var(--mono); font-size: .74rem; color: var(--text-2); white-space: nowrap; }
.day__p--paid { color: var(--accent); }
@media (max-width: 560px) {
  .day { grid-template-columns: 3.6rem 1fr; row-gap: .35rem; }
  .day__p { grid-column: 2; text-align: right; }
}

/* running total */
.tally {
  position: sticky; bottom: 0;
  margin-top: var(--s4);
  border: 1px solid var(--accent);
  border-radius: 3px;
  background: var(--bg);
  padding: var(--s3);
  display: grid; gap: .5rem;
}
.tally__rows { display: grid; gap: .3rem; font-family: var(--mono); font-size: .76rem; color: var(--text-2); }
.tally__row { display: flex; justify-content: space-between; gap: 1rem; }
.tally__sum {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  border-top: 1px solid var(--rule);
  padding-top: .6rem;
}
.tally__label { font-family: var(--mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2); }
.tally__val {
  font-family: var(--display);
  font-variation-settings: "opsz" 100, "wght" 400, "SOFT" 20, "WONK" 0;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem); line-height: 1;
}
.tally__note { font-family: var(--mono); font-size: .64rem; color: var(--text-2); }

/* itinerary summary */
.itin {
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: var(--bg);
  padding: clamp(1.2rem, 2.6vw, 2rem);
  margin-top: var(--s4);
}
.itin__meta {
  font-family: var(--mono);
  font-size: .64rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
  padding-bottom: var(--s2);
  border-bottom: 1px solid var(--rule);
  margin-bottom: var(--s2);
}
.itin__list { display: grid; gap: 0; }
.itin__row {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: .8rem;
  padding: .4rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.itin__d { font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-2); }
.itin__w { font-size: .93rem; }

.itin__cats {
  display: grid; gap: 0;
  margin-top: var(--s2);
  padding-top: var(--s2);
  border-top: 1px solid var(--rule);
}
.itin__cat {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .3rem 0;
  font-size: .88rem;
}
.itin__cat span:first-child { color: var(--text-2); }
.itin__cat span:last-child { font-family: var(--mono); font-size: .82rem; }

.itin__total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding-top: var(--s3);
  margin-top: var(--s2);
  border-top: 1px solid var(--rule);
}
.itin__total span:first-child {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-2);
}
.itin__total span:last-child {
  font-family: var(--display);
  font-variation-settings: "opsz" 100, "wght" 400, "SOFT" 20, "WONK" 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.sendrow {
  display: flex; align-items: flex-end; gap: var(--s3);
  margin-top: var(--s4); flex-wrap: wrap;
}
.sendrow .field { flex: 1 1 18rem; }
.sendrow--3 .field { flex: 1 1 12rem; }
.sendrow__btn { flex: 0 0 auto; }

/* margin disclosure */
.margin {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
.margin li { padding: var(--s3); border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.margin__k { font-family: var(--mono); font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; color: var(--text-2); margin-bottom: .35rem; }
.margin__v {
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "wght" 420, "SOFT" 20, "WONK" 0;
  font-size: 1.4rem;
}
.margin__v--accent { color: var(--accent); }

/* --- notice banner ------------------------------------------- */

.notice {
  max-width: var(--maxw);
  margin: var(--s4) auto 0;
  padding: var(--s3) clamp(1.1rem, 2.4vw, 1.6rem);
  margin-inline: max(var(--gutter), calc((100vw - var(--maxw)) / 2));
  border-left: 3px solid var(--accent);
  background: var(--surface);
  color: var(--text-2);
  font-size: .92rem;
}
.notice strong { color: var(--text); font-weight: 600; }
.notice--strong { border-left-color: #9A3412; background: #F6EDE6; }
.notice--strong strong { color: #7C2D12; }

.cta-row { margin-top: var(--s4); }

/* --- blog ---------------------------------------------------- */

.posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.post {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column;
  transition: background-color .25s var(--ease);
}
.post:hover { background: var(--surface); }
.post__meta {
  font-family: var(--mono);
  font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s2);
}
.post__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 60, "wght" 420, "SOFT" 20, "WONK" 1;
  font-size: 1.3rem; line-height: 1.15;
  margin-bottom: var(--s2);
}
.post__title a:hover { color: var(--accent); }
.post__lede { color: var(--text-2); font-size: .92rem; margin-bottom: var(--s3); }
.post__more {
  margin-top: auto;
  font-family: var(--mono);
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-2);
}
.post:hover .post__more { color: var(--accent); }

/* --- reviews ------------------------------------------------- */

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.review {
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: var(--bg);
  display: flex; flex-direction: column;
}
.review__flag {
  font-family: var(--mono);
  font-size: .58rem; letter-spacing: .1em; text-transform: uppercase;
  color: #7C2D12;
  background: #F6EDE6;
  border: 1px dashed #C2724A;
  padding: .3rem .6rem;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: var(--s3);
}
.review__quote {
  margin: 0 0 var(--s3);
  font-family: var(--display);
  font-variation-settings: "opsz" 40, "wght" 380, "SOFT" 30, "WONK" 1;
  font-size: 1.1rem; line-height: 1.45;
}
.review__quote::before { content: "\201D"; color: var(--accent); margin-right: .15em; }
.review__by {
  margin-top: auto;
  font-family: var(--mono);
  font-size: .62rem; letter-spacing: .08em;
  color: var(--text-2);
}
.review__who { color: var(--text); }

/* --- payment methods ----------------------------------------- */

.pay {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.pay li {
  padding: clamp(1.3rem, 2.6vw, 1.8rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pay__name {
  font-family: var(--display);
  font-variation-settings: "opsz" 40, "wght" 430, "SOFT" 20, "WONK" 1;
  font-size: 1.15rem;
  margin-bottom: .4rem;
}
.pay__d { color: var(--text-2); font-size: .88rem; }

/* --- form / booking ------------------------------------------ */

.bgrid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 860px) { .bgrid { grid-template-columns: 1fr; } }

.direct { font-family: var(--mono); font-size: .8rem; line-height: 2; color: var(--text-2); }
.direct a:hover { color: var(--accent); }

.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-family: var(--mono); font-size: .6rem; letter-spacing: .13em; text-transform: uppercase; color: var(--text-2); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: .95rem; padding: .75rem .85rem;
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: 2px; color: var(--text);
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--accent-2); }
.field textarea { min-height: 6rem; resize: vertical; }
.checks {
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: var(--s3);
  margin: 0;
  display: grid; gap: .55rem;
}
.checks legend {
  font-family: var(--mono);
  font-size: .6rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--text-2);
  padding: 0 .4rem;
}
.checks label {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; color: var(--text-2);
  cursor: pointer;
  padding: .18rem 0;
}
.checks label:hover { color: var(--text); }
.checks input[type="checkbox"] {
  width: 1rem; height: 1rem; flex: 0 0 auto;
  accent-color: var(--accent);
  cursor: pointer;
}

.form__btn { justify-self: start; margin-top: .3rem; }
.form__note { font-family: var(--mono); font-size: .66rem; line-height: 1.7; color: var(--text-2); }

/* --- trust --------------------------------------------------- */

.trust { display: grid; gap: 1.2rem; margin-top: clamp(2rem, 4vw, 3rem); padding-top: clamp(1.8rem, 3.5vw, 2.4rem); border-top: 1px solid var(--rule); }
.trust__h { font-family: var(--mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.trust p { color: var(--text-2); font-size: .87rem; }

/* --- footer -------------------------------------------------- */

.foot {
  border-top: 1px solid var(--rule);
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter) 2.5rem;
  max-width: var(--maxw); margin-inline: auto;
}
.foot__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(1.8rem, 4vw, 3rem); }
.foot__grid > * { min-width: 0; }
.foot__col p, .foot__col a { overflow-wrap: anywhere; }
.foot__mark { font-family: var(--display); font-variation-settings: "opsz" 60, "wght" 500, "SOFT" 20, "WONK" 1; font-size: 1.35rem; margin-bottom: .45rem; }
.foot__coord { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; color: var(--accent); }
.foot__h { font-family: var(--mono); font-size: .63rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-2); margin-bottom: .85rem; }
.foot__col p { color: var(--text-2); font-size: .86rem; margin-bottom: .45rem; }
.foot__col a:hover { color: var(--accent); }
.foot__fine {
  margin-top: clamp(2rem, 5vw, 3.5rem); padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
  font-family: var(--mono); font-size: .64rem; letter-spacing: .08em; color: var(--text-2);
}
@media (max-width: 860px) { .foot__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .foot__grid { grid-template-columns: 1fr; } }

/* --- motion -------------------------------------------------- */

.contour__lines path {
  stroke-dasharray: var(--len, 2000);
  stroke-dashoffset: var(--len, 2000);
  animation: draw 1.9s var(--ease) forwards;
  animation-delay: calc(var(--d, 0) * 120ms);
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.eyebrow, .split, .hero__line, .hero__lede, .hero__actions, .stat { animation: rise .9s var(--ease) both; }
.split { animation-delay: .06s; }
.hero__title .hero__line:nth-child(1) { animation-delay: .14s; }
.hero__title .hero__line:nth-child(2) { animation-delay: .22s; }
.hero__lede { animation-delay: .3s; }
.hero__actions { animation-delay: .38s; }
.hero__stats .stat:nth-child(1) { animation-delay: .44s; }
.hero__stats .stat:nth-child(2) { animation-delay: .5s; }
.hero__stats .stat:nth-child(3) { animation-delay: .56s; }
.hero__stats .stat:nth-child(4) { animation-delay: .62s; }

@keyframes rise { from { opacity: 0; transform: translateY(1.1rem); } to { opacity: 1; transform: none; } }

.reveal { opacity: 0; transform: translateY(1.3rem); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }

.js .band__row .mn__cell { transform: scaleY(0); }
.js .chart.is-in .mn__cell {
  transform: scaleY(1);
  transition: transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 45ms);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-delay: 0ms !important;
    transition-duration: .01ms !important; transition-delay: 0ms !important;
  }
  .contour__lines path { stroke-dashoffset: 0; }
  .reveal { opacity: 1; transform: none; }
  .js .band__row .mn__cell { transform: scaleY(1); }
  .gitem:not(.gitem--film) .gframe:hover img { transform: none; }
}
