/* Travalong Journeys — palette + tokens */

:root {
  --deep: #0e3b4a;          /* ink / teal */
  --deep-2: #15506a;
  --teal-lt: #2d8a8a;
  --teal-pale: #dff0ee;
  --cream: #ffffff;
  --paper: #f0efeb;
  --warm: #f7f6f3;
  --sand: #eceae5;
  --coral: #c05d39;         /* terracotta — darker, tan-leaning */
  --coral-deep: #9a4326;    /* burnt sienna */
  --coral-pale: #f4ece5;    /* warm sand */
  --saffron: #d59a3a;       /* muted ochre — alias amber */
  --amber: #d59a3a;
  --amber-pale: #f5ecdc;
  --olive: #5a8a5e;
  --olive-pale: #edf5ed;
  --sage: #5a8a5e;          /* aligned with olive */
  --sage-deep: #4d7a52;
  --plum: #7b5ea7;          /* aligned with Travalong purple */
  --plum-pale: #f3eef9;
  --sky: #4a8ab5;           /* aligned with Travalong sky */
  --sky-pale: #e8f2fa;
  --stone: #7a8a7e;
  --line: #0e3b4a;
  --muted: #5d6b73;
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--deep);
  overflow-x: hidden;
  font-size: 15px;
}

.font-display {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 50, "WONK" 0;
  letter-spacing: -0.018em;
}

.font-mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* Film grain (disabled — too noisy) */
.grain::before { content: none; }

/* Marquee */
.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 2.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  flex-shrink: 0;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  animation: marquee 45s linear infinite;
}
@keyframes marquee { to { transform: translateX(-100%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* Boarding pass */
.ticket {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 400ms;
}
.ticket:hover {
  transform: translateY(-5px) rotate(-0.3deg);
  box-shadow: 12px 12px 0 var(--coral);
}
.ticket--sage:hover { box-shadow: 12px 12px 0 var(--sage); }
.ticket--saffron:hover { box-shadow: 12px 12px 0 var(--saffron); }
.ticket--plum:hover { box-shadow: 12px 12px 0 var(--plum); }
.ticket__perforation {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(to bottom, var(--line) 0 5px, transparent 5px 11px);
}
.ticket__perforation::before,
.ticket__perforation::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
}
.ticket__perforation::before { top: -10px; }
.ticket__perforation::after { bottom: -10px; }

/* Buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  transition: all 220ms ease;
  cursor: pointer;
  border: 1px solid var(--line);
  line-height: 1;
}
.btn-pill--deep { background: var(--deep); color: var(--cream); }
.btn-pill--deep:hover { background: var(--coral); border-color: var(--coral); transform: translateY(-1px); }
.btn-pill--coral { background: var(--coral); color: var(--cream); border-color: var(--coral-deep); }
.btn-pill--coral:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(192,93,57,0.35); }
.btn-pill--ghost { background: transparent; color: var(--deep); }
.btn-pill--ghost:hover { background: var(--deep); color: var(--cream); }
.btn-pill--saffron { background: var(--saffron); color: var(--deep); border-color: var(--deep); }
.btn-pill--saffron:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(244,167,64,0.4); }
.btn-pill--sage { background: var(--sage); color: var(--cream); border-color: var(--sage-deep); }
.btn-pill--sage:hover { background: var(--sage-deep); transform: translateY(-1px); }

/* Underline link */
.u-link { position: relative; display: inline-block; cursor: pointer; }
.u-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.u-link:hover::after { transform-origin: left; transform: scaleX(0); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-clip { clip-path: inset(0 100% 0 0); transition: clip-path 1000ms cubic-bezier(0.7, 0, 0.2, 1); }
.reveal-clip.is-visible { clip-path: inset(0 0 0 0); }

/* Cursor blob */
.cursor-blob {
  position: fixed; top: 0; left: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--cream);
  pointer-events: none;
  z-index: 60;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), background 250ms;
}
.cursor-blob.is-active { transform: translate(-50%, -50%) scale(1); }
.cursor-blob.is-sage { background: var(--sage); }
.cursor-blob.is-saffron { background: var(--saffron); color: var(--deep); }
.cursor-blob.is-plum { background: var(--plum); }
@media (hover: none) { .cursor-blob { display: none; } }

/* Reel */
.reel {
  display: flex; gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.8rem;
  scrollbar-width: thin;
  scrollbar-color: var(--deep) transparent;
}
.reel::-webkit-scrollbar { height: 5px; }
.reel::-webkit-scrollbar-thumb { background: var(--deep); border-radius: 3px; }
.reel > * { scroll-snap-align: start; flex-shrink: 0; }

/* Destination card */
.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.dest-card img { transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1); }
.dest-card:hover img { transform: scale(1.08); }
.dest-card__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(14,59,74,0.9) 100%);
}

/* Kinetic */
.kinetic span {
  display: inline-block;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1), color 300ms;
}
.kinetic:hover span:nth-child(odd) { transform: translateY(-5px); color: var(--coral); }
.kinetic:hover span:nth-child(even) { transform: translateY(5px); color: var(--saffron); }

.ticker { font-variant-numeric: tabular-nums; }

/* Chapter nav */
.chapter-nav {
  position: fixed;
  right: 1.2rem; top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex; flex-direction: column;
  gap: 0.6rem;
}
@media (max-width: 1024px) { .chapter-nav { display: none; } }
.chapter-nav a {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--deep);
  opacity: 0.22;
  transition: all 250ms;
  cursor: pointer; display: block; position: relative;
}
.chapter-nav a:hover { opacity: 1; transform: scale(1.4); }
.chapter-nav a.active { opacity: 1; background: var(--coral); transform: scale(1.5); }
.chapter-nav a::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%) translateX(8px);
  font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--deep); color: var(--cream);
  padding: 4px 9px; border-radius: 3px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: all 250ms;
}
.chapter-nav a:hover::before { opacity: 1; transform: translateY(-50%) translateX(0); }

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 2rem; padding-bottom: 2rem;
  border-left: 1px solid var(--deep);
}
.timeline-item:last-child { border-left-color: transparent; }
.timeline-item::before {
  content: "";
  position: absolute; left: -6px; top: 4px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--cream); border: 2px solid var(--deep);
}
.timeline-item.active::before { background: var(--coral); border-color: var(--coral); }

/* Focus */
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* Map background */
.map-bg {
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(192,93,57,0.18) 0, transparent 25%),
    radial-gradient(circle at 70% 60%, rgba(111,155,106,0.20) 0, transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(244,167,64,0.18) 0, transparent 25%),
    linear-gradient(135deg, var(--paper), #e5d6b8);
}

/* Tag */
.tag {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.22rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--cream);
  line-height: 1.4;
}

/* Stamp — simplified: no rotation, no dashed border */
.stamp {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Sticky note */
.note { transform: rotate(-1.5deg); }
.note-r { transform: rotate(1deg); }

/* Departure calendar row */
.dep-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(14,59,74,0.12);
  border-radius: 8px;
  background: var(--cream);
  transition: all 300ms;
  cursor: pointer;
}
.dep-row:hover {
  border-color: var(--deep);
  transform: translateX(4px);
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--saffron);
}
.dep-row__date {
  text-align: center;
  border-right: 1px dashed rgba(14,59,74,0.25);
  padding-right: 1rem;
}

/* Tilt on hover for postcards */
.tilt {
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
}
.tilt:hover { transform: rotate(-1.2deg) translateY(-4px); }
.tilt-r:hover { transform: rotate(1.2deg) translateY(-4px); }

/* Scribble decoration */
.scribble {
  display: inline-block;
  position: relative;
}
.scribble::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%;
  bottom: -6px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'%3E%3Cpath d='M0 4 Q 25 0 50 4 T 100 4' stroke='%23ff6b47' stroke-width='2' fill='none' /%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

/* Section dividers w/ color tint */
.tint-sage { background: linear-gradient(180deg, var(--cream) 0%, #e8efe2 100%); }
.tint-sky { background: linear-gradient(180deg, var(--cream) 0%, #dfecef 100%); }
.tint-saffron { background: linear-gradient(180deg, var(--cream) 0%, #fbe9c8 100%); }
.tint-coral { background: linear-gradient(180deg, var(--cream) 0%, #ffd9cd 100%); }
.tint-plum { background: linear-gradient(180deg, var(--cream) 0%, #ecd5e3 100%); }

/* ==== Departure card — premium editorial style ==== */
.postcard {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: var(--deep);
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.postcard:hover { transform: translateY(-3px); }
.postcard--sage, .postcard--saffron, .postcard--plum, .postcard--sky { box-shadow: none; }

/* Hide the legacy guide avatar row (kept for backwards-compat with HTML) */
.postcard__body > .mt-2.flex.items-center.gap-2 { display: none; }

.postcard__photo {
  position: relative;
  aspect-ratio: 5/3.5;
  overflow: hidden;
  border-radius: 6px;
}
.postcard__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.postcard:hover .postcard__photo img { transform: scale(1.045); }

/* Hide any theme stamps over the photo */
.postcard__photo > .stamp { display: none; }

/* Clean date overlay on photo — no shadow box, just light typography */
.postcard__date {
  display: block;
  position: absolute;
  top: 1rem; left: 1.1rem;
  color: var(--cream);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(14,59,74,0.55);
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: left;
  min-width: 0;
}
.postcard__date-mon {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.95;
  margin-top: 0;
}
.postcard__date-day {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 1;
  margin-top: 4px;
  color: var(--cream);
  letter-spacing: -0.015em;
}

.postcard__body { padding: 1rem 0 0; }
.postcard__stub {
  padding: 0.85rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  border-top: none;
  position: static;
}
.postcard__stub::before, .postcard__stub::after { display: none; }

/* Seat dot indicator */
.seats {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}
.seats span {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--deep);
  background: transparent;
  display: inline-block;
}
.seats span.taken { background: var(--deep); }
.seats span.last { background: var(--coral); border-color: var(--coral); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(1.25); } }

/* ==== Sticky month picker ==== */
.month-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  transition: all 250ms;
  min-width: 64px;
  line-height: 1;
}
.month-pill__lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.month-pill__num {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  margin-top: 3px;
  color: var(--deep);
}
.month-pill__count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  margin-top: 3px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.month-pill:hover { transform: translateY(-2px); }
.month-pill.active { background: var(--deep); border-color: var(--deep); }
.month-pill.active .month-pill__lbl,
.month-pill.active .month-pill__num,
.month-pill.active .month-pill__count { color: var(--cream); }

/* ==== Idea card (Trip Ideas) — editorial / premium-travel style ==== */
.idea-card {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: var(--deep);
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.idea-card:hover { transform: translateY(-3px); }
.idea-card__photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 6px;
}
.idea-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.idea-card:hover .idea-card__photo img { transform: scale(1.045); }
.idea-card__body { padding: 1rem 0 0; }
/* Hide stamps & duration tags in the photo on listing cards — restrained look */
.idea-card__photo > .stamp,
.idea-card__photo > .tag { display: none; }

/* Theme color swatches for idea cards */
.theme-coral { box-shadow: 0 0 0 3px var(--coral) inset; }
.theme-sage { box-shadow: 0 0 0 3px var(--sage) inset; }
.theme-saffron { box-shadow: 0 0 0 3px var(--saffron) inset; }
.theme-plum { box-shadow: 0 0 0 3px var(--plum) inset; }
.theme-sky { box-shadow: 0 0 0 3px var(--sky) inset; }

/* Filter sidebar / checkbox-chip */
.filter-block { padding: 1rem 0; border-bottom: 1px dashed rgba(14, 59, 74, 0.25); }
.filter-block:last-child { border-bottom: none; }
.filter-block__title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.f-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  font-size: 12px;
  cursor: pointer;
  transition: all 200ms;
  user-select: none;
}
.f-chip:hover { background: var(--paper); }
.f-chip.active { background: var(--deep); color: var(--cream); }
.f-chip__count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  opacity: 0.6;
}

/* Active filter pill (removable) */
.active-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.7rem;
  background: var(--saffron);
  color: var(--deep);
  border-radius: 999px;
  font-size: 11px;
  border: 1px solid var(--deep);
}
.active-pill button {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--cream);
  font-size: 9px;
  cursor: pointer;
}

/* Hide when idea is filtered out */
.idea-card.is-hidden { display: none; }

/* Lock body when filter drawer open (mobile) */
body.drawer-open { overflow: hidden; }

/* ===== Creative map ===== */
.world-map {
  width: 100%;
  height: auto;
  display: block;
}
.world-map .continent {
  fill: rgba(14, 59, 74, 0.08);
  stroke: rgba(14, 59, 74, 0.3);
  stroke-width: 0.6;
  stroke-dasharray: 2 3;
  transition: fill 300ms;
}
.world-map .continent:hover { fill: rgba(14, 59, 74, 0.14); }

.world-map .lat-line {
  stroke: rgba(14, 59, 74, 0.15);
  stroke-width: 0.4;
  stroke-dasharray: 2 5;
  fill: none;
}

.map-pin { cursor: pointer; }
.map-pin__pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: pin-pulse 2.4s ease-out infinite;
}
.map-pin:nth-child(even) .map-pin__pulse { animation-delay: 0.6s; }
.map-pin:nth-child(3n) .map-pin__pulse { animation-delay: 1.2s; }
.map-pin:nth-child(5n) .map-pin__pulse { animation-delay: 1.8s; }
@keyframes pin-pulse {
  0%   { transform: scale(0.4); opacity: 0.55; }
  100% { transform: scale(3.2); opacity: 0; }
}
.map-pin__dot { transition: transform 250ms, filter 250ms; transform-origin: center; transform-box: fill-box; }
.map-pin:hover .map-pin__dot { transform: scale(1.6); filter: brightness(1.1); }
.map-pin__label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: var(--deep);
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms;
}
.map-pin:hover .map-pin__label { opacity: 1; }

/* HTML tooltip */
.map-tip {
  position: absolute;
  background: var(--deep);
  color: var(--cream);
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 14px));
  transition: opacity 180ms;
  font-size: 12px;
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(14,59,74,0.25);
  z-index: 10;
}
.map-tip.is-active { opacity: 1; }
.map-tip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--deep);
}
.map-tip__name {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  line-height: 1.2;
}
.map-tip__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 2px;
}

/* Country card (strip below map) */
.country-card {
  background: var(--cream);
  border: 1px solid rgba(14,59,74,0.15);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 300ms, border-color 300ms;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--deep);
}
.country-card:hover { transform: translateY(-3px); border-color: var(--deep); }
.country-card__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.country-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms;
}
.country-card:hover .country-card__photo img { transform: scale(1.06); }
.country-card__body { padding: 0.7rem 0.85rem 0.9rem; }

/* ===== Quiz ===== */
.quiz-shell {
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
}
.quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 2rem;
}
.quiz-progress span {
  height: 3px;
  flex: 1;
  background: rgba(14,59,74,0.15);
  border-radius: 999px;
  transition: background 300ms;
}
.quiz-progress span.is-done { background: var(--coral); }
.quiz-progress span.is-active { background: var(--deep); }

.quiz-step { display: none; }
.quiz-step.is-active { display: block; animation: quiz-fade 350ms ease both; }
@keyframes quiz-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.quiz-option {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.4rem 1.2rem;
  border: 1.5px solid rgba(14,59,74,0.15);
  border-radius: 14px;
  background: var(--cream);
  cursor: pointer;
  text-align: left;
  transition: all 250ms;
  position: relative;
  overflow: hidden;
}
.quiz-option:hover { border-color: var(--deep); transform: translateY(-3px); }
.quiz-option.is-selected { border-color: var(--coral); background: rgba(192,93,57,0.06); }
.quiz-option.is-selected::after {
  content: "✓";
  position: absolute;
  top: 0.7rem; right: 0.8rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.quiz-option__icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper);
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}
.quiz-option__title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  line-height: 1.15;
}
.quiz-option__sub {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================
   EDITORIAL INDEX LIST VIEW
   Replaces card grids with a numbered "contents page"
   style — text-led, photos as small accent.
   Apply `list-view` class to a card container; the
   grid-cols-* utility on the same element is overridden.
   ============================================ */
.list-view {
  display: flex !important;
  flex-direction: column;
  counter-reset: list-row;
  border-top: 1px solid rgba(14,59,74,0.2);
  gap: 0 !important;
}

.list-view > .idea-card,
.list-view > .postcard {
  counter-increment: list-row;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 160px;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  align-items: center;
  padding: 1.75rem 0.5rem;
  border-bottom: 1px solid rgba(14,59,74,0.2);
  transition: background-color 280ms, padding 280ms;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none !important;
  text-decoration: none;
  color: var(--deep);
}
.list-view > .idea-card:hover,
.list-view > .postcard:hover {
  background: rgba(243,232,210,0.55);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-shadow: none;
  transform: none;
  border-color: rgba(14,59,74,0.35);
}

/* Number prefix for idea cards */
.list-view > .idea-card::before {
  content: counter(list-row, decimal-leading-zero);
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--deep);
  opacity: 0.35;
  line-height: 1;
  letter-spacing: -0.03em;
  align-self: start;
  padding-top: 0.25rem;
  grid-column: 1;
  grid-row: 1 / span 3;
}

/* Idea card body — middle column */
.list-view > .idea-card .idea-card__body {
  padding: 0;
  grid-column: 2;
  grid-row: 1;
}
.list-view > .idea-card .idea-card__photo {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 4/3;
  border-radius: 4px;
  margin-left: auto;
  grid-column: 3;
  grid-row: 1 / span 3;
}
.list-view > .idea-card .idea-card__photo > .stamp,
.list-view > .idea-card .idea-card__photo > .tag { display: none; }

/* Postcard: photo on LEFT (with date overlay), body middle, stub right */
.list-view > .postcard {
  grid-template-columns: 160px minmax(0, 1fr) auto;
}
.list-view > .postcard::before { content: none; }
.list-view > .postcard .postcard__photo {
  width: 160px;
  aspect-ratio: 16/10;
  border-radius: 4px;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}
.list-view > .postcard .postcard__photo > .stamp { display: none; }
.list-view > .postcard .postcard__date {
  position: absolute;
  top: 0.55rem; left: 0.7rem;
  text-shadow: 0 1px 8px rgba(14,59,74,0.6);
}
.list-view > .postcard .postcard__date-mon { font-size: 9px; }
.list-view > .postcard .postcard__date-day { font-size: 26px; }

.list-view > .postcard .postcard__body {
  padding: 0;
  grid-column: 2;
  grid-row: 1;
}
.list-view > .postcard .postcard__stub {
  padding: 0;
  grid-column: 3;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  border: 0;
  text-align: right;
  min-width: 130px;
}
.list-view > .postcard .postcard__stub::before,
.list-view > .postcard .postcard__stub::after { display: none; }

/* Inside the body, the title gets the big typographic emphasis */
.list-view > .idea-card .idea-card__body > h3,
.list-view > .postcard .postcard__body > h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.65rem;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 0.35rem;
}
@media (min-width: 1024px) {
  .list-view > .idea-card .idea-card__body > h3,
  .list-view > .postcard .postcard__body > h4 {
    font-size: 2rem;
  }
}

/* Hide the inline price-row in idea-card body — we'll show it via a different element if needed */
.list-view > .idea-card .idea-card__body > div:last-child {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

/* Mobile collapse */
@media (max-width: 640px) {
  .list-view > .idea-card,
  .list-view > .postcard {
    grid-template-columns: 40px minmax(0,1fr);
    gap: 0.5rem 0.85rem;
    padding: 1.25rem 0.25rem;
  }
  .list-view > .idea-card::before { font-size: 1.4rem; }
  .list-view > .idea-card .idea-card__photo,
  .list-view > .postcard .postcard__photo {
    grid-column: 1 / -1;
    grid-row: auto;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16/9;
    margin: 0;
    order: 2;
  }
  .list-view > .postcard {
    grid-template-columns: 1fr;
  }
  .list-view > .postcard .postcard__photo { grid-row: 1; }
  .list-view > .postcard .postcard__body { grid-column: 1; grid-row: 2; }
  .list-view > .postcard .postcard__stub { grid-column: 1; grid-row: 3; align-items: flex-start; text-align: left; flex-direction: row; justify-content: space-between; width: 100%; }
  .list-view > .idea-card .idea-card__body > h3,
  .list-view > .postcard .postcard__body > h4 { font-size: 1.4rem; }
}

/* Top-match emphasis for quiz result — subtle coral underline */
.idea-card--top .idea-card__photo {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

/* ============================================
   INSTA FEED — trip ideas as an Instagram-style
   profile + 3x3 photo grid. Switcher chips at top
   let the guest hop between trips.
   ============================================ */
.insta {
  margin-top: 2.5rem;
}

/* Switcher: row of small profile avatars (like Insta's "your stories" row) */
.insta-switcher {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.25rem 0.5rem 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(14,59,74,0.25) transparent;
}
.insta-switcher::-webkit-scrollbar { height: 4px; }
.insta-switcher::-webkit-scrollbar-thumb { background: rgba(14,59,74,0.25); border-radius: 2px; }

.insta-switcher__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0.25rem;
  min-width: 80px;
  flex-shrink: 0;
  scroll-snap-align: start;
  text-decoration: none;
  color: var(--deep);
}
.insta-switcher__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 2px;
  background: rgba(14,59,74,0.15);
  transition: all 250ms;
  position: relative;
}
.insta-switcher__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--cream);
}
.insta-switcher__btn:hover .insta-switcher__avatar { transform: translateY(-2px); }
.insta-switcher__btn.is-active .insta-switcher__avatar {
  background: linear-gradient(45deg, var(--coral) 0%, var(--saffron) 60%, var(--plum) 100%);
  padding: 3px;
}
.insta-switcher__handle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.insta-switcher__btn.is-active .insta-switcher__handle { color: var(--deep); font-weight: 600; }

/* Feed body — looks like an IG profile page */
.insta-feed {
  max-width: 940px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid rgba(14,59,74,0.18);
  border-radius: 12px;
  overflow: hidden;
  transition: opacity 220ms;
}
.insta-feed.is-fading { opacity: 0.2; }

.insta-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2rem 2rem 1.5rem;
  align-items: start;
}
.insta-profile__avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(45deg, var(--coral), var(--saffron) 60%, var(--plum));
  padding: 3px;
}
.insta-profile__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--cream);
}
.insta-profile__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.insta-profile__handle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--deep);
  letter-spacing: -0.005em;
}
.insta-profile__verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--cream);
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}
.insta-profile__cta {
  margin-left: auto;
}
.insta-profile__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--deep);
}
.insta-profile__stats > div { display: flex; flex-direction: column; gap: 2px; }
.insta-profile__stats strong {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.insta-profile__stats small {
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.insta-profile__bio {
  margin-top: 1rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--deep);
}
.insta-profile__bio b { font-weight: 600; }
.insta-profile__bio .meta {
  display: block;
  margin-top: 0.25rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Tab bar */
.insta-tabs {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(14,59,74,0.18);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.insta-tabs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  padding: 0.25rem 0;
}
.insta-tabs__item.is-active {
  color: var(--deep);
  border-top: 1.5px solid var(--deep);
  margin-top: -0.85rem;
  padding-top: 0.85rem;
}

/* Photo grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--paper);
}
.insta-grid__cell {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.insta-grid__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  display: block;
}
.insta-grid__cell:hover img { transform: scale(1.05); }
.insta-grid__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14,59,74,0);
  transition: background 250ms;
}
.insta-grid__cell:hover::after {
  background: rgba(14,59,74,0.35);
}
.insta-grid__cell-likes {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--cream);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 13px;
  opacity: 0;
  z-index: 2;
  transition: opacity 250ms;
}
.insta-grid__cell:hover .insta-grid__cell-likes { opacity: 1; }
.insta-grid__cell-likes svg { stroke: var(--cream); fill: var(--cream); }

/* Mobile */
@media (max-width: 720px) {
  .insta-profile {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
    align-items: center;
    justify-items: center;
  }
  .insta-profile__avatar { width: 100px; height: 100px; }
  .insta-profile__head { justify-content: center; }
  .insta-profile__cta { margin-left: 0; }
  .insta-profile__stats { gap: 1.5rem; }
  .insta-profile__bio { text-align: left; }
  .insta-tabs { gap: 2.5rem; }
}

/* ============================================
   TRIP DECK — a stack of postcards the guest flips
   through. Top card is the active one. Click/swipe/
   arrow-keys to advance.
   ============================================ */
.trip-deck-shell {
  --deck-card-w: 360px;
  --deck-card-h: 480px;
  margin-top: 2.5rem;
}
.trip-deck {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: var(--deck-card-h);
  margin: 0 auto;
  outline: none;
  user-select: none;
  perspective: 1200px;
}
.trip-deck__card {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--deck-card-w);
  margin-left: calc(var(--deck-card-w) / -2);
  background: var(--cream);
  padding: 14px 14px 64px;
  border: 1px solid rgba(14,59,74,0.06);
  box-shadow: 0 14px 36px rgba(14,59,74,0.18), 0 2px 6px rgba(14,59,74,0.1);
  text-decoration: none;
  color: var(--deep);
  cursor: grab;
  will-change: transform, opacity;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1),
              opacity 500ms cubic-bezier(0.2, 0.8, 0.2, 1),
              z-index 0s linear 250ms,
              box-shadow 400ms;
}
.trip-deck__card:active { cursor: grabbing; }
.trip-deck__card[data-pos="0"] {
  transform: rotate(-2deg) translateY(0);
  z-index: 5;
  opacity: 1;
}
.trip-deck__card[data-pos="0"]:hover {
  transform: rotate(-2deg) translateY(-4px);
  box-shadow: 0 22px 48px rgba(14,59,74,0.22), 0 4px 10px rgba(14,59,74,0.12);
}
.trip-deck__card[data-pos="1"] {
  transform: rotate(3deg) translate(14px, 18px);
  z-index: 4;
  opacity: 0.92;
}
.trip-deck__card[data-pos="2"] {
  transform: rotate(-4deg) translate(-12px, 34px) scale(0.97);
  z-index: 3;
  opacity: 0.65;
}
.trip-deck__card[data-pos="3"] {
  transform: rotate(2deg) translate(10px, 48px) scale(0.94);
  z-index: 2;
  opacity: 0.38;
}
.trip-deck__card[data-pos="hide"] {
  transform: scale(0.85) translateY(60px);
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}
.trip-deck__card[data-pos="off"] {
  transform: rotate(24deg) translate(560px, -30px);
  z-index: 6;
  opacity: 0;
  transition-duration: 500ms;
  transition-delay: 0s;
}

.trip-deck__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper);
}
.trip-deck__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.94);
  pointer-events: none;
  -webkit-user-drag: none;
}
.trip-deck__label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--deep);
}
.trip-deck__label small {
  display: block;
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.trip-deck__hint {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
  white-space: nowrap;
  pointer-events: none;
  animation: deck-hint 3s ease-in-out infinite;
}
@keyframes deck-hint {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 0.85; }
}

.trip-deck__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
}
.trip-deck__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(14,59,74,0.3);
  background: var(--cream);
  cursor: pointer;
  color: var(--deep);
  transition: all 220ms;
}
.trip-deck__btn:hover {
  background: var(--deep);
  color: var(--cream);
  border-color: var(--deep);
}
.trip-deck__counter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 90px;
  text-align: center;
}
.trip-deck__shuffle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--coral-deep);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: background 200ms;
  margin-left: 1rem;
}
.trip-deck__shuffle:hover { background: rgba(192,93,57,0.12); }

@media (max-width: 720px) {
  .trip-deck-shell { --deck-card-w: 270px; --deck-card-h: 380px; }
  .trip-deck__label { font-size: 0.9rem; }
}

/* ============================================
   PHOTO WALL — trip ideas as tilted polaroids
   Free-form layout, no grid. Hand-placed positions.
   ============================================ */
.wall {
  position: relative;
  display: block !important;
  border: none !important;
  padding: 1.5rem 0 3rem;
  min-height: 600px;
}

.wall > .idea-card {
  position: absolute !important;
  top: var(--y, 50%);
  left: var(--x, 50%);
  width: var(--w, 220px) !important;
  transform: rotate(var(--r, 0deg));
  background: var(--cream) !important;
  padding: 10px 10px 44px !important;
  box-shadow: 0 6px 20px rgba(14,59,74,0.13), 0 1px 3px rgba(14,59,74,0.08);
  border: 1px solid rgba(14,59,74,0.06) !important;
  border-radius: 0 !important;
  text-decoration: none;
  color: var(--deep);
  transition: transform 450ms cubic-bezier(0.2,0.8,0.2,1), box-shadow 450ms;
  z-index: 1;
  display: block !important;
  counter-increment: list-row;
}
.wall > .idea-card::before { content: none !important; }
.wall > .idea-card:hover {
  transform: rotate(0deg) scale(1.06);
  box-shadow: 0 20px 40px rgba(14,59,74,0.22), 0 4px 10px rgba(14,59,74,0.12);
  z-index: 30;
}

.wall > .idea-card .idea-card__photo {
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 0 !important;
  margin: 0 !important;
  grid-column: auto !important;
  grid-row: auto !important;
}
.wall > .idea-card .idea-card__photo img {
  filter: saturate(0.92) contrast(0.98);
}

.wall > .idea-card .idea-card__body {
  padding: 8px 4px 0 !important;
  grid-column: auto !important;
  grid-row: auto !important;
  text-align: center;
}
/* Show only the trip name; everything else is hidden inside the polaroid */
.wall > .idea-card .idea-card__body > *:not(h3) { display: none !important; }
.wall > .idea-card .idea-card__body > h3 {
  font-family: 'Fraunces', serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: 0.95rem !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  color: var(--deep);
  letter-spacing: -0.005em;
}

/* Hand-placed positions on the desktop wall (up to 14 pins) */
.wall > .idea-card:nth-child(1)  { --x: 4%;  --y: 30px;  --w: 220px; --r: -3deg; }
.wall > .idea-card:nth-child(2)  { --x: 26%; --y: 90px;  --w: 200px; --r: 2deg;  }
.wall > .idea-card:nth-child(3)  { --x: 47%; --y: 10px;  --w: 240px; --r: -2deg; }
.wall > .idea-card:nth-child(4)  { --x: 71%; --y: 70px;  --w: 220px; --r: 3deg;  }
.wall > .idea-card:nth-child(5)  { --x: 10%; --y: 340px; --w: 200px; --r: 2deg;  }
.wall > .idea-card:nth-child(6)  { --x: 33%; --y: 400px; --w: 260px; --r: -1deg; }
.wall > .idea-card:nth-child(7)  { --x: 60%; --y: 360px; --w: 220px; --r: -3deg; }
.wall > .idea-card:nth-child(8)  { --x: 80%; --y: 420px; --w: 200px; --r: 2deg;  }
.wall > .idea-card:nth-child(9)  { --x: 4%;  --y: 640px; --w: 240px; --r: -2deg; }
.wall > .idea-card:nth-child(10) { --x: 30%; --y: 700px; --w: 200px; --r: 3deg;  }
.wall > .idea-card:nth-child(11) { --x: 52%; --y: 670px; --w: 220px; --r: -3deg; }
.wall > .idea-card:nth-child(12) { --x: 74%; --y: 730px; --w: 220px; --r: 1deg;  }
.wall > .idea-card:nth-child(13) { --x: 16%; --y: 940px; --w: 260px; --r: 2deg;  }
.wall > .idea-card:nth-child(14) { --x: 56%; --y: 960px; --w: 220px; --r: -2deg; }

/* 6-pin wall (homepage teaser) is shorter */
.wall.wall--teaser { min-height: 600px; }

/* Tablet — reduce sizes & spread */
@media (max-width: 1024px) {
  .wall { min-height: 1500px; }
  .wall > .idea-card { width: calc(var(--w, 220px) * 0.85) !important; }
}

/* Mobile — stack normally with light tilt */
@media (max-width: 720px) {
  .wall {
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 2.25rem;
    padding: 1rem 0 2rem;
  }
  .wall > .idea-card {
    position: static !important;
    width: 78% !important;
    max-width: 320px;
    transform: rotate(var(--r, 0deg)) !important;
  }
}

/* ============================================
   DEPARTURE BOARD — fixed departures as a structured listing
   ============================================ */
.dep-board {
  display: flex !important;
  flex-direction: column;
  gap: 0 !important;
  border-top: 1px solid rgba(14,59,74,0.25);
  margin-top: 0.5rem;
}
.dep-board__head {
  display: grid;
  grid-template-columns: 80px minmax(0,1fr) 90px 90px 60px;
  gap: 1.25rem;
  padding: 0.7rem 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid rgba(14,59,74,0.25);
}
.dep-board__head > span:nth-child(3),
.dep-board__head > span:nth-child(4) { text-align: right; }
@media (max-width: 720px) { .dep-board__head { display: none; } }

.dep-board > .postcard {
  display: grid !important;
  grid-template-columns: 80px minmax(0,1fr) 90px 90px 60px !important;
  gap: 1.25rem !important;
  align-items: center;
  padding: 1.1rem 0.5rem !important;
  border-bottom: 1px solid rgba(14,59,74,0.12);
  border-top: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
  transition: background-color 220ms, padding 220ms;
  position: relative;
  text-decoration: none;
  color: var(--deep);
  cursor: pointer;
}
.dep-board > .postcard:hover {
  background: rgba(243,232,210,0.5) !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.dep-board > .postcard::before { content: none; }

/* Column 1: date (extract from existing .postcard__photo > .postcard__date) */
.dep-board > .postcard .postcard__photo {
  width: 80px !important;
  height: auto !important;
  aspect-ratio: auto !important;
  background: transparent !important;
  border-radius: 0 !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  margin: 0 !important;
  position: relative;
  overflow: visible;
}
.dep-board > .postcard .postcard__photo > img,
.dep-board > .postcard .postcard__photo > .stamp { display: none !important; }
.dep-board > .postcard .postcard__date {
  position: static !important;
  display: block;
  color: var(--deep);
  text-shadow: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.dep-board > .postcard .postcard__date-mon {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
  color: var(--muted) !important;
}
.dep-board > .postcard .postcard__date-day {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem !important;
  font-weight: 500 !important;
  color: var(--deep) !important;
  margin-top: 3px;
  letter-spacing: -0.02em !important;
}

/* Column 2: route (body) */
.dep-board > .postcard .postcard__body {
  grid-column: 2 !important;
  padding: 0 !important;
}
.dep-board > .postcard .postcard__body > .mt-2.flex.items-center.gap-2 { display: none !important; }
.dep-board > .postcard .postcard__body > div:first-child {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.dep-board > .postcard .postcard__body > h4 {
  font-family: 'Fraunces', serif !important;
  font-size: 1.2rem !important;
  font-weight: 500 !important;
  line-height: 1.1 !important;
  margin-top: 0.25rem !important;
  letter-spacing: -0.005em;
}

/* Column 3, 4: seats + price (from stub via display: contents) */
.dep-board > .postcard .postcard__stub {
  display: contents !important;
}
.dep-board > .postcard .postcard__stub > div:first-child {
  grid-column: 3 !important;
  text-align: right;
}
.dep-board > .postcard .postcard__stub > div:first-child > div:first-child {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.dep-board > .postcard .postcard__stub > div:first-child > .seats { display: none !important; }
.dep-board > .postcard .postcard__stub > div:nth-child(2) {
  grid-column: 4 !important;
  text-align: right;
}
.dep-board > .postcard .postcard__stub > div:nth-child(2) > div:first-child {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem !important;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.dep-board > .postcard .postcard__stub > div:nth-child(2) > div:nth-child(2) {
  font-size: 10px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0;
}

/* Column 5: CTA arrow */
.dep-board > .postcard::after {
  content: '→';
  grid-column: 5;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--coral-deep);
  text-align: right;
  font-weight: 400;
  transition: transform 220ms;
}
.dep-board > .postcard:hover::after { transform: translateX(4px); }

/* Mobile */
@media (max-width: 720px) {
  .dep-board > .postcard {
    grid-template-columns: 64px 1fr !important;
    grid-template-areas:
      "date title"
      "date meta"
      "info info"
      "cta cta" !important;
    gap: 0.35rem 0.85rem !important;
    padding: 1rem 0.25rem !important;
  }
  .dep-board > .postcard .postcard__photo { grid-area: date !important; }
  .dep-board > .postcard .postcard__body { grid-area: title !important; }
  .dep-board > .postcard .postcard__stub { display: contents !important; }
  .dep-board > .postcard .postcard__stub > div:first-child { grid-area: info !important; text-align: left !important; }
  .dep-board > .postcard .postcard__stub > div:nth-child(2) { grid-area: info !important; text-align: right !important; align-self: end; }
  .dep-board > .postcard::after { display: none; }
}

.quiz-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--sage) 0%, var(--saffron) 50%, var(--coral) 100%);
  outline: none;
}
.quiz-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--deep);
  border: 3px solid var(--cream);
  box-shadow: 0 2px 8px rgba(14,59,74,0.25);
  cursor: pointer;
}
.quiz-slider::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--deep);
  border: 3px solid var(--cream);
  box-shadow: 0 2px 8px rgba(14,59,74,0.25);
  cursor: pointer;
}

/* Filter drawer (mobile) */
.drawer {
  position: fixed;
  top: 0; bottom: 0; left: 0;
  width: min(360px, 90vw);
  background: var(--cream);
  z-index: 70;
  transform: translateX(-100%);
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
  padding: 1.5rem;
  box-shadow: 8px 0 24px rgba(14, 59, 74, 0.15);
}
.drawer.open { transform: translateX(0); }
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(14, 59, 74, 0.5);
  z-index: 65;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* ============================================
   TRAVALONG REFACTOR — added components
   ============================================ */

/* Trip Cards (horizontal scroll, Insta-style) */
.t-feed {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.t-feed::-webkit-scrollbar { display: none; }
.t-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(14,59,74,0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.2,0.8,0.2,1), box-shadow 400ms, border-color 400ms;
  text-decoration: none;
  color: var(--deep);
  display: block;
}
.t-card:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(14,59,74,0.1); border-color: transparent; }
.t-head { padding: 12px 14px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(14,59,74,0.06); }
.t-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid;
  background-size: cover;
  background-position: center;
}
.t-handle { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500; color: var(--deep); }
.t-sub { font-size: 10px; color: var(--stone); }
.t-badge {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 5px;
  display: flex; align-items: center; gap: 4px;
  font-weight: 600;
}
.t-dot { width: 4px; height: 4px; border-radius: 50%; animation: t-blink 2s infinite; }
@keyframes t-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1.5px;
  aspect-ratio: 1;
  background: var(--paper);
}
.t-grid .g {
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.t-tabs { display: flex; border-bottom: 1px solid rgba(14,59,74,0.06); }
.t-tab {
  flex: 1;
  text-align: center;
  padding: 7px 0;
  font-size: 13px;
  color: var(--stone);
}
.t-tab.on { color: var(--deep); box-shadow: inset 0 -1.5px 0 var(--deep); }

.t-stats {
  display: flex;
  justify-content: space-around;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(14,59,74,0.06);
}
.t-sv {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: var(--deep);
}
.t-sl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
  margin-top: 1px;
}

.t-bio { padding: 12px 14px; }
.t-dest { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 500; color: var(--deep); }
.t-route { font-size: 10px; color: var(--stone); line-height: 1.4; margin: 3px 0 10px; }
.t-cta {
  display: block;
  text-align: center;
  padding: 8px;
  border-radius: 7px;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 250ms;
}
.t-cta:hover { opacity: 0.85; }

/* VIBE Cards (mood-first browsing) */
.v-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.v-card {
  padding: 24px 20px;
  border-radius: 12px;
  border: 1px solid rgba(14,59,74,0.1);
  background: #fff;
  cursor: pointer;
  transition: transform 350ms, box-shadow 350ms, border-color 350ms;
  text-decoration: none;
  color: var(--deep);
  display: block;
}
.v-card:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(14,59,74,0.1); border-color: transparent; }
.v-symbol {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1;
}
.v-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.v-desc {
  font-size: 11px;
  line-height: 1.55;
  color: var(--stone);
}
.v-dests {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(14,59,74,0.06);
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 900px) { .v-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .v-grid { grid-template-columns: 1fr; } }

/* Trip IDEAS asymmetric magazine grid */
.i-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.idea-mag {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 400ms, box-shadow 400ms;
  aspect-ratio: 3/4;
  text-decoration: none;
  color: inherit;
  display: block;
}
.idea-mag:first-child { grid-column: 1 / 3; grid-row: 1 / 3; aspect-ratio: auto; }
.idea-mag:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(14,59,74,0.1); }
.idea-mag__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 700ms cubic-bezier(0.2,0.8,0.2,1);
}
.idea-mag:hover .idea-mag__bg { transform: scale(1.04); }
.idea-mag__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,59,74,0.78) 0%, rgba(14,59,74,0.05) 55%);
}
.idea-mag__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  z-index: 2;
  color: #fff;
}
.idea-mag__cat {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  margin-bottom: 8px;
  font-weight: 600;
}
.idea-mag__t {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 3px;
}
.idea-mag:first-child .idea-mag__t { font-size: 28px; }
.idea-mag__d {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.idea-mag__f {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.idea-mag__p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #fff;
  font-weight: 500;
}
.idea-mag__dur {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 1100px) {
  .i-grid { grid-template-columns: 1fr 1fr; }
  .i-grid .idea-mag:first-child { grid-column: 1 / 3; grid-row: auto; }
}
@media (max-width: 560px) {
  .i-grid { grid-template-columns: 1fr; }
  .i-grid .idea-mag:first-child { grid-column: auto; }
}

/* TESTIMONIALS */
.te-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.te-card {
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(14,59,74,0.1);
  background: #fff;
  transition: transform 400ms, box-shadow 400ms, border-color 400ms;
}
.te-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(14,59,74,0.07); border-color: transparent; }
.te-dest {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  margin-bottom: 12px;
  font-weight: 600;
}
.te-q {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 20px;
  color: var(--deep);
}
.te-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(14,59,74,0.06);
}
.te-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.te-av img { width: 100%; height: 100%; object-fit: cover; }
.te-name { font-family: 'Fraunces', serif; font-size: 13px; font-weight: 500; color: var(--deep); }
.te-city {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
}
@media (max-width: 900px) { .te-grid { grid-template-columns: 1fr; } }

/* Leaflet polish */
.leaflet-popup-content-wrapper {
  border-radius: 10px !important;
  box-shadow: 0 16px 50px rgba(14,59,74,0.1) !important;
  font-family: 'DM Sans', sans-serif !important;
}
.leaflet-popup-tip { border-top-color: #fff !important; }
.leaflet-control-zoom { border: none !important; box-shadow: 0 2px 12px rgba(14,59,74,0.04) !important; }
.leaflet-control-zoom a {
  background: #fff !important;
  color: var(--deep) !important;
  border: 1px solid rgba(14,59,74,0.1) !important;
  width: 32px !important; height: 32px !important;
  line-height: 32px !important;
  border-radius: 6px !important;
}
.leaflet-container { font-family: 'DM Sans', sans-serif !important; }
@keyframes mp { 0% { transform: scale(1); opacity: 0.4; } 100% { transform: scale(2.2); opacity: 0; } }

/* ============================================
   HOMEPAGE REDESIGN — editorial travel magazine
   ============================================ */

/* Cover hero — magazine-style overlay on full-bleed photo */
.cover {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}
.cover__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 24s ease-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.10) translate(-1.5%, -1%); }
}
.cover__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,59,74,0.55) 0%, rgba(14,59,74,0.15) 35%, rgba(14,59,74,0.85) 100%);
}
.cover__veil--side {
  background:
    radial-gradient(ellipse at 20% 80%, rgba(14,59,74,0.6), transparent 50%);
}
.cover__head {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 5;
}
.cover__masthead {
  position: absolute;
  top: 50%; left: 6vw;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.6);
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  writing-mode: vertical-rl;
}
.cover__inner {
  position: relative;
  z-index: 4;
  height: 100vh; min-height: 100vh;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 6vw 6vw;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  gap: 1.5rem;
  color: var(--cream);
}
.cover__edition {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(244,167,64,0.85);
  margin-bottom: -0.25rem;
}
.cover__almanac {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.4);
  margin-top: -0.5rem;
}
.cover__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 18ch;
  color: var(--cream);
}
.cover__title em {
  font-style: italic;
  font-weight: 500;
  color: #f4a740;
}
.cover__dek {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.65;
  color: rgba(251,246,236,0.7);
  max-width: 32rem;
}
.cover__searchbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(251,246,236,0.05);
  border: 1px solid rgba(251,246,236,0.2);
  border-radius: 999px;
  padding: 0.65rem 0.65rem 0.65rem 1.5rem;
  max-width: 480px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 280ms cubic-bezier(0.2,0.8,0.2,1);
}
.cover__searchbar:focus-within {
  background: rgba(255,255,255,0.96);
  border-color: rgba(255,255,255,0.96);
}
.cover__searchbar:focus-within .cover__searchinput {
  color: var(--deep);
}
.cover__searchbar:focus-within .cover__searchinput::placeholder {
  color: var(--stone);
}
.cover__searchinput {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 0.25rem 0;
}
.cover__searchinput::placeholder {
  color: rgba(251,246,236,0.55);
}
.cover__searchbtn {
  background: var(--coral);
  color: var(--cream);
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms;
}
.cover__searchbtn:hover { background: var(--coral-deep); }
.cover__scroll {
  position: absolute;
  bottom: 2rem; right: 2rem;
  z-index: 5;
  color: rgba(251,246,236,0.55);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 0.5rem;
}
.cover__scroll::after {
  content: '';
  width: 24px; height: 1px;
  background: currentColor;
  animation: scrollnudge 1.8s ease-in-out infinite;
}
@keyframes scrollnudge {
  0%, 100% { transform: scaleX(0.5); transform-origin: left; opacity: 0.5; }
  50%      { transform: scaleX(1);   transform-origin: left; opacity: 1; }
}
@media (max-width: 720px) {
  .cover__masthead { display: none; }
  .cover__inner { padding: 0 5vw 8vw; }
  .cover__title { font-size: clamp(38px, 10vw, 56px); max-width: 14ch; }
  .cover__scroll { display: none; }
}

/* Dispatch ribbon — live-feel one-liner */
.dispatch {
  background: var(--deep);
  color: var(--cream);
  border-top: 1px solid rgba(251,246,236,0.08);
  border-bottom: 1px solid rgba(251,246,236,0.08);
  padding: 1rem 6vw;
  display: flex; align-items: center; gap: 1.25rem;
  font-family: 'DM Sans', sans-serif;
}
.dispatch__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #f4a740;
  box-shadow: 0 0 0 0 rgba(244,167,64,0.6);
  animation: livedot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livedot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,167,64,0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(244,167,64,0); }
}
.dispatch__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.5);
  flex-shrink: 0;
}
.dispatch__text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  color: var(--cream);
  flex: 1;
  transition: opacity 400ms;
}
.dispatch__text.is-swapping { opacity: 0; }

/* Section primitives — magazine-rhythm spacing */
.spread {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) 6vw;
}
.kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.85rem;
  display: inline-flex; align-items: center; gap: 0.65rem;
}
.kicker::before {
  content: '';
  width: 26px; height: 1px;
  background: currentColor;
}
.h-display {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
}
.h-display em {
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
}

/* A note from Nakul */
.letter {
  background: var(--warm);
  border-top: 1px solid rgba(14,59,74,0.08);
  border-bottom: 1px solid rgba(14,59,74,0.08);
}
.letter__inner {
  max-width: 1180px; margin: 0 auto;
  padding: clamp(70px, 10vw, 110px) 6vw;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.letter__portrait {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--paper);
  overflow: hidden;
  border-radius: 2px;
  transform: rotate(-2deg);
  box-shadow: 0 1px 2px rgba(14,59,74,0.06), 0 18px 40px -10px rgba(14,59,74,0.18);
}
.letter__portrait img {
  width: 100%; height: 100%; object-fit: cover;
}
.letter__portrait::after {
  content: 'NAKUL · MUMBAI';
  position: absolute;
  bottom: -22px; left: 50%;
  transform: translateX(-50%) rotate(2deg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.3em;
  color: var(--stone);
  white-space: nowrap;
}
.letter__body {
  color: var(--deep);
  font-family: 'Fraunces', serif;
}
.letter__date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.5rem;
}
.letter__body p {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.62;
  font-weight: 400;
  color: rgba(14,59,74,0.92);
  margin: 0 0 1.1em 0;
  max-width: 38rem;
}
.letter__body p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 3.3em;
  font-weight: 500;
  float: left;
  line-height: 0.95;
  padding: 4px 12px 0 0;
  color: var(--coral);
}
.letter__sig {
  margin-top: 1.5rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--coral);
  font-weight: 500;
}
.letter__sig small {
  display: block;
  margin-top: 0.2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--stone);
}
@media (max-width: 720px) {
  .letter__inner { grid-template-columns: 1fr; }
  .letter__portrait { max-width: 180px; }
}

/* Vibes — horizontal scroll of six full-photo worlds */
.vibes-strip { padding-top: 0; }
.vibes-row {
  display: flex;
  gap: clamp(12px, 1.5vw, 18px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 6vw 4rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.vibes-row::-webkit-scrollbar { display: none; }
.vibe-card {
  flex: 0 0 clamp(280px, 36vw, 460px);
  scroll-snap-align: start;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  isolation: isolate;
}
.vibe-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1000ms cubic-bezier(0.2,0.8,0.2,1);
  filter: saturate(0.85);
}
.vibe-card:hover .vibe-card__img { transform: scale(1.06); filter: saturate(1); }
.vibe-card__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,59,74,0.1) 0%, rgba(14,59,74,0.05) 40%, rgba(14,59,74,0.88) 100%);
  z-index: 1;
}
.vibe-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem;
  color: var(--cream);
  z-index: 2;
}
.vibe-card__kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.7);
  margin-bottom: 0.5rem;
}
.vibe-card__name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.vibe-card__desc {
  margin-top: 0.85rem;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(251,246,236,0.75);
  max-width: 24rem;
}
.vibe-card__dests {
  margin-top: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.55);
}
.vibe-card__cta {
  margin-top: 1.25rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.vibes-nav {
  display: flex; align-items: center; gap: 1rem;
  padding-top: 0.5rem;
}
.vibes-nav__btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(14,59,74,0.25);
  color: var(--deep);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 220ms;
}
.vibes-nav__btn:hover { background: var(--deep); color: var(--cream); border-color: var(--deep); }

/* Departure posters — concert-poster horizontal scroll */
.posters { background: var(--cream); }
.posters-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 6vw 4rem;
  scrollbar-width: none;
}
.posters-row::-webkit-scrollbar { display: none; }
.poster {
  flex: 0 0 clamp(280px, 30vw, 360px);
  scroll-snap-align: start;
  aspect-ratio: 3/4.2;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
  color: var(--cream);
  isolation: isolate;
  transition: transform 350ms cubic-bezier(0.2,0.8,0.2,1);
}
.poster:hover { transform: translateY(-6px); }
.poster__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2,0.8,0.2,1);
}
.poster:hover .poster__img { transform: scale(1.07); }
.poster__veil {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(14,59,74,0.55) 0%, rgba(14,59,74,0.2) 35%, rgba(14,59,74,0.9) 95%);
  z-index: 1;
}
.poster__head {
  position: absolute;
  top: 1.25rem; left: 1.25rem; right: 1.25rem;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.poster__type {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.7);
}
.poster__seats {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(192,93,57,0.92);
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  font-weight: 600;
}
.poster__body {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  z-index: 2;
}
.poster__date {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1;
  color: var(--amber);
  margin-bottom: 0.45rem;
}
.poster__place {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.poster__route {
  margin-top: 0.4rem;
  font-size: 11px;
  color: rgba(251,246,236,0.7);
  line-height: 1.4;
}
.poster__meta {
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(251,246,236,0.18);
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.poster__cta {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
}

/* Trip idea spreads — editorial features */
.spreads {
  background: var(--cream);
  border-top: 1px solid rgba(14,59,74,0.08);
}
.spreads-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 3rem;
}
@media (max-width: 880px) { .spreads-grid { grid-template-columns: 1fr; } }
.feature {
  display: block;
  text-decoration: none;
  color: var(--deep);
  group: feature;
}
.feature--lead { grid-row: span 2; }
.feature__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 900ms cubic-bezier(0.2,0.8,0.2,1);
}
.feature--lead .feature__img { aspect-ratio: 4/5.6; }
.feature__row {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.feature__row .feature__img { aspect-ratio: 1/1; }
.feature__body { padding-top: 1.25rem; }
.feature__cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coral);
}
.feature__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0.5rem 0 0.65rem 0;
}
.feature--lead .feature__title { font-size: clamp(28px, 3.4vw, 44px); }
.feature__dek {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(14,59,74,0.7);
  margin: 0;
}
.feature__pullquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--deep);
  border-left: 2px solid var(--coral);
  padding-left: 1rem;
  margin: 1.25rem 0;
  max-width: 28rem;
}
.feature__meta {
  margin-top: 1rem;
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(14,59,74,0.12);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--stone);
}
.feature__meta strong {
  font-family: 'Fraunces', serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: var(--deep);
}

/* Live map (curated, minimal) */
.livemap { background: var(--warm); border-top: 1px solid rgba(14,59,74,0.08); }
.livemap__box {
  margin-top: 2.5rem;
  background: #fff;
  border: 1px solid rgba(14,59,74,0.1);
  border-radius: 6px;
  overflow: hidden;
  height: 480px;
}

/* Postcards wall */
.postcards { background: var(--cream); border-top: 1px solid rgba(14,59,74,0.08); }
.postcards-wall {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
@media (max-width: 880px) { .postcards-wall { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .postcards-wall { grid-template-columns: 1fr; } }
.postcard {
  background: var(--cream);
  padding: 0;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(14,59,74,0.06), 0 16px 36px -12px rgba(14,59,74,0.16);
  transition: transform 300ms;
}
.postcard:nth-child(3n) { transform: rotate(-1.5deg); }
.postcard:nth-child(3n+1) { transform: rotate(1deg); }
.postcard:nth-child(3n+2) { transform: rotate(-0.5deg); }
.postcard:hover { transform: rotate(0) translateY(-4px); }
.postcard__img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  filter: saturate(0.85);
}
.postcard__body {
  padding: 1.25rem 1.4rem 1.4rem;
  position: relative;
}
.postcard__stamp {
  position: absolute;
  top: -62px; right: 14px;
  width: 60px; height: 50px;
  border: 1.5px dashed rgba(14,59,74,0.4);
  border-radius: 2px;
  background: var(--cream);
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14,59,74,0.6);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 4px;
  line-height: 1.2;
  transform: rotate(6deg);
}
.postcard__q {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--deep);
  margin: 0;
}
.postcard__sig {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(14,59,74,0.1);
  display: flex; justify-content: space-between; align-items: baseline;
}
.postcard__name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--deep);
}
.postcard__date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Quiet trust strip */
.trust {
  background: var(--deep);
  color: var(--cream);
  padding: 3.5rem 6vw;
}
.trust__inner {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 880px) { .trust__inner { grid-template-columns: 1fr 1fr; } }
.trust__item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.6);
  line-height: 1.55;
}
.trust__item strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 0.4rem;
  text-transform: none;
}

/* Custom CTA — final spread */
.start {
  background: var(--cream);
  border-top: 1px solid rgba(14,59,74,0.08);
  text-align: center;
}
.start__inner {
  max-width: 720px; margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) 6vw;
}
.start__title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.5rem;
}
.start__title em { font-style: italic; color: var(--coral); font-weight: 500; }
.start__dek {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(14,59,74,0.7);
  max-width: 30rem;
  margin: 0 auto 2.25rem;
}
.start__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  max-width: 540px;
  margin: 0 auto;
}
.start__form input {
  background: var(--warm);
  border: 1px solid rgba(14,59,74,0.12);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--deep);
  transition: border-color 220ms;
}
.start__form input:focus { outline: 0; border-color: var(--coral); }
.start__form button {
  grid-column: span 2;
  background: var(--coral);
  color: var(--cream);
  border: 0;
  border-radius: 6px;
  padding: 0.95rem 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms;
  margin-top: 0.5rem;
}
.start__form button:hover { background: var(--coral-deep); }
.start__alt {
  margin-top: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
.start__alt a { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 560px) { .start__form { grid-template-columns: 1fr; } .start__form button { grid-column: span 1; } }

/* Nav (transparent over cover, frosted after scroll) */
.nav-mag {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.25rem 6vw;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 280ms, border-color 280ms;
  border-bottom: 1px solid transparent;
  color: var(--cream);
}
.nav-mag.is-scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(14,59,74,0.08);
  color: var(--deep);
}
.nav-mag__brand {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}
.nav-mag__mark {
  width: 32px; height: 32px;
  background: var(--coral);
  color: var(--cream);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 15px;
}
.nav-mag__word {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.005em;
}
.nav-mag__word b { color: var(--coral); font-weight: 500; }
.nav-mag__links {
  display: flex; gap: 1.75rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-mag__links a { color: inherit; text-decoration: none; opacity: 0.85; transition: opacity 220ms; }
.nav-mag__links a:hover { opacity: 1; color: var(--coral); }
.nav-mag__cta {
  background: var(--coral);
  color: var(--cream);
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 220ms;
}
.nav-mag__cta:hover { background: var(--coral-deep); }
@media (max-width: 880px) { .nav-mag__links { display: none; } }

/* Footer */
.foot-mag {
  background: var(--cream);
  border-top: 1px solid rgba(14,59,74,0.08);
  padding: 2.25rem 6vw;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.foot-mag__sig {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--stone);
}
.foot-mag__sig b {
  font-style: normal;
  font-weight: 500;
  color: var(--deep);
}
.foot-mag__links {
  display: flex; gap: 1.25rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.foot-mag__links a {
  color: var(--stone);
  text-decoration: none;
  transition: color 220ms;
}
.foot-mag__links a:hover { color: var(--coral); }

/* ============================================
   POLISH PASS 2 — logo, smaller vibes, mini features,
   reveals + parallax
   ============================================ */

/* Real logo image in nav + footer */
.nav-mag__logo {
  height: 34px;
  width: auto;
  display: block;
}
.nav-mag__logo--badge {
  background: transparent;
  padding: 0;
  filter: drop-shadow(0 2px 10px rgba(14,59,74,0.35));
  transition: filter 280ms;
}
.nav-mag.is-scrolled .nav-mag__logo--badge { filter: none; }
.foot-mag__logo { height: 30px; width: auto; opacity: 0.9; }

/* Vibe cards — smaller */
.vibe-card {
  flex: 0 0 clamp(220px, 23vw, 300px);
  aspect-ratio: 3/4.1;
  border-radius: 6px;
}
.vibe-card__body { padding: 1.4rem 1.25rem; }
.vibe-card__name { font-size: clamp(20px, 1.9vw, 26px); }
.vibe-card__desc { font-size: 12px; margin-top: 0.6rem; max-width: 20rem; }
.vibe-card__dests { margin-top: 0.6rem; font-size: 8px; }
.vibe-card__cta { margin-top: 0.85rem; font-size: 8px; }
.vibe-card__kicker { font-size: 8px; }

/* Mini feature row — 4-up compact trip ideas */
.minis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(14,59,74,0.1);
}
@media (max-width: 1000px) { .minis { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .minis { grid-template-columns: 1fr; } }
.mini {
  display: block;
  text-decoration: none;
  color: var(--deep);
}
.mini__imgwrap {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
}
.mini__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2,0.8,0.2,1);
  filter: saturate(0.88);
}
.mini:hover .mini__img { transform: scale(1.06); filter: saturate(1); }
.mini__cat {
  margin-top: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral);
}
.mini__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0.35rem 0 0.3rem;
}
.mini__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--stone);
}
.mini__meta strong {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--deep);
  letter-spacing: 0;
}

/* Scroll reveals */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.2,0.8,0.2,1), transform 800ms cubic-bezier(0.2,0.8,0.2,1);
  transition-delay: var(--rv-delay, 0ms);
  will-change: opacity, transform;
}
.rv.in-view { opacity: 1; transform: none; }

/* Parallax wrapper for the cover */
.cover__imgwrap {
  position: absolute;
  inset: -12% 0 0 0;
  will-change: transform;
}
.cover__imgwrap .cover__img { position: absolute; inset: 0; }

/* Parallax drift on big section images (subtle) */
.plx { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
  .cover__img { animation: none !important; }
  .cover__imgwrap, .plx { transform: none !important; }
  .dispatch__dot { animation: none !important; }
}

/* ============================================
   POLISH PASS 3 — hover map, custom cursor,
   arches, marquee, rotating badge, magnetics
   ============================================ */

/* Brand text selection */
::selection { background: var(--coral); color: var(--cream); }

/* --- Hover-reveal map --- */
.lf-country {
  cursor: none; /* custom cursor takes over */
}
.map-tip {
  background: var(--cream) !important;
  border: none !important;
  border-radius: 8px !important;
  box-shadow: 0 18px 50px -12px rgba(14,59,74,0.35) !important;
  padding: 14px 16px !important;
  font-family: 'DM Sans', sans-serif !important;
}
.map-tip::before { display: none !important; }
.map-tip__lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.map-tip__name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--deep);
  line-height: 1.1;
  margin-bottom: 4px;
}
.map-tip__desc {
  font-size: 11.5px;
  color: var(--stone);
  line-height: 1.5;
  max-width: 220px;
  margin-bottom: 8px;
}
.map-tip__cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* --- Custom cursor --- */
@media (hover: hover) and (pointer: fine) {
  body.cursor-on, body.cursor-on a, body.cursor-on button,
  body.cursor-on input, body.cursor-on [role="button"] { cursor: none !important; }
}
.cur-dot, .cur-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cur-dot {
  width: 5px; height: 5px;
  background: var(--coral);
  transition: opacity 200ms, width 250ms, height 250ms;
}
.cur-ring {
  width: 24px; height: 24px;
  border: 1.5px solid rgba(192,93,57,0.65);
  display: flex; align-items: center; justify-content: center;
  transition: width 350ms cubic-bezier(0.2,0.8,0.2,1), height 350ms cubic-bezier(0.2,0.8,0.2,1),
              background 280ms, border-color 280ms;
}
.cur-ring__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transition: opacity 200ms;
  white-space: nowrap;
}
.cur-ring.is-hover {
  width: 38px; height: 38px;
  border-color: var(--coral);
  background: rgba(192,93,57,0.12);
}
.cur-ring.is-label {
  width: 54px; height: 54px;
  background: rgba(192,93,57,0.94);
  border-color: transparent;
  backdrop-filter: blur(2px);
}
.cur-ring.is-label .cur-ring__label { opacity: 1; }
.cur-dot.is-hidden, .cur-ring.is-hidden { opacity: 0; }
.cur-ring.is-mini { width: 0; height: 0; border-color: transparent; background: transparent; }

/* (arches removed — quiet geometry) */

/* --- Destination marquee --- */
.marq {
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid rgba(14,59,74,0.08);
  border-bottom: 1px solid rgba(14,59,74,0.08);
  background: var(--cream);
  user-select: none;
}
.marq__track {
  display: flex;
  width: max-content;
  animation: marq-roll 36s linear infinite;
}
.marq:hover .marq__track { animation-play-state: paused; }
.marq__seq {
  display: flex;
  align-items: baseline;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-right: clamp(2rem, 4vw, 3.5rem);
  white-space: nowrap;
}
.marq__item {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--deep);
  text-decoration: none;
  transition: color 300ms;
}
.marq__item:nth-child(even) {
  font-style: italic;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(14,59,74,0.55);
}
.marq__item:hover { color: var(--coral); -webkit-text-stroke: 0; }
.marq__dot {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--coral);
  align-self: center;
}
@keyframes marq-roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Rotating circular badge (hero) --- */
.orbit {
  position: absolute;
  bottom: 2.5rem; right: 3rem;
  z-index: 6;
  width: 104px; height: 104px;
  display: flex; align-items: center; justify-content: center;
}
.orbit__svg {
  position: absolute; inset: 0;
  animation: orbit-spin 16s linear infinite;
}
.orbit__svg text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.4px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  fill: rgba(251,246,236,0.75);
}
.orbit__arrow {
  color: var(--cream);
  animation: orbit-bob 2.2s ease-in-out infinite;
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes orbit-bob {
  0%, 100% { transform: translateY(-2px); }
  50%      { transform: translateY(3px); }
}
@media (max-width: 720px) { .orbit { display: none; } }

/* Magnetic buttons get GPU transform */
.magnet { will-change: transform; transition: transform 250ms cubic-bezier(0.2,0.8,0.2,1); }

@media (prefers-reduced-motion: reduce) {
  .marq__track { animation: none; }
  .orbit__svg { animation: none; }
  .orbit__arrow { animation: none; }
  .cur-dot, .cur-ring { display: none !important; }
}

/* ============================================
   THE CRAFT — scroll-driven story of how a trip
   gets made. One photograph develops from sketch
   to full colour as the chapters advance.
   ============================================ */
.craft {
  position: relative;
  height: 420vh;
  background: var(--deep);
  color: var(--cream);
}
.craft__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 6vw;
}
.craft__media {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 76vh;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  margin: 0;
}
.craft__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: filter 900ms cubic-bezier(0.4, 0, 0.2, 1), transform 900ms cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(1) contrast(1.18) brightness(1.04);
  transform: scale(1.04);
}
.craft__media.s1 img { filter: grayscale(0.8) sepia(0.38) contrast(1.08) brightness(1.02); }
.craft__media.s2 img { filter: grayscale(0.35) sepia(0.12) saturate(0.85); transform: scale(1.02); }
.craft__media.s3 img { filter: saturate(1.12) contrast(1.02); transform: scale(1); }
.craft__plate {
  position: absolute;
  left: 1.1rem; bottom: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.85);
  background: rgba(14,59,74,0.55);
  backdrop-filter: blur(6px);
  padding: 0.45rem 0.8rem;
  border-radius: 3px;
}
.craft__text { position: relative; }
.craft__kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244,167,64,0.9);
  margin-bottom: 2rem;
  display: inline-flex; align-items: center; gap: 0.65rem;
}
.craft__kicker::before { content: ''; width: 26px; height: 1px; background: currentColor; }
.craft__step {
  position: relative;
  padding: 1.1rem 0 1.1rem 2.4rem;
  opacity: 0.22;
  transition: opacity 500ms;
}
.craft__step.on { opacity: 1; }
.craft__step__no {
  position: absolute;
  left: 0; top: 1.18rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--amber);
}
.craft__step h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 0.4rem 0;
}
.craft__step h3 em { font-style: italic; color: var(--amber); }
.craft__step p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(251,246,236,0.6);
  margin: 0;
  max-width: 26rem;
}
.craft__rail {
  position: absolute;
  left: 0.45rem; top: 0; bottom: 0;
  width: 1px;
  background: rgba(251,246,236,0.12);
}
.craft__rail i {
  position: absolute;
  left: 0; top: 0;
  width: 1px;
  height: 0%;
  background: var(--amber);
  transition: height 200ms linear;
}
@media (max-width: 880px) {
  .craft { height: 380vh; }
  .craft__sticky { grid-template-columns: 1fr; align-content: center; gap: 1.5rem; padding-top: 3vh; }
  .craft__media { aspect-ratio: 5/4; max-height: 42vh; }
  .craft__step { padding: 0.7rem 0 0.7rem 2.2rem; }
  .craft__step p { font-size: 12.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .craft { height: auto; }
  .craft__sticky { position: static; height: auto; padding: 4rem 6vw; }
  .craft__media img { filter: none; transform: none; }
  .craft__step { opacity: 1; }
}

/* ============================================
   DOODLE SYSTEM — hand-drawn accents that draw
   themselves in as you scroll
   ============================================ */
.dd path, .dd ellipse, .dd circle, .dd line, .dd polyline {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--dd-delay, 0ms);
}
.dd.in-view path, .dd.in-view ellipse, .dd.in-view circle, .dd.in-view line, .dd.in-view polyline {
  stroke-dashoffset: 0;
}
@media (prefers-reduced-motion: reduce) {
  .dd path, .dd ellipse, .dd circle, .dd line, .dd polyline { stroke-dashoffset: 0 !important; }
}

/* Scribble ellipse around a word (hero "curious") */
.scribble-wrap { position: relative; display: inline-block; }
.scribble-wrap .dd {
  position: absolute;
  inset: -18% -9%;
  width: 118%; height: 136%;
  pointer-events: none;
  overflow: visible;
}

/* Chapter marker */
.chapter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.85rem;
  display: inline-flex; align-items: center; gap: 0.65rem;
}
.chapter b {
  color: var(--coral);
  font-weight: 600;
}

/* ============================================
   THE METHOD — sketchbook chapter, funny + doodled
   ============================================ */
.method {
  background: var(--warm);
  border-top: 1px solid rgba(14,59,74,0.08);
  border-bottom: 1px solid rgba(14,59,74,0.08);
  position: relative;
  overflow: hidden;
}
.method__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) 6vw;
}
.method__cards {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
}
.m-card {
  position: relative;
  background: var(--cream);
  border-radius: 6px;
  padding: 1.75rem 1.6rem 1.9rem;
  box-shadow: 0 1px 2px rgba(14,59,74,0.05), 0 14px 34px -14px rgba(14,59,74,0.16);
  grid-column: span 2;
}
.m-card:nth-child(1) { transform: rotate(-1.1deg); }
.m-card:nth-child(2) { transform: rotate(0.8deg); margin-top: 1.4rem; }
.m-card:nth-child(3) { transform: rotate(-0.6deg); }
.m-card:nth-child(4) { transform: rotate(0.9deg); grid-column: 2 / span 2; margin-top: -0.5rem; }
.m-card:nth-child(5) { transform: rotate(-1deg); grid-column: 4 / span 2; margin-top: 0.9rem; }
@media (max-width: 880px) {
  .method__cards { grid-template-columns: 1fr; }
  .m-card, .m-card:nth-child(4), .m-card:nth-child(5) { grid-column: auto; margin-top: 0; }
}
.m-card__no {
  position: absolute;
  top: -16px; left: 1.2rem;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 38px;
  color: var(--coral);
  line-height: 1;
  text-shadow: 0 2px 0 var(--cream);
}
.m-card__doodle {
  height: 86px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.m-card__doodle svg { height: 100%; width: auto; max-width: 100%; overflow: visible; }
.m-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 0 0.5rem 0;
}
.m-card h3 em { font-style: italic; color: var(--coral); }
.m-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--stone);
  margin: 0;
}
.m-card p s { text-decoration-color: var(--coral); text-decoration-thickness: 1.5px; }
.method__punch {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.method__punch p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 22px);
  color: var(--deep);
  margin: 0 0 1.25rem;
}

/* ============================================
   STORY PASS — accordion gallery, mood selector,
   drag affordances
   ============================================ */

/* --- Trip ideas: expanding accordion gallery --- */
.acc {
  display: flex;
  gap: 10px;
  height: clamp(420px, 60vh, 580px);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.acc__item {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  isolation: isolate;
  transition: flex 700ms cubic-bezier(0.32, 0.72, 0.24, 1);
  text-decoration: none;
  color: var(--cream);
}
.acc__item.on { flex: 4.6; }
.acc__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.92);
  transition: filter 700ms, transform 900ms cubic-bezier(0.2,0.8,0.2,1);
  transform: scale(1.06);
}
.acc__item.on .acc__img { filter: saturate(1.05) brightness(1); transform: scale(1); }
.acc__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,59,74,0.25) 0%, rgba(14,59,74,0.05) 40%, rgba(14,59,74,0.85) 100%);
}
/* collapsed: vertical label */
.acc__spine {
  position: absolute;
  left: 50%; bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 2;
  writing-mode: vertical-rl;
  rotate: 180deg;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: var(--cream);
  opacity: 1;
  transition: opacity 350ms;
}
.acc__item.on .acc__spine { opacity: 0; }
.acc__num {
  position: absolute;
  top: 1.1rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(251,246,236,0.75);
  transition: all 350ms;
}
.acc__item.on .acc__num { left: 1.4rem; transform: none; }
/* expanded body */
.acc__body {
  position: absolute;
  left: 1.6rem; right: 1.6rem; bottom: 1.5rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 450ms 150ms, transform 450ms 150ms;
  pointer-events: none;
}
.acc__item.on .acc__body { opacity: 1; transform: none; pointer-events: auto; }
.acc__cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.acc__title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.acc__dek {
  margin-top: 0.5rem;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(251,246,236,0.78);
  max-width: 30rem;
}
.acc__meta {
  margin-top: 0.85rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(251,246,236,0.22);
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.acc__meta b { font-size: 13px; letter-spacing: 0; }
.acc__meta .go { color: var(--amber); letter-spacing: 0.2em; text-transform: uppercase; font-size: 9px; }
@media (max-width: 880px) {
  .acc { flex-direction: column; height: auto; gap: 8px; }
  .acc__item { flex: none; height: 64px; transition: height 600ms cubic-bezier(0.32,0.72,0.24,1); border-radius: 6px; }
  .acc__item.on { height: 380px; flex: none; }
  .acc__spine {
    writing-mode: horizontal-tb; rotate: none;
    left: 1.1rem; bottom: 50%; transform: translateY(50%);
  }
  .acc__num { left: auto; right: 1.1rem; top: 50%; transform: translateY(-50%); }
  .acc__item.on .acc__num { top: 1rem; right: 1.1rem; transform: none; }
}

/* --- Moods: hover list + sticky preview --- */
.moods {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: stretch;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.moods__list { display: flex; flex-direction: column; }
.mood {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.15rem 0.25rem;
  border-bottom: 1px solid rgba(14,59,74,0.1);
  text-decoration: none;
  cursor: pointer;
}
.mood:first-child { border-top: 1px solid rgba(14,59,74,0.1); }
.mood__no {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--stone);
  width: 2rem;
  flex-shrink: 0;
  transition: color 300ms;
}
.mood__name {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: rgba(14,59,74,0.34);
  transition: color 350ms, transform 350ms cubic-bezier(0.2,0.8,0.2,1);
}
.mood__dests {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 350ms, transform 350ms;
  text-align: right;
  flex-shrink: 0;
}
.mood.on .mood__name { color: var(--deep); transform: translateX(10px); }
.mood.on .mood__name em { font-style: italic; color: var(--coral); }
.mood.on .mood__no { color: var(--coral); }
.mood.on .mood__dests { opacity: 1; transform: none; }
.moods__preview {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 460px;
}
.moods__preview img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 600ms cubic-bezier(0.4,0,0.2,1), transform 1100ms cubic-bezier(0.2,0.8,0.2,1);
}
.moods__preview img.on { opacity: 1; transform: scale(1); }
.moods__preview__tag {
  position: absolute;
  left: 1.25rem; bottom: 1.1rem;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(14,59,74,0.55);
  backdrop-filter: blur(6px);
  padding: 0.45rem 0.8rem;
  border-radius: 3px;
}
@media (max-width: 880px) {
  .moods { grid-template-columns: 1fr; }
  .moods__preview { min-height: 300px; order: -1; }
  .mood__name { font-size: 24px; }
  .mood__dests { display: none; }
}

/* --- Drag affordance for poster rail --- */
.posters-row { cursor: grab; }
.posters-row.dragging { cursor: grabbing; scroll-snap-type: none; }
.posters-row.dragging .poster { pointer-events: none; }

/* ============================================
   STORYLINE PASS — journey bridges, signpost,
   bigger logo, handwritten voice
   ============================================ */

/* Bigger logo */
.nav-mag__logo { height: 52px; }
.nav-mag__logo--badge { padding: 5px 14px; border-radius: 10px; }
.foot-mag__logo { height: 42px; }
@media (max-width: 720px) { .nav-mag__logo { height: 40px; } }

/* Handwritten voice */
.hand {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  color: var(--coral-deep);
  letter-spacing: 0.01em;
}

/* Journey bridges — winding dashed route between chapters */
.bridge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0 0.5rem;
  z-index: 4;
  pointer-events: none;
}
.bridge svg { overflow: visible; }
.bridge__note {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 27px);
  color: var(--coral-deep);
  transform: rotate(-2.2deg);
  margin-top: -0.5rem;
  text-align: center;
  max-width: 22rem;
  line-height: 1.2;
}
.bridge--ondark .bridge__note { color: var(--amber); }
.bridge--right .bridge__note { transform: rotate(1.8deg); }

/* Signpost crossroads — moods as direction boards */
.signpost { position: relative; }
.sp__lost {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: clamp(20px, 2.1vw, 26px);
  color: var(--stone);
  transform: rotate(-2deg);
  display: inline-block;
  margin-top: 0.75rem;
}
.sp__field {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: clamp(0.9rem, 2vw, 1.5rem);
  column-gap: clamp(2rem, 6vw, 5rem);
}
/* the pole */
.sp__field::before {
  content: '';
  position: absolute;
  left: 50%; top: -1.5rem; bottom: -1rem;
  width: 0;
  border-left: 2.5px dashed rgba(14,59,74,0.35);
  transform: translateX(-50%);
}
.sp__field::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -1.6rem;
  width: 56px; height: 12px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(14,59,74,0.12);
}
.sp-board {
  position: relative;
  justify-self: end;
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--cream);
  border: 2px solid var(--deep);
  border-radius: 4px;
  padding: 0.9rem 1.4rem 0.95rem 1.4rem;
  text-decoration: none;
  color: var(--deep);
  max-width: 24rem;
  transition: transform 350ms cubic-bezier(0.2,0.8,0.2,1), border-color 300ms, box-shadow 350ms;
  box-shadow: 3px 4px 0 rgba(14,59,74,0.12);
  z-index: 1;
}
.sp-board:nth-child(odd) {
  justify-self: start;
}
.sp-board:nth-child(1) { transform: rotate(-2deg); }
.sp-board:nth-child(2) { transform: rotate(1.6deg); }
.sp-board:nth-child(3) { transform: rotate(1.2deg); }
.sp-board:nth-child(4) { transform: rotate(-1.8deg); }
.sp-board:nth-child(5) { transform: rotate(-1.2deg); }
.sp-board:nth-child(6) { transform: rotate(2deg); }
.sp-board:hover {
  transform: rotate(0deg) scale(1.04);
  border-color: var(--coral);
  box-shadow: 5px 6px 0 rgba(192,93,57,0.25);
  z-index: 2;
}
.sp-board__name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.sp-board__name em { font-style: italic; color: var(--coral); }
.sp-board__dests {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
.sp-board__km {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 16px;
  color: var(--stone);
  transform: rotate(-1deg);
  margin-bottom: 1px;
}
@media (max-width: 760px) {
  .sp__field { grid-template-columns: 1fr; }
  .sp__field::before { left: 12px; transform: none; }
  .sp__field::after { display: none; }
  .sp-board, .sp-board:nth-child(odd) {
    justify-self: start;
    margin-left: 2rem;
  }
}

/* ============================================
   DESK + SKETCHPAD PASS
   ============================================ */

/* Video hero stack */
.cover__video {
  position: absolute;
  top: 50%; left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}

/* Scattered postcards desk */
.postcards-desk {
  position: relative;
  height: 780px;
  margin-top: 2.5rem;
}
.postcards-desk .postcard {
  position: absolute;
  width: min(345px, 42vw);
  transition: transform 380ms cubic-bezier(0.2,0.8,0.2,1), box-shadow 380ms, z-index 0s;
  box-shadow: 0 2px 4px rgba(14,59,74,0.08), 0 18px 40px -14px rgba(14,59,74,0.22);
  background: #fff;
}
.postcards-desk .postcard:nth-child(1) { top: 12px;  left: 3%;  transform: rotate(-4deg);   z-index: 3; }
.postcards-desk .postcard:nth-child(2) { top: 132px; left: 31%; transform: rotate(2.5deg);  z-index: 2; }
.postcards-desk .postcard:nth-child(3) { top: 8px;   left: 62%; transform: rotate(-1.5deg); z-index: 4; }
.postcards-desk .postcard:nth-child(4) { top: 360px; left: 10%; transform: rotate(3deg);    z-index: 5; }
.postcards-desk .postcard:nth-child(5) { top: 396px; left: 41%; transform: rotate(-2.5deg); z-index: 6; }
.postcards-desk .postcard:nth-child(6) { top: 330px; left: 69%; transform: rotate(1.8deg);  z-index: 1; }
.postcards-desk .postcard:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 30;
  box-shadow: 0 6px 14px rgba(14,59,74,0.12), 0 34px 70px -16px rgba(14,59,74,0.32);
}
.postcards__note {
  position: absolute;
  top: -28px; right: 4%;
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 22px;
  color: var(--stone);
  transform: rotate(2deg);
  z-index: 8;
}
@media (max-width: 900px) {
  .postcards-desk { height: auto; display: flex; flex-direction: column; gap: 1.75rem; align-items: center; }
  .postcards-desk .postcard { position: static; width: min(380px, 88vw); }
  .postcards-desk .postcard:nth-child(odd)  { transform: rotate(-1.5deg); }
  .postcards-desk .postcard:nth-child(even) { transform: rotate(1.5deg); }
  .postcards__note { position: static; align-self: flex-end; margin-bottom: -0.6rem; }
}

/* Sketchpad form */
.sketchpad {
  position: relative;
  max-width: 620px;
  margin: 2.5rem auto 0;
  background:
    repeating-linear-gradient(transparent 0, transparent 41px, rgba(14,59,74,0.09) 41px, rgba(14,59,74,0.09) 42px),
    #fff;
  border: 2px solid var(--deep);
  border-radius: 8px;
  padding: 3.4rem 2.4rem 2.2rem;
  text-align: left;
  box-shadow: 5px 7px 0 rgba(14,59,74,0.12);
  transform: rotate(-0.6deg);
}
.sketchpad__rings {
  position: absolute;
  top: -13px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 26px;
}
.sketchpad__rings i {
  width: 13px; height: 24px;
  border: 2.5px solid var(--deep);
  border-radius: 7px;
  background: var(--warm);
  display: block;
}
.sketchpad__head {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 26px;
  color: var(--stone);
  transform: rotate(-1deg);
  margin-bottom: 1.1rem;
}
.sketchpad__line {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 42px;
  color: var(--deep);
  margin: 0;
}
.sketchpad input {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--coral-deep);
  background: transparent;
  border: 0;
  border-bottom: 2px dashed rgba(192,93,57,0.55);
  outline: 0;
  padding: 0 6px 1px;
  width: clamp(130px, 22vw, 230px);
  transition: border-color 250ms;
}
.sketchpad input:focus { border-bottom-color: var(--coral); border-bottom-style: solid; }
.sketchpad input::placeholder { color: rgba(192,93,57,0.4); }
.sketchpad button {
  margin-top: 1.6rem;
  background: var(--coral);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 0.95rem 1.6rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms, transform 220ms;
}
.sketchpad button:hover { background: var(--coral-deep); transform: translateY(-2px); }
.sketchpad__ps {
  display: block;
  margin-top: 1rem;
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 18px;
  color: var(--stone);
  transform: rotate(-1deg);
}
@media (max-width: 560px) {
  .sketchpad { padding: 3rem 1.4rem 1.8rem; }
  .sketchpad input { width: 100%; margin: 2px 0; }
  .sketchpad__line { line-height: 40px; }
}

/* Native hero video — zero chrome */
.cover__vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (prefers-reduced-motion: reduce) { .cover__vid { display: none; } }

/* ============================================
   LETTER v2 — byline avatar + wide single column
   ============================================ */
.letter__inner {
  display: block;
  max-width: 760px;
}
.letter__portrait { display: none; }
.letter__byline {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 2.25rem;
}
.letter__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(14,59,74,0.12), 0 10px 28px -10px rgba(14,59,74,0.25);
  flex-shrink: 0;
}
.letter__byline-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--deep);
  line-height: 1.2;
}
.letter__byline-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 3px;
}
.letter__body p { max-width: none; }

/* ============================================
   TABS PASS — year stickers, skeleton lists,
   margin notes, desk-live
   ============================================ */

/* Poster year sticker + done note */
.poster__year {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 19px;
  color: var(--deep);
  background: rgba(244,167,64,0.95);
  padding: 2px 12px 4px;
  border-radius: 3px;
  transform: rotate(-2deg);
  margin-bottom: 0.6rem;
  box-shadow: 0 2px 8px rgba(14,59,74,0.25);
}
.poster__doneNote {
  position: absolute;
  top: 3.1rem; left: 1.25rem;
  z-index: 2;
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 15px;
  color: rgba(251,246,236,0.92);
  transform: rotate(-3deg);
}

/* Accordion skeleton — wake / the day / don't rush */
.acc__skel {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.acc__skel li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(251,246,236,0.85);
}
.acc__skel i {
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: var(--amber);
  flex-shrink: 0;
  min-width: 4.6rem;
}

/* Postcard year stamps grow with text */
.postcard__stamp {
  width: auto;
  min-width: 64px;
  height: auto;
  padding: 6px 9px;
  font-size: 8px;
  line-height: 1.35;
  max-width: 120px;
}

/* Method margin note */
.m-note {
  position: absolute;
  top: -30px; right: 8px;
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 16px;
  color: var(--stone);
  transform: rotate(3deg);
  white-space: nowrap;
}

/* Cover annotation near the search */
.cover__annot {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 19px;
  color: rgba(251,246,236,0.85);
  transform: rotate(-1.6deg);
  margin: 0.35rem 0 -0.4rem 0.5rem;
}

/* Accordion: hide body instantly when slat collapses (no squeezed text mid-transition) */
.acc__item:not(.on) .acc__body { transition: opacity 160ms 0ms, transform 160ms 0ms; }

/* ============================================
   MOBILE NAV — hamburger + full-screen menu
   ============================================ */
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 300ms, opacity 300ms;
}
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (max-width: 880px) {
  .nav-burger { display: flex; }
  .nav-mag__cta { display: none; }
}

.mnav {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: var(--deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 8vw 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms;
}
.mnav.open { opacity: 1; pointer-events: auto; }
body.menu-open { overflow: hidden; }
body.menu-open .nav-mag { color: var(--cream) !important; background: transparent !important; border-bottom-color: transparent !important; }
.mnav__link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(251,246,236,0.1);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 400ms, transform 400ms;
  transition-delay: var(--i, 0ms);
}
.mnav.open .mnav__link { opacity: 1; transform: none; }
.mnav__tab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--amber);
  min-width: 3.4rem;
}
.mnav__name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(26px, 7vw, 34px);
  color: var(--cream);
  letter-spacing: -0.01em;
}
.mnav__cta {
  margin-top: 2rem;
  align-self: flex-start;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.mnav__note {
  margin-top: 1.25rem;
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 19px;
  color: rgba(251,246,236,0.6);
  transform: rotate(-1.5deg);
}

/* WhatsApp pill in nav (desktop) */
.nav-wa {
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.nav-wa svg { flex-shrink: 0; }

/* ============================================
   SERVICES STRIP + FAQ
   ============================================ */
.svc {
  background: var(--deep);
  color: var(--cream);
  padding: clamp(2.25rem, 4vw, 3rem) 6vw;
}
.svc__inner { max-width: 1180px; margin: 0 auto; }
.svc__head { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.svc__title { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(19px, 2vw, 24px); }
.svc__title em { font-style: italic; color: var(--amber); }
.svc__hand { font-family: 'Caveat', cursive; font-weight: 600; font-size: 18px; color: rgba(251,246,236,0.55); transform: rotate(-1.4deg); }
.svc__list { display: flex; flex-wrap: wrap; gap: 0.6rem 0.75rem; }
.svc__item {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(251,246,236,0.85); border: 1px solid rgba(251,246,236,0.25); border-radius: 99px;
  padding: 0.55rem 1rem; display: inline-flex; align-items: center; gap: 0.5rem;
}
.svc__item b { color: var(--amber); font-weight: 600; }

.faq { max-width: 760px; margin: 0 auto; padding: clamp(70px, 9vw, 110px) 6vw 0; }
.faq__hand { font-family: 'Caveat', cursive; font-weight: 600; font-size: clamp(18px, 2vw, 22px); color: var(--stone); display: inline-block; transform: rotate(-1.5deg); margin-top: 0.5rem; }
.faq details {
  border-bottom: 1px solid rgba(14,59,74,0.12);
}
.faq details:first-of-type { border-top: 1px solid rgba(14,59,74,0.12); margin-top: 2rem; }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem;
  padding: 1.3rem 0.25rem;
  font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(17px, 1.9vw, 21px);
  color: var(--deep); transition: color 200ms;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--coral-deep); }
.faq summary::after {
  content: '+';
  font-family: 'Fraunces', serif; font-size: 24px; color: var(--coral);
  transition: transform 250ms; flex-shrink: 0; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__a {
  padding: 0 0.25rem 1.4rem;
  font-size: 14.5px; line-height: 1.65; color: rgba(14,59,74,0.75);
  max-width: 60ch;
}
.faq__a .hand { font-size: 16px; display: inline-block; transform: rotate(-1deg); }

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  right: 1.4rem; bottom: 1.4rem;
  z-index: 80;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(37,211,102,0.6), 0 2px 8px rgba(14,59,74,0.2);
  transition: transform 250ms cubic-bezier(0.2,0.8,0.2,1);
}
.wa-float:hover { transform: scale(1.08) rotate(6deg); }
@media print { .wa-float { display: none; } }
