/* ============================================================
   WanderMe — Design System
   Sunset coral × deep ocean × near-black × warm sand.
   ============================================================ */

:root {
  --coral: #ff5a36;
  --coral-hot: #ff7a50;
  --coral-deep: #e8431f;
  --ocean: #0e6f6e;
  --ocean-deep: #0a3a3f;
  --ink: #101314;
  --ink-soft: #1b2022;
  --sand: #faf5ee;
  --sand-dim: #f1e9dd;
  --amber: #ffb347;
  --white: #fffdf9;
  --txt: #23282a;
  --txt-dim: #5d6669;
  --txt-on-dark: #f4efe7;
  --txt-on-dark-dim: rgba(244, 239, 231, 0.72);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-accent: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-lg: 0 24px 60px -18px rgba(16, 19, 20, 0.35);
  --shadow-md: 0 12px 32px -12px rgba(16, 19, 20, 0.25);
  --radius: 18px;
  --radius-sm: 12px;
  --nav-h: 72px;
  --pad-x: clamp(20px, 5vw, 72px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--txt);
  background: var(--sand);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
::selection { background: var(--coral); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: 0.01em;
  color: inherit;
}
.h-hero { font-size: clamp(3rem, 9.5vw, 7.5rem); line-height: 0.9; }
.h-xl { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.h-lg { font-size: clamp(1.9rem, 4.2vw, 3.2rem); }
.h-md { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.accent-script {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
/* Anton is ultra-condensed all-caps; Fraunces italic has a lower x-height and
   descenders, so it needs to be sized up to match the caps' visual height and
   nudged down a hair to sit level on the same baseline. */
h1 .accent-script, h2 .accent-script, h3 .accent-script,
.h-hero .accent-script, .h-xl .accent-script, .h-lg .accent-script, .h-md .accent-script {
  font-size: 0.98em;
  line-height: 0.9;          /* match the headings so the script line isn't taller */
  display: inline-block;
  vertical-align: baseline;
  transform: translateY(-0.04em);  /* nudge the low-sitting lowercase italic up to optically align */
}
/* Hero is the largest size, so the lowercase script word needs a bigger lift to sit level. */
.h-hero .accent-script { transform: translateY(-0.1em); }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--coral);
}
.kicker::before { content: ""; width: 28px; height: 2px; background: var(--coral); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--txt-dim); max-width: 60ch; }
.on-dark .lead { color: var(--txt-on-dark-dim); }

/* ---------- Sections & layout ---------- */
.section { padding: clamp(72px, 10vw, 140px) var(--pad-x); }
.section-tight { padding: clamp(48px, 7vw, 96px) var(--pad-x); }
.wrap { max-width: 1280px; margin: 0 auto; }
.wrap-narrow { max-width: 880px; margin: 0 auto; }
.on-dark { background: var(--ink); color: var(--txt-on-dark); }
.on-ocean { background: var(--ocean-deep); color: var(--txt-on-dark); }
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head > * + * { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, background 0.25s ease, color 0.25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(-1px) scale(0.99); }
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 10px 28px -10px rgba(255, 90, 54, 0.6); }
.btn-primary:hover { background: var(--coral-deep); box-shadow: 0 16px 36px -10px rgba(255, 90, 54, 0.7); }
.btn-ghost { border: 2px solid currentColor; color: inherit; padding: 14px 30px; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-light { background: var(--sand); color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn-ocean { background: var(--ocean); color: #fff; }
.btn-ocean:hover { background: var(--ocean-deep); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn .arr { transition: transform 0.3s var(--ease-out); display: inline-block; }
.btn:hover .arr { transform: translateX(5px); }

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 var(--pad-x);
  color: #fff;
  transition: background 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(16, 19, 20, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.5);
}
.nav-inner { width: 100%; max-width: 1380px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { font-family: var(--font-display); font-size: 1.65rem; text-transform: uppercase; letter-spacing: 0.03em; line-height: 1; display: inline-flex; align-items: center; gap: 10px; }
.logo span { color: var(--coral); margin-left: -10px; }
.logo-mark { width: 34px; height: auto; flex-shrink: 0; overflow: visible; transition: transform 0.4s var(--ease-spring); }
.logo:hover .logo-mark { transform: translateY(-2px); }
/* The W's final stroke + arrow swing to a steeper angle on hover,
   pivoting from the valley joint so the W stays connected. */
.logo-fly { transform-origin: 49px 48px; transform-box: view-box; transition: transform 0.45s var(--ease-spring); }
.logo:hover .logo-fly, .logo:focus-visible .logo-fly { transform: rotate(-12deg); }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 36px); }
.nav-links a:not(.btn) {
  font-weight: 600; font-size: 0.92rem; position: relative; padding: 6px 0; opacity: 0.92;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--coral); transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:not(.btn):hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; flex-direction: column; gap: 6px; padding: 10px; z-index: 110; }
.nav-toggle span { width: 26px; height: 2.5px; background: currentColor; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }

/* ---------- Locale switcher (language + currency) ---------- */
.locale-switch { position: relative; }
.locale-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: inherit; font-weight: 600; font-size: 0.88rem; color: inherit;
  border: 1.5px solid rgba(255, 255, 255, 0.24); border-radius: 999px;
  padding: 7px 14px; line-height: 1; white-space: nowrap;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.locale-btn:hover { border-color: var(--coral); }
.locale-btn .chev { font-size: 0.62rem; opacity: 0.7; transition: transform 0.25s ease; }
.locale-switch.open .locale-btn .chev { transform: rotate(180deg); }
.locale-menu {
  position: absolute; top: calc(100% + 12px); right: 0; z-index: 200;
  min-width: 240px; background: var(--ink); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 16px;
  box-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.6);
  padding: 16px; opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.locale-switch.open .locale-menu { opacity: 1; transform: none; pointer-events: auto; }
.locale-menu h6 { font-family: var(--font-body); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--txt-on-dark-dim); margin: 4px 2px 10px; }
.lm-group + .lm-group { margin-top: 14px; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 14px; }
.locale-opts { display: flex; flex-wrap: wrap; gap: 6px; }
.locale-opt {
  font: inherit; font-size: 0.84rem; color: #fff; background: rgba(255, 255, 255, 0.06);
  border: 1px solid transparent; border-radius: 999px; padding: 6px 12px; cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.locale-opt:hover { background: rgba(255, 255, 255, 0.14); }
.locale-opt[aria-pressed="true"] { background: var(--coral); border-color: var(--coral); color: #fff; }
.locale-opt.soon { opacity: 0.38; cursor: not-allowed; }
.locale-opt.soon:hover { background: rgba(255, 255, 255, 0.06); opacity: 0.55; }

/* Floating tooltip (attached to <body> so nothing can clip it or stack over it). */
.wm-tip {
  position: fixed; z-index: 4000; background: var(--coral); color: #fff;
  font-family: var(--font-body); font-size: 0.74rem; font-weight: 600; line-height: 1.3;
  letter-spacing: 0; text-transform: none; text-align: center;
  padding: 7px 11px; border-radius: 9px; max-width: 220px;
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, 0.55); pointer-events: none;
  opacity: 0; visibility: hidden; transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.wm-tip.show { opacity: 1; visibility: visible; transform: none; }
@media (max-width: 880px) {
  .locale-menu {
    position: static; opacity: 1; transform: none; pointer-events: auto;
    min-width: 0; background: transparent; border: none; box-shadow: none;
    padding: 0; margin-top: 16px; display: none; text-align: center;
  }
  .locale-switch.open .locale-menu { display: block; }
  .locale-menu h6 { font-size: 0.8rem; }
  .locale-opts { justify-content: center; }
  .locale-opt { font-size: 1rem; }
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  /* backdrop-filter turns the header into the containing block for the fixed
     menu, which collapses the full-screen overlay to the header's height (so
     the dark background only covers a thin strip). Drop the blur on mobile so
     the menu's inset:0 resolves against the viewport and covers the page. */
  .site-nav.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-links {
    position: fixed; inset: 0; width: 100vw; height: 100vh; height: 100dvh;
    background: var(--ink); z-index: 105;
    flex-direction: column; justify-content: center; gap: 30px;
    font-size: 1.3rem;
    opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a:not(.btn) { font-size: 1.5rem; font-family: var(--font-display); text-transform: uppercase; }
  body.nav-open { overflow: hidden; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: -12% 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media.kenburns img { animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.12) translateY(-2%); }
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(13, 15, 16, 0.92) 0%, rgba(13, 15, 16, 0.35) 45%, rgba(13, 15, 16, 0.25) 100%);
}
.hero-content { width: 100%; max-width: 1280px; margin: 0 auto; padding: calc(var(--nav-h) + 48px) var(--pad-x) clamp(64px, 9vh, 110px); }
.hero-sub { font-size: clamp(1.05rem, 1.8vw, 1.35rem); max-width: 46ch; margin: 24px 0 36px; color: var(--txt-on-dark-dim); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-short { min-height: 72svh; }
.scroll-hint {
  position: absolute; bottom: 26px; right: var(--pad-x);
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  writing-mode: vertical-rl; color: rgba(255, 255, 255, 0.65);
  display: flex; align-items: center; gap: 12px;
}
.scroll-hint::after { content: ""; width: 1px; height: 48px; background: currentColor; animation: drip 1.8s ease-in-out infinite; }
@keyframes drip { 0%, 100% { transform: scaleY(0.3); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* Sustainability trail (Home): self-drawing path + traveling guide dot */
.trail-track { position: relative; }
.trail-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
#trailGhost {
  stroke: rgba(255, 255, 255, 0.22); stroke-width: 2px;
  vector-effect: non-scaling-stroke; stroke-linecap: round;
  stroke-dasharray: 0.6 6;
}
#trailPath {
  stroke: #7ddfa8; stroke-width: 3.5px;
  vector-effect: non-scaling-stroke; stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(125, 223, 168, 0.55));
}
.trail-guide {
  position: absolute; left: 50%; top: 0; z-index: 3;
  width: 20px; height: 20px; margin: -10px;
  border-radius: 50%; background: var(--coral);
  border: 3px solid var(--sand);
  box-shadow: 0 0 0 6px rgba(255, 90, 54, 0.3);
}
.trail-guide::after {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid rgba(255, 90, 54, 0.5);
  animation: guidePulse 1.8s ease-out infinite;
}
@keyframes guidePulse {
  from { transform: scale(0.6); opacity: 1; }
  to { transform: scale(1.5); opacity: 0; }
}
.trail-stops { position: relative; z-index: 2; display: flex; flex-direction: column; gap: clamp(64px, 14vh, 140px); padding: 48px 0; }
.trail-stop {
  width: min(460px, 100%);
  background: rgba(10, 20, 22, 0.82); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  opacity: 0.4; transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-out), border-color 0.5s ease, box-shadow 0.5s ease;
}
.trail-stop.lit {
  opacity: 1; transform: none;
  border-color: rgba(125, 223, 168, 0.55);
  box-shadow: 0 18px 44px -20px rgba(0, 0, 0, 0.6);
}
.trail-stop:nth-child(even) { margin-left: auto; }
.trail-num { font-family: var(--font-display); font-size: 1.6rem; color: #7ddfa8; line-height: 1; margin-bottom: 10px; }
.trail-stop h3 { margin-bottom: 8px; }
.trail-stop p { color: var(--txt-on-dark-dim); font-size: 0.97rem; }
@media (prefers-reduced-motion: reduce) {
  .trail-stop { opacity: 1; transform: none; }
  .trail-guide { display: none; }
  .trail-guide::after { animation: none; }
}

/* Animated headline lines */
/* Headroom so tall caps/descenders aren't clipped by the reveal mask;
   the negative margin cancels it so line spacing stays tight. */
.line-reveal { display: block; overflow: hidden; padding: 0.14em 0; margin: -0.14em 0; }
.line-reveal > span { display: block; transform: translateY(115%); transition: transform 0.9s var(--ease-out); }
.lines-in .line-reveal > span { transform: translateY(0); }
.lines-in .line-reveal:nth-child(2) > span { transition-delay: 0.12s; }
.lines-in .line-reveal:nth-child(3) > span { transition-delay: 0.24s; }
.fade-up-late { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease 0.45s, transform 0.8s var(--ease-out) 0.45s; }
.lines-in ~ .fade-up-late, .lines-in .fade-up-late, .hero-content.lines-in .fade-up-late { opacity: 1; transform: none; }

/* ---------- Scroll reveals ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.85s ease, transform 0.85s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-44px); transition: opacity 0.85s ease, transform 0.85s var(--ease-out); }
.reveal-right { opacity: 0; transform: translateX(44px); transition: opacity 0.85s ease, transform 0.85s var(--ease-out); }
.reveal-left.in, .reveal-right.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.93); transition: opacity 0.85s ease, transform 0.85s var(--ease-out); }
.reveal-scale.in { opacity: 1; transform: none; }

/* ---------- Trip cards ---------- */
.trip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(18px, 2.5vw, 30px); }
.trip-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--ink); color: #fff;
  aspect-ratio: 3 / 4; display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer; isolation: isolate;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s ease;
  text-align: left; width: 100%;
}
.trip-card:hover, .trip-card:focus-visible { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.trip-card:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.trip-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform 0.8s var(--ease-out);
}
.trip-card:hover img { transform: scale(1.08); }
.trip-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(10, 12, 13, 0.92) 0%, rgba(10, 12, 13, 0.28) 55%, rgba(10, 12, 13, 0.12) 100%);
  transition: background 0.4s ease;
}
.tc-top { position: absolute; top: 16px; left: 16px; right: 16px; display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.tc-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.badge {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(16, 19, 20, 0.55); backdrop-filter: blur(6px); color: #fff;
}
.badge.hot { background: var(--coral); }
.badge.teal { background: var(--ocean); }
.tc-rating { font-size: 0.8rem; font-weight: 700; background: rgba(16,19,20,0.55); backdrop-filter: blur(6px); padding: 5px 10px; border-radius: 999px; color: var(--amber); white-space: nowrap; }
.tc-body { padding: 20px; position: relative; }
.tc-meta { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 6px; }
.tc-name { font-size: clamp(1.25rem, 1.8vw, 1.6rem); margin-bottom: 8px; }
.tc-price { font-size: 0.95rem; color: var(--txt-on-dark-dim); }
.tc-price strong { color: #fff; font-size: 1.15rem; }
.tc-more {
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s ease, margin 0.4s ease;
  font-size: 0.9rem; color: rgba(255,255,255,0.85);
}
.trip-card:hover .tc-more, .trip-card:focus-visible .tc-more { max-height: 120px; opacity: 1; margin-top: 10px; }
.tc-fit { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.fit-chip { font-size: 0.68rem; font-weight: 700; padding: 4px 9px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Horizontal scroller ---------- */
.hscroll-outer { position: relative; }
.hscroll {
  display: flex; gap: clamp(16px, 2vw, 26px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px var(--pad-x) 28px;
  scrollbar-width: none; cursor: grab;
}
.hscroll::-webkit-scrollbar { display: none; }
.hscroll.dragging { cursor: grabbing; scroll-snap-type: none; }
.hscroll > * { flex: 0 0 clamp(270px, 30vw, 380px); scroll-snap-align: start; }
/* Let the rail be grabbed and dragged without the browser ghost-dragging cards/images */
.hscroll, .hscroll a, .hscroll img { -webkit-user-drag: none; user-select: none; }
.hscroll-nav { display: flex; gap: 10px; }
.hs-btn {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid currentColor; color: inherit;
  display: grid; place-items: center; font-size: 1.2rem;
  transition: background 0.25s ease, transform 0.3s var(--ease-spring);
}
.hs-btn:hover { background: var(--coral); border-color: var(--coral); color: #fff; transform: scale(1.08); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; display: flex; user-select: none; }
.marquee-track { display: flex; gap: 18px; flex-shrink: 0; padding-right: 18px; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee.rev .marquee-track { animation-direction: reverse; }
@keyframes marquee { to { transform: translateX(-100%); } }
.marquee-img {
  width: clamp(200px, 23vw, 320px); aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-sm); flex-shrink: 0;
  transition: transform 0.45s var(--ease-spring), filter 0.4s ease;
}
.marquee-img:hover { transform: scale(1.05) rotate(-1.2deg); filter: brightness(1.08); }

/* ---------- Stats / counters ---------- */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: clamp(24px, 4vw, 56px); text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 4.4rem); line-height: 1; color: var(--coral); }
.stat-label { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 10px; color: var(--txt-on-dark-dim); }

/* ---------- Persona cards ---------- */
.persona-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: clamp(16px, 2vw, 26px); }
.persona-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 5; display: flex; align-items: flex-end;
  color: #fff; isolation: isolate;
  transition: transform 0.5s var(--ease-spring);
}
.persona-card:hover { transform: translateY(-10px) rotate(-0.6deg); }
.persona-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.9s var(--ease-out); }
.persona-card:hover img { transform: scale(1.09); }
.persona-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(10,12,13,0.9), rgba(10,12,13,0.05) 60%); }
.persona-body { padding: clamp(20px, 3vw, 34px); width: 100%; }
.persona-body h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.persona-body p { margin: 10px 0 16px; color: rgba(255,255,255,0.85); max-width: 34ch; }
.persona-go {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.9rem;
  color: var(--amber); text-transform: uppercase; letter-spacing: 0.1em;
}
.persona-go .arr { transition: transform 0.3s var(--ease-out); }
.persona-card:hover .persona-go .arr { transform: translateX(6px); }

/* ---------- Wander Verified ---------- */
.badge.verified { background: var(--amber); color: #16130c; }
.verified-callout {
  background: rgba(255, 179, 71, 0.13);
  border: 1.5px solid rgba(255, 179, 71, 0.55);
  border-radius: var(--radius-sm);
  padding: 18px 22px; margin-top: 20px;
}
.verified-callout .verified-head {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: #9a6b13; margin-bottom: 8px;
}
.verified-callout .quote-text { margin: 0; }
.verified-callout .verified-by { font-size: 0.8rem; font-weight: 700; color: var(--txt-dim); margin-top: 10px; }

/* ---------- Consent checkbox ---------- */
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: var(--txt-dim); font-weight: 400; cursor: pointer; }
.consent input { width: 18px; height: 18px; accent-color: var(--coral); margin-top: 2px; flex-shrink: 0; }
.consent a { text-decoration: underline; text-underline-offset: 2px; font-weight: 700; }
.consent input:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

/* ---------- Sustainability ribbon (Trips page) ---------- */
.sus-ribbon {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--ocean-deep), var(--ocean));
  color: var(--txt-on-dark); border-radius: var(--radius);
  padding: 18px 24px; margin-bottom: 28px;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}
.sus-ribbon:hover { transform: translateY(-3px); box-shadow: 0 14px 32px -14px rgba(10, 58, 63, 0.6); }
.sus-ribbon strong { color: #7ddfa8; }
.sus-ribbon-mark {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12); color: #7ddfa8;
  display: grid; place-items: center; font-size: 1.1rem;
  animation: ribbonTick 4s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}
/* Snappy 90-degree tick each second, with a tiny overshoot, then a hold. */
@keyframes ribbonTick {
  0%, 16%  { transform: rotate(0deg); }
  25%, 41% { transform: rotate(90deg); }
  50%, 66% { transform: rotate(180deg); }
  75%, 91% { transform: rotate(270deg); }
  100%     { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) { .sus-ribbon-mark { animation: none; } }
.sus-ribbon > span:nth-child(2) { flex: 1; min-width: 220px; font-size: 0.95rem; }
.sus-ribbon-link { font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: #7ddfa8; white-space: nowrap; }
.sus-ribbon .arr { display: inline-block; transition: transform 0.3s var(--ease-out); }
.sus-ribbon:hover .arr { transform: translateX(5px); }

/* ---------- Filters (Trips page) ---------- */
.filter-bar { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.search-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.search-input {
  flex: 1; min-width: 240px;
  padding: 16px 22px; border-radius: 999px; border: 2px solid var(--sand-dim);
  background: #fff; font-size: 1rem; transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.search-input:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255, 90, 54, 0.15); }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.filter-group-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--txt-dim); margin-right: 6px; min-width: 86px; }
.chip {
  padding: 9px 18px; border-radius: 999px; border: 2px solid var(--sand-dim);
  background: #fff; font-weight: 600; font-size: 0.86rem; color: var(--txt);
  transition: all 0.25s var(--ease-out);
}
.chip:hover { border-color: var(--coral); color: var(--coral-deep); transform: translateY(-2px); }
.chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.results-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.result-count { font-weight: 700; }
.result-count .accent-script { color: var(--coral); font-size: 1.2em; }
.clear-filters { font-weight: 700; color: var(--coral-deep); text-decoration: underline; text-underline-offset: 3px; }
.clear-filters:hover { color: var(--coral); }
.empty-state { text-align: center; padding: 90px 20px; }
.empty-state .h-md { margin: 14px 0 10px; }
.trip-grid .trip-card { animation: cardIn 0.55s var(--ease-out) both; }
@keyframes cardIn { from { opacity: 0; transform: translateY(28px) scale(0.97); } to { opacity: 1; transform: none; } }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 12, 13, 0.75); backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--sand); border-radius: var(--radius); width: min(880px, 100%);
  max-height: 90svh; overflow-y: auto; position: relative;
  transform: translateY(40px) scale(0.97); transition: transform 0.4s var(--ease-out);
}
.modal-overlay.open .modal { transform: none; }
.modal-hero { position: relative; aspect-ratio: 21 / 9; min-height: 220px; }
.modal-hero img { width: 100%; height: 100%; object-fit: cover; }
.modal-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,12,13,0.75), transparent 60%); }
.modal-hero-text { position: absolute; bottom: 20px; left: 28px; right: 28px; color: #fff; z-index: 2; }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(16,19,20,0.6); color: #fff; font-size: 1.3rem;
  backdrop-filter: blur(6px); display: grid; place-items: center;
  transition: background 0.25s ease, transform 0.3s var(--ease-spring);
}
.modal-close:hover { background: var(--coral); transform: rotate(90deg); }
.modal-body { padding: clamp(24px, 4vw, 44px); }
.modal-body h4 { font-family: var(--font-body); font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ocean); margin: 26px 0 10px; }
.modal-highlights li { display: flex; gap: 12px; padding: 7px 0; }
.modal-highlights li::before { content: "→"; color: var(--coral); font-weight: 800; flex-shrink: 0; }
.modal-meta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.meta-pill { background: #fff; border: 1.5px solid var(--sand-dim); padding: 8px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; }
.operator-credit { font-size: 0.82rem; color: var(--txt-dim); display: flex; align-items: center; gap: 8px; margin-top: 22px; }
.operator-credit::before { content: "✓"; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--ocean); color: #fff; font-size: 0.7rem; flex-shrink: 0; }
.modal-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; align-items: center; }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-weight: 700; font-size: 0.9rem; }
.field .hint { font-size: 0.8rem; color: var(--txt-dim); font-weight: 400; }
.input, .select, .textarea {
  padding: 15px 18px; border-radius: var(--radius-sm);
  border: 2px solid var(--sand-dim); background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease; width: 100%;
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,90,54,0.14); }
.field.error .input, .field.error .textarea, .field.error .select { border-color: #d23b2a; }
.field-error { color: #d23b2a; font-size: 0.82rem; font-weight: 600; display: none; }
.field.error .field-error { display: block; }
.textarea { min-height: 130px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-grid .span2 { grid-column: span 2; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-grid .span2 { grid-column: span 1; } }
.radio-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }
.radio-card input { position: absolute; opacity: 0; }
.radio-card span {
  display: block; text-align: center; padding: 16px 12px; border-radius: var(--radius-sm);
  border: 2px solid var(--sand-dim); background: #fff; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: all 0.25s var(--ease-out);
}
.radio-card input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-2px); }
.radio-card input:focus-visible + span { outline: 3px solid var(--amber); outline-offset: 2px; }
.radio-card span:hover { border-color: var(--coral); }
.form-success { text-align: center; padding: clamp(40px, 7vw, 80px) 24px; display: none; }
.form-success.show { display: block; animation: cardIn 0.6s var(--ease-out) both; }
.success-burst {
  width: 86px; height: 86px; margin: 0 auto 24px; border-radius: 50%;
  background: var(--coral); color: #fff; font-size: 2.4rem;
  display: grid; place-items: center;
  animation: burst 0.7s var(--ease-spring) both;
}
@keyframes burst { from { transform: scale(0) rotate(-30deg); } to { transform: scale(1) rotate(0); } }

/* ---------- Accordion (itinerary / FAQ) ---------- */
.acc-item { border-bottom: 1px solid rgba(125, 125, 125, 0.22); }
.acc-btn {
  width: 100%; display: flex; align-items: center; gap: 18px;
  padding: 22px 4px; text-align: left; color: inherit;
  transition: color 0.25s ease;
}
.acc-btn:hover { color: var(--coral-deep); }
.on-dark .acc-btn:hover, .on-ocean .acc-btn:hover { color: var(--coral-hot); }
.acc-day {
  font-family: var(--font-display); font-size: 1.05rem; color: var(--coral);
  min-width: 64px; flex-shrink: 0;
}
.acc-title { font-weight: 700; font-size: 1.05rem; flex: 1; }
.acc-meals { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ocean); white-space: nowrap; }
.on-dark .acc-meals { color: var(--amber); }
.acc-icon { font-size: 1.3rem; transition: transform 0.35s var(--ease-out); flex-shrink: 0; }
.acc-item.open .acc-icon { transform: rotate(45deg); color: var(--coral); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease-out); }
.acc-panel-inner { padding: 0 4px 24px 82px; color: var(--txt-dim); max-width: 70ch; }
.on-dark .acc-panel-inner { color: var(--txt-on-dark-dim); }
@media (max-width: 640px) { .acc-panel-inner { padding-left: 4px; } .acc-meals { display: none; } }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(18px, 2.5vw, 28px); }
.quote-card {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius); padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s ease;
}
.quote-card:hover { transform: translateY(-6px); border-color: rgba(255, 179, 71, 0.5); }
.light .quote-card { background: #fff; border-color: var(--sand-dim); box-shadow: var(--shadow-md); }
.quote-stars { color: var(--amber); letter-spacing: 3px; font-size: 1.05rem; }
.quote-text { font-family: var(--font-accent); font-style: italic; font-size: 1.08rem; line-height: 1.55; }
.quote-who { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--coral); margin-top: auto; }

/* Placeholder review cards — shown where real reviews aren't in yet */
.quote-card.is-placeholder {
  background: transparent; border: 1.5px dashed currentColor; box-shadow: none;
  opacity: 0.5; justify-content: center; gap: 8px; text-align: left;
}
.quote-card.is-placeholder:hover { transform: none; border-color: currentColor; }
.light .quote-card.is-placeholder { background: transparent; box-shadow: none; }
.quote-card.is-placeholder .ph-title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.03em; font-size: 1.1rem; }
.quote-card.is-placeholder .ph-sub { font-size: 0.92rem; line-height: 1.5; }
.quote-card.is-placeholder a { color: inherit; text-decoration: underline; }

/* ---------- Sticky CTA bar (trip detail) ---------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(16, 19, 20, 0.95); backdrop-filter: blur(14px);
  color: #fff; padding: 14px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(110%); transition: transform 0.45s var(--ease-out);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sticky-cta.show { transform: none; }
.sticky-cta .price-line { font-size: 0.9rem; color: var(--txt-on-dark-dim); }
.sticky-cta .price-line strong { color: #fff; font-size: 1.2rem; }
@media (max-width: 560px) { .sticky-cta .price-line span.hide-sm { display: none; } }

/* ---------- Snapshot stats (trip detail) ---------- */
.snapshot-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2px; border-radius: var(--radius); overflow: hidden; }
.snap-cell { background: var(--ink-soft); padding: 26px 20px; text-align: center; transition: background 0.3s ease; }
.snap-cell:hover { background: #242b2e; }
.snap-icon { color: var(--coral); display: block; margin-bottom: 10px; line-height: 0; }
.snap-icon svg { width: 26px; height: 26px; }
.snap-val { font-weight: 800; font-size: 1.02rem; overflow-wrap: break-word; }
.snap-key { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt-on-dark-dim); margin-top: 4px; }

/* ---------- Dates table ---------- */
.dates-table { width: 100%; border-collapse: collapse; }
.dates-table th { text-align: left; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt-dim); padding: 12px 14px; border-bottom: 2px solid var(--sand-dim); }
.dates-table td { padding: 18px 14px; border-bottom: 1px solid var(--sand-dim); vertical-align: middle; }
.dates-table tr { transition: background 0.2s ease; }
.dates-table tbody tr:hover { background: #fff; }
.dates-table tr.selected { background: #fff; box-shadow: inset 4px 0 0 var(--coral); }
.was-price { text-decoration: line-through; color: var(--txt-dim); font-size: 0.88rem; margin-right: 8px; }
.now-price { font-weight: 800; font-size: 1.08rem; }
.save-tag { display: inline-block; background: rgba(14, 111, 110, 0.12); color: var(--ocean); font-size: 0.74rem; font-weight: 800; padding: 3px 10px; border-radius: 999px; margin-left: 8px; }
.dep-status { font-size: 0.76rem; font-weight: 700; color: var(--ocean); text-transform: uppercase; letter-spacing: 0.06em; }
.dep-status::before { content: "●"; margin-right: 6px; color: #2fae6e; }
@media (max-width: 720px) {
  .dates-table thead { display: none; }
  .dates-table tr { display: block; padding: 14px 0; }
  .dates-table td { display: block; border: none; padding: 4px 14px; }
}

/* ---------- Pinned scroll storytelling ---------- */
.pin-section { position: relative; }
.pin-sticky { position: sticky; top: 0; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.pin-steps { position: relative; z-index: 2; }
.pin-step { min-height: 90svh; display: flex; align-items: center; }
.pin-step-card {
  background: rgba(16, 19, 20, 0.82); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px); max-width: 560px; color: var(--txt-on-dark);
}
.pin-step-num { font-family: var(--font-display); font-size: 3rem; color: var(--coral); line-height: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--txt-on-dark); padding: clamp(60px, 8vw, 100px) var(--pad-x) 36px; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: clamp(32px, 4vw, 60px); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--txt-on-dark-dim); margin-bottom: 18px; font-weight: 800; }
.footer-grid ul li { margin-bottom: 12px; }
.footer-grid a { opacity: 0.85; transition: opacity 0.2s ease, color 0.2s ease; }
.footer-grid a:hover { opacity: 1; color: var(--coral-hot); }
.footer-blurb { color: var(--txt-on-dark-dim); margin-top: 14px; max-width: 32ch; font-size: 0.95rem; }
.newsletter { display: flex; gap: 0; margin-top: 16px; border-radius: 999px; overflow: hidden; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); }
.newsletter input { flex: 1; background: transparent; border: none; padding: 14px 20px; color: #fff; min-width: 0; }
.newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter input:focus { outline: none; }
.newsletter button { background: var(--coral); color: #fff; font-weight: 700; padding: 0 22px; transition: background 0.25s ease; }
.newsletter button:hover { background: var(--coral-deep); }
.newsletter-msg { font-size: 0.85rem; color: var(--amber); margin-top: 10px; min-height: 1.2em; }
.footer-bottom { max-width: 1280px; margin: 56px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; color: var(--txt-on-dark-dim); }
.fora-line { flex-basis: 100%; font-size: 0.74rem; opacity: 0.75; order: 3; }
.socials { display: flex; gap: 14px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: grid; place-items: center; font-size: 0.82rem; font-weight: 700; transition: all 0.3s var(--ease-spring); }
.socials a:hover { background: var(--coral); border-color: var(--coral); transform: translateY(-3px); }

/* Footer social links (in the brand column, higher up + more visible) */
.footer-social { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px 9px 9px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,0.22);
  font-weight: 700; font-size: 0.9rem; opacity: 1;
  transition: background 0.3s var(--ease-spring), border-color 0.3s ease, transform 0.3s var(--ease-spring);
}
.footer-social a:hover { background: var(--coral); border-color: var(--coral); color: #fff; transform: translateY(-2px); }
.footer-social .fs-ic {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 0.72rem; letter-spacing: 0;
  background: rgba(255,255,255,0.12);
}
.footer-social a:hover .fs-ic { background: rgba(255,255,255,0.22); }

/* ---------- Wander Score ---------- */
.badge.wander { background: linear-gradient(135deg, var(--ocean), #2fae6e); }
.score-row { display: grid; grid-template-columns: minmax(86px, 110px) 1fr 40px; gap: 12px; align-items: center; padding: 7px 0; }
.score-label { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.score-bar { height: 8px; border-radius: 999px; background: rgba(125, 125, 125, 0.22); overflow: hidden; display: block; }
.score-fill { height: 100%; width: 0; border-radius: 999px; display: block; background: linear-gradient(90deg, var(--ocean), #2fae6e); transition: width 1.2s var(--ease-out); }
.score-val { font-weight: 800; font-size: 0.92rem; text-align: right; font-variant-numeric: tabular-nums; }
.wander-ring { position: relative; width: 150px; height: 150px; flex-shrink: 0; }
.wander-ring svg { width: 100%; height: 100%; }
.ring-track { stroke: rgba(125, 125, 125, 0.22); }
.ring-fg { stroke: #2fae6e; transition: stroke-dashoffset 1.5s var(--ease-out); }
.wander-ring-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 2px; }
.wander-ring-num { font-family: var(--font-display); font-size: 2.3rem; line-height: 1; }
.wander-ring-sub { font-size: 0.85rem; font-weight: 700; opacity: 0.6; align-self: center; margin-top: 12px; }
.wander-panel { display: flex; gap: clamp(20px, 3vw, 40px); align-items: center; flex-wrap: wrap; min-width: 0; }
.wander-panel .score-rows { flex: 1; min-width: min(260px, 100%); }
.wander-panel .wander-ring { margin-inline: auto; }
.wander-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #2fae6e; }
@media (prefers-reduced-motion: reduce) {
  .score-fill { transition: none; }
  .ring-fg { transition: none; }
}

/* ---------- Misc bands ---------- */
.band-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.band-split > * { min-width: 0; }
@media (max-width: 820px) { .band-split { grid-template-columns: 1fr; } }
.img-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; transition: transform 1s var(--ease-out); }
.img-frame:hover img { transform: scale(1.05); }
.img-frame.wide img { aspect-ratio: 16/10; }
.tick-list li { display: flex; gap: 14px; padding: 10px 0; align-items: flex-start; }
/* Inline elements inside a flex li split into separate columns; keep content as one unit */
.tick-list li > span { flex: 1; min-width: 0; display: block; }
.tick-list li::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--ocean); color: #fff; font-size: 0.78rem; flex-shrink: 0; margin-top: 2px; }
.cross-list li::before { content: "✕"; background: #c0c5c2; }
.logo-row { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 52px); align-items: center; justify-content: center; opacity: 0.75; }
.logo-pill { font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.5rem); text-transform: uppercase; letter-spacing: 0.06em; color: var(--txt-on-dark-dim); border: 1.5px solid rgba(255,255,255,0.2); padding: 10px 24px; border-radius: 999px; transition: all 0.3s ease; }
.logo-pill:hover { color: #fff; border-color: var(--coral); }
.big-link {
  display: block; font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(2rem, 6vw, 4.5rem); line-height: 1.06; padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: color 0.3s ease, padding-left 0.4s var(--ease-out);
}
.big-link:hover { color: var(--coral-hot); padding-left: 24px; }
.eyebrow-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* ---------- Utility ---------- */
.txt-coral { color: var(--coral); }
.txt-amber { color: var(--amber); }
.txt-ocean { color: var(--ocean); }
.center { text-align: center; }
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; } .mt-4 { margin-top: 64px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--coral); color: #fff; padding: 12px 20px; z-index: 999; border-radius: 0 0 12px 0; font-weight: 700; }
.skip-link:focus { left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .fade-up-late { opacity: 1 !important; transform: none !important; }
  .line-reveal > span { transform: none !important; }
  .marquee-track { animation: none !important; }
  .hero-media.kenburns img { animation: none !important; }
}
