/* ============================================================
   somtamgirl - travel itineraries landing page
   Airbnb visual language. Light theme only (Airbnb has no public
   dark mode - deliberate, brand-correct).
   ============================================================ */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Native #hash jumps clear the sticky nav (80px) + chapter TOC (~46px). */
  scroll-padding-top: calc(var(--nav-height) + 64px);
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
  border-radius: var(--r-xs);
}
/* The dark nav needs a light focus ring — the ink outline above is invisible on --ink
   (works on both the espresso bar and the coral CTA). */
.nav :focus-visible {
  outline-color: #fff;
}

.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Skip links use .sr-only; reveal them when keyboard-focused. */
a.sr-only:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-card);
}

/* ---------- Typography ---------- */
/* Modest display scale, faithful to Airbnb's restraint (homepage h1 is ~28px). */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.008em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.7vw, 20px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.lead {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.5;
  color: var(--body);
  max-width: 46ch;
}
.muted {
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out),
    background-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}
.btn-primary {
  background: var(--rausch-active);
  color: var(--on-primary);
}
.btn-primary:hover {
  background: var(--rausch-deep);
}
.btn-secondary {
  background: var(--canvas);
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--surface-soft);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  height: 44px;
  padding: 0 14px;
}
.btn-ghost:hover {
  background: var(--surface-strong);
}
.btn-sm {
  height: 40px;
  font-size: 14px;
  padding: 0 16px;
}
.btn-block {
  width: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  height: 40px;
  padding: 0 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-full);
  background: var(--canvas);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    background-color var(--dur-fast) var(--ease-out);
}
.pill:hover {
  border-color: var(--ink);
}
.pill[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--on-dark);
}

/* ---------- Top nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-height);
  background: var(--ink); /* darker shade behind the top nav (William) */
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}
.nav.is-stuck {
  border-bottom-color: var(--hairline);
  box-shadow: rgba(0, 0, 0, 0.04) 0 1px 0 0;
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-lg);
}
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.02;
  color: var(--rausch);
}
.brand svg {
  display: none;
}
.brand__name {
  font-size: 19px;
  white-space: nowrap;
}
.brand__by {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--muted);
}
/* Nav wordmark on the dark nav — light name, muted-light "by" line. */
.nav .brand {
  color: #fff;
}
.nav .brand__by {
  color: rgba(255, 255, 255, 0.66);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-xl);
}
.nav__link {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 8px 2px;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}
/* ---- Destinations mega-menu ---- */
.nav__item--menu {
  position: static; /* lets the panel span the full sticky-header width */
  display: inline-flex;
  align-items: center;
}
.nav__menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.nav__caret {
  transition: transform var(--dur-fast) var(--ease-out);
}
.nav__item--menu.is-open .nav__caret {
  transform: rotate(180deg);
}
.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--canvas);
  border-top: 1px solid var(--hairline-soft);
  box-shadow: 0 26px 50px -30px rgba(0, 0, 0, 0.32);
  padding: clamp(24px, 3vw, 40px) 0 18px;
  animation: megaIn var(--dur-base) var(--ease-out);
}
.megamenu[hidden] {
  display: none;
}
@keyframes megaIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.megamenu__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(216px, 22vw, 300px);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.megamenu__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3vw, 40px) clamp(28px, 4vw, 56px);
}
.megamenu__group-title {
  margin: 0 0 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hairline-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.megamenu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--dur-fast) var(--ease-out);
}
.megamenu__link:hover {
  color: var(--rausch-active);
}
.megamenu__link .flag {
  width: 22px;
  height: auto;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.megamenu__feature {
  display: block;
}
.megamenu__feature-label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.megamenu__feature-media {
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface-soft);
}
.megamenu__feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}
.megamenu__feature:hover .megamenu__feature-media img {
  transform: scale(1.04);
}
.megamenu__foot {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline-soft);
}
.megamenu__foot-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--rausch-active);
}
.megamenu__foot-link--quiz {
  color: var(--ink);
  font-weight: 600;
}
.megamenu__foot-link:hover {
  text-decoration: underline;
}
/* Mobile sheet group labels (Destinations / More) */
.sheet__group-label {
  margin: var(--s-lg) 0 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.sheet__group-label:first-child {
  margin-top: 0;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: var(--s-md);
}
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--r-full);
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
}
/* The mobile sheet reuses .nav__toggle for its close (X) but sits on the WHITE sheet, so
   it needs the dark treatment (the light treatment above is for the espresso nav only). */
.sheet .nav__toggle {
  color: var(--ink);
  border-color: var(--border-strong);
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(40px, 6vw, 72px) 0 var(--s-xxl);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--s-base);
}
.hero__title {
  margin: 0 0 var(--s-base);
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.018em;
}
.hero__title .accent {
  color: var(--rausch);
}
.hero__sub {
  margin: 0 0 var(--s-lg);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-md);
  justify-content: center;
}
/* Plain white, centred hero (William): centre the CTAs + sub; the .hero__inner centring
   itself lives in the (later, winning) .hero__inner rule further down. */
.hero__sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 54ch;
}
/* Search pill lives inside the hero now, centred under the CTAs (William). */
.hero .searchbar {
  margin: var(--s-xl) auto 0;
  max-width: 760px;
  width: 100%;
}

/* search pill - the signature Airbnb moment */
.searchbar {
  margin-top: var(--s-xl);
  display: flex;
  align-items: stretch;
  background: var(--canvas);
  border: 1px solid #8a7f63; /* >=3:1 control boundary (WCAG 1.4.11) */
  border-radius: var(--r-full);
  box-shadow: var(--shadow-card);
  max-width: 600px;
  overflow: hidden;
}
.searchbar__seg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 22px;
  border: none;
  background: transparent;
  text-align: left;
  flex: 1;
  min-width: 0;
  transition: background-color var(--dur-fast) var(--ease-out);
}
.searchbar__seg + .searchbar__seg {
  border-left: 1px solid var(--hairline);
}
.searchbar__seg:hover {
  background: var(--surface-soft);
}
.searchbar__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}
.searchbar__value {
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.searchbar__orb {
  align-self: center;
  flex: none;
  width: 48px;
  height: 48px;
  margin: 0 6px 0 0;
  border-radius: var(--r-full);
  background: var(--rausch-active);
  color: var(--on-primary);
  border: none;
  display: grid;
  place-items: center;
}
.searchbar__orb:hover {
  background: var(--rausch-deep);
}

/* Cross-platform flags (Windows does not render emoji flags). */
.flag {
  width: 20px;
  height: 15px;
  border-radius: 3px;
  object-fit: cover;
  display: inline-block;
  vertical-align: -3px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.flag--sm {
  width: 17px;
  height: 13px;
  vertical-align: -2px;
}

/* ---------- Section scaffolding ---------- */
.section {
  padding: clamp(48px, 6vw, 78px) 0;
}
.section--tight {
  padding: clamp(34px, 4vw, 52px) 0 clamp(40px, 4.5vw, 58px);
}
/* Background cadence: a deliberate canvas/soft alternation so sections read as
   distinct bands in one rhythm instead of one flat, floating field. */
.section--soft {
  background: var(--surface-soft);
}
/* Warm "sunset travel" section washes — alternating colour bands so the page
   reads sun-drenched and alive, not one flat white field. Decorative only. */
.section--peach,
.section--sky,
.section--sage-wash,
.section--sun {
  background: var(--canvas); /* plain white site (William) — colour washes neutralised */
}
/* Guide pages (country + city) get the same warm dawn glow at the top so they
   don't open on stark white — carries the home's warmth across the ecosystem. */
body[data-page="destination"],
body[data-page="city"] {
  background: var(--canvas); /* plain white — dawn glow removed */
}
/* Anchored guide sections must clear the sticky nav (80px) + chapter TOC (~46px)
   when a TOC link or #hash jump lands on them — else the heading hides behind the
   sticky chrome (a11y). Belt-and-suspenders with html scroll-padding below. */
.dest__section[id] {
  scroll-margin-top: calc(var(--nav-height) + 64px);
}
/* Hairline seam where two same-toned sections meet. */
.section--divided {
  border-top: 1px solid var(--hairline-soft);
}
/* Collapse the doubled top+bottom padding between stacked sections into one
   shared breath (was up to ~208px of empty void). */
.section + .section {
  padding-top: clamp(32px, 3.5vw, 52px);
}
/* Centered, breathing section headers (calm, editorial flow) */
.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--s-xl);
}
.section__head h2 {
  margin: 6px 0 0;
}
.section__head p {
  margin: var(--s-md) auto 0;
  color: var(--body);
  max-width: 58ch;
}
/* Connective motif: a small coral tick above every eyebrow, tying the
   repeating section heads (and the panel heads) into one family. */
.section__head .eyebrow::before,
.enquiry__copy .eyebrow::before,
.newsletter__copy .eyebrow::before,
.about__copy .eyebrow::before,
.dest__copy .eyebrow::before,
.workwith__copy .eyebrow::before,
.starthere__eyebrow::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: var(--s-sm);
  /* signature "dotted route" device — a short coral trail, reused on every kicker */
  background-image: radial-gradient(circle closest-side, var(--rausch) 96%, transparent);
  background-size: 9px 4px;
  background-repeat: repeat-x;
}
.section__head .eyebrow::before {
  margin-left: auto;
  margin-right: auto;
}
/* WARM SCRIPT KICKERS — replace the old tiny-tracked eyebrow + dotted-route
   device (both editorial AI tells) with Nicole's handwritten "personal note"
   voice, the same lever theblondeabroad + ellspassport lean on. */
.section__head .eyebrow,
.enquiry__copy .eyebrow,
.newsletter__copy .eyebrow,
.about__copy .eyebrow,
.dest__copy .eyebrow,
.workwith__copy .eyebrow,
.starthere__eyebrow {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.section__head .eyebrow::before,
.enquiry__copy .eyebrow::before,
.newsletter__copy .eyebrow::before,
.about__copy .eyebrow::before,
.dest__copy .eyebrow::before,
.workwith__copy .eyebrow::before,
.starthere__eyebrow::before {
  display: none;
}
/* Editorial restraint: drop the kicker on the home content sections — the serif
   headings stand alone; a quiet label is kept only where it informs (start-here,
   newsletter card, guide hero, about, work-with-me). */
.section__head .eyebrow,
.findtrip__intro .eyebrow,
.enquiry__form-col .eyebrow {
  display: none;
}
/* Centered CTA beneath a section grid (e.g. Read the blog under Notes). */
.section__foot {
  text-align: center;
  margin-top: var(--s-xl);
}

/* "Start here" orientation strip for new visitors. */
.starthere__eyebrow {
  margin: 0 0 var(--s-base);
}
.starthere {
  position: relative;
  overflow: hidden;
}
.starthere .container {
  position: relative;
  z-index: 1;
}
/* Hand-drawn sun doodle on the dawn band — warm "look at this" decoration,
   the kind saltinourhair / theblondeabroad scatter through their pages. */
.starthere__sun {
  position: absolute;
  top: clamp(-28px, -2vw, -16px);
  right: clamp(-24px, 2vw, 40px);
  width: clamp(116px, 15vw, 188px);
  height: auto;
  color: var(--amber);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.starthere__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
}
.start-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--canvas);
  transition: border-color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}
.start-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.start-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.start-card__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.start-card__go {
  margin-top: auto;
  padding-top: 10px;
  color: var(--rausch-active);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  transition: transform var(--dur-fast) var(--ease-out);
}
.start-card:hover .start-card__go {
  transform: translateX(5px);
}
/* Coral-family medallion per card — the site's medallion motif, recoloured into
   a small warm "full palette" set so the four cards read as a family, not four
   identical white boxes (the AI card-grid tell). */
.start-card__medal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  border-radius: var(--r-full);
  background: var(--peach-soft);
  color: var(--rausch-active);
}
.start-card__medal svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.starthere__grid .start-card:nth-child(2) .start-card__medal {
  background: var(--teal-soft);
  color: var(--teal-ink);
}
.starthere__grid .start-card:nth-child(3) .start-card__medal {
  background: var(--amber-soft);
  color: var(--amber-ink);
}
.starthere__grid .start-card:nth-child(4) .start-card__medal {
  background: var(--sage-soft);
  color: #2f6b44;
}
@media (max-width: 860px) {
  .starthere__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .starthere__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Destination chips ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-md);
}
.chip {
  flex: none;
}

/* ---------- Itinerary cards ---------- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-lg) var(--s-base);
}
.card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-md);
  background: var(--canvas);
  transition: transform var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-strong);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.card:hover .card__media img {
  transform: scale(1.04);
}
.card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: var(--r-full);
  background: var(--canvas);
  font-size: 11px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
}
.card__badge--premium {
  background: var(--ink);
  color: var(--on-dark);
}
.card__body {
  padding: var(--s-md) 2px 0;
}
.card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.card__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
/* ---- Editorial itinerary card (Stitch design) ---- */
.card--editorial {
  background: #ffffff;
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.card--editorial .card__media {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}
.card--editorial .card__body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  padding: clamp(16px, 1.5vw, 22px);
}
.card--editorial .card__label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}
.card--editorial .card__label .flag {
  width: 18px;
  height: auto;
  border-radius: 2px;
}
.card--editorial .card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.9vw, 23px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.card--editorial[data-tier="free"] .card__title {
  color: var(--rausch-active);
}
.card--editorial .card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.card--editorial .card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--hairline-soft);
}
.card--editorial .card__tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.card--editorial .card__cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--rausch-active);
  white-space: nowrap;
}
.card--editorial:hover .card__cta {
  text-decoration: underline;
}

/* ---- Featured Destinations bento (Stitch magazine mosaic) ---- */
.bento {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--s-base);
  height: 560px;
  margin-top: var(--s-xl);
}
.bento__col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: var(--s-base);
  min-height: 0;
}
.bento__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-base);
  min-height: 0;
}
.bento__card {
  position: relative;
  display: block;
  min-height: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-card);
}
.bento__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.bento__card:hover .bento__img {
  transform: scale(1.05);
}
.bento__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(20, 15, 10, 0.74) 0%,
    rgba(20, 15, 10, 0.18) 46%,
    rgba(20, 15, 10, 0) 72%
  );
}
.bento__body {
  position: absolute;
  z-index: 2;
  left: clamp(16px, 2vw, 28px);
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 26px);
  color: #fff;
}
.bento__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  padding: 5px 13px;
  border-radius: var(--r-full);
  background: rgba(31, 27, 22, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.bento__pill .flag {
  width: 18px;
  height: auto;
  border-radius: 2px;
}
.bento__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.bento__label .flag {
  width: 15px;
  height: auto;
  border-radius: 2px;
}
.bento__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  font-size: clamp(28px, 3.2vw, 40px);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}
.bento__title--sm {
  font-size: clamp(20px, 2.2vw, 27px);
}
.bento__title--xs {
  font-size: clamp(16px, 1.7vw, 20px);
}
.bento__desc {
  margin: 8px 0 0;
  max-width: 25rem;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.34);
}
.featured__filter {
  margin-top: var(--s-xl);
}
.featured__filter-label {
  margin: 0 0 14px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
@media (max-width: 860px) {
  .bento {
    grid-template-columns: 1fr;
    height: auto;
  }
  .bento__col {
    grid-template-rows: none;
  }
  .bento__card--lg {
    aspect-ratio: 4 / 3;
  }
  .bento__card--md {
    aspect-ratio: 16 / 9;
  }
  .bento__card--sm {
    aspect-ratio: 3 / 4;
  }
}

/* ---- Reels strip (Stitch horizontal row) ---- */
.section--almond {
  background: var(--canvas); /* plain white site (William) */
}
.reels-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: var(--s-xl);
}
.section__head--inline {
  text-align: left;
  align-items: flex-start;
  margin: 0;
  max-width: none;
}
.reels-head__follow {
  white-space: nowrap;
  padding-bottom: 8px;
}
.reels-row {
  display: flex;
  gap: var(--s-base);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}
.reelcard {
  position: relative;
  flex: 0 0 clamp(190px, 22vw, 246px);
  aspect-ratio: 9 / 16;
  border-radius: var(--r-lg);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-card);
  isolation: isolate;
}
.reelcard__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.reelcard:hover .reelcard__img {
  transform: scale(1.06);
}
.reelcard__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(20, 15, 10, 0.74) 0%,
    rgba(20, 15, 10, 0.04) 45%,
    rgba(20, 15, 10, 0.16) 100%
  );
}
.reelcard__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 27, 22, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base);
}
.reelcard:hover .reelcard__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--rausch-active);
  border-color: var(--rausch-active);
}
.reelcard__play svg {
  margin-left: 3px;
}
.reelcard__meta {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff;
}
.reelcard__place {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
  font-size: 12px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}
.reelcard__place .flag {
  width: 15px;
  height: auto;
  border-radius: 2px;
}
.reelcard__views {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}
.reels-row__note {
  text-align: center;
  margin-top: var(--s-base);
  font-size: 13px;
}
@media (max-width: 560px) {
  .reelcard {
    flex-basis: 62vw;
  }
}

/* ---- Journal / Substack articles (Stitch 'art of slow travel') ---- */
.journal__grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.journal__intro {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}
.journal__lead {
  margin: 16px 0 22px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.6;
}
.journal__posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
}
.jpost {
  display: block;
  color: inherit;
}
.jpost--featured {
  grid-column: 1 / -1;
}
.jpost__media {
  display: block;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.jpost__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.jpost:hover .jpost__media img {
  transform: scale(1.04);
}
.jpost__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.jpost__tier {
  padding: 2px 9px;
  border-radius: var(--r-full);
  font-size: 10px;
  letter-spacing: 0.04em;
}
.jpost__tier--free {
  background: var(--sage-soft);
  color: var(--teal-ink);
}
.jpost__tier--paid {
  background: var(--amber-soft);
  color: var(--amber-ink);
}
.jpost__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
  transition: color var(--dur-fast);
}
.jpost__title--sm {
  font-size: clamp(18px, 1.8vw, 21px);
}
.jpost:hover .jpost__title {
  color: var(--rausch-active);
}
.jpost__excerpt {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.jpost--featured .jpost__excerpt {
  font-size: 16px;
  max-width: 46ch;
}
.jpost:not(.jpost--featured) {
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
}
.jpost__more {
  font-size: 14px;
  font-weight: 700;
  color: var(--rausch-active);
}
@media (max-width: 860px) {
  .journal__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .journal__intro {
    position: static;
  }
  .journal__posts {
    grid-template-columns: 1fr;
  }
}

/* ---- Budget-tracker funnel (Stitch crimson card) ---- */
.newsletter__card {
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 60px);
  border-radius: var(--r-xl);
  background: var(--rausch);
  color: #fff;
  text-align: center;
  box-shadow: 0 30px 70px -34px rgba(186, 0, 54, 0.7);
}
.newsletter__icon {
  position: absolute;
  right: -22px;
  top: -22px;
  width: 158px;
  height: 158px;
  color: #fff;
  opacity: 0.1;
  pointer-events: none;
}
.newsletter__icon svg {
  width: 100%;
  height: 100%;
}
.newsletter__card .newsletter__inner {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 38rem;
  margin: 0 auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.newsletter__card .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}
.newsletter__card .display-lg {
  color: #fff;
}
.newsletter__card .newsletter__copy p {
  color: rgba(255, 255, 255, 0.92);
}
.newsletter__card .newsletter__substack {
  display: inline-block;
  margin-top: 4px;
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.newsletter__card .newsletter__embed {
  margin: 24px auto 0;
  max-width: 500px;
  background: #fff;
  border-radius: var(--r-md);
  padding: 6px 14px;
}

/* ---- Contact (Stitch partnerships + testimonial) ---- */
.enquiry {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.enquiry__aside {
  position: relative;
}
.testimonial {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 3vw, 44px);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
}
.testimonial__avatar {
  display: block;
  width: 88px;
  height: 88px;
  margin-bottom: 22px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--surface-soft);
}
.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial__quote {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.26;
  color: var(--ink);
}
.testimonial__text {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.testimonial__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rausch-active);
  font-weight: 700;
  font-size: 15px;
}
.testimonial__link:hover {
  text-decoration: underline;
}
.enquiry__blob {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}
.enquiry__blob--1 {
  width: 210px;
  height: 210px;
  top: -42px;
  right: -42px;
  background: var(--amber-soft);
  opacity: 0.6;
}
.enquiry__blob--2 {
  width: 150px;
  height: 150px;
  bottom: -38px;
  left: -38px;
  background: var(--peach-soft);
  opacity: 0.75;
}
@media (max-width: 860px) {
  .enquiry {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
/* ---- Shop hub ---- */
.shop__h {
  margin: var(--s-xl) 0 6px;
}
.shop__h:first-child {
  margin-top: 0;
}
.shop__sub {
  margin: 0 0 var(--s-lg);
  max-width: 60ch;
  font-size: 15px;
}
.shop__soon {
  margin-bottom: var(--s-lg);
  padding: clamp(24px, 3vw, 40px);
  background: var(--surface-soft);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-lg);
}
.shop__soon-title {
  margin: 8px 0 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 26px);
}
.shop__soon p {
  margin: 0 0 var(--s-base);
  max-width: 52ch;
  color: var(--muted);
}
.shop__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-md);
}

/* ---- Browse by budget ---- */
.budget__tabs {
  display: inline-flex;
  gap: 4px;
  margin-bottom: var(--s-lg);
  padding: 5px;
  background: var(--surface-soft);
  border-radius: var(--r-full);
}
.budget__tab {
  border: 0;
  background: transparent;
  padding: 9px 22px;
  border-radius: var(--r-full);
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast);
}
.budget__tab.is-active {
  background: var(--canvas);
  color: var(--ink);
  box-shadow: var(--shadow-card);
}
.budget__panel {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--s-base);
}
.budget__panel.is-active {
  display: grid;
}
.budget__card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px 20px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.budget__card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.budget__country {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.budget__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
.budget__note {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
/* ---- Round-1 audit: guide heading hierarchy + small-screen fixes ----
   (Round-5: shop + toolkit top-level section H2s share this scale so the subordinate
   presets H3 no longer outsizes them and toolkit heads read as heads, not labels.) */
.dest__section > h2,
.shop__h,
.rsrc-group__title {
  font-size: clamp(22px, 2.4vw, 28px);
}
@media (max-width: 480px) {
  .searchbar__seg {
    padding: 10px 14px;
  }
  .searchbar__label {
    white-space: nowrap;
  }
  .budget__tabs {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
  }
  .budget__tab {
    padding: 9px 16px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 430px) {
  .searchbar {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--r-lg);
  }
  .searchbar__seg + .searchbar__seg {
    border-left: 0;
    border-top: 1px solid var(--hairline);
  }
  .searchbar__orb {
    align-self: stretch;
    width: auto;
    height: 44px;
    margin: 8px;
    border-radius: var(--r-md);
  }
}
.card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--ink);
  flex: none;
}
.card__meta {
  margin-top: 2px;
  font-size: 14px;
  color: var(--muted);
}
.card__price {
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink);
}
.card__price b {
  font-weight: 700;
}
/* Waitlist signal on premium-plan cards (vs the muted "enquire to book"). */
.card__status {
  color: var(--rausch-active);
  font-weight: 600;
}
/* Signature round "soon" stamp on premium (in-progress) cards — a passport-stamp
   echo of the dotted-route motif, used sparingly. */
.card__stamp {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--rausch-active);
  background: rgba(255, 255, 255, 0.94);
  color: var(--rausch-active);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: rotate(-9deg);
}

/* ---------- Watch / reels carousel ---------- */
.carousel {
  position: relative;
}
.carousel__track {
  display: flex;
  gap: var(--s-base);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: var(--s-sm);
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar {
  display: none;
}
.reel {
  scroll-snap-align: start;
  flex: 0 0 clamp(260px, 30vw, 320px);
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-md);
  overflow: hidden;
}
/* Keep a loaded Instagram embed inside its reel card (defeats IG's inline
   min-width:326px which would otherwise blow out the carousel row). */
.reel iframe,
.reel .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
}
.reel__fallback {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  background: linear-gradient(160deg, #3a3a3a, #1b1b1b);
}
.reel__fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel__hint {
  position: absolute;
  left: 12px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 600;
}
.reel__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.reel__play span {
  width: 56px;
  height: 56px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-card);
}
.reel__caption {
  padding: var(--s-md);
}
.reel__views {
  font-size: 13px;
  font-weight: 700;
}
.reel__text {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  border: 1px solid var(--hairline);
  background: var(--canvas);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-card);
  z-index: 2;
  transition: transform var(--dur-fast) var(--ease-out);
}
.carousel__nav:hover {
  transform: translateY(-50%) scale(1.06);
}
.carousel__nav--prev {
  left: -10px;
}
.carousel__nav--next {
  right: -10px;
}
.carousel__nav[disabled] {
  opacity: 0;
  pointer-events: none;
}

/* ---------- Affiliate partners ---------- */
.partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-base);
}
.partner {
  display: flex;
  gap: var(--s-base);
  align-items: flex-start;
  padding: var(--s-lg);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--canvas);
  transition: box-shadow var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out);
}
.partner:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
/* Non-linked partner (no affiliate URL yet): reads as inert, not clickable */
.partner--placeholder {
  cursor: default;
}
.partner--placeholder:hover {
  box-shadow: none;
  transform: none;
}
.partner--placeholder .partner__link {
  color: var(--muted);
}
.partner__logo {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--surface-strong);
  display: grid;
  place-items: center;
}
.partner__logo img {
  width: 24px;
  height: 24px;
}
.partner__initial {
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
}
.partner__name {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
.partner__desc {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  color: var(--muted);
}
.partner__link {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--rausch-active);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ---------- About / host ---------- */
.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: var(--shadow-card);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: var(--canvas);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}
.about__bio {
  margin: var(--s-base) 0 var(--s-lg);
  font-size: 18px;
  line-height: 1.55;
  color: var(--body);
  max-width: 48ch;
}
.about__bio b {
  color: var(--ink);
}
.about__bio p {
  margin: 0 0 var(--s-base);
}
.about__bio p:last-child {
  margin-bottom: 0;
}
.about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 44px);
  margin: 0 0 var(--s-lg);
  padding: var(--s-base) 0;
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}
.about__stat {
  display: flex;
  flex-direction: column;
}
.about__stat-n {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}
.about__stat-l {
  font-size: 13px;
  color: var(--muted);
  margin-top: 5px;
}
.about__links {
  margin: var(--s-lg) 0 0;
  font-size: 15px;
  color: var(--muted);
}
.about__links a {
  margin-left: 12px;
}
.about__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-sm);
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-full);
  background: var(--surface-soft);
  border: 1px solid var(--hairline-soft);
  font-size: 13px;
  color: var(--ink);
}

/* ---------- Enquiry form fields (grid layout is the Stitch .enquiry rule above) ---------- */
.enquiry__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-md);
}
.enquiry__sub {
  margin: 0 0 var(--s-lg);
  color: var(--body);
  max-width: 42ch;
}
.form {
  display: grid;
  gap: var(--s-base);
}
.field {
  display: grid;
  gap: var(--s-sm);
}
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid #8a7f63; /* >=3:1 control boundary (WCAG 1.4.11) */
  border-radius: var(--r-sm);
  padding: 14px 14px;
  min-height: 52px;
  width: 100%;
}
.field textarea {
  resize: vertical;
  min-height: 96px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-base);
}
.form__note {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--hairline);
  padding: var(--s-xxl) 0 var(--s-xl);
}
.footer__cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1fr 1fr;
  gap: var(--s-xl);
}
.footer h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 var(--s-md);
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-sm);
}
.footer a {
  font-size: 14px;
  color: var(--body);
}
.footer a:hover {
  color: var(--ink);
  text-decoration: underline;
}
.footer__legal {
  margin-top: var(--s-xl);
  padding-top: var(--s-base);
  border-top: 1px solid var(--hairline-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-base);
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.footer__social {
  display: flex;
  gap: var(--s-md);
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  border: 1px solid var(--hairline);
  display: grid;
  place-items: center;
}
.footer__social a:hover {
  border-color: var(--ink);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  transition: opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}
/* Hidden initial state only when JS is present, so content is never
   stranded invisible if scripts fail to run. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1128px) {
  .grid-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__cols {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 940px) {
  .about,
  .enquiry {
    grid-template-columns: 1fr;
  }
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 744px) {
  .container {
    padding: 0 var(--s-base);
  }
  .nav__links {
    display: none;
  }
  .nav__cta-text {
    display: none;
  }
  .nav__toggle {
    display: grid;
  }
  .section {
    padding: var(--s-xxl) 0;
  }
  .grid-cards {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-base) var(--s-md);
  }
  .partners {
    grid-template-columns: 1fr;
  }
  .footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-lg);
  }
  .form__row {
    grid-template-columns: 1fr;
  }
  .searchbar {
    max-width: none;
  }
  .carousel__nav {
    display: none;
  }
}

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

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .carousel__track {
    scroll-behavior: auto;
  }
}

/* ---------- Mobile menu sheet ---------- */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--canvas);
  transform: translateY(-100%);
  transition: transform var(--dur-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: var(--s-base) var(--s-base) var(--s-xl);
  /* Clip + scroll: the menu can now be taller than the viewport (it lists every
     destination), so keep overflow inside the box — otherwise the hidden sheet's
     overflowing content pokes out the top when translated off-screen. */
  overflow-y: auto;
  overscroll-behavior: contain;
}
.sheet.is-open {
  transform: none;
}
.sheet__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.sheet__links {
  display: grid;
  gap: var(--s-xs);
  margin-top: var(--s-base);
}
.sheet__links a {
  font-size: 20px;
  font-weight: 600;
  padding: var(--s-md) var(--s-xs);
  border-bottom: 1px solid var(--hairline-soft);
}
.sheet__cta {
  margin-top: auto;
}

/* ============================================================
   Round 1 additions
   ============================================================ */

/* Search bar selects (Where / Trip style / Plan) */
select.searchbar__value {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  padding: 2px 0;
  margin: 0;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
select.searchbar__value:focus {
  outline: none;
}
select.searchbar__value:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* Destination chip description (SEO copy) */
.chip-desc {
  margin-top: var(--s-base);
  max-width: 72ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--body);
  background: var(--surface-soft);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-md);
  padding: var(--s-base) var(--s-lg);
}
.chip-desc span {
  display: block;
}
.chip-desc__link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--rausch-active);
}
.filter-empty {
  margin-top: var(--s-lg);
  font-size: 15px;
}

/* Gear grid */
.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-base);
}
.gear-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--s-lg);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--canvas);
  color: var(--ink);
  transition: box-shadow var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out);
}
a.gear-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.gear-card--placeholder {
  border-style: dashed;
}
/* Product shot at the top of a gear card (e.g. the Orbitkey pieces). */
.gear-card__media {
  margin: 0 0 12px;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-sm);
  background: #ffffff;
  overflow: hidden;
}
.gear-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.gear-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.gear-card__name {
  font-size: 16px;
  font-weight: 600;
}
.gear-card__note {
  font-size: 14px;
  color: var(--muted);
}
.gear-card__link {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--rausch-active);
}
.gear-card__soon {
  margin-top: 8px;
  font-size: 13px;
  font-style: italic;
  color: var(--muted-soft);
}

/* Work with me */
.workwith {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 56px);
}
.workwith__pitch {
  font-size: 17px;
  line-height: 1.55;
  color: var(--body);
  max-width: 52ch;
  margin: 0 0 var(--s-base);
}
.workwith__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.workwith__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
}
.workwith__list svg {
  flex: none;
  margin-top: 2px;
  color: var(--rausch-active);
}
.workwith__card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  padding: var(--s-lg);
}
.workwith__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-sm);
  text-align: center;
  margin-bottom: var(--s-base);
}
.workwith__stats b {
  display: block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.workwith__stats span {
  font-size: 12px;
  color: var(--muted);
}
.workwith__email {
  margin: var(--s-md) 0 0;
  text-align: center;
  font-size: 13px;
}

/* Responsive for Round 1 components */
@media (max-width: 940px) {
  .gear-grid {
    grid-template-columns: 1fr 1fr;
  }
  .workwith {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 744px) {
  .gear-grid {
    grid-template-columns: 1fr;
  }
  .searchbar {
    max-width: none;
  }
}

/* Form delivery status + brand form */
.form__status {
  margin: var(--s-sm) 0 0;
  font-size: 14px;
  font-weight: 600;
}
.form__status--ok {
  color: #0b804b;
}
.form__status--err {
  color: var(--error);
}
.form__note a {
  color: var(--rausch-active);
  font-weight: 600;
}
.workwith__form {
  margin-top: var(--s-base);
}

/* ---------- Per-country destination pages ---------- */
.dest__crumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: var(--s-lg);
}
.dest__crumbs a {
  color: var(--ink);
}
.dest__crumbs a:hover {
  text-decoration: underline;
}
.dest__crumbs span {
  margin: 0 6px;
  color: var(--border-strong);
}
.dest__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.dest__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface-strong);
  box-shadow: var(--shadow-card);
}
.dest__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dest__intro {
  margin: var(--s-base) 0 var(--s-lg);
  color: var(--body);
  max-width: 60ch;
}
.dest__facts {
  list-style: none;
  margin: 0 0 var(--s-lg);
  padding: 0;
  display: grid;
  gap: 8px;
}
.dest__facts li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--ink);
}
.dest__facts li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: var(--r-full);
  background: var(--rausch);
}
.dest__section {
  margin-top: var(--s-section);
}
.dest__section > h2 {
  margin: 0 0 var(--s-lg);
}
.faq {
  border-top: 1px solid var(--hairline);
  padding: var(--s-base) 0;
}
.faq:last-child {
  border-bottom: 1px solid var(--hairline);
}
.faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-base);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
}
.faq[open] summary::after {
  content: "\2212";
}
.faq p {
  margin: var(--s-md) 0 0;
  color: var(--body);
  max-width: 70ch;
}
@media (max-width: 940px) {
  .dest__hero {
    grid-template-columns: 1fr;
  }
  .dest__media {
    order: -1;
  }
}

/* ============================================================
   Photo hero + overlapping stats + blog + newsletter
   (inspired by the calm, photo-led flow of Ell's Passport,
   rebuilt entirely in the somtamgirl theme)
   ============================================================ */

/* Full-bleed photo hero */
.hero--photo {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  padding: clamp(48px, 7vw, 84px) 0;
  color: #fff;
  overflow: hidden;
}
/* Separate photo layer so it can slow-zoom (Ken Burns) without moving the text */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center 42%;
  background-size: cover;
  background-repeat: no-repeat;
  transform-origin: center;
  transform: translateZ(0) scale(1.04);
  will-change: transform;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Soft vignette behind the centred text + a bottom-weighted wash, so the
     photo stays luminous at the edges while the headline stays legible. */
  background:
    radial-gradient(ellipse 78% 62% at 50% 50%, rgba(18, 18, 20, 0.56), rgba(18, 18, 20, 0) 72%),
    linear-gradient(180deg, rgba(18, 18, 20, 0.42) 0%, rgba(18, 18, 20, 0.3) 38%, rgba(18, 18, 20, 0.72) 100%);
}
/* Fine film grain for a warmer, editorial feel (static, ~5%). */
.hero__scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.hero--photo .hero__eyebrow {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: var(--r-full);
  padding: 6px 13px 6px 8px;
}
.hero--photo .hero__title {
  color: #fff;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.34);
}
.hero--photo .hero__title .accent {
  color: #fff; /* coral fails AA over the photo — keep the accent word white here */
}
.hero--photo .hero__sub {
  color: #fff;
  margin: 0 auto var(--s-lg);
  max-width: 46ch;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
}
.hero--photo .hero__cta {
  justify-content: center;
}
.hero__note {
  margin: var(--s-base) 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.34);
}

/* Blog / journal cards */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg) var(--s-base);
}
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out);
}
.post-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.post-card__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--surface-strong);
}
.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.post-card:hover .post-card__media img {
  transform: scale(1.05);
}
.post-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: var(--s-base) var(--s-base) var(--s-lg);
}
.post-card__title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}
.post-card__excerpt {
  font-size: 14px;
  color: var(--body);
  margin: 0;
}

/* Newsletter band */
/* Signature route-seam: a faint dashed coral line "arriving" at the signup. */
.newsletter {
  border-top: 1px dashed rgba(186, 0, 54, 0.4);
}
.newsletter__inner {
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: var(--pad-card);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
}
.newsletter__copy h2 {
  margin: 6px 0 8px;
}
.newsletter__copy p {
  margin: 0;
  color: var(--body);
  max-width: 42ch;
}
.newsletter__embed {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 10px;
  box-shadow: var(--shadow-card);
}
.newsletter__embed iframe {
  display: block;
  width: 100%;
  min-height: 150px;
  border: 0;
  border-radius: var(--r-sm);
}

/* One coral accent-link recipe shared across section CTAs. */
.accent-link {
  font-weight: 600;
  color: var(--rausch-active);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.accent-link:hover {
  color: var(--rausch-deep);
}

/* Text button (e.g. Clear filters in the empty state) */
.link-btn {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  color: var(--rausch-active);
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid var(--rausch-active);
}
.link-btn:hover {
  color: var(--rausch-deep);
  border-color: var(--rausch-deep);
}

/* Reel loading skeleton (shown until the Instagram embed renders) */
.reel {
  position: relative;
}
.reel__loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--surface-strong);
  border-radius: var(--r-md);
  z-index: 1;
}
.reel__spinner {
  width: 26px;
  height: 26px;
  border: 3px solid var(--hairline);
  border-top-color: var(--rausch-active);
  border-radius: 50%;
  animation: reel-spin 0.8s linear infinite;
}
@keyframes reel-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 940px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 744px) {
  .hero--photo {
    min-height: 0;
    padding: clamp(40px, 8vw, 64px) 0 96px;
  }
  .post-grid {
    grid-template-columns: 1fr;
  }
  .newsletter__row {
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter__row .btn {
    width: 100%;
  }
}

/* ============================================================
   Blog teaser (Notes from the road), tiers, Substack link,
   and subtle background motion (reduced-motion safe)
   ============================================================ */

/* Home "Notes from the road" teaser */
.teaser__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-lg);
  margin-bottom: var(--s-xl);
}
.teaser__head .eyebrow {
  margin-bottom: 6px;
}
.teaser__head h2 {
  margin: 0;
}
.teaser__readall {
  flex: none;
  font-weight: 600;
  color: var(--rausch-active);
  border-bottom: 1px solid var(--rausch-active);
  padding-bottom: 2px;
  white-space: nowrap;
}
.teaser__readall:hover {
  color: var(--rausch-deep);
  border-color: var(--rausch-deep);
}
.teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
}
.teaser {
  display: block;
  color: var(--ink);
}
.teaser__rule {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--ink);
  margin-bottom: var(--s-base);
  transition: width var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.teaser:hover .teaser__rule {
  width: 66px;
  background: var(--rausch-active);
}
.teaser__meta {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.teaser__tier {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
}
.teaser__tier--free {
  color: var(--ink);
}
.teaser__tier--paid {
  color: var(--rausch-active);
}
.teaser__more {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rausch-active);
}
.teaser__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin: 0 0 8px;
  transition: color var(--dur-base) var(--ease-out);
}
.teaser:hover .teaser__title {
  color: var(--rausch-active);
}
.teaser__excerpt {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Blog-page card tiers + meta + read-more */
.post-card {
  position: relative;
}
.post-card__tier {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 11px;
  border-radius: 9999px;
}
.post-card__tier--free {
  background: var(--sage-soft);
  color: var(--teal-ink);
}
.post-card__tier--paid {
  background: var(--amber-soft);
  color: var(--amber-ink);
}
.post-card__meta {
  font-size: 13px;
  color: var(--muted);
}
.post-card__more {
  margin-top: auto;
  padding-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rausch-active);
}

/* Substack link in the newsletter band */
.newsletter__substack {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  color: var(--rausch-active);
  border-bottom: 1px solid var(--rausch-active);
  padding-bottom: 2px;
}
.newsletter__substack:hover {
  color: var(--rausch-deep);
  border-color: var(--rausch-deep);
}

@media (max-width: 940px) {
  .teaser__grid {
    grid-template-columns: 1fr;
    gap: var(--s-lg);
  }
}
@media (max-width: 600px) {
  .teaser__head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-base);
  }
}

/* ---- Subtle background motion (only when the user allows motion) ---- */
@media (prefers-reduced-motion: no-preference) {
  .hero__bg {
    animation: kenburns 26s ease-in-out infinite alternate;
  }
  @keyframes kenburns {
    from { transform: translateZ(0) scale(1.04); }
    to { transform: translateZ(0) scale(1.12); }
  }

  /* soft drifting coral glow behind the CTA bands */
  .newsletter__inner {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .newsletter__inner::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 65%;
    aspect-ratio: 1;
    right: -12%;
    top: -45%;
    background: radial-gradient(circle, rgba(186, 0, 54, 0.16), rgba(186, 0, 54, 0) 70%);
    animation: drift 20s ease-in-out infinite alternate;
  }
  @keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(-14%, 22%) scale(1.2); }
  }

  /* gentle staggered scroll reveals within grids */
  .teaser__grid .reveal:nth-child(2),
  .grid-cards .reveal:nth-child(2),
  .post-grid .reveal:nth-child(2) {
    transition-delay: 0.08s;
  }
  .teaser__grid .reveal:nth-child(3),
  .grid-cards .reveal:nth-child(3),
  .post-grid .reveal:nth-child(3) {
    transition-delay: 0.16s;
  }
  .grid-cards .reveal:nth-child(4),
  .post-grid .reveal:nth-child(4) {
    transition-delay: 0.24s;
  }
}

/* ============================================================
   Find Your Trip quiz (sticky feature)
   ============================================================ */
.quiz {
  width: 100%;
}
.quiz__card,
.quiz__result {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.quiz__card {
  padding: var(--pad-card);
  background: var(--surface-soft);
  border-radius: var(--r-xl);
}
.quiz__meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}
.quiz__bar {
  display: block;
  height: 4px;
  background: var(--surface-strong);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-bottom: var(--s-lg);
}
.quiz__bar-fill {
  display: block;
  height: 100%;
  background: var(--rausch-active);
  border-radius: var(--r-full);
  transition: width var(--dur-base) var(--ease-out);
}
.quiz__q {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0 0 var(--s-lg);
}
.quiz__opts {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-sm);
}
.quiz__opt {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 16px 18px;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  border: 1.5px solid var(--hairline);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}
.quiz__opt:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.quiz__opt-emoji {
  font-size: 22px;
  line-height: 1;
  flex: none;
}
.quiz__back {
  margin-top: var(--s-lg);
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
}
.quiz__back:hover {
  color: var(--ink);
}
.quiz__result {
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
}
.quiz__result-media {
  position: relative;
  min-height: 260px;
  background: var(--surface-strong);
}
.quiz__result-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quiz__result-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}
.quiz__result-body {
  padding: clamp(22px, 3vw, 34px);
}
.quiz__result-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 8px;
}
.quiz__result-desc {
  color: var(--body);
  margin: 0 0 var(--s-base);
}
.quiz__result-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-sm);
  margin-bottom: var(--s-base);
}
.quiz__grab {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 10px;
}
.quiz__embed {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 8px;
}
.quiz__embed iframe {
  display: block;
  width: 100%;
  min-height: 150px;
  border: 0;
  border-radius: var(--r-sm);
}
.quiz__restart {
  margin-top: 12px;
  font-size: 13px;
}
.quiz__enter {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out);
}
.quiz__enter--in {
  opacity: 1;
  transform: none;
}
@media (max-width: 640px) {
  .quiz__opts {
    grid-template-columns: 1fr;
  }
  .quiz__result {
    grid-template-columns: 1fr;
  }
  .quiz__result-media {
    min-height: 200px;
  }
}

/* ---- Hero search + stats split bar (Stitch overlap) ---- */

/* ---- Find-your-trip matchmaker (Stitch 2-column) ---- */
.findtrip__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.findtrip__intro .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rausch-active);
}
.findtrip__progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: var(--s-lg);
  max-width: 380px;
}
.findtrip__bar {
  flex: 1 1 auto;
  height: 4px;
  background: var(--surface-strong);
  border-radius: var(--r-full);
  overflow: hidden;
}
.findtrip__bar-fill {
  display: block;
  height: 100%;
  background: var(--rausch-active);
  border-radius: var(--r-full);
  transition: width var(--dur-base) var(--ease-out);
}
.findtrip__step {
  flex: none;
  font-size: 13px;
  color: var(--muted);
}
.quiz__opt-label {
  flex: 1 1 auto;
}
.quiz__opt-radio {
  flex: none;
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--muted);
  transition: border-color var(--dur-fast) var(--ease-out);
}
.quiz__opt:hover {
  border-color: var(--ink);
  transform: none;
  box-shadow: none;
}
.quiz__opt--sel {
  border-color: var(--rausch);
  background: var(--peach-soft);
}
.quiz__opt--sel .quiz__opt-radio {
  border-color: var(--rausch);
}
.quiz__opt--sel .quiz__opt-radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--rausch);
}
.quiz__nav {
  display: flex;
  align-items: center;
  gap: var(--s-base);
  margin-top: var(--s-lg);
}
.quiz__nav .quiz__back {
  margin-top: 0;
  flex: none;
  order: -1;
}
.quiz__next {
  flex: 1 1 auto;
  padding: 14px 24px;
  border: 0;
  border-radius: var(--r-full);
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), opacity var(--dur-fast);
}
.quiz__next:hover {
  background: var(--body);
}
.quiz__next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.findtrip__grid .quiz__result {
  grid-template-columns: 1fr;
}
@media (max-width: 820px) {
  .findtrip__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============================================================
   Destination guide: byline + internal-linking blocks
   ============================================================ */
.dest__byline {
  margin: 6px 0 var(--s-base);
  font-size: 14px;
  color: var(--muted);
}
.dest__byline a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dest__byline a:hover {
  color: var(--rausch-active);
}
.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-base);
}
.mini-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  transition: transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}
.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.mini-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-strong);
}
.mini-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px 14px;
}
.mini-card__country {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.mini-card__country .flag {
  width: 16px;
  height: auto;
  border-radius: 2px;
}
.mini-card__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.note-links {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
  margin-bottom: var(--s-base);
}
.note-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--surface-soft);
  transition: border-color var(--dur-fast) var(--ease-out);
}
.note-link:hover {
  border-color: var(--ink);
}
.note-link__title {
  font-weight: 600;
  color: var(--ink);
}
.note-link__excerpt {
  font-size: 14px;
  color: var(--muted);
}
.dest__notes-link {
  display: inline-block;
  font-weight: 600;
  color: var(--rausch-active);
}
.dest__notes-link:hover {
  color: var(--rausch-deep);
}
@media (max-width: 720px) {
  .mini-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 460px) {
  .mini-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Ecosystem guide modules (Phase 1: Best-time strip + Need-to-know)
   ============================================================ */
/* Best time to go */
.bt__summary {
  margin: 0 0 var(--s-base);
  color: var(--body);
  max-width: 60ch;
}
.bt__strip {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
}
.bt__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 4px;
  border-radius: var(--r-sm);
  text-align: center;
}
.bt__m {
  font-size: 12px;
  font-weight: 600;
}
.bt__t {
  font-size: 11px;
  opacity: 0.85;
}
/* Swatch scale derived from the single coral token (best) tinting down to neutral. */
.bt__cell--best {
  background: var(--rausch);
  color: #fff;
}
.bt__cell--good {
  background: var(--sage);
  color: var(--ink);
}
.bt__cell--mixed {
  background: var(--surface-strong);
  color: var(--ink);
}
.bt__cell--poor {
  background: var(--surface-soft);
  color: var(--muted);
}
.bt__legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-base);
  margin-top: var(--s-md);
  font-size: 12px;
  color: var(--muted);
}
.bt__key {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bt__sw {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
}
@media (max-width: 620px) {
  .bt__strip {
    grid-template-columns: repeat(6, 1fr);
    row-gap: 8px;
  }
}
/* Need to know */
.ntk {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
}
.ntk__chip {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--sage-soft);
}
.ntk__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}
.ntk__val {
  font-size: 15px;
  color: var(--ink);
}
@media (max-width: 620px) {
  .ntk {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 400px) {
  .ntk {
    grid-template-columns: 1fr;
  }
}

/* Resources / travel toolkit hub */
.rsrc-group {
  margin-bottom: var(--s-xxl);
}
.rsrc-group__title {
  margin: 0 0 var(--s-lg);
}
.rsrc-disclosure {
  margin: var(--s-lg) 0 0;
  font-size: 13px;
}

/* ============================================================
   Phase 3 modules: Where to stay · On the map · Know before you go
   ============================================================ */
.stay-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-base);
}
.stay-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--canvas);
}
.stay-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-strong);
}
.stay-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stay-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
}
.stay-card__tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rausch-active);
}
.stay-card__area {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.stay-card__blurb {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 4px;
}
.stay-card__soon {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.map-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 160px;
  padding: var(--s-xl);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-lg);
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 15px;
}
.map__save {
  margin: var(--s-md) 0 0;
}
.know-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-base);
}
.know-card {
  padding: var(--s-lg);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--surface-soft);
}
.know-card__h {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.know-card p {
  margin: 0;
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
}
@media (max-width: 720px) {
  .stay-cards {
    grid-template-columns: 1fr;
  }
  .know-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Phase 4: city spoke guide (things-to-do, eat, day-trips) + city grid
   ============================================================ */
.things {
  display: flex;
  flex-direction: column;
}
.thing {
  display: flex;
  gap: var(--s-base);
  align-items: flex-start;
  padding: var(--s-base) 0;
  border-bottom: 1px solid var(--hairline-soft);
}
.thing:first-child {
  padding-top: 0;
}
.thing:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}.thing__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
}
.thing__blurb {
  margin: 0 0 4px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.5;
}
.thing__meta {
  font-size: 13px;
  color: var(--muted);
}
.thing__media {
  flex: none;
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-strong);
}
.thing__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thing__body {
  flex: 1;
  min-width: 0;
}
/* Guide "see the toolkit" / "back to guide" links — keep on the --s-* rhythm. */
.dest__toolkit-link {
  margin: var(--s-base) 0 0;
}
/* Footer sub-destination (e.g. Lauterbrunnen under Switzerland) — indented + smaller. */
.footer__sub {
  padding-left: var(--s-md);
  font-size: 13px;
}
.eat-list {
  margin: 0;
  padding-left: 1.1em;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--body);
}
.daytrips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-base);
}
.daytrip {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--surface-soft);
}
.daytrip__name {
  font-weight: 600;
}
.daytrip__name a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.daytrip__name a:hover {
  color: var(--rausch-active);
}
.daytrip__blurb {
  font-size: 14px;
  color: var(--muted);
}
.mini-card--soon {
  cursor: default;
}
.mini-card--soon .mini-card__title {
  color: var(--muted);
}
@media (max-width: 600px) {
  .daytrips {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Phase 5: sticky chapter TOC + section connectors
   ============================================================ */
.dest__toc {
  position: sticky;
  top: var(--nav-height);
  z-index: 20;
  margin: var(--s-lg) 0 0;
  padding: 10px 0;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline-soft);
}
.dest__toc-inner {
  display: flex;
  gap: var(--s-sm);
  overflow-x: auto;
  scrollbar-width: none;
}
.dest__toc-inner::-webkit-scrollbar {
  display: none;
}
.dest__toc-link {
  flex: none;
  padding: 6px 13px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  border: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}
.dest__toc-link:hover {
  color: var(--ink);
}
.dest__toc-link.is-active {
  color: var(--ink);
  background: var(--surface-soft);
  border-color: var(--hairline);
}
/* Section-connector dotted route removed for the editorial register (2026-06-28). */
@media (prefers-reduced-motion: reduce) {
  .dest__toc-link {
    transition: none;
  }
}

/* ============================================================
   Phase 6: organic blob photo masks (the warm, hand-made feel).
   Two distinct shapes so they read hand-drawn, not repeated.
   ============================================================ */
.dest__media {
  border-radius: var(--r-lg);
}
.about__photo {
  border-radius: var(--r-lg);
}
@media (max-width: 760px) {
  .dest__media,
  .about__photo {
    border-radius: var(--r-lg);
  }
}

/* Hand-drawn icon base + need-to-know chip icon */
.ico {
  width: 1.1em;
  height: 1.1em;
  flex: none;
  vertical-align: -0.15em;
}
.ntk__chip .ntk__ico {
  width: 22px;
  height: 22px;
  color: var(--rausch-active);
  margin-bottom: 6px;
}
/* Fraunces-italic conversational sub-head under guide H1s */
.dest__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.3;
  color: var(--muted);
  margin: 6px 0 12px;
  max-width: 42ch;
}

/* Home destination chips that link into a country guide (vs the All-trips filter). */
.chip-tile {
  text-decoration: none;
  transition: border-color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
}
.chip-tile:hover {
  border-color: var(--rausch);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
@media (prefers-reduced-motion: reduce) {
  .chip-tile:hover {
    transform: none;
  }
}

/* ============================================================
   Phase 7: long-form prose + all-tier "three ways to do it"
   ============================================================ */
.story {
  max-width: 68ch;
  margin-inline: auto;
  color: var(--body);
  display: grid;
  gap: var(--s-md);
}
.story p {
  margin: 0;
  line-height: 1.7;
}
/* Centre the long-form narrative heading (column is centred via .story margin). */
#story > h2 {
  text-align: center;
}

/* ---- Per-country scene as full-height SIDE BANNERS on the guide pages ----
   The illustration runs the whole length of the page down the left + right
   margins; the writing sits in a clean column in the middle, not over the art. */
/* Full-height side-banner scene graphics removed for the editorial register
   (2026-06-28) — guides now read as a clean centered editorial column. */
.story__h {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 22px);
  margin: var(--s-sm) 0 0;
  color: var(--ink);
}
.tier-takes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-base);
}
.tier-take {
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--surface-strong);
  border-radius: var(--r-lg);
  background: var(--canvas);
  padding: var(--s-lg);
  display: grid;
  gap: 6px;
  align-content: start;
}
.tier-take--budget {
  border-top-color: var(--sage);
}
.tier-take--comfortable {
  border-top-color: var(--rausch-disabled);
}
.tier-take--treat {
  border-top-color: var(--rausch);
}
.tier-take__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-soft);
}
.tier-take__title {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
}
.tier-take__note {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--body);
}
@media (max-width: 760px) {
  .tier-takes {
    grid-template-columns: 1fr;
  }
}
/* Newsletter block reused at the foot of every guide + city page. */
.dest__newsletter {
  margin-top: var(--s-section);
  padding-top: var(--s-section);
}
