/* Self-hosted so the page needs no third-party round trip before it can
   render — worth more than usual on slow East African connections. Variable
   fonts, latin subset, so one file covers every weight the design uses. */
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Northern Wonder Expeditions — Design System
   Hand-built, no framework. Organised: tokens → base → layout → components.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --forest:      #14483A;
  --forest-dk:   #0B2A22;
  --forest-dpr:  #071B16;
  --amber:       #C2701A;
  --amber-lt:    #E5A244;
  --amber-soft:  #F6E4CB;
  --clay:        #9C4A21;

  /* Neutrals */
  --ink:      #15191B;
  --ink-2:    #3C4649;
  --ink-3:    #6B7679;
  --paper:    #FCFAF6;
  --sand:     #F3EDE2;
  --sand-2:   #E8DFCF;
  --white:    #FFFFFF;

  /* Derived */
  --line:        color-mix(in srgb, var(--ink) 12%, transparent);
  --line-strong: color-mix(in srgb, var(--ink) 22%, transparent);
  --line-light:  rgba(255, 255, 255, 0.18);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.13vw, 0.89rem);
  --step-0:  clamp(1rem, 0.96rem + 0.19vw, 1.11rem);
  --step-1:  clamp(1.19rem, 1.11rem + 0.36vw, 1.42rem);
  --step-2:  clamp(1.41rem, 1.28rem + 0.63vw, 1.8rem);
  --step-3:  clamp(1.67rem, 1.46rem + 1.03vw, 2.29rem);
  --step-4:  clamp(1.98rem, 1.66rem + 1.6vw, 2.91rem);
  --step-5:  clamp(2.35rem, 1.87rem + 2.42vw, 3.7rem);
  --step-6:  clamp(2.79rem, 2.08rem + 3.55vw, 4.7rem);

  /* Space */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-5: 1.5rem;   --sp-6: 2rem;
  --sp-7: 3rem;     --sp-8: 4rem;     --sp-9: 6rem;
  --sp-10: 8rem;
  --section: clamp(4rem, 9vw, 8.5rem);

  /* Shape */
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(11, 42, 34, 0.06), 0 4px 12px rgba(11, 42, 34, 0.05);
  --shadow-md: 0 2px 6px rgba(11, 42, 34, 0.07), 0 14px 34px rgba(11, 42, 34, 0.09);
  --shadow-lg: 0 4px 12px rgba(11, 42, 34, 0.08), 0 28px 64px rgba(11, 42, 34, 0.14);

  --wrap: 1240px;
  --wrap-narrow: 780px;
  --ease: cubic-bezier(0.4, 0.06, 0.15, 1);
  --ease-out: cubic-bezier(0.16, 0.84, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin: 0 0 0.4em;
  text-wrap: balance;
}

h1 { font-size: var(--step-6); }
h2 { font-size: var(--step-5); }
h3 { font-size: var(--step-2); line-height: 1.18; }
h4 { font-size: var(--step-1); line-height: 1.25; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }

img, picture, svg, video { max-width: 100%; display: block; }
img { height: auto; background: var(--sand); }

ul, ol { margin: 0 0 1.15em; padding-left: 1.2em; }
li { margin-bottom: 0.4em; }
li::marker { color: var(--amber); }

hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-7) 0; }

::selection { background: var(--amber); color: #fff; }

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

.skip-link {
  position: absolute; top: -100%; left: var(--sp-4); z-index: 200;
  background: var(--forest-dk); color: #fff;
  padding: 0.7rem 1.1rem; border-radius: 0 0 var(--r-md) var(--r-md);
  font-size: var(--step--1); font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 0; }

.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;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}
@media (min-width: 768px) { .wrap { width: min(100% - 5rem, var(--wrap)); } }

.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

.section { padding-block: var(--section); }
.section-sm { padding-block: clamp(3rem, 6vw, 5rem); }
.section-t0 { padding-top: 0; }
.section-b0 { padding-bottom: 0; }

.grid { display: grid; gap: var(--sp-5); }
/* Grid and flex children default to min-width:auto, which lets wide intrinsic
   content (long select options, tables, long words) push past the viewport. */
.grid > *, .split > *, .stats > *, .steps > *, .form > *, .field > *,
.field-row > *, .footer-grid > * { min-width: 0; }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 335px), 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

.stack > * + * { margin-top: var(--sp-4); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

/* Dark surface */
.surface-dark {
  background: var(--forest-dk);
  color: #EDE7DA;
  --line: var(--line-light);
  --line-strong: rgba(255, 255, 255, 0.3);
  --ink: #FFFFFF;
  --ink-2: #C8CFC7;
  --ink-3: #98A49D;
}
.surface-dark h1, .surface-dark h2, .surface-dark h3, .surface-dark h4 { color: #fff; }
.surface-sand { background: var(--sand); }

/* --------------------------------------------------------------------------
   4. Typography helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 var(--sp-4);
}
.eyebrow::before {
  content: ""; width: 2rem; height: 1px; background: currentColor; flex: none;
}
.eyebrow.is-center { justify-content: center; }

.lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 350;
}

.display-italic { font-style: italic; font-variation-settings: "SOFT" 60; }

.small { font-size: var(--step--1); }
.muted { color: var(--ink-3); }
.strong { font-weight: 600; }

.price {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--forest);
}
/* "From" is part of the price, not a footnote — same typeface, subordinate
   weight and size, so the number still leads. No asterisks anywhere: a
   superscript marker reads as small print. */
.price small {
  display: block;
  font-size: 0.42em; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 0.15em;
}
table.data .price small { display: inline; margin: 0 0.35em 0 0; font-size: 0.5em; }

/* Sits where a price would, so the card keeps its shape and rhythm. Reads as
   an offer, not as a missing number. */
.price-quote {
  font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 600;
  letter-spacing: -0.01em; color: var(--forest);
  line-height: 1.25; max-width: 14ch;
}

.price-note {
  margin: 0.5rem 0 0;
  font-size: 0.82rem; line-height: 1.5; color: var(--ink-3);
  max-width: 46ch;
}
.price-about {
  border-top: 1px solid var(--line); padding-top: var(--sp-5);
}
.price-about h3 { font-size: var(--step-0); margin-bottom: 0.4em; }
.price-about p { font-size: 0.9rem; color: var(--ink-2); max-width: 68ch; margin: 0; }
.surface-dark .price { color: var(--amber-lt); }
/* Where the figure is a phrase rather than a number. Display type sized for
   "$1,750" turns "Custom quotations" into three wrapped lines. */
.price.is-text { font-size: var(--step-0); letter-spacing: -0.01em; }
.price small {
  display: block; font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 0.1rem;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--amber);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bg); border-radius: 100px;
  font-family: var(--font-body);
  font-size: var(--step--1); font-weight: 600; letter-spacing: 0.02em;
  text-decoration: none; cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
              background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(194, 112, 26, 0.28); }
.btn:active { transform: translateY(0); }

.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn-dark   { --btn-bg: var(--forest); --btn-fg: #fff; }
.btn-dark:hover { box-shadow: 0 10px 24px rgba(20, 72, 58, 0.3); }

.btn-ghost {
  --btn-bg: transparent; --btn-fg: currentColor;
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: color-mix(in srgb, currentColor 8%, transparent);
  box-shadow: none;
}

.btn-wa { --btn-bg: #1FA855; --btn-fg: #fff; }
.btn-wa:hover { box-shadow: 0 10px 24px rgba(31, 168, 85, 0.3); }

.btn-sm { padding: 0.62rem 1.15rem; font-size: 0.8rem; }
.btn-lg { padding: 1.1rem 2.1rem; font-size: var(--step-0); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn-row.is-center { justify-content: center; }

/* Text link with animated rule */
.link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: var(--step--1); font-weight: 600; letter-spacing: 0.02em;
  color: var(--amber); text-decoration: none;
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size 0.4s var(--ease-out);
}
.link:hover { background-size: 100% 1px; }
.link .arw { transition: transform 0.35s var(--ease-out); }
.link:hover .arw { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  padding-block: 1.15rem;
  transition: background-color 0.4s var(--ease), padding 0.4s var(--ease),
              box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
  color: #fff;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(7, 27, 22, 0.55), rgba(7, 27, 22, 0));
  transition: opacity 0.4s var(--ease);
}
.site-header.is-stuck {
  background: rgba(252, 250, 246, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  padding-block: 0.7rem;
  color: var(--ink);
}
.site-header.is-stuck::before { opacity: 0; }

/* Pages without a full-bleed hero start in solid mode */
.site-header.is-solid {
  background: var(--paper);
  border-bottom-color: var(--line);
  color: var(--ink);
}
.site-header.is-solid::before { opacity: 0; }

.nav {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5);
}

.brand {
  display: inline-flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: inherit; flex: none;
}
.brand-mark { width: 40px; height: 40px; flex: none; }
/* The logo artwork sits on its own dark ground, which is part of the design.
   Rounding it makes that read as a deliberate badge rather than a stray black
   square — and it has to work on both the transparent header over photography
   and the light one after scrolling. */
img.brand-mark {
  border-radius: 10px;
  object-fit: cover;
  background: #0B0B0B;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; min-width: 0; }
.brand-name {
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 600;
  letter-spacing: -0.015em; white-space: nowrap;
}
.brand-sub {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0.62; margin-top: 0.28em;
  white-space: nowrap;
}

/* "Northern Wonder Expeditions" over "Adventure · Culture · Discovery" is a
   wide lockup, and below 1080px the burger is the only way into the menu. The
   brand gives way rather than pushing that button off the screen edge — at
   375px the untouched lockup put it 41px out of reach. */
@media (max-width: 1079px) {
  .brand-name { font-size: 1rem; }
  .brand-sub  { font-size: 0.55rem; letter-spacing: 0.13em; }
}
/* The full name stays on every screen — it is the company's name, and a phone
   is where most people meet it. On a narrow screen it cannot fit beside the
   44px menu button on one line at a readable size, so it wraps to two instead
   of shrinking to nothing. The brand yields width; the menu button never does. */
@media (max-width: 479px) {
  .brand { gap: 0.55rem; flex: 1 1 auto; min-width: 0; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-name { font-size: 0.94rem; white-space: normal; line-height: 1.1; }
  .brand-sub  { font-size: 0.46rem; letter-spacing: 0.07em; margin-top: 0.4em; }
}
.nav-toggle { flex: none; }

.nav-links {
  display: none; align-items: center; gap: 0.15rem;
  list-style: none; margin: 0; padding: 0;
}
@media (min-width: 1080px) { .nav-links { display: flex; } }

.nav-links a {
  display: block; padding: 0.5rem 0.78rem;
  font-size: 0.845rem; font-weight: 500; letter-spacing: 0.01em;
  text-decoration: none; border-radius: 100px;
  transition: background-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.nav-links a:hover { background: color-mix(in srgb, currentColor 10%, transparent); }
.nav-links a[aria-current="page"] { color: var(--amber); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; flex: none; }
.nav-actions .btn { display: none; }
@media (min-width: 620px) { .nav-actions .btn { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--line-strong); border-radius: 100px;
  color: inherit; cursor: pointer;
  transition: background-color 0.25s ease;
}
.site-header:not(.is-stuck):not(.is-solid) .nav-toggle { border-color: rgba(255,255,255,0.4); }
.nav-toggle:hover { background: color-mix(in srgb, currentColor 10%, transparent); }
@media (min-width: 1080px) { .nav-toggle { display: none; } }

.nav-toggle-bars { position: relative; width: 18px; height: 12px; }
.nav-toggle-bars span {
  position: absolute; left: 0; width: 100%; height: 1.5px;
  background: currentColor; border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.25s ease;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 5.25px; }
.nav-toggle-bars span:nth-child(3) { top: 10.5px; }
[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(5.25px) rotate(45deg); }
[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-5.25px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--forest-dk); color: #fff;
  padding: 6rem 0 3rem;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.nav-drawer.is-open { opacity: 1; visibility: visible; }
@media (min-width: 1080px) { .nav-drawer { display: none; } }

.nav-drawer ul { list-style: none; margin: 0; padding: 0; }
.nav-drawer li { margin: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav-drawer a {
  display: flex; align-items: baseline; gap: 0.9rem;
  padding: 1.05rem 0; text-decoration: none;
  font-family: var(--font-display); font-size: var(--step-2);
  opacity: 0; transform: translateY(12px);
}
.nav-drawer.is-open a { animation: drawerIn 0.5s var(--ease-out) forwards; }
.nav-drawer a .idx {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; color: var(--amber-lt); flex: none;
}
.nav-drawer a[aria-current="page"] { color: var(--amber-lt); }
@keyframes drawerIn { to { opacity: 1; transform: none; } }

.nav-drawer-foot { margin-top: var(--sp-7); display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex; align-items: flex-end;
  padding-block: 9rem 4rem;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0; z-index: -2;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(7, 27, 22, 0.92) 0%, rgba(7, 27, 22, 0.55) 38%, rgba(7, 27, 22, 0.18) 70%, rgba(7, 27, 22, 0.45) 100%);
}
.hero h1 { color: #fff; margin-bottom: 0.28em; }
.hero .lede { color: rgba(255,255,255,0.88); max-width: 56ch; }

/* Photography behind text varies in brightness — a soft shadow keeps every
   headline legible without dimming the image further. */
.hero h1, .hero .lede, .hero .eyebrow, .hero-badges,
.page-hero h1, .page-hero .lede, .page-hero .eyebrow, .breadcrumb {
  text-shadow: 0 1px 3px rgba(7, 27, 22, 0.42), 0 2px 22px rgba(7, 27, 22, 0.34);
}

/* Outline buttons sitting on imagery or dark surfaces need a visible edge. */
.hero .btn-ghost, .page-hero .btn-ghost,
.cta-band .btn-ghost, .surface-dark .btn-ghost {
  border-color: rgba(255, 255, 255, 0.48);
}
.hero .btn-ghost:hover, .page-hero .btn-ghost:hover,
.cta-band .btn-ghost:hover, .surface-dark .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-inner { position: relative; z-index: 1; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem;
  list-style: none; margin: var(--sp-6) 0 0; padding: 0;
  font-size: var(--step--1); font-weight: 500;
}
.hero-badges li { display: flex; align-items: center; gap: 0.45rem; margin: 0; }
.hero-badges svg { width: 1.05em; height: 1.05em; color: var(--amber-lt); flex: none; }

/* Page hero (interior pages) */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  color: #fff;
  padding-block: clamp(8rem, 16vw, 12rem) clamp(3.5rem, 7vw, 6rem);
  display: flex; align-items: flex-end;
  min-height: clamp(420px, 62vh, 660px);
}
.page-hero .hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(7,27,22,0.9), rgba(7,27,22,0.45) 55%, rgba(7,27,22,0.35));
}
.page-hero h1 { color: #fff; }
.page-hero .lede { color: rgba(255,255,255,0.84); }

.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center;
  list-style: none; margin: 0 0 var(--sp-5); padding: 0;
  font-size: 0.78rem; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72);
}
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: 0.4rem; }
.breadcrumb li + li::before { content: "/"; opacity: 0.5; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 1.9rem; z-index: 2;
  right: max(2.5rem, calc((100vw - var(--wrap)) / 2));
  display: none; align-items: center; gap: 0.6rem;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); text-decoration: none;
  writing-mode: vertical-rl;
}
@media (min-width: 1080px) { .scroll-cue { display: flex; } }
.scroll-cue::after {
  content: ""; width: 1px; height: 54px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0%,100% { transform: scaleY(0.4); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }

/* --------------------------------------------------------------------------
   8. Section headings
   -------------------------------------------------------------------------- */
.section-head {
  display: grid; gap: var(--sp-5);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 900px) {
  .section-head.is-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: var(--sp-7); align-items: end;
  }
}
.section-head h2 { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out),
              border-color 0.4s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.surface-dark .card { background: rgba(255,255,255,0.04); border-color: var(--line-light); }

.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand-2); }
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.card:hover .card-media img { transform: scale(1.05); }

.card-body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; gap: 0.7rem; }

/* Crew cards. The photographs are of people rather than landscapes, so the
   media box is portrait — a 4:3 crop takes the top off their heads. */
.card-media.is-portrait { aspect-ratio: 4 / 5; }
.card-body > .crew-role {
  margin: -0.25rem 0 0;
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  /* Forest rather than the eyebrow amber: at this size amber comes out at
     3.7:1 on the card, and a job title is information, not decoration. */
  color: var(--forest);
}
.card-body h3 { margin: 0; }
.card-body > p { margin: 0; color: var(--ink-2); font-size: 0.95rem; line-height: 1.62; }
.card-foot {
  margin-top: auto; padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: space-between; gap: var(--sp-4);
}

.tag {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: rgba(252, 250, 246, 0.94);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-radius: 100px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--forest-dk);
}
.tag-amber { background: var(--amber); color: #fff; }

.meta {
  display: flex; flex-wrap: wrap; gap: 0.35rem 0.9rem;
  list-style: none; margin: 0; padding: 0;
  font-size: 0.78rem; color: var(--ink-3);
}
.meta li { margin: 0; display: flex; align-items: center; gap: 0.35rem; }
.meta svg { width: 0.95em; height: 0.95em; opacity: 0.8; flex: none; }

/* Whole-card link */
.card-link::after {
  content: ""; position: absolute; inset: 0; z-index: 3;
}

/* Feature card (icon + text, no image) */
.feature {
  padding: var(--sp-6) var(--sp-5);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.surface-dark .feature { background: rgba(255,255,255,0.04); border-color: var(--line-light); }
.feature h3 { font-size: var(--step-1); margin-bottom: 0.45em; }
.feature p { font-size: 0.93rem; color: var(--ink-2); margin: 0; }
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; margin-bottom: var(--sp-4);
  border-radius: 14px;
  background: var(--amber-soft); color: var(--clay);
}
.surface-dark .feature-icon { background: rgba(229, 162, 68, 0.16); color: var(--amber-lt); }
.feature-icon svg { width: 22px; height: 22px; }

/* --------------------------------------------------------------------------
   10. Editorial split
   -------------------------------------------------------------------------- */
.split { display: grid; gap: var(--sp-6); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2.5rem, 6vw, 5.5rem); }
  .split.is-wide-left { grid-template-columns: 1.15fr 0.85fr; }
  .split.is-wide-right { grid-template-columns: 0.85fr 1.15fr; }
  .split.is-reverse > *:first-child { order: 2; }
  .split.is-top { align-items: start; }
  .split.is-top > *:first-child { position: sticky; top: 7.5rem; }
}
.split.is-top { align-items: start; }

.figure { position: relative; }
.figure img { border-radius: var(--r-lg); width: 100%; }
.figure figcaption {
  margin-top: 0.8rem; font-size: 0.78rem; color: var(--ink-3); line-height: 1.5;
}

/* Stacked/overlapping image pair */
.figure-stack { position: relative; padding-bottom: 3.5rem; padding-right: 3rem; }
.figure-stack .fs-a { border-radius: var(--r-lg); width: 100%; }
.figure-stack .fs-b {
  position: absolute; bottom: 0; right: 0;
  width: 52%; border-radius: var(--r-md);
  border: 6px solid var(--paper);
  box-shadow: var(--shadow-md);
}
.surface-dark .figure-stack .fs-b { border-color: var(--forest-dk); }

/* --------------------------------------------------------------------------
   11. Stats
   -------------------------------------------------------------------------- */
.stats {
  display: grid; gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
}
.stat-n {
  display: block;
  font-family: var(--font-display); font-size: var(--step-4); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1; color: var(--forest);
}
.surface-dark .stat-n { color: var(--amber-lt); }
.stat-l {
  display: block; margin-top: 0.55rem;
  font-size: 0.78rem; letter-spacing: 0.06em; color: var(--ink-3); line-height: 1.45;
}
.stats.is-ruled .stat { padding-left: var(--sp-5); border-left: 1px solid var(--line); }

/* Two rates side by side, for a trip priced differently sharing vs private.
   Boxed rather than run together in a sentence, so nobody reads the lower
   number and assumes it applies to them. */
.price-pair {
  display: grid; gap: var(--sp-4);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}
.price-pair-item {
  padding: var(--sp-4);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--white);
}
.price-pair-n {
  display: block;
  font-family: var(--font-display); font-size: var(--step-3); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1; color: var(--forest);
}
.price-pair-n small {
  display: block;
  font-size: 0.3em; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.35em;
}
.price-pair-l {
  display: block; margin-top: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3);
}
.price-pair-item p { margin-top: 0.9rem; font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   12. Route / pricing table
   -------------------------------------------------------------------------- */
.table-wrap {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--white); overflow: hidden;
}
.surface-dark .table-wrap { background: rgba(255,255,255,0.04); border-color: var(--line-light); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

table.data {
  width: 100%; border-collapse: collapse; min-width: 720px;
  font-size: 0.92rem;
}
table.data th, table.data td {
  padding: 1rem 1.1rem; text-align: left; vertical-align: middle;
  border-bottom: 1px solid var(--line);
}
table.data thead th {
  background: var(--sand);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-2); white-space: nowrap;
}
.surface-dark table.data thead th { background: rgba(255,255,255,0.06); color: #fff; }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr { transition: background-color 0.25s ease; }
table.data tbody tr:hover { background: color-mix(in srgb, var(--amber) 6%, transparent); }
table.data .rt-name { font-family: var(--font-display); font-size: 1.06rem; font-weight: 600; }
table.data .rt-name small {
  display: block; font-family: var(--font-body); font-size: 0.74rem;
  font-weight: 400; color: var(--ink-3); font-style: italic; margin-top: 0.15rem;
}
table.data td .price { font-size: 1.02rem; }

/* On a phone a six-column table is only readable by dragging it sideways, and
   most people never realise they can. Below the breakpoint each row becomes a
   block: the name is its heading, and every other cell puts its column label
   on the left and the value on the right. Labels come from the table's own
   <thead> (injected by the build), and the ARIA roles are there because
   changing display strips a table's implicit semantics. */
@media (max-width: 767px) {
  .table-scroll { overflow-x: visible; }
  table.data { display: block; min-width: 0; font-size: 1rem; }
  table.data thead { display: none; }
  table.data tbody { display: block; }

  table.data tr {
    display: block; padding: var(--sp-4) var(--sp-4) calc(var(--sp-4) - 0.35rem);
    border-bottom: 1px solid var(--line);
  }
  table.data tr:last-child { border-bottom: 0; }
  table.data tbody tr:hover { background: none; }

  table.data td {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: var(--sp-4); padding: 0.3rem 0; border: 0; text-align: right;
  }
  table.data td::before {
    content: attr(data-label);
    flex: none; text-align: left;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--ink-3);
  }
  /* Action cells carry no label and read better full width. */
  table.data td:not([data-label]) {
    display: block; text-align: left; padding-top: 0.7rem;
  }
  /* Prose cells stack: label above, sentence full width and left aligned. */
  table.data td[data-long] {
    display: block; text-align: left; padding-top: 0.55rem;
  }
  table.data td[data-long]::before { display: block; margin-bottom: 0.2rem; }
  /* The name is the block's heading, not a labelled field. */
  table.data td.rt-name {
    display: block; text-align: left;
    padding: 0 0 0.55rem; margin-bottom: 0.35rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.14rem;
  }
  table.data td.rt-name::before { content: none; }
  /* Inline max-widths on description cells are a desktop measure. */
  table.data td[style] { max-width: none !important; }
  .rate { min-width: 0; width: 58%; }
}

/* Success-rate bar */
.rate { display: flex; align-items: center; gap: 0.65rem; min-width: 118px; }
.rate-bar {
  position: relative; flex: 1; height: 5px; border-radius: 100px;
  background: color-mix(in srgb, var(--ink) 10%, transparent); overflow: hidden;
}
.rate-bar span {
  position: absolute; inset: 0 auto 0 0; border-radius: 100px;
  background: linear-gradient(90deg, var(--amber), var(--amber-lt));
  width: var(--v, 0%);
  transition: width 1.2s var(--ease-out);
}
.rate-n { font-weight: 600; font-size: 0.85rem; font-variant-numeric: tabular-nums; }

.pill {
  display: inline-block; padding: 0.25rem 0.65rem;
  border-radius: 100px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.03em; white-space: nowrap;
}
.pill-easy  { background: #E3F0E7; color: #1E6B3C; }
.pill-mod   { background: #FBEFD8; color: #8A5A11; }
.pill-hard  { background: #F8E2D6; color: #9C4A21; }
.pill-xhard { background: #F5DAD8; color: #A32D25; }

/* --------------------------------------------------------------------------
   13. Accordion (FAQ)
   -------------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-btn {
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-5);
  width: 100%; padding: 1.4rem 0;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-size: var(--step-1); font-weight: 500;
  line-height: 1.3; letter-spacing: -0.012em;
  color: inherit; text-align: left;
  transition: color 0.25s ease;
}
.acc-btn:hover { color: var(--amber); }
.acc-icon {
  position: relative; flex: none; width: 22px; height: 22px; margin-top: 0.28em;
}
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 13px; height: 1.5px; background: currentColor; border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease), opacity 0.3s ease;
}
.acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc-btn[aria-expanded="true"] .acc-icon::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }
.acc-btn[aria-expanded="true"] { color: var(--amber); }

.acc-panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.acc-panel.is-open { grid-template-rows: 1fr; }
.acc-panel > div { overflow: hidden; }
.acc-panel .acc-inner {
  padding-bottom: 1.5rem; max-width: 68ch;
  color: var(--ink-2); font-size: 0.97rem; line-height: 1.7;
}

/* --------------------------------------------------------------------------
   14. Timeline / steps
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: var(--sp-5); }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); } }
.step { position: relative; counter-increment: step; padding-top: var(--sp-6); }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 600;
  color: var(--amber); letter-spacing: 0.08em;
}
.step::after {
  content: ""; position: absolute; top: 0.5rem; left: 2.6rem; right: -1rem;
  height: 1px; background: var(--line);
}
@media (max-width: 799px) { .step::after { display: none; } }
.steps > .step:last-child::after { display: none; }
.step h3 { font-size: var(--step-1); margin-bottom: 0.4em; }
.step p { font-size: 0.92rem; color: var(--ink-2); margin: 0; }

/* Itinerary list */
.itinerary { list-style: none; margin: 0; padding: 0; }
.itinerary li {
  position: relative; margin: 0; padding: 0 0 1.6rem 2.4rem;
  border-left: 1px solid var(--line);
}
.itinerary li:last-child { border-left-color: transparent; padding-bottom: 0; }
.itinerary li::before {
  content: ""; position: absolute; left: -4.5px; top: 0.55rem;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber); box-shadow: 0 0 0 4px var(--paper);
}
.surface-sand .itinerary li::before { box-shadow: 0 0 0 4px var(--sand); }
.itinerary .day {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber);
  margin-bottom: 0.25rem;
}
.itinerary h3, .itinerary h4 { font-size: var(--step-1); line-height: 1.25; margin-bottom: 0.3em; }
.itinerary p { font-size: 0.92rem; color: var(--ink-2); margin: 0; }

/* --------------------------------------------------------------------------
   15. Checklist
   -------------------------------------------------------------------------- */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.checklist li {
  position: relative; margin: 0; padding-left: 1.9rem;
  font-size: 0.95rem; line-height: 1.55;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.42em;
  width: 1.05rem; height: 1.05rem; border-radius: 50%;
  background: var(--amber-soft);
}
.checklist li::after {
  content: ""; position: absolute; left: 0.32rem; top: 0.72em;
  width: 0.42rem; height: 0.22rem;
  border-left: 1.6px solid var(--clay); border-bottom: 1.6px solid var(--clay);
  transform: rotate(-45deg);
}
.surface-dark .checklist li::before { background: rgba(229,162,68,0.2); }
.surface-dark .checklist li::after { border-color: var(--amber-lt); }

.checklist.is-cross li::before { background: color-mix(in srgb, var(--ink) 8%, transparent); }
.checklist.is-cross li::after {
  left: 0.36rem; top: 0.62em; width: 0.36rem; height: 0.36rem;
  border: 0; border-left: 1.6px solid var(--ink-3); border-bottom: 1.6px solid var(--ink-3);
  transform: none;
  background:
    linear-gradient(45deg, transparent 44%, var(--ink-3) 44%, var(--ink-3) 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, var(--ink-3) 44%, var(--ink-3) 56%, transparent 56%);
  border-color: transparent;
}

/* --------------------------------------------------------------------------
   16. Gallery
   -------------------------------------------------------------------------- */
.gallery {
  display: grid; gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.gallery-item {
  position: relative; margin: 0; overflow: hidden; border-radius: var(--r-md);
  aspect-ratio: 3 / 2; cursor: zoom-in;
  background: var(--sand-2); border: 0; padding: 0;
}
.gallery-item.is-tall { aspect-ratio: 3 / 4; }
@media (min-width: 720px) {
  .gallery-item.is-wide { grid-column: span 2; }
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cap {
  position: absolute; inset: auto 0 0; z-index: 2;
  padding: 2.5rem 1rem 0.9rem;
  background: linear-gradient(to top, rgba(7,27,22,0.85), transparent);
  color: #fff; font-size: 0.8rem; text-align: left;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-cap,
.gallery-item:focus-visible .gallery-cap { opacity: 1; transform: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(7, 27, 22, 0.95);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%; max-height: 82vh; border-radius: var(--r-md);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  transform: scale(0.96); transition: transform 0.4s var(--ease-out);
}
.lightbox.is-open img { transform: none; }
.lightbox-cap {
  position: absolute; bottom: clamp(1rem, 3vw, 2rem); left: 0; right: 0;
  text-align: center; color: rgba(255,255,255,0.8); font-size: 0.85rem;
  padding-inline: 1rem;
}
.lightbox-close, .lightbox-nav {
  position: absolute; display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; cursor: pointer; transition: background-color 0.25s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox-nav.is-prev { left: clamp(0.5rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%); }
.lightbox-nav.is-next { right: clamp(0.5rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   17. Quote / testimonial
   -------------------------------------------------------------------------- */
.quote { position: relative; }
.quote blockquote {
  margin: 0;
  font-family: var(--font-display); font-size: var(--step-3);
  line-height: 1.34; letter-spacing: -0.018em; font-weight: 300;
  text-wrap: balance;
}
.quote blockquote p { margin: 0; }
.quote figcaption {
  display: flex; align-items: center; gap: 0.9rem;
  margin-top: var(--sp-5); font-size: 0.86rem; color: var(--ink-3);
}
.quote figcaption img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; }
.quote figcaption .who { color: var(--ink); font-weight: 600; display: block; }
.surface-dark .quote figcaption .who { color: #fff; }

.stars { display: inline-flex; gap: 2px; color: var(--amber-lt); }
.stars svg { width: 15px; height: 15px; }

/* --------------------------------------------------------------------------
   18. Forms
   -------------------------------------------------------------------------- */
.form { display: grid; gap: var(--sp-4); }
.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-2);
}
.field .hint { font-size: 0.78rem; color: var(--ink-3); font-weight: 400; letter-spacing: 0; text-transform: none; }

.input, .select, .textarea {
  width: 100%; min-width: 0; padding: 0.85rem 1rem;
  font-family: inherit; font-size: 0.95rem; color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong); border-radius: var(--r-md);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
}
.textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236B7679' stroke-width='1.6' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.6rem;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--amber);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--amber) 18%, transparent);
}
.field-row { display: grid; gap: var(--sp-4); }
@media (min-width: 620px) { .field-row { grid-template-columns: repeat(2, 1fr); } }

.form-note { font-size: 0.8rem; color: var(--ink-3); line-height: 1.55; }

/* --------------------------------------------------------------------------
   19. Contact blocks
   -------------------------------------------------------------------------- */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-5); }
.contact-list li { margin: 0; display: flex; gap: var(--sp-4); align-items: flex-start; }
.contact-list .ci {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex: none; border-radius: 12px;
  background: var(--amber-soft); color: var(--clay);
}
.surface-dark .contact-list .ci { background: rgba(229,162,68,0.16); color: var(--amber-lt); }
.contact-list .ci svg { width: 19px; height: 19px; }
.contact-list dt {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.15rem;
}
.contact-list dd { margin: 0; font-size: 1rem; overflow-wrap: anywhere; }
.contact-list dd a { text-decoration: none; }
.contact-list dd a:hover { color: var(--amber); }

/* --------------------------------------------------------------------------
   20. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  color: #fff;
  padding-block: clamp(4rem, 10vw, 7.5rem);
}
.cta-band .hero-media { position: absolute; inset: 0; z-index: -2; }
.cta-band .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(7,27,22,0.94) 20%, rgba(7,27,22,0.7) 60%, rgba(7,27,22,0.5));
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.82); }

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--forest-dpr); color: #C8CFC7;
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
  font-size: 0.92rem;
}
.site-footer h3 {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #fff;
  margin-bottom: 1.2rem;
}
.footer-grid { display: grid; gap: var(--sp-7); }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1040px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a { text-decoration: none; color: inherit; transition: color 0.25s ease; }
.site-footer a:hover { color: var(--amber-lt); }
.site-footer .brand { color: #fff; }
.site-footer .brand-sub { opacity: 0.55; }

.socials { display: flex; gap: 0.55rem; margin-top: var(--sp-5); }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.35s var(--ease-out);
}
.socials a:hover { background: var(--amber); border-color: var(--amber); color: #fff; transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; }

.footer-bottom {
  margin-top: var(--sp-7); padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 0.6rem var(--sp-5);
  align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(200, 207, 199, 0.7);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.footer-bottom li { margin: 0; }

/* --------------------------------------------------------------------------
   22. Floating actions
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: #1FA855; color: #fff;
  box-shadow: 0 8px 26px rgba(31, 168, 85, 0.42);
  transition: transform 0.4s var(--ease-out);
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 27px; height: 27px; }
/* The sticky mobile bar already carries WhatsApp — avoid a duplicate that
   collides with hero buttons on small screens. */
@media (max-width: 619px) { .wa-float { display: none; } }

.mobile-bar {
  position: fixed; inset: auto 0 0; z-index: 91;
  display: flex; gap: 0.6rem; padding: 0.6rem 0.9rem;
  padding-bottom: max(0.6rem, env(safe-area-inset-bottom));
  background: rgba(252, 250, 246, 0.94);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mobile-bar .btn { flex: 1; padding-inline: 0.5rem; }
@media (min-width: 620px) { .mobile-bar { display: none; } }
@media (max-width: 619px) { body { padding-bottom: 4.4rem; } }

/* --------------------------------------------------------------------------
   23. Motion
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

.no-js [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   24. Long-form article
   -------------------------------------------------------------------------- */
.article { font-size: 1.06rem; line-height: 1.78; color: var(--ink-2); }
.article > .lede { color: var(--ink); margin-bottom: 1.6em; }
.article h2 {
  font-size: var(--step-3);
  margin: 2.2em 0 0.55em;
  color: var(--ink);
  scroll-margin-top: 6rem;
}
.article h3 {
  font-size: var(--step-1);
  margin: 1.9em 0 0.5em;
  color: var(--ink);
}
.article h2 + h3 { margin-top: 1.1em; }
.article p { margin-bottom: 1.15em; }
.article ul, .article ol { margin: 0 0 1.5em; padding-left: 1.3em; }
.article li { margin-bottom: 0.55em; padding-left: 0.2em; }
.article strong { color: var(--ink); font-weight: 600; }
.article em { font-style: italic; }
.article a { color: var(--amber); text-decoration-color: color-mix(in srgb, var(--amber) 45%, transparent); }
.article a:hover { text-decoration-color: currentColor; }
.article > *:first-child { margin-top: 0; }

/* --------------------------------------------------------------------------
   25. Utilities
   -------------------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.mb-0 { margin-bottom: 0; }
.mb-5 { margin-bottom: var(--sp-5); }
.mb-6 { margin-bottom: var(--sp-6); }
.full-img { width: 100%; border-radius: var(--r-lg); }
.rounded { border-radius: var(--r-lg); overflow: hidden; }
.ratio-16-9 { aspect-ratio: 16 / 9; object-fit: cover; }
.ratio-4-3 { aspect-ratio: 4 / 3; object-fit: cover; }
.ratio-3-4 { aspect-ratio: 3 / 4; object-fit: cover; }
.ratio-1-1 { aspect-ratio: 1 / 1; object-fit: cover; }
