/* =========================================================
   Ha Giang With Matt — style.css
   Mobile first. No framework. Tokens first, components after.
   ========================================================= */

/* ---------- 1. Tokens ---------- */

:root {
  /* Surface */
  --paper:        #ffffff;
  --paper-warm:   #f3f2ee;
  --charcoal:     #1a1b18;
  --charcoal-2:   #23241f;

  /* Ink */
  --ink:          #1a1b18;
  --ink-soft:     #4c4d47;
  --ink-on-dark:  #f0efea;
  --ink-on-dark-soft: #a9a89f;

  /* Accent */
  --forest:       #2c3b2e;
  --forest-lift:  #3a4d3c;
  --earth:        #7a5a42;
  --stone:        #8b8b83;
  --sky:          #afc4ce;

  /* Lines */
  --rule:         rgba(26, 27, 24, 0.12);
  --rule-strong:  rgba(26, 27, 24, 0.28);
  --rule-dark:    rgba(240, 239, 234, 0.16);

  /* Type */
  --display: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --step-xs:   0.75rem;
  --step-sm:   0.875rem;
  --step-base: 1rem;
  --step-md:   clamp(1.0625rem, 0.4vw + 0.98rem, 1.1875rem);
  --step-lg:   clamp(1.375rem, 1vw + 1.15rem, 1.75rem);
  --step-xl:   clamp(1.875rem, 2.4vw + 1.35rem, 2.75rem);
  --step-2xl:  clamp(2.375rem, 4.6vw + 1.3rem, 4.25rem);
  --step-3xl:  clamp(2.75rem, 8vw + 1rem, 5.75rem);

  /* Space */
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --measure: 34rem;
  --max: 78rem;
  --max-narrow: 46rem;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 700ms;
}

/* ---------- 2. Reset and base ---------- */

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--step-md);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, video { display: block; max-width: 100%; height: auto; }

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

p { margin: 0 0 1.15em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; }
ul[role="list"] { list-style: none; }

a { color: inherit; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection { background: var(--forest); color: var(--paper); }

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--charcoal);
  color: var(--ink-on-dark);
  font-size: var(--step-sm);
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ---------- 3. Layout primitives ---------- */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--max-narrow); }

/* Signature: a short vertical hairline drops in above every eyebrow,
   marking each section like a trail marker on a descent. */
.eyebrow {
  font-family: var(--body);
  font-size: var(--step-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 1px;
  height: clamp(2rem, 5vw, 3.25rem);
  background: currentColor;
  opacity: 0.55;
  margin-bottom: 1.25rem;
}

.section-head { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-head__title { font-size: var(--step-xl); }
.section-head__lede {
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: var(--step-base);
}

.link-arrow {
  display: inline-block;
  font-family: var(--body);
  font-size: var(--step-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--forest);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--rule-strong);
  transition: border-color 300ms var(--ease), color 300ms var(--ease);
}
.link-arrow::after {
  content: "→";
  margin-left: 0.5em;
  display: inline-block;
  transition: transform 300ms var(--ease);
}
a:hover > .link-arrow::after,
.link-arrow:hover::after { transform: translateX(4px); }
.link-arrow:hover { border-color: var(--forest); }

/* ---------- 4. Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--body);
  font-size: var(--step-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 300ms var(--ease), color 300ms var(--ease), border-color 300ms var(--ease);
}

.btn--solid {
  background: var(--forest);
  color: var(--paper);
}
.btn--solid:hover { background: var(--forest-lift); }

.btn--ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

/* ---------- 5. Header and navigation ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 400ms var(--ease), border-color 400ms var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--paper);
  transition: color 400ms var(--ease);
}
.brand__name {
  font-family: var(--display);
  font-size: 1.375rem;
  letter-spacing: -0.01em;
}
.brand__place {
  font-size: var(--step-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.nav-toggle {
  display: grid;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  place-content: center;
  margin-right: -0.75rem;
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--paper);
  transition: transform 400ms var(--ease), opacity 300ms var(--ease), background-color 400ms var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.nav {
  position: fixed;
  inset: 4.25rem 0 auto 0;
  background: var(--charcoal);
  padding: 2rem var(--gutter) 2.5rem;
  transform: translateY(-120%);
  visibility: hidden;
  transition: transform 500ms var(--ease), visibility 0s linear 500ms;
}
.nav[data-open] {
  transform: translateY(0);
  visibility: visible;
  transition: transform 500ms var(--ease), visibility 0s;
}

.nav__list {
  list-style: none;
  display: grid;
  gap: 0.25rem;
}
.nav__list a {
  display: block;
  padding: 0.6rem 0;
  font-family: var(--display);
  font-size: var(--step-lg);
  color: var(--ink-on-dark);
  text-decoration: none;
}
.nav__list a:hover { color: var(--sky); }

.lang {
  margin: 2rem 0 0;
  font-size: var(--step-xs);
  letter-spacing: 0.14em;
  color: var(--ink-on-dark-soft);
}
.lang__current { color: var(--ink-on-dark); }
.lang__sep { margin: 0 0.5em; }
.lang__alt { text-decoration: none; }
.lang__alt:hover { color: var(--ink-on-dark); }

/* Scrolled state — set by script.js */
.site-header[data-scrolled] {
  background: var(--paper);
  border-bottom-color: var(--rule);
}
.site-header[data-scrolled] .brand { color: var(--ink); }
.site-header[data-scrolled] .nav-toggle__bar { background: var(--ink); }

/* ---------- 6. Hero: full-bleed video ---------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding-block: 9rem 3.5rem;
  overflow: hidden;
  isolation: isolate;
  background: var(--charcoal);
  color: var(--paper);
}

.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Two gradients: one anchors the type, one keeps the navigation legible */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,11,9,.88) 0%, rgba(10,11,9,.45) 38%, rgba(10,11,9,.10) 62%, rgba(10,11,9,.55) 100%);
}

.hero__inner { position: relative; }

.hero__eyebrow {
  font-size: var(--step-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin: 0 0 1.5rem;
}

.hero__title {
  font-size: var(--step-3xl);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.032em;
  max-width: 16ch;
  text-wrap: balance;
}
.hero__title em {
  display: inline-block;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.82);
}

.hero__lede {
  margin-top: 1.75rem;
  max-width: 44ch;
  font-size: var(--step-base);
  line-height: 1.65;
  color: rgba(255,255,255,.84);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
  max-width: none;
}

.hero__scroll {
  position: relative;
  margin: 2.5rem 0 0;
  padding-inline: var(--gutter);
  max-width: none;
}
.hero__scroll a {
  font-size: var(--step-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  text-decoration: none;
  transition: color 260ms var(--ease);
}
.hero__scroll a:hover { color: var(--paper); }

/* Sound toggle sits with the copy, not floating over the footage */
.sound {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2rem;
  padding: 0.5rem 0.9rem;
  background: rgba(10,11,9,.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.26);
  color: var(--paper);
  font-size: var(--step-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 280ms var(--ease), border-color 280ms var(--ease);
}
.sound:hover { background: rgba(10,11,9,.72); border-color: rgba(255,255,255,.55); }
.sound[hidden] { display: none; }

.sound__icon { display: flex; align-items: flex-end; gap: 2px; height: 12px; }
.sound__wave { display: block; width: 2px; height: 4px; background: currentColor; }
.sound[aria-pressed="true"] .sound__wave { animation: eq 900ms var(--ease) infinite alternate; }
.sound[aria-pressed="true"] .sound__wave:nth-child(2) { animation-delay: 150ms; }
.sound[aria-pressed="true"] .sound__wave:nth-child(3) { animation-delay: 300ms; }
@keyframes eq { from { height: 3px; } to { height: 12px; } }

/* ---------- 7. Who is Matt ---------- */

.who { padding-block: var(--section-y); }

.who__figure { margin: 0 0 2.5rem; }
.who__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--paper-warm);
}

.who__title {
  font-size: var(--step-xl);
  margin-bottom: 1.75rem;
  max-width: 18ch;
}
.who__text p { color: var(--ink-soft); }
.who__more { margin-top: 2rem; }

/* ---------- 8. Featured experiences ---------- */

.tours {
  padding-block: var(--section-y);
  background: var(--paper-warm);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.tour-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.tour-card__media {
  margin: 0 0 1.5rem;
  overflow: hidden;
  background: var(--rule);
}
.tour-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}
.tour-card__link:hover .tour-card__media img { transform: scale(1.03); }

.tour-card__title { font-size: var(--step-lg); }
.tour-card__lede {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  font-size: var(--step-base);
}
.tour-card__cta { margin-top: 1.25rem; }

.tours__all { margin-top: clamp(2.5rem, 5vw, 3.5rem); }

/* ---------- 9. Why travel with Matt ---------- */

.why { padding-block: 0 var(--section-y); }

.why__banner {
  margin: 0 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.why__banner img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  will-change: transform;
}

.why-list {
  display: grid;
  gap: clamp(2rem, 4vw, 2.75rem);
}

.why-item {
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
.why-item__title {
  font-size: var(--step-lg);
  margin-bottom: 0.75rem;
}
.why-item p {
  color: var(--ink-soft);
  font-size: var(--step-base);
}

/* ---------- 10. Gallery ---------- */

.gallery {
  padding-block: var(--section-y);
  background: var(--paper-warm);
}

.gallery-grid {
  display: grid;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}
.gallery-grid__item { overflow: hidden; }
.gallery-grid__item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.gallery__more { margin-top: clamp(2rem, 4vw, 3rem); }

/* ---------- 11. Reviews ---------- */

.reviews { padding-block: var(--section-y); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.review {
  height: 100%;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border: 1px solid var(--rule);
  background: var(--paper);
}
.review__rating {
  margin-bottom: 1.25rem;
  font-size: var(--step-sm);
  letter-spacing: 0.2em;
  color: var(--earth);
}
.review__quote { margin: 0; }
.review__quote p {
  font-family: var(--display);
  font-size: var(--step-md);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.review__meta { margin-top: 1.75rem; }
.review__author {
  margin: 0;
  font-size: var(--step-sm);
  font-weight: 500;
}
.review__origin {
  margin: 0.15rem 0 0;
  font-size: var(--step-sm);
  color: var(--stone);
}

.reviews__more { margin-top: clamp(2rem, 4vw, 3rem); }

/* ---------- 12. FAQ ---------- */

.faq {
  padding-block: var(--section-y);
  background: var(--paper-warm);
}

.accordion { border-top: 1px solid var(--rule-strong); }
.accordion__item { border-bottom: 1px solid var(--rule-strong); }
.accordion__heading { margin: 0; }

.accordion__trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--display);
  font-size: var(--step-lg);
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: color 300ms var(--ease);
}
.accordion__trigger:hover { color: var(--forest); }
.accordion__trigger em { font-style: italic; }

.accordion__icon {
  position: relative;
  flex: none;
  width: 14px;
  height: 14px;
  margin-top: 0.5em;
}
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1px;
  background: currentColor;
  transition: transform 400ms var(--ease), opacity 300ms var(--ease);
}
.accordion__icon::after { transform: rotate(90deg); }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after {
  transform: rotate(0deg);
  opacity: 0;
}

/* Spacing lives on the last child, not on the panel. Padding is added to
   height:0 and would leave a 28px stub that never collapses; a child's
   margin is inside the box and disappears with it. */
.accordion__panel { padding-bottom: 0; }
.accordion__panel > *:last-child { margin-bottom: 1.75rem; }
.accordion__panel p {
  color: var(--ink-soft);
  font-size: var(--step-base);
  max-width: 58ch;
}
.accordion__panel[hidden] { display: none; }

.faq__more { margin-top: clamp(2rem, 4vw, 3rem); }

/* ---------- 13. Contact ---------- */

.contact {
  padding-block: var(--section-y);
  background: var(--charcoal);
  color: var(--ink-on-dark);
}
.contact .eyebrow { color: var(--ink-on-dark-soft); }

.contact__title {
  font-size: var(--step-xl);
  margin-bottom: 2rem;
  max-width: 16ch;
}
.contact__text p { color: var(--ink-on-dark-soft); }

.contact__channels {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.75rem;
}

.channel {
  display: inline-flex;
  align-items: center;
  min-height: 3.25rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--rule-dark);
  font-size: var(--step-sm);
  font-weight: 500;
  text-decoration: none;
  transition: background-color 300ms var(--ease), border-color 300ms var(--ease);
}
.channel:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.4); }

.channel--primary {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--paper);
}
.channel--primary:hover { background: var(--forest-lift); border-color: var(--forest-lift); }

.contact__note {
  margin-top: 2rem;
  font-size: var(--step-sm);
  color: var(--ink-on-dark-soft);
}
.contact__note a { color: var(--ink-on-dark); }

/* ---------- 14. Footer ---------- */

.site-footer {
  background: var(--charcoal);
  color: var(--ink-on-dark-soft);
  padding-block: 3rem 5.5rem;
  border-top: 1px solid var(--rule-dark);
}

.site-footer__brand {
  margin: 0;
  font-family: var(--display);
  font-size: var(--step-lg);
  color: var(--ink-on-dark);
}
.site-footer__place {
  margin: 0.35rem 0 2rem;
  font-size: var(--step-sm);
}

.site-footer__nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.site-footer__nav a {
  font-size: var(--step-sm);
  text-decoration: none;
}
.site-footer__nav a:hover { color: var(--ink-on-dark); }

.site-footer__legal {
  margin: 2.5rem 0 0;
  font-size: var(--step-xs);
  opacity: 0.7;
}

/* ---------- 15. Mobile CTA bar ---------- */

.mobile-cta {
  position: sticky;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 0.75rem var(--gutter) calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(26, 27, 24, 0.94);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--rule-dark);
  transform: translateY(100%);
  transition: transform 450ms var(--ease);
}
.mobile-cta[data-visible] { transform: translateY(0); }
.mobile-cta .btn { min-height: 2.75rem; padding-inline: 1rem; }

/* ---------- 16. Scroll reveal ---------- */

/* Element-level motion. script.js tags each animatable element with
   [data-anim] and a per-element delay, then flips .in when its section
   enters the viewport. Sections themselves never hide — only their parts.

   Everything below uses a long, decelerating curve so items arrive rather
   than snap. Blur is what actually makes it read as "smooth": the eye
   forgives a slow move if it is also softening into focus. */

:root {
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-anim: 1100ms;
}

.js [data-anim] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  filter: blur(6px);
  transition:
    opacity 800ms var(--ease-out) var(--d, 0ms),
    transform var(--dur-anim) var(--ease-out) var(--d, 0ms),
    filter 900ms var(--ease-out) var(--d, 0ms);
  will-change: transform, opacity;
}
.js [data-anim].in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
/* Release the compositor hint once the move is over */
.js [data-anim].settled { will-change: auto; }

/* Images push in from a slight overscale as they clear */
.js figure[data-anim] img,
.js [data-anim] > img {
  transform: scale(1.06);
  transition: transform 1600ms var(--ease-out) var(--d, 0ms);
}
.js figure[data-anim].in img,
.js [data-anim].in > img { transform: none; }

/* Display headings wipe up behind a mask, no blur — it muddies large type */
.js [data-anim="wipe"] {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0 0 108% 0);
  transition: clip-path 1200ms var(--ease-out) var(--d, 0ms);
}
.js [data-anim="wipe"].in { clip-path: inset(-25% 0 -25% 0); }

/* Rules and dividers draw themselves left to right */
.js [data-anim="draw"] {
  opacity: 1;
  transform: none;
  filter: none;
  transform-origin: left center;
  scale: 0 1;
  transition: scale 1000ms var(--ease-out) var(--d, 0ms);
}
.js [data-anim="draw"].in { scale: 1 1; }

/* ---------- 17. Tablet ---------- */

@media (min-width: 48em) {

  .who__inner {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: start;
  }
  .who__figure { margin-bottom: 0; }

  .why-list { grid-template-columns: repeat(2, 1fr); column-gap: clamp(2rem, 5vw, 4rem); }
  .why__banner img { aspect-ratio: 16 / 9; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid__item--wide { grid-column: span 2; }
  .gallery-grid__item--wide img { aspect-ratio: 2 / 1; }
  .gallery-grid__item img { aspect-ratio: 1 / 1; }

  .contact__channels {
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 0.75rem;
  }

  .mobile-cta { display: none; }
}

/* ---------- 18. Desktop ---------- */

@media (min-width: 62em) {

  .nav-toggle { display: none; }

  .nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 0;
    background: none;
    transform: none;
    visibility: visible;
  }
  .nav__list { grid-auto-flow: column; gap: 2rem; }
  .nav__list a {
    font-family: var(--body);
    font-size: var(--step-sm);
    font-weight: 500;
    padding: 0.25rem 0;
    color: var(--paper);
    border-bottom: 1px solid transparent;
    transition: border-color 300ms var(--ease), color 300ms var(--ease);
  }
  .nav__list a:hover { color: var(--paper); border-bottom-color: currentColor; }

  .lang { margin: 0; color: rgba(255, 255, 255, 0.7); }
  .lang__current { color: var(--paper); }

  .site-header[data-scrolled] .nav__list a,
  .site-header[data-scrolled] .lang { color: var(--ink); }
  .site-header[data-scrolled] .nav__list a:hover { color: var(--forest); }
  .site-header[data-scrolled] .lang { color: var(--stone); }
  .site-header[data-scrolled] .lang__current { color: var(--ink); }

  .hero__lede { font-size: var(--step-md); max-width: 46ch; }
  .hero { padding-block: 10rem 4rem; }

  .why__inner {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
  }
  .why__inner .section-head { margin-bottom: 0; }

  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid__item--wide { grid-column: span 2; }
  .gallery-grid__item--wide img { aspect-ratio: 3 / 2; }

  .faq .section-head { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
}

/* ---------- 19. Cards and containers ---------- */

.tour-card { height: 100%; }
.trip__body { min-width: 0; }
.who__inner, .why__inner, .contact__inner, .site-footer__inner, .reach__form { min-width: 0; }
.sound__label { white-space: nowrap; }

/* ---------- 20. Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-anim],
  .js img[data-fade] {
    opacity: 1; transform: none; clip-path: none; scale: 1 1; filter: none;
  }
  .js [data-anim] > img,
  .js figure[data-anim] img { transform: none; }
  .scroll-progress { display: none; }
  .js .accordion__panel[data-open] { height: auto; }
  .why__banner img { transform: none !important; }
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none; }
}

/* ---------- 21. Sub-page shell ---------- */

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

/* Inner pages have no photographic hero, so the bar is opaque from the start */
.site-header[data-solid] {
  background: var(--paper);
  border-bottom-color: var(--rule);
}
.site-header[data-solid] .brand { color: var(--ink); }
.site-header[data-solid] .nav-toggle__bar { background: var(--ink); }

.page-hero {
  padding-block: calc(4.25rem + clamp(3rem, 8vw, 6rem)) clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid var(--rule);
}
.page-hero__title {
  font-size: var(--step-2xl);
  font-weight: 300;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
.page-hero__lede {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* ---------- 22. Trip cards ---------- */

.trips { padding-block: var(--section-y) 0; }

.trip { padding-bottom: clamp(3.5rem, 8vw, 6rem); }
.trip + .trip {
  padding-top: clamp(3.5rem, 8vw, 6rem);
  border-top: 1px solid var(--rule);
}

.trip__media { margin: 0 0 2rem; overflow: hidden; }
.trip__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.trip__title { font-size: var(--step-xl); }
.trip__meta {
  margin: 0.75rem 0 1.25rem;
  font-size: var(--step-sm);
  letter-spacing: 0.04em;
  color: var(--stone);
}
.trip__lede { color: var(--ink-soft); }

.trip__points {
  list-style: none;
  margin: 1.75rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.trip__points li {
  position: relative;
  padding-left: 1.35rem;
  font-size: var(--step-base);
  color: var(--ink-soft);
}
.trip__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.72em;
  width: 6px; height: 1px;
  background: var(--forest);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 1px;
  margin-top: 2rem;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.price-cell { padding: 1.25rem; background: var(--paper); }
.price-cell__label {
  margin: 0;
  font-size: var(--step-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}
.price-cell__value {
  margin: 0.5rem 0 0;
  font-family: var(--display);
  font-size: var(--step-lg);
  letter-spacing: -0.02em;
}
.price-cell__note {
  margin: 0.25rem 0 0;
  font-size: var(--step-sm);
  color: var(--stone);
}

.trip__addon {
  margin-top: 1.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--earth);
  border-radius: 0;
  font-size: var(--step-sm);
  color: var(--ink-soft);
}

.trip__cta { margin-top: 2rem; }

/* ---------- 23. Comparison ---------- */

.compare { padding-block: var(--section-y); background: var(--paper-warm); }
.table-scroll { overflow-x: auto; margin-top: 2.5rem; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--step-sm);
  text-align: left;
}
.compare-table th,
.compare-table td {
  padding: 0.9rem 1rem 0.9rem 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.compare-table thead th {
  font-family: var(--display);
  font-size: var(--step-base);
  font-weight: 400;
  border-bottom-color: var(--rule-strong);
}
.compare-table tbody th {
  font-weight: 400;
  color: var(--stone);
  white-space: nowrap;
  padding-right: 2rem;
}
.compare__note {
  margin-top: 2rem;
  color: var(--ink-soft);
  font-size: var(--step-base);
}

/* ---------- 24. Essentials ---------- */

.essentials { padding-block: var(--section-y); }
.essentials__grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); margin-top: 2.5rem; }
.essentials__head { font-size: var(--step-lg); margin-bottom: 1.25rem; }
.essentials__head--gap { margin-top: 2.5rem; }
.essentials p { color: var(--ink-soft); font-size: var(--step-base); }

.ticks, .crosses { list-style: none; display: grid; gap: 0.7rem; }
.ticks li, .crosses li {
  position: relative;
  padding-left: 1.6rem;
  font-size: var(--step-base);
  color: var(--ink-soft);
}
.ticks li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--forest);
}
.crosses li::before {
  content: "✕";
  position: absolute; left: 0;
  color: var(--earth);
}

/* ---------- 25. Gallery page ---------- */

.shots { padding-block: var(--section-y); }
.shots__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.shot__btn {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--paper-warm);
  cursor: zoom-in;
}
.shot__btn img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}
.shot__btn:hover img { transform: scale(1.03); }
.shot__cap {
  margin-top: 0.75rem;
  font-size: var(--step-sm);
  color: var(--stone);
}

.lightbox {
  position: absolute;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(13, 14, 12, 0.94);
}
.lightbox[hidden] { display: none; }
.lightbox__inner { margin: 0; max-width: min(64rem, 100%); }
.lightbox__inner img {
  max-height: 78vh;
  width: auto;
  margin-inline: auto;
  object-fit: contain;
}
.lightbox__inner figcaption {
  margin-top: 1rem;
  text-align: center;
  font-size: var(--step-sm);
  color: var(--ink-on-dark-soft);
}
.lightbox__close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  width: 3rem; height: 3rem;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--ink-on-dark);
}

/* ---------- 26. Reviews placeholder ---------- */

.pending {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid var(--rule-strong);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.pending__title {
  font-family: var(--display);
  font-size: var(--step-lg);
  margin-bottom: 1rem;
}
.pending p { color: var(--ink-soft); font-size: var(--step-base); }
.pending__cta { margin-top: 1.5rem; }

/* ---------- 27. Contact page ---------- */

.reach { padding-block: var(--section-y); }
.reach__inner { display: grid; gap: clamp(3rem, 7vw, 5rem); }
.reach__text p { color: var(--ink-soft); }
.reach__head { font-size: var(--step-lg); margin: 2.5rem 0 1.25rem; }

.reach__channels { list-style: none; border-top: 1px solid var(--rule); }
.reach__channels li { border-bottom: 1px solid var(--rule); }
.reach__channels a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  font-size: var(--step-base);
  font-weight: 500;
  text-decoration: none;
  transition: color 260ms var(--ease);
}
.reach__channels a span { font-weight: 400; color: var(--stone); }
.reach__channels a:hover { color: var(--forest); }

.reach__where { margin-top: 1.5rem; font-size: var(--step-sm); color: var(--stone); }
.reach__formnote { font-size: var(--step-sm); color: var(--stone); margin-bottom: 1.75rem; }

.field { display: grid; gap: 0.5rem; margin-bottom: 1.5rem; max-width: none; }
.field label { font-size: var(--step-sm); font-weight: 500; }
.field__hint { font-weight: 400; color: var(--stone); }

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: var(--step-base);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 0;
  transition: border-color 240ms var(--ease);
}
.field input:focus,
.field textarea:focus { border-color: var(--forest); }
.field textarea { resize: vertical; min-height: 7rem; }
.field--submit { margin-top: 2rem; }

.form-status { font-size: var(--step-sm); color: var(--earth); min-height: 1.5em; }

.contact--slim { padding-block: clamp(3.5rem, 8vw, 5.5rem); }

.faq--page { background: var(--paper); padding-block: var(--section-y); }

/* ---------- 28. Sub-page breakpoints ---------- */

@media (min-width: 48em) {
  .essentials__grid { grid-template-columns: 1fr 1fr; }
  .shot__btn img { aspect-ratio: 1 / 1; }
}

@media (min-width: 62em) {
  .trip {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: start;
  }
  .trip__media { margin-bottom: 0; position: sticky; top: 6rem; }
  .reach__inner { grid-template-columns: 5fr 6fr; }
  .site-header[data-solid] .nav__list a,
  .site-header[data-solid] .lang__current { color: var(--ink); }
  .site-header[data-solid] .lang { color: var(--stone); }
  .site-header[data-solid] .nav__list a:hover { color: var(--forest); }
}

/* ---------- 29. Tour detail pages ---------- */

.btn--quiet {
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn--quiet:hover { background: var(--paper-warm); border-color: var(--ink); }

.page-hero--trip { border-bottom: 0; padding-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.page-hero--trip .trip__meta { margin: 1rem 0 0; }
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: none;
}

.subnav {
  position: sticky;
  top: 4.25rem;
  z-index: 80;
  background: var(--paper);
  border-block: 1px solid var(--rule);
}
.subnav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-block: 0.9rem;
}
.subnav ul::-webkit-scrollbar { display: none; }
.subnav a {
  white-space: nowrap;
  font-size: var(--step-sm);
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-soft);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 260ms var(--ease), border-color 260ms var(--ease);
}
.subnav a:hover { color: var(--forest); border-bottom-color: currentColor; }

.overview { padding-block: var(--section-y); }
.overview__inner { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.overview__text p { color: var(--ink-soft); }
.overview__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background: var(--rule-dark);
}
.stat { padding: 1.5rem 1.25rem; background: var(--charcoal); color: var(--ink-on-dark); }
.stat__label {
  margin: 0;
  font-size: var(--step-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-on-dark-soft);
}
.stat__value {
  margin: 0.6rem 0 0;
  font-family: var(--display);
  font-size: var(--step-lg);
  letter-spacing: -0.02em;
}
.stat__note { margin: 0.2rem 0 0; font-size: var(--step-sm); color: var(--ink-on-dark-soft); }

.reasons { padding-block: var(--section-y); background: var(--paper-warm); }
.reasons__list { list-style: none; display: grid; gap: 2rem; margin-top: 2.5rem; }
.reason { display: grid; grid-template-columns: 2.75rem 1fr; gap: 1rem; align-items: start; }
.reason__num {
  margin: 0;
  font-family: var(--display);
  font-size: var(--step-lg);
  color: var(--earth);
  letter-spacing: -0.02em;
}
.reason__title { font-size: var(--step-lg); margin-bottom: 0.6rem; }
.reason p { color: var(--ink-soft); font-size: var(--step-base); }

.route { padding-block: var(--section-y); }
.route__days { display: grid; gap: clamp(2.5rem, 6vw, 4rem); margin-top: 2.5rem; }
.dayblock { padding-top: 2rem; border-top: 1px solid var(--rule-strong); }
.dayblock .eyebrow::before { display: none; }
.dayblock__route { font-size: var(--step-lg); }
.dayblock__sub {
  margin: 0.6rem 0 1.75rem;
  font-size: var(--step-sm);
  font-style: italic;
  color: var(--stone);
}

.steps { list-style: none; display: grid; gap: 1.5rem; padding-left: 1.25rem; }
.step { position: relative; }
.step::before {
  content: "";
  position: absolute;
  left: -1.25rem; top: 0.55em;
  width: 7px; height: 7px;
  background: var(--forest);
}
.step__title { font-family: var(--body); font-size: var(--step-base); font-weight: 500; letter-spacing: 0; }
.step p { margin-top: 0.35rem; color: var(--ink-soft); font-size: var(--step-base); }

.effort { padding-block: var(--section-y); background: var(--paper-warm); }
.note { margin-top: 2.5rem; padding-left: 1.25rem; border-left: 2px solid var(--earth); border-radius: 0; }
.note__title { font-size: var(--step-base); font-family: var(--body); font-weight: 500; margin-bottom: 0.6rem; }
.note p { color: var(--ink-soft); font-size: var(--step-base); }
.seasons { list-style: none; display: grid; gap: 0.75rem; }
.seasons li { font-size: var(--step-base); color: var(--ink-soft); }
.seasons strong { font-weight: 500; color: var(--ink); }

.dashes { list-style: none; display: grid; gap: 0.7rem; }
.dashes li {
  position: relative;
  padding-left: 1.6rem;
  font-size: var(--step-base);
  color: var(--ink-soft);
}
.dashes li::before { content: "—"; position: absolute; left: 0; color: var(--stone); }

.price { padding-block: var(--section-y); }
.price__lede { margin-top: 1.25rem; color: var(--ink-soft); max-width: 52ch; }
.price-grid--big { margin-top: 2.5rem; }
.price-grid--big .price-cell { padding: 1.75rem 1.5rem; }
.price-grid--big .price-cell__value { font-size: var(--step-xl); }
.price__terms { margin-top: 2.5rem; }
.price__terms p { font-size: var(--step-sm); color: var(--stone); margin-bottom: 0.6rem; }

@media (min-width: 48em) {
  .reasons__list { grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; }
}

@media (min-width: 62em) {
  .overview__inner { grid-template-columns: 7fr 5fr; }
  .route__days { grid-template-columns: 1fr 1fr; gap: 3.5rem 4rem; }
  .price-grid--big { grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); }
}

/* ---------- 30. About page ---------- */

.story { padding-block: var(--section-y); }
.story__inner { display: grid; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: start; }
.story__figure { margin: 0; }
.story__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; background: var(--paper-warm); }
.story__figure figcaption { margin-top: 0.75rem; font-size: var(--step-sm); color: var(--stone); }
.story__head { font-size: var(--step-lg); margin: 2.75rem 0 1rem; }
.story__head:first-child { margin-top: 0; }
.story__text p { color: var(--ink-soft); }

.invite { padding-block: var(--section-y); background: var(--paper-warm); }
.invite__text { margin-top: 1.5rem; color: var(--ink-soft); max-width: 54ch; }
.invite__cta { margin-top: 2rem; }

@media (min-width: 62em) {
  .story__inner { grid-template-columns: 5fr 7fr; }
  .story__figure { position: sticky; top: 6rem; }
}

/* ---------- 31. Motion layer: chrome and micro-interactions ---------- */

/* Reading-progress hairline across the very top */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  height: 2px;
  width: 100%;
  transform-origin: left center;
  scale: 0 1;
  background: var(--forest);
  pointer-events: none;
  transition: scale 120ms linear;
}

/* Sub-navigation marks where you are */
.subnav a.is-current {
  color: var(--forest);
  border-bottom-color: currentColor;
}

/* Mobile menu links arrive one after another.
   Scoped to the mobile breakpoint only — without this guard the desktop
   navigation stays at opacity 0 forever, because it never gets [data-open]. */
@media (max-width: 61.99em) {
  .js .nav__list a,
  .js .lang {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 420ms var(--ease), transform 420ms var(--ease);
  }
}
.js .nav[data-open] .nav__list a,
.js .nav[data-open] .lang { opacity: 1; transform: none; }
.js .nav[data-open] .nav__list li:nth-child(1) a { transition-delay: 60ms; }
.js .nav[data-open] .nav__list li:nth-child(2) a { transition-delay: 110ms; }
.js .nav[data-open] .nav__list li:nth-child(3) a { transition-delay: 160ms; }
.js .nav[data-open] .nav__list li:nth-child(4) a { transition-delay: 210ms; }
.js .nav[data-open] .nav__list li:nth-child(5) a { transition-delay: 260ms; }
.js .nav[data-open] .nav__list li:nth-child(6) a { transition-delay: 310ms; }
.js .nav[data-open] .lang { transition-delay: 360ms; }

/* Cards and rows lift a little under the pointer */
.tour-card__link,
.trip,
.shot,
.review,
.dayblock,
.reason { transition: transform 420ms var(--ease); }

@media (hover: hover) {
  .tour-card__link:hover,
  .shot:hover { transform: translateY(-4px); }
  .review:hover { transform: translateY(-3px); }
  .compare-table tbody tr { transition: background-color 260ms var(--ease); }
  .compare-table tbody tr:hover { background: var(--paper); }
  .reach__channels a:hover span { color: var(--forest); }
  .price-cell { transition: background-color 320ms var(--ease); }
  .price-cell:hover { background: var(--paper-warm); }
  .stat { transition: background-color 320ms var(--ease); }
  .stat:hover { background: var(--charcoal-2); }
}

/* Footer links grow an underline from the left */
.site-footer__nav a,
.nav__list a {
  position: relative;
}
.site-footer__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: left;
  scale: 0 1;
  transition: scale 320ms var(--ease);
}
.site-footer__nav a:hover::after { scale: 1 1; }

/* Lightbox opens rather than appears */
.lightbox { animation: lb-in 320ms var(--ease) both; }
.lightbox__inner { animation: lb-zoom 480ms var(--ease) both; }
@keyframes lb-in { from { opacity: 0; } }
@keyframes lb-zoom { from { opacity: 0; transform: scale(0.97); } }

/* The mobile bar slides its buttons in with it */
.mobile-cta .btn {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 380ms var(--ease), transform 380ms var(--ease);
}
.mobile-cta[data-visible] .btn { opacity: 1; transform: none; }
.mobile-cta[data-visible] .btn:nth-child(2) { transition-delay: 90ms; }

/* Accordion rows nudge open */
.accordion__item { transition: background-color 320ms var(--ease); }
.accordion__trigger[aria-expanded="true"] { color: var(--forest); }

/* ---------- 32. Hero at wider widths ---------- */

@media (min-width: 62em) {
  .hero { padding-block: calc(4.25rem + clamp(3rem, 7vw, 6rem)) clamp(4rem, 9vw, 7rem); }

  .hero__lede { font-size: var(--step-md); max-width: 46ch; }
  .hero { padding-block: 10rem 4rem; }
}

/* Between tablet and desktop the two columns would be too narrow for the
   display type, so they stay stacked and simply get more room. */


/* ---------- 33. Floating contact dock ---------- */

.dock {
  position: fixed;
  right: clamp(0.9rem, 2.5vw, 1.75rem);
  bottom: clamp(0.9rem, 2.5vw, 1.75rem);
  z-index: 95;
  display: grid;
  gap: 0.6rem;
  justify-items: center;
}

/* On phones the sticky call-to-action bar owns the bottom edge,
   so the dock lifts clear of it instead of sitting on top. */
@media (max-width: 47.99em) {
  .dock { bottom: 4.75rem; }
}

.dock__btn {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: var(--paper);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(13, 14, 12, 0.22);
  transform: scale(0.6);
  opacity: 0;
  transition:
    transform 420ms var(--ease),
    opacity 320ms var(--ease),
    box-shadow 320ms var(--ease),
    background-color 320ms var(--ease);
}
.dock__btn svg { width: 55%; height: 55%; fill: currentColor; }

/* script.js flips this on once the reader has moved past the first screen */
.dock[data-ready] .dock__btn { transform: none; opacity: 1; }
.dock[data-ready] .dock__btn:nth-child(2) { transition-delay: 70ms; }
.dock[data-ready] .dock__btn:nth-child(3) { transition-delay: 140ms; }

.dock__btn--wa { background: #1f9d55; }
.dock__btn--fb { background: #2b5eb3; }
.dock__btn--top {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.dock__btn[hidden] { display: none; }

@media (hover: hover) {
  .dock__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(13, 14, 12, 0.3);
  }
  .dock__btn--wa:hover { background: #24b163; }
  .dock__btn--fb:hover { background: #356fd0; }
  .dock__btn--top:hover { background: var(--charcoal-2); }
}

/* A gentle nudge on the WhatsApp button, once, so the eye finds it */
@media (prefers-reduced-motion: no-preference) {
  .dock[data-ready] .dock__btn--wa { animation: dock-pulse 2.4s var(--ease) 1.2s 2; }
}
@keyframes dock-pulse {
  0%, 100% { box-shadow: 0 2px 10px rgba(13, 14, 12, 0.22), 0 0 0 0 rgba(31, 157, 85, 0.5); }
  50%      { box-shadow: 0 2px 10px rgba(13, 14, 12, 0.22), 0 0 0 10px rgba(31, 157, 85, 0); }
}

/* ---------- 34. A single real review reads as a statement, not a card ---------- */

.review-grid--few { grid-template-columns: 1fr; }
.review--full { max-width: 44rem; padding: clamp(2rem, 5vw, 3rem); }
.review--full .review__quote p {
  font-size: var(--step-lg);
  line-height: 1.45;
}
.review--full .review__quote p + p { margin-top: 1rem; }

/* ---------- 35. Hero headline and buttons ---------- */

/* Each line is its own mask. The inner span slides up behind it, so the
   type appears to rise out of the footage rather than fade onto it. */
.hero__title { display: grid; gap: 0.06em; }

.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.hero__line > span {
  display: block;
  transform: translate3d(0, 110%, 0);
  transition: transform 1150ms cubic-bezier(0.22, 1, 0.28, 1) var(--hd, 0ms);
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.js .hero.is-lit .hero__line > span { transform: none; }

/* Without JS the lines must simply be visible */
html:not(.js) .hero__line > span { transform: none; }

.hero__line--alt > span em {
  position: relative;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.86);
}
/* A hairline draws itself under the closing line, a beat after it lands */
.hero__line--alt > span em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12em;
  width: 100%;
  height: 2px;
  background: currentColor;
  opacity: 0.5;
  transform-origin: left center;
  scale: 0 1;
  transition: scale 900ms var(--ease-out) 1500ms;
}
.js .hero.is-lit .hero__line--alt > span em::after { scale: 1 1; }

.hero__eyebrow,
.hero__lede,
.hero__actions,
.hero .sound,
.hero__scroll {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 900ms var(--ease-out) var(--hd, 0ms),
              transform 900ms var(--ease-out) var(--hd, 0ms);
}
.js .hero.is-lit .hero__eyebrow,
.js .hero.is-lit .hero__lede,
.js .hero.is-lit .hero__actions,
.js .hero.is-lit .sound,
.js .hero.is-lit .hero__scroll { opacity: 1; transform: none; }

html:not(.js) .hero__eyebrow,
html:not(.js) .hero__lede,
html:not(.js) .hero__actions,
html:not(.js) .hero__scroll { opacity: 1; transform: none; }

/* --- Buttons --- */

.btn__label { position: relative; z-index: 2; }

.btn--hero,
.btn--outline {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 3.25rem;
  padding: 0.85rem 1.9rem;
  font-size: var(--step-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 320ms var(--ease-out), border-color 400ms var(--ease-out);
}

/* Primary: the fill itself breathes from deep forest to a lighter green
   and back, so the eye keeps finding it without anything moving. */
.btn--hero {
  color: var(--paper);
  background: var(--forest);
  animation: btn-breathe 4.5s ease-in-out infinite;
}
@keyframes btn-breathe {
  0%, 100% { background-color: #22301f; }
  50%      { background-color: #40573f; }
}

/* A slow diagonal sheen crosses it every few seconds */
.btn__sheen {
  position: absolute;
  inset: -50% -20%;
  z-index: 1;
  background: linear-gradient(105deg,
    transparent 38%,
    rgba(255,255,255,0.22) 48%,
    rgba(255,255,255,0.05) 56%,
    transparent 64%);
  transform: translateX(-120%);
  animation: btn-sheen 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-sheen {
  0%, 55% { transform: translateX(-120%); }
  85%, 100% { transform: translateX(120%); }
}

.btn--hero:hover { transform: translateY(-2px); }
.btn--hero:active { transform: translateY(0) scale(0.985); }

/* Secondary: outline that floods with white from the bottom up */
.btn--outline {
  color: var(--paper);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--paper);
  transform-origin: bottom center;
  scale: 1 0;
  transition: scale 460ms var(--ease-out);
}
.btn--outline:hover { border-color: var(--paper); color: var(--charcoal); }
.btn--outline:hover::before { scale: 1 1; }
.btn--outline:active { transform: scale(0.985); }

/* The same flood, applied to every solid button elsewhere on the site */
.btn--solid {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 320ms var(--ease-out), color 400ms var(--ease-out);
}
.btn--solid > * { position: relative; z-index: 2; }
.btn--solid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--forest-lift);
  transform-origin: bottom center;
  scale: 1 0;
  transition: scale 420ms var(--ease-out);
}
.btn--solid:hover::before { scale: 1 1; }
.btn--solid:active { transform: scale(0.985); }

@media (prefers-reduced-motion: reduce) {
  .btn--hero { animation: none; background: var(--forest); }
  .btn__sheen { display: none; }
  .hero__line > span,
  .hero__eyebrow, .hero__lede, .hero__actions, .hero .sound, .hero__scroll {
    opacity: 1 !important; transform: none !important;
  }
  .hero__line--alt > span em::after { scale: 1 1; }
}

/* ---------- 36. Reading rhythm and section polish ---------- */

/* Sections alternate paper and warm grey. A hairline at every seam gives
   the eye a place to rest instead of one long undifferentiated scroll. */
.who, .why, .reviews, .essentials, .price, .story, .shots, .reach {
  position: relative;
}
.tours::before, .gallery::before, .faq::before,
.compare::before, .reasons::before, .effort::before, .invite::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--rule);
}
.tours, .gallery, .faq, .compare, .reasons, .effort, .invite { position: relative; }

/* Section headings get a little more air above them than below, which is
   how print sets a heading — it binds the title to its own text. */
.section-head__title { max-width: 20ch; }

/* Numbers and prices read as data, not prose */
.price-cell__value, .stat__value {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* Cards lift on a curve rather than a straight line */
.tour-card__link, .shot, .review, .dock__btn {
  transition: transform 520ms var(--ease-out), box-shadow 520ms var(--ease-out);
}

/* Images inside cards zoom slowly and never snap back hard */
.tour-card__media img, .shot__btn img, .trip__media img {
  transition: transform 1400ms var(--ease-out);
}
@media (hover: hover) {
  .tour-card__link:hover .tour-card__media img,
  .shot__btn:hover img { transform: scale(1.045); }
}

/* Accordion: the open row gets a quiet tint so the eye tracks it */
.accordion__item:has(.accordion__trigger[aria-expanded="true"]) {
  background: rgba(44, 59, 46, 0.035);
}
.accordion__trigger { transition: color 320ms var(--ease-out), padding-left 420ms var(--ease-out); }
@media (hover: hover) {
  .accordion__trigger:hover { padding-left: 0.5rem; }
}

/* Sticky sub-navigation gets a shadow only once it is actually stuck */
.subnav { transition: box-shadow 320ms var(--ease-out); }
.subnav[data-stuck] { box-shadow: 0 1px 12px rgba(13, 14, 12, 0.08); }

/* Header condenses as you scroll — smaller, tighter, more out of the way */
.site-header { transition: background-color 400ms var(--ease-out), border-color 400ms var(--ease-out); }
.site-header__inner { transition: min-height 420ms var(--ease-out); }
.site-header[data-scrolled] .site-header__inner { min-height: 3.5rem; }
.brand__name { transition: font-size 420ms var(--ease-out); }
.site-header[data-scrolled] .brand__name { font-size: 1.2rem; }

/* Link underlines grow from the left everywhere, not just the footer */
.link-arrow {
  position: relative;
  border-bottom-color: transparent;
}
.link-arrow::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}
.link-arrow::after { transition: transform 420ms var(--ease-out); }
@media (hover: hover) {
  a:hover > .link-arrow::after, .link-arrow:hover::after { transform: translateX(6px); }
}

/* Focus ring that reads on both light and dark sections */
:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}
.hero :focus-visible,
.contact :focus-visible,
.site-footer :focus-visible,
.dock :focus-visible {
  outline-color: var(--paper);
}

@media (prefers-reduced-motion: reduce) {
  .site-header__inner, .brand__name { transition: none; }
}

/* ---------- 37. Headline flicker and word-by-word lede ---------- */

/* The headline lines still rise behind their masks, but each one now
   catches the light twice on the way up — like a filament settling. */
/* The flicker sits on its own element so it never competes with the
   transform that is still moving the line. Hard opacity steps on a
   translating element is what reads as judder. */
.hero__line > span { will-change: transform; }
.hero__line > span::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: currentColor;
  opacity: 0;
}
.hero__line { position: relative; }
.hero__line > span { position: relative; }

.js .hero.is-lit .hero__line > span::after {
  animation: line-glint 620ms ease-out calc(var(--hd, 0ms) + 820ms) 1 both;
}
@keyframes line-glint {
  0%   { opacity: 0; }
  22%  { opacity: 0.22; }
  38%  { opacity: 0; }
  56%  { opacity: 0.12; }
  100% { opacity: 0; }
}

/* Words are wrapped by script.js and revealed one after another */
.hero__lede[data-typeset] .word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.42em, 0);
  transition:
    opacity 460ms ease-out var(--wd, 0ms),
    transform 620ms cubic-bezier(0.22, 1, 0.28, 1) var(--wd, 0ms);
  backface-visibility: hidden;
}
.js .hero.is-lit .hero__lede[data-typeset] .word {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
/* The paragraph itself must not also fade, or the words fight it */
.js .hero.is-lit .hero__lede[data-typeset] { opacity: 1; transform: none; }
.hero__lede[data-typeset] { opacity: 1; }

html:not(.js) .hero__lede[data-typeset] .word {
  opacity: 1; transform: none; filter: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .hero.is-lit .hero__line > span::after { animation: none; }
  .hero__lede[data-typeset] .word {
    opacity: 1 !important; transform: none !important; filter: none !important;
  }
}
