/* ─────────────── TOKENS ─────────────── */
:root {
  --bg:       #ffffff;          /* clean white, bookandvamonos */
  --surface:  #f7f7f8;          /* very soft gray surface */
  --ink:      #434651;          /* slate-charcoal text */
  --ink-soft: #5d5d61;
  --muted:    #8f8f8f;
  --hairline: #2b5672;
  --line:     rgba(67, 70, 81, 0.12);
  --line-strong: rgba(67, 70, 81, 0.30);

  --dark:     #2b5672;          /* deep ocean navy */
  --dark-2:   #112f5b;          /* deeper navy */
  --dark-ink: #ffffff;
  --dark-mut: rgba(255,255,255,0.72);
  --dark-line: rgba(255, 255, 255, 0.16);

  --accent:   #4aa79e;          /* signature teal -- primary brand */
  --accent-strong: #3d8e87;     /* hover/pressed */

  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;

  --sp-1: 6px;
  --sp-2: 12px;
  --sp-3: 20px;
  --sp-4: 32px;
  --sp-5: 56px;
  --sp-6: 96px;
  --sp-7: 144px;

  --shell: 1320px;
  --gutter: clamp(20px, 4vw, 64px);

  --font-sans: 'Questrial', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-display: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'DM Mono', ui-monospace, SFMono-Regular, Consolas, monospace;
}

/* ─────────────── RESET ─────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; max-width: 100%; overflow-x: hidden; overflow-x: clip; }
main, header, footer, section { max-width: 100vw; overflow-x: clip; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
fieldset { border: 0; padding: 0; margin: 0; }
input, button, textarea { font: inherit; }

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

/* ─────────────── TYPOGRAPHY ─────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.08;
  margin: 0;
}
h1 { font-size: clamp(46px, 7.4vw, 104px); font-weight: 600; }
h2 { font-size: clamp(34px, 4.8vw, 64px); }
h3 { font-size: clamp(22px, 2.0vw, 32px); font-weight: 500; letter-spacing: -0.012em; }
h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.10em; font-weight: 500; }
p  { margin: 0; }
em { font-style: normal; color: var(--accent); font-weight: 500; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.hero__copy .kicker { color: rgba(255,255,255,0.82); }
.hero__copy .kicker .dot { background: var(--accent); }
.kicker .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,167,158,0.0); }
  50%     { box-shadow: 0 0 0 6px rgba(74,167,158,0.18); }
}

/* ─────────────── LAYOUT HELPERS ─────────────── */
.section__head {
  max-width: var(--shell);
  margin: 0 auto var(--sp-5);
  padding: 0 var(--gutter);
}
.section__head > div { max-width: 720px; }
.section__head h2 { margin-bottom: 12px; max-width: 22ch; }
.section__head p { color: var(--muted); font-size: 18px; max-width: 64ch; }

/* ─────────────── NAV ─────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--sp-4);
  padding: 14px var(--gutter);
  background: linear-gradient(to bottom, rgba(15,22,35,0.55), rgba(15,22,35,0));
  color: #fff;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  color: var(--ink);
  border-bottom-color: var(--line);
}
.nav__brand { display: inline-flex; align-items: center; gap: 12px; }
.nav__mark { width: 28px; height: 28px; }
.nav__name { font-weight: 500; letter-spacing: -0.01em; font-size: 17px; }
.nav__name em { color: inherit; opacity: 0.7; font-weight: 400; }

.nav__links {
  display: inline-flex; gap: var(--sp-4);
  font-size: 14px;
  letter-spacing: -0.005em;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  opacity: 0.85;
}
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  font-size: 14px;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius-xs);
  letter-spacing: -0.005em;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav__cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.nav__menu { display: none; background: none; border: 0; padding: 6px; }
.nav__menu span {
  display: block; width: 22px; height: 1.5px; background: currentColor;
  margin: 4px 0; transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 920px) {
  .nav { grid-template-columns: auto 1fr auto auto; }
  .nav__links { display: none; }
  .nav__menu { display: block; }
  .nav__cta { padding: 9px 12px; font-size: 13px; white-space: nowrap; }
  .nav__name { font-size: 15px; }

  .nav.menu-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    inset: 100% 0 auto 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    color: var(--ink);
    padding: 8px var(--gutter) 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(15,22,35,0.08);
    font-size: 16px;
  }
  .nav.menu-open .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    opacity: 1;
    color: var(--ink);
  }
  .nav.menu-open .nav__links a:last-child { border-bottom: 0; }
  .nav__menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .nav__menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
}
@media (max-width: 420px) {
  .nav { gap: 8px; padding: 12px var(--gutter); }
  .nav__cta { padding: 8px 10px; }
}

/* ─────────────── BUTTONS ─────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 26px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  border-radius: var(--radius-xs);
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 1px 0 rgba(67,70,81,0.06);
}
.btn--primary:hover { background: var(--accent-strong); }
.btn--ghost {
  background: transparent; color: inherit;
  border-color: currentColor;
}
.btn--ghost:hover { background: rgba(67,70,81,0.06); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.10); color: #fff; border-color: #fff; }

/* ─────────────── FOOTER ─────────────── */
.foot {
  background: var(--ink);
  color: var(--dark-mut);
  padding: var(--sp-5) 0 var(--sp-4);
  border-top: 1px solid var(--dark-line);
}
.foot__top {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--sp-4);
}
.foot__brand { color: var(--dark-ink); display: flex; flex-direction: column; gap: 8px; }
.foot__brand .nav__name { color: #fff; }
.foot__brand p { font-size: 13px; line-height: 1.6; color: var(--dark-mut); margin-top: 8px; font-family: var(--font-mono); letter-spacing: 0.01em; }
.foot__col h4 { color: #fff; margin-bottom: 14px; }
.foot__col a { display: block; font-size: 14px; padding: 6px 0; color: var(--dark-mut); transition: color 0.2s ease; }
.foot__col a:hover { color: var(--accent); }

.foot__bot {
  max-width: var(--shell);
  margin: var(--sp-4) auto 0;
  padding: var(--sp-3) var(--gutter) 0;
  border-top: 1px solid var(--dark-line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(243,241,234,0.45);
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .foot__top { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: span 2; }
}

/* reveal-on-scroll effect removed -- content is just there */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ----------------- WHATSAPP FAB ----------------- */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 14px;
  background: #25d366;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35), 0 2px 6px rgba(0,0,0,0.18);
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s ease, background 0.25s ease;
}
.wa-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37,211,102,0.45), 0 3px 10px rgba(0,0,0,0.20);
  background: #1ebd5b;
}
.wa-fab:active { transform: translateY(0); }
.wa-fab svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-fab__label { display: inline-block; }
@media (max-width: 720px) {
  .wa-fab { right: 14px; bottom: 14px; padding: 12px; border-radius: 50%; }
  .wa-fab__label { display: none; }
}

/* ---- */

/* ─────────────── HERO ─────────────── */
.hero {
  position: relative;
  min-height: 82vh;
  min-height: 82dvh;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 120px var(--gutter) clamp(40px, 6vw, 88px);
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg img,
.hero__bg video {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  animation: kenburns 28s ease-in-out infinite alternate;
}
/* video without a playable <source> still shows poster as background image */
.media-bg { display: block; background-size: cover; background-position: center; }
@media (prefers-reduced-motion: reduce) {
  .hero__bg video, .region__bg.media-bg { animation: none; }
}
@keyframes kenburns {
  from { transform: scale(1.18); }
  to   { transform: scale(1.02); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,    rgba(15,22,35,0.78) 0%, rgba(15,22,35,0.10) 55%),
    linear-gradient(to right,  rgba(15,22,35,0.55) 0%, rgba(15,22,35,0.00) 60%),
    linear-gradient(to bottom, rgba(15,22,35,0.55) 0%, rgba(15,22,35,0.00) 30%);
}
.hero__row {
  position: relative; z-index: 1;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: var(--sp-5);
  align-items: end;
}
.hero__copy h1 {
  margin-top: var(--sp-3);
  text-shadow: 0 1px 30px rgba(0,0,0,0.25);
}
.hero__lede {
  margin-top: var(--sp-3);
  max-width: 56ch;
  font-size: clamp(16px, 1.45vw, 19px);
  color: rgba(255,255,255,0.86);
}
.hero__lede a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: var(--sp-4);
}
.hero__chips {
  display: flex; gap: var(--sp-3); flex-wrap: wrap;
  margin-top: var(--sp-4);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}
.hero__chips li {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__chips svg { width: 14px; height: 14px; color: var(--accent); }

.hero__live {
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(15,22,35,0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 22px 22px 24px;
  font-size: 14px;
  max-width: 380px;
  justify-self: end;
}
.live__row { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.78); }
.live__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(74,167,158,0.6);
  animation: livepulse 1.6s ease-in-out infinite;
}
@keyframes livepulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,167,158,0.6); }
  50%     { box-shadow: 0 0 0 8px rgba(74,167,158,0.0); }
}
.live__msg { margin-top: 10px; font-size: 16px; line-height: 1.4; color: #fff; }
.live__time { margin-top: 8px; font-size: 12px; font-family: var(--font-mono); color: rgba(255,255,255,0.6); letter-spacing: 0.01em; }

.hero__scroll {
  position: absolute; bottom: 24px; right: var(--gutter);
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 60px; height: 1px; background: currentColor; position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 30%;
  background: var(--accent);
  animation: scrollline 2s ease-in-out infinite;
}
@keyframes scrollline {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(330%); }
}

@media (max-width: 920px) {
  .hero { min-height: 88vh; min-height: 88dvh; }
  .hero__row { grid-template-columns: 1fr; gap: var(--sp-4); }
  .hero__live { justify-self: start; max-width: none; width: 100%; }
  .hero__scroll { display: none; }
}

/* ─────────────── DAY-IN-PERU (light) ─────────────── */
.quick {
  background: var(--bg);
  color: var(--ink);
  padding: var(--sp-6) 0 var(--sp-5);
  border-bottom: 1px solid var(--line);
}
.quick__head {
  max-width: var(--shell);
  margin: 0 auto var(--sp-5);
  padding: 0 var(--gutter);
}
.quick__head h2 { max-width: 22ch; margin-bottom: 14px; }
.quick__head p {
  color: var(--muted);
  max-width: 70ch;
  font-size: 18px;
  line-height: 1.6;
}
.quick__head strong { color: var(--ink); font-weight: 500; }
.quick__row {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
}
.quick__cell {
  padding: 26px 22px 26px 0;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.quick__cell:last-child { border-right: 0; }
.quick__cell:not(:first-child) { padding-left: 22px; }
.quick__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.quick__cell strong {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.25;
}
.quick__cell p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.quick__foot {
  max-width: var(--shell);
  margin: var(--sp-4) auto 0;
  padding: 18px var(--gutter) 0;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.quick__foot strong { color: var(--ink); font-weight: 500; }

@media (max-width: 1024px) {
  .quick__row { grid-template-columns: repeat(2, 1fr); }
  .quick__cell:nth-child(2) { border-right: 0; }
  .quick__cell:nth-child(1), .quick__cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  /* in 2-col, the left column is cells 1 & 3; cell 1 is :first-child (no left pad) but cell 3
     inherited padding-left:22px -> they misaligned. Reset cell 3 so the left column lines up. */
  .quick__cell:nth-child(3) { padding-left: 0; }
}
@media (max-width: 600px) {
  .quick__row { grid-template-columns: 1fr; }
  .quick__cell { border-right: 0; border-bottom: 1px solid var(--line); padding: 22px 0; }
  .quick__cell:not(:first-child) { padding-left: 0; }
  .quick__cell:last-child { border-bottom: 0; }
}

/* ─────────────── REGIONS INTRO (light, before the dark sticky-bg section) ─────────────── */
.regions-intro {
  background: var(--bg);
  padding: var(--sp-7) 0 var(--sp-5);
  max-width: var(--shell);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.regions-intro h2 { max-width: 22ch; margin-bottom: 14px; }
.regions-intro p {
  color: var(--muted);
  max-width: 70ch;
  font-size: 18px;
  line-height: 1.6;
}

/* ─────────────── PACKAGES (light, big image-on-top, 2-col body w/ route map) ─────────────── */
.pkg {
  background: var(--bg);
  padding: var(--sp-6) 0 var(--sp-6);
}
.pkg .section__head { margin-bottom: var(--sp-4); }
.pkg__list {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
.pkg__card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
}

.pkg__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
  margin: 0;
}
.pkg__media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns-out 38s ease-in-out infinite alternate;
}
@keyframes kenburns-out {
  from { transform: scale(1.18); }
  to   { transform: scale(1.02); }
}

.pkg__badge {
  position: absolute;
  left: 0; bottom: 0;
  padding: 14px 22px 14px 24px;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: baseline; gap: 8px;
  border-top-right-radius: 0;
}
.pkg__badge strong {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.pkg__badge span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.pkg__body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-4);
  border-top: 1px solid var(--line);
}
.pkg__main { display: flex; flex-direction: column; gap: 14px; }
.pkg__meta {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: baseline;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.pkg__route { color: var(--accent); font-weight: 500; }
.pkg__sep { opacity: 0.5; }
.pkg__price-meta { color: var(--ink); font-weight: 500; }

.pkg__card h3 {
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.022em;
  font-weight: 500;
  line-height: 1.05;
}
.pkg__lede { color: var(--ink-soft); font-size: 16px; line-height: 1.6; max-width: 60ch; }
.pkg__chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 6px;
}
.pkg__chips li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--ink);
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
}

.pkg__map {
  display: flex; flex-direction: column;
  justify-content: center;
  background: var(--bg);
  border-left: 1px solid var(--line);
  padding: var(--sp-3);
  align-self: stretch;
}
.route-map {
  width: 100%;
  max-width: 240px;
  height: auto;
  margin: 0 auto var(--sp-3);
  display: block;
}
/* The path uses currentColor + transform; we paint via the .route-map color */
.route-map { color: var(--ink); }
.route-map use,
.region-locator use { color: inherit; }
.route-map use path,
.region-locator use path,
.route-map g path,
.region-locator g path,
.route-map symbol path { /* actual path in <symbol>'s <g> */
  fill: rgba(74,167,158,0.06);
  stroke: currentColor;
  stroke-width: 6;
  vector-effect: non-scaling-stroke;
}
.rm__line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 12 18;
}
.rm__stops circle {
  fill: var(--accent);
  stroke: #fff;
  stroke-width: 6;
}
.rm__stops text {
  font-family: var(--font-mono);
  font-size: 36px;
  fill: var(--ink);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.pkg__price {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--line-strong);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.pkg__price span { display: block; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.pkg__price strong { font-size: 22px; color: var(--ink); font-weight: 500; letter-spacing: -0.015em; display: inline-block; margin-right: 6px; }
.pkg__price em { font-size: 11px; color: var(--muted); display: block; margin-top: 4px; line-height: 1.5; font-style: normal; }

.pkg__link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 20px;
  border: 1.5px solid var(--accent);
  background: var(--accent);
  color: #fff;
  letter-spacing: -0.005em;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 1px 0 rgba(67,70,81,0.06);
}
.pkg__link:hover { background: var(--accent-strong); border-color: var(--accent-strong); }
.pkg__link:active { transform: translateY(1px); }

.pkg__custom {
  max-width: var(--shell);
  margin: var(--sp-5) auto 0;
  padding: var(--sp-5) var(--gutter);
  display: grid; grid-template-columns: 1fr auto;
  gap: var(--sp-4); align-items: center;
  border-top: 1px solid var(--line);
}
.pkg__custom h3 { margin-bottom: 6px; font-size: clamp(22px, 2vw, 28px); }
.pkg__custom p { color: var(--muted); max-width: 64ch; }

@media (max-width: 920px) {
  .pkg__body { grid-template-columns: 1fr; gap: var(--sp-3); }
  .pkg__map { border-left: 0; border-top: 1px solid var(--line); padding: var(--sp-3) 0 0; }
  .route-map { max-width: 180px; }
  .pkg__media { aspect-ratio: 16 / 10; }
  .pkg__custom { grid-template-columns: 1fr; }
}

/* ─────────────── INCA WALL GALLERY ─────────────── */
.wall {
  background: var(--bg);
  padding: var(--sp-7) 0 var(--sp-6);
  border-top: 1px solid var(--line);
}
.wall__head {
  max-width: var(--shell);
  margin: 0 auto var(--sp-4);
  padding: 0 var(--gutter);
}
.wall__head h2 { margin-bottom: 12px; max-width: 22ch; }
.wall__head p { color: var(--muted); max-width: 70ch; font-size: 17px; }

/* Inca-wall: 12 columns × 9 rows, every area is rectangular, gap-less, fits perfectly. */
.wall__grid {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: 6px;
  grid-template-areas:
    "a a a a a a a b b b b b"
    "a a a a a a a b b b b b"
    "a a a a a a a c c d d d"
    "a a a a a a a c c d d d"
    "a a a a a a a e e e e e"
    "f f f f g g g g h h h h"
    "f f f f g g g g h h h h"
    "i i i j j j j j k k k k"
    "i i i j j j j j k k k k";
}
.wall__tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}
.wall__tile img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns-out 32s ease-in-out infinite alternate;
}
.wall__tile:nth-child(2n) img { animation-delay: -8s; }
.wall__tile:nth-child(3n) img { animation-delay: -16s; }
.wall__tile figcaption {
  position: absolute;
  left: 0; bottom: 0;
  padding: 6px 10px;
  background: rgba(15,22,35,0.82);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wall__tile--a { grid-area: a; }
.wall__tile--b { grid-area: b; }
.wall__tile--c { grid-area: c; }
.wall__tile--d { grid-area: d; }
.wall__tile--e { grid-area: e; }
.wall__tile--f { grid-area: f; }
.wall__tile--g { grid-area: g; }
.wall__tile--h { grid-area: h; }
.wall__tile--i { grid-area: i; }
.wall__tile--j { grid-area: j; }
.wall__tile--k { grid-area: k; }

@media (max-width: 1024px) {
  .wall__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 130px;
    grid-template-areas:
      "a a a a b b"
      "a a a a b b"
      "a a a a c d"
      "e e f f c d"
      "e e f f g g"
      "h h i i g g"
      "h h j j k k"
      "h h j j k k";
  }
}
@media (max-width: 540px) {
  .wall__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
    grid-template-areas:
      "a a"
      "a a"
      "b c"
      "d e"
      "f g"
      "h i"
      "j k";
  }
}

/* ─────────────── REGIONS (sticky bg per region) ─────────────── */
.regions {
  background: var(--ink);
  color: var(--dark-ink);
  position: relative;
}
.regions__intro { display: none; /* moved to light .regions-intro above the dark section */ }

/* Region locator -- sticky widget on the right side, vertically centered as you scroll */
.region__map {
  position: absolute;
  top: 0;
  right: var(--gutter);
  bottom: 0;
  width: clamp(240px, 24vw, 340px);
  z-index: 2;
  pointer-events: none;
}
.region__map > svg {
  position: sticky;
  top: calc(50vh - 170px);
  width: 100%;
  height: auto;
  pointer-events: auto;
  filter: drop-shadow(0 10px 36px rgba(0,0,0,0.40));
  color: rgba(255,255,255,0.92);
}
.rl__highlight {
  fill: rgba(74,167,158,0.32);
  stroke: var(--accent);
  stroke-width: 8;
  animation: pulse-region 2.8s ease-in-out infinite;
}
.rl__dot {
  fill: var(--accent);
  stroke: #fff;
  stroke-width: 4;
}
@keyframes pulse-region {
  0%,100% { opacity: 0.95; }
  50%     { opacity: 0.55; }
}

@media (max-width: 920px) {
  /* Mobile: pin the locator to the top-right corner BELOW the nav, on top of the bg image */
  .region__map {
    position: absolute;
    top: 90px;
    right: 16px;
    bottom: auto;
    left: auto;
    width: 110px;
    z-index: 3;
    pointer-events: auto;
  }
  .region__map > svg {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.55));
  }
}

.region {
  position: relative;
  min-height: 130vh;
}
.region__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  z-index: 0;
}
.region__bg {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: kenburns-slow 36s ease-in-out infinite alternate;
}
@keyframes kenburns-slow {
  from { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
  to   { transform: scale(1.20) translate3d(1.5%, 1%, 0); }
}
.region__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(15,22,35,0.62) 0%, rgba(15,22,35,0.10) 50%, rgba(15,22,35,0.45) 100%),
    linear-gradient(to bottom, rgba(15,22,35,0.20), rgba(15,22,35,0.20));
}

.region__content {
  position: relative;
  z-index: 1;
  margin-top: -100vh;        /* overlay the sticky bg */
  margin-top: -100dvh;
  max-width: var(--shell);
  margin-inline: auto;
  padding: clamp(40px, 8vw, 120px) var(--gutter) clamp(40px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 640px);
  padding-right: calc(var(--gutter) + clamp(260px, 26vw, 380px));   /* leave room for sticky map */
}
@media (max-width: 920px) {
  .region__content { padding-right: var(--gutter); }
}
.region__content > / { pointer-events: auto; }

.region__head { margin-bottom: var(--sp-4); }
.region__head h3 { color: #fff; font-size: clamp(34px, 4vw, 56px); }
.region__hook {
  margin-top: 14px;
  font-size: clamp(17px, 1.4vw, 21px);
  color: rgba(255,255,255,0.92);
  max-width: 44ch;
  letter-spacing: -0.005em;
  font-weight: 400;
}

.region__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255,255,255,0.34);
  padding: 6px 10px;
  margin-bottom: 18px;
}

.region__block {
  background: rgba(15,22,35,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-left: 2px solid var(--accent);
  padding: var(--sp-4);
  margin-bottom: var(--sp-3);
}
.region__block p {
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  line-height: 1.7;
  max-width: 60ch;
}
.region__block p + p { margin-top: 14px; }
.region__block em { color: var(--accent); font-style: italic; }

.region__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: var(--sp-3) 0;
  background: rgba(15,22,35,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.16);
}
.region__facts > div {
  padding: 16px 18px;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.region__facts > div:nth-child(2n) { border-right: 0; }
.region__facts > div:nth-last-child(-n+2) { border-bottom: 0; }
.region__facts dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.region__facts dd {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.region__quote {
  background: rgba(74,167,158,0.08);
  border-left: 2px solid var(--accent);
  padding: var(--sp-3) var(--sp-4);
  margin: var(--sp-3) 0;
}
.region__quote p {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.4;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.012em;
}
.region__quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  font-style: normal;
}
.region__quote cite em { color: var(--accent); font-style: normal; }

.region__sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: var(--sp-4) 0 var(--sp-2);
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 14px;
}
.region__arc {
  display: grid;
  gap: 14px;
}
.region__arc li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: baseline;
  background: rgba(15,22,35,0.45);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 14px 16px;
}
.region__arc li span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-transform: uppercase;
}
.region__arc li p {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  line-height: 1.5;
}

.region__list {
  margin-top: var(--sp-3);
  border-top: 1px solid rgba(255,255,255,0.24);
}
.region__list li {
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 14px 0 14px 28px;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  position: relative;
}
.region__list li::before {
  content: "";
  position: absolute; left: 0; top: 22px;
  width: 16px; height: 1px;
  background: var(--accent);
}

@media (max-width: 920px) {
  .region__sticky { position: relative; height: 60vh; }
  .region__content { margin-top: 0; padding: var(--sp-4) var(--gutter) var(--sp-5); }
  .region__facts { grid-template-columns: 1fr; }
  .region__facts > div { border-right: 0; }
  .regions__intro { grid-template-columns: 1fr; padding-bottom: var(--sp-4); }
}

/* ─────────────── EXPERIENCES (light, vertical list -- no horizontal scroll) ─────────────── */
.exp {
  background: var(--bg);
  padding: var(--sp-7) 0 var(--sp-6);
}
.exp__list {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  border-top: 1px solid var(--line-strong);
}
.exp__list li {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--sp-4);
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, padding-left 0.3s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
}
.exp__list li:hover {
  background: rgba(74,167,158,0.04);
  padding-left: 18px;
}
.exp__name { font-size: clamp(18px, 1.5vw, 22px); font-weight: 500; letter-spacing: -0.01em; }
.exp__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.exp__price { font-family: var(--font-mono); font-size: 13px; color: var(--muted); white-space: nowrap; }
.exp__price strong { color: var(--ink); font-size: 18px; font-weight: 500; }

@media (max-width: 720px) {
  .exp__list li { grid-template-columns: 1fr auto; row-gap: 4px; }
  .exp__list .exp__meta { grid-column: 1 / 2; grid-row: 2; }
  .exp__list .exp__price { grid-column: 2 / 3; grid-row: 1 / 3; align-self: center; }
}

/* ─────────────── WHAT'S IN THE BOX (light) ─────────────── */
.box {
  position: relative;
  background: #efece4;     /* warm cream, slightly darker than --bg for separation */
  color: var(--ink);
  overflow: hidden;
  padding: var(--sp-7) 0 var(--sp-6);
}
.box--light .box__video,
.box--light .box__scrim { display: none; }
.box__inner {
  position: relative; z-index: 2;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.box__head {
  margin-bottom: var(--sp-5);
}
.box__head h2 { color: var(--ink); max-width: 22ch; margin-bottom: 10px; }
.box__head p { color: var(--muted); max-width: 65ch; font-size: 18px; }

.box__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}
.box__item {
  position: relative;
  padding: var(--sp-4);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.25s ease;
}
.box__item:nth-child(2n) { border-right: 0; }
.box__item:nth-last-child(-n+2) { border-bottom: 0; }
.box__item:hover { background: rgba(74,167,158,0.04); }

.box__count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
}
.box__item h3 {
  color: var(--ink);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  max-width: 28ch;
}
.box__item p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 56ch;
}
.box__item em { color: var(--accent); font-style: italic; font-weight: 500; }
.box__tag {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line-strong);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

@media (max-width: 920px) {
  .box__items { grid-template-columns: 1fr; }
  .box__item { border-right: 0; }
  .box__item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .box__item:last-child { border-bottom: 0; }
}

/* ----------------- REVIEWS ----------------- */
.reviews {
  background: var(--bg);
  padding: var(--sp-7) 0 var(--sp-6);
  border-top: 1px solid var(--line);
}

.reviews__top {
  max-width: var(--shell);
  margin: 0 auto var(--sp-5);
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-5);
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: var(--sp-4);
}
.reviews__head h2 { max-width: 22ch; margin-bottom: 12px; }
.reviews__head p { color: var(--muted); max-width: 60ch; font-size: 17px; line-height: 1.6; }

.reviews__score {
  text-align: left;
}
.reviews__score-num {
  font-family: var(--font-sans);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.reviews__score-num span {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.34em;
  color: var(--muted);
  margin-left: 4px;
  letter-spacing: 0;
}
.reviews__stars {
  display: block;
  width: clamp(160px, 14vw, 220px);
  height: auto;
  margin-top: 12px;
  margin-bottom: 12px;
}
.reviews__score p {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.6;
}

.reviews__list {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rev {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s ease;
  position: relative;
}
.rev::before {
  /* big quote mark in the top-left of every card -- screams "review" */
  content: "\201C";
  position: absolute;
  top: -6px;
  left: 14px;
  font-family: var(--font-display), serif;
  font-size: 110px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.30;
  pointer-events: none;
}
.rev:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(67,70,81,0.08);
}

.rev__rating {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 18px var(--sp-3) 14px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

/* Five filled SVG-style stars rendered as a single inline string of star polygons */
.rev__stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  position: relative;
}
.rev__stars::before {
  content: "";
  display: inline-block;
  width: 90px;
  height: 16px;
  /* star repeating pattern using SVG data uri */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><polygon points='9,1 11.4,6.7 17.6,7.2 12.9,11.3 14.4,17.3 9,14 3.6,17.3 5.1,11.3 0.4,7.2 6.6,6.7' fill='%23d6a449'/></svg>");
  background-size: 18px 16px;
  background-repeat: repeat-x;
}
/* The text "5.0" we hide visually; numeric label remains for screen readers via aria-label on parent */
.rev__stars { font-size: 0; color: transparent; min-height: 16px; }
.rev__stars::after {
  content: "5.0";
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-left: 8px;
}

.rev__verified {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500;
}
.rev__verified::before {
  content: "";
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
  /* checkmark drawn with an inner pseudo */
  background-image:
    linear-gradient(to bottom right, transparent 38%, #fff 38%, #fff 50%, transparent 50%),
    linear-gradient(to bottom left,  transparent 38%, #fff 38%, #fff 50%, transparent 50%);
  background-size: 50% 50%, 50% 50%;
  background-position: 0 70%, 100% 50%;
  background-repeat: no-repeat;
}

.rev__title {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.014em;
  line-height: 1.25;
  color: var(--ink);
  padding: 18px var(--sp-3) 0;
}
.rev__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding: 12px var(--sp-3) var(--sp-3);
  flex: 1;
}

.rev__foot {
  margin-top: auto;
  padding: 14px var(--sp-3) 16px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.rev__foot strong {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  display: block;
  margin-bottom: 2px;
}
.rev__foot span { display: inline; }
.rev__foot span + span::before { content: " / "; color: var(--line-strong); }

.reviews__foot {
  max-width: var(--shell);
  margin: var(--sp-4) auto 0;
  padding: 0 var(--gutter);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

@media (max-width: 980px) {
  .reviews__top { grid-template-columns: 1fr; gap: var(--sp-3); align-items: start; }
  .reviews__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews__list { grid-template-columns: 1fr; }
}

/* ─────────────── MOMENTS (legacy, hidden, replaced by .reviews) ─────────────── */
.moments {
  background: var(--bg);
  padding: var(--sp-7) 0 var(--sp-6);
}
.moments .section__head { margin-bottom: var(--sp-5); }

.moments__list {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: var(--sp-7);
}
.moment {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.moment__photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 21 / 9;
  background: var(--ink);
}
.moment__photo img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 36s ease-in-out infinite alternate;
}
.moment__photo figcaption {
  position: absolute; left: 0; bottom: 0;
  padding: 8px 14px;
  background: rgba(15,22,35,0.85);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.moment__body {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 0;
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
.moment__body > / { max-width: 72ch; }

.moment__head {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.moment__day { color: var(--accent); font-weight: 500; }
.moment__pkg { border-left: 1px solid var(--line-strong); padding-left: 12px; }

.moment__body h3 {
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.018em;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 18px;
}
.moment__body p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 60ch;
}
.moment__body p + p { margin-top: 14px; }
.moment__body em { color: var(--ink); font-weight: 500; font-style: italic; }

.moment__cite {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.moment__cite strong { color: var(--ink); font-weight: 500; }

.moments__foot {
  max-width: var(--shell);
  margin: var(--sp-5) auto 0;
  padding: 0 var(--gutter);
  font-size: 14px;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}

@media (max-width: 920px) {
  .moments__list { gap: var(--sp-6); }
  .moment__photo { aspect-ratio: 16 / 10; }
  .moment__body { padding: var(--sp-4); }
}

.trust {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--sp-4) 0;
}
.trust__row {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.trust__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 18px 12px 0;
  border-right: 1px solid var(--line);
}
.trust__item:last-child { border-right: 0; }
.trust__item:not(:first-child) { padding-left: 18px; }
.trust__icon {
  width: 32px; height: 32px;
  color: var(--accent);
  margin-top: 2px;
}
.trust__item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.trust__item span {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}
@media (max-width: 1100px) {
  .trust__row { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(2n) { border-right: 0; }
  .trust__item { border-bottom: 1px solid var(--line); }
  .trust__item:nth-last-child(-n+2) { border-bottom: 0; }
  .trust__item:last-child { grid-column: span 2; border-right: 0; }
}
@media (max-width: 600px) {
  .trust__row { grid-template-columns: 1fr; }
  /* Include :not(:first-child) so this rule's specificity matches the base
     .trust__item:not(:first-child){padding-left:18px} rule and source order resolves
     in favor of the mobile zero. */
  .trust__item,
  .trust__item:nth-child(2n),
  .trust__item:not(:first-child) { border-right: 0; padding-left: 0; }
  .trust__item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust__item:last-child { grid-column: span 1; border-bottom: 0; }
}

/* ─────────────── SCENE (full-bleed brand moment) ─────────────── */
.scene {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: clamp(360px, 50vh, 540px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-ink, #fff);
  background: var(--dark, #2b5672);
  overflow: hidden;
}
.scene__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.scene__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: kenburns 40s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
  .scene__bg img { animation: none; }
}
.scene__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,86,114,0.55), rgba(17,47,91,0.65));
  z-index: 1;
}
.scene__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 24px;
}
.scene__quote {
  font-family: var(--font-display, 'Raleway', sans-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
}
.scene__quote b {
  color: var(--accent, #4aa79e);
  font-weight: 700;
}
.scene__attr {
  font-family: var(--font-sans, 'Questrial', sans-serif);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0;
}

/* ─────────────── FAQ ─────────────── */
.faq {
  padding: var(--sp-7) 0 var(--sp-6);
  background: var(--bg, #fff);
}
.faq__head {
  text-align: center;
  max-width: var(--shell);
  margin: 0 auto var(--sp-5);
  padding: 0 var(--gutter);
}
.faq__label {
  display: inline-block;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent, #4aa79e);
  margin-bottom: 18px;
}
.faq__title {
  font-family: var(--font-display, 'Raleway', sans-serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.02em;
  color: var(--ink, #434651);
  margin: 0 0 12px;
  line-height: 1.2;
}
.faq__sub {
  font-family: var(--font-sans, 'Questrial', sans-serif);
  font-size: 1rem;
  color: var(--muted, #8f8f8f);
  margin: 0;
  line-height: 1.5;
}
.faq__list {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.faq__item {
  border-top: 1px solid var(--line, rgba(67,70,81,0.12));
  padding: 16px 0;
}
.faq__item:last-child {
  border-bottom: 1px solid var(--line, rgba(67,70,81,0.12));
}
.faq__item > summary {
  font-family: var(--font-display, 'Raleway', sans-serif);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  padding: 8px 0 8px 28px;
  list-style: none;
  position: relative;
  color: var(--ink, #434651);
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono, monospace);
  font-size: 1.4rem;
  color: var(--accent, #4aa79e);
  font-weight: 300;
  line-height: 1;
}
.faq__item[open] > summary::before {
  content: "-";
}
.faq__item > p {
  font-family: var(--font-sans, 'Questrial', sans-serif);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft, #5d5d61);
  padding: 4px 0 8px;
  margin: 0;
}

/* ═══════════════════ ARTICLE SYSTEM (from samples-template) ═══════════════════ */
.article {
  padding: var(--sp-7) 0 var(--sp-6);
  background: var(--paper, #fdfcf9);
  border-top: 1px solid var(--line, rgba(67,70,81,0.08));
}
.article + .article {
  border-top: 1px solid var(--line, rgba(67,70,81,0.08));
}
/* Alternate the section background across a run of consecutive text-only
   .article blocks so long stretches of prose don't read as one flat wall.
   Specificity climbs with each step, so the longest matching selector wins,
   giving true A/B alternation; any non-.article section resets the run. */
.article + .article { background: var(--surface, #f7f7f8); }
.article + .article + .article { background: var(--paper, #fdfcf9); }
.article + .article + .article + .article { background: var(--surface, #f7f7f8); }
.article + .article + .article + .article + .article { background: var(--paper, #fdfcf9); }
.article + .article + .article + .article + .article + .article { background: var(--surface, #f7f7f8); }
.article + .article + .article + .article + .article + .article + .article { background: var(--paper, #fdfcf9); }
.article + .article + .article + .article + .article + .article + .article + .article { background: var(--surface, #f7f7f8); }
.article__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.article__label {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent, #4aa79e);
  display: inline-block;
  margin-bottom: 18px;
}
.article__title {
  font-family: var(--font-display, 'Raleway', sans-serif);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  letter-spacing: 0.005em;
  line-height: 1.18;
  color: var(--ink, #434651);
  margin: 0 0 24px;
}
.article__lead {
  font-family: var(--font-sans, 'Questrial', sans-serif);
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--ink, #434651);
  margin: 0 0 22px;
}
.article p {
  font-family: var(--font-sans, 'Questrial', sans-serif);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft, #5d5d61);
  margin: 0 0 18px;
}
.article__sub {
  font-family: var(--font-display, 'Raleway', sans-serif);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  letter-spacing: 0.01em;
  color: var(--ink, #434651);
  margin: 34px 0 14px;
  line-height: 1.3;
}
.article__foot {
  margin-top: 22px;
  font-style: italic;
  color: var(--ink-soft, #5d5d61);
}

/* table */
.article__table-wrap {
  margin: 26px 0 22px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line, rgba(67,70,81,0.12));
  border-radius: 6px;
  background: #fff;
}
.article__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans, 'Questrial', sans-serif);
  font-size: 0.94rem;
  color: var(--ink, #434651);
  min-width: 640px;
}
.article__table-caption {
  caption-side: top;
  text-align: left;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted, #8f8f8f);
  padding: 14px 16px 8px;
}
.article__table thead th {
  text-align: left;
  font-family: var(--font-display, 'Raleway', sans-serif);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink, #434651);
  background: rgba(74,167,158,0.06);
  padding: 12px 16px;
  border-bottom: 1px solid var(--line, rgba(67,70,81,0.16));
}
.article__table tbody th {
  text-align: left;
  font-family: var(--font-display, 'Raleway', sans-serif);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent, #4aa79e);
  padding: 14px 16px;
  vertical-align: top;
  width: 1%;
  white-space: nowrap;
  border-bottom: 1px solid var(--line, rgba(67,70,81,0.08));
}
.article__table tbody td {
  padding: 14px 16px;
  vertical-align: top;
  border-bottom: 1px solid var(--line, rgba(67,70,81,0.08));
  line-height: 1.55;
  color: var(--ink-soft, #5d5d61);
}
.article__table tbody tr:last-child th,
.article__table tbody tr:last-child td {
  border-bottom: none;
}



/* ─────────────── ARTICLE — bold emphasis + Tip / Worth noting callouts ─────────────── */
.article p strong,
.article__lead strong {
  font-weight: 700;
  color: var(--ink, #434651);
}

.article__note {
  position: relative;
  margin: 28px 0;
  padding: 18px 22px 18px 26px;
  border-left: 4px solid var(--accent, #4aa79e);
  background: rgba(74,167,158,0.07);
  border-radius: 4px;
}
.article__note p {
  margin: 0;
  font-family: var(--font-sans, 'Questrial', sans-serif);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink, #434651);
}
.article__note p + p {
  margin-top: 10px;
}
.article__note-label {
  display: inline-block;
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, #4aa79e);
  margin-bottom: 8px;
}

/* Tip variant: keeps the soft accent tint */
.article__note--tip {
  border-left-color: var(--accent, #4aa79e);
  background: rgba(74,167,158,0.07);
}
.article__note--tip .article__note-label {
  color: var(--accent, #4aa79e);
}

/* Worth-noting variant: a warmer, attention-pulling sand tone — sits apart from Tips so eye separates them */
.article__note--worth-noting {
  border-left-color: #c89a4e;
  background: rgba(200,154,78,0.09);
}
.article__note--worth-noting .article__note-label {
  color: #b07c2e;
}

/* ===== READING-WIDTH CAPS - heading widths only; let paragraphs flow to container edges so text sections feel as wide as card/grid sections ===== */
.article__title { max-width: 28ch; }
.article__sub   { max-width: 36ch; }
/* paragraph caps intentionally absent so .article body matches the full inner-container width of card/grid sections */

.faq__title { max-width: 22ch; margin-left: auto; margin-right: auto; }
.faq__item > p { padding-left: 28px; }
/* matches the 28px left padding on .faq__item > summary so question and answer text align under one column */

/* ─────────────── RELATED POSTS (end-of-article sibling links) ─────────────── */
.related {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: var(--sp-6) 0;
}
.related__head {
  max-width: var(--shell);
  margin: 0 auto var(--sp-4);
  padding: 0 var(--gutter);
}
.related__label {
  display: inline-block;
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.related__title {
  margin: 0;
  max-width: 22ch;
}
.related__grid {
  list-style: none;
  margin: 0 auto;
  padding: 0 var(--gutter);
  max-width: var(--shell);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.related__card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.related__card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 10px 28px rgba(67, 70, 81, 0.12);
}
.related__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.related__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
  margin: 0;
}
.related__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.related__card:hover .related__media img { transform: scale(1.05); }
.related__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: var(--sp-3);
  flex: 1;
}
.related__cat {
  font-family: var(--font-mono, 'IBM Plex Mono', monospace);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.related__name {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
  color: var(--ink);
}
.related__more {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.related__card:hover .related__more { color: var(--accent-strong); }
@media (max-width: 820px) {
  .related__grid { grid-template-columns: 1fr; }
}
.related__foot {
  text-align: center;
  margin-top: var(--sp-4);
}
.related__all {
  color: var(--accent);
  border-color: var(--accent);
}
.related__all:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ─────────────── ARTICLE — prose bullet lists (tips, steps, takeaways) ─────────────── */
/* the global reset zeroes ul markers; restore real bullets for unclassed prose lists
   inside the article body only (card grids live in their own classed sections). */
.article__inner ul {
  list-style: disc;
  padding-left: 1.4em;
  margin: 0 0 18px;
}
.article__inner ul li {
  font-family: var(--font-sans, 'Questrial', sans-serif);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft, #5d5d61);
  margin: 0 0 10px;
  padding-left: 4px;
}
.article__inner ul li:last-child { margin-bottom: 0; }
.article__inner ul li::marker { color: var(--accent, #4aa79e); }
.article__inner ul li strong { color: var(--ink, #434651); font-weight: 700; }

/* ─────────────── ARTICLE — compact 2-column table variant ─────────────── */
/* base .article__table forces min-width 640px + a scroll wrap for wide tables (e.g. the
   7-column price table). A 2-column table (date | date) does not need that: keep it tight,
   balanced, and scroll-free at every width. */
.article__table-wrap--tight {
  overflow-x: visible;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.article__table--schedule {
  min-width: 0;
}
.article__table--schedule thead th,
.article__table--schedule tbody th,
.article__table--schedule tbody td {
  width: 50%;
  white-space: normal;
}
/* equal-width columns: every column shares the width evenly (e.g. the 3-column
   budget-vs-comfortable cost table). table-layout:fixed splits columns equally and
   overrides the base tbody th 1%/nowrap shrink. */
.article__table--even {
  table-layout: fixed;
}
.article__table--even thead th,
.article__table--even tbody th,
.article__table--even tbody td {
  width: auto;
  white-space: normal;
  word-break: break-word;
}
