/* ---------------------------------------------------------------
   PHASE 1 BASELINE — token layer transcribed from the approved
   export (src/styles.css). Values are not reinterpreted.
   Only rules that cannot be expressed inline live here:
   resets, media queries, focus-visible, reduced motion.
   --------------------------------------------------------------- */
:root {
  --bg: oklch(1 0 0);
  --fg: oklch(0.22 0.018 250);
  --muted-fg: oklch(0.55 0.018 250);
  --accent: oklch(0.66 0.14 45);
  --accent-fg: oklch(0.99 0 0);
  --border: oklch(0.93 0.005 250);
  --secondary: oklch(0.974 0.005 90);
  --surface: oklch(0.985 0.004 90);
  --surface-warm: oklch(0.975 0.012 80);
  --ink: oklch(0.18 0.02 250);

  --shadow-soft: 0 1px 2px rgb(16 24 40 / 0.04), 0 4px 16px rgb(16 24 40 / 0.04);
  --shadow-lift: 0 2px 6px rgb(16 24 40 / 0.05), 0 16px 40px rgb(16 24 40 / 0.08);
  --shadow-pill: 0 1px 2px rgb(16 24 40 / 0.06), 0 8px 24px rgb(16 24 40 / 0.08);

  /* Resolved radius values — see VISUAL_REGRESSION_REPORT UM-01 */
  --r-sm: 0.75rem;   /* rounded-sm  */
  --r-md: 1rem;      /* rounded-md  */
  --r-lg: 1.5rem;    /* rounded-lg  */
  --r-xl: 2rem;      /* rounded-xl  */
  --r-2xl: 2.5rem;   /* rounded-2xl */
  --r-3xl: 1.5rem;   /* rounded-3xl — Tailwind default, not overridden */

  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-serif: "Instrument Serif", "Times New Roman", serif;

  --b40: color-mix(in srgb, var(--border) 40%, transparent);
  --b60: color-mix(in srgb, var(--border) 60%, transparent);
  --b70: color-mix(in srgb, var(--border) 70%, transparent);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }
button { font: inherit; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* ---------- container ---------- */
.ct { margin-inline: auto; max-width: 80rem; padding-inline: 16px; }
@media (min-width: 640px) { .ct { padding-inline: 24px; } }
@media (min-width: 1024px) { .ct { padding-inline: 32px; } }

/* ---------- section rhythm ---------- */
.sec { padding-block: 56px; }
@media (min-width: 1024px) { .sec { padding-block: 80px; } }

/* ---------- type scale (as rendered on the approved homepage) ---------- */
.t-h1 { font-family: var(--font-display); font-weight: 600; font-size: 36px; line-height: 1.02; letter-spacing: -0.025em; margin: 0; }
@media (min-width: 640px) { .t-h1 { font-size: 48px; } }
@media (min-width: 1024px) { .t-h1 { font-size: 60px; } }
@media (min-width: 1280px) { .t-h1 { font-size: 72px; } }

.t-h2 { font-family: var(--font-display); font-weight: 600; font-size: 30px; line-height: 1.05; letter-spacing: -0.025em; margin: 0; }
@media (min-width: 640px) { .t-h2 { font-size: 36px; } }
@media (min-width: 1024px) { .t-h2 { font-size: 48px; } }

.t-h2-sm { font-family: var(--font-display); font-weight: 600; font-size: 24px; line-height: 1.1; letter-spacing: -0.025em; margin: 0; }
@media (min-width: 640px) { .t-h2-sm { font-size: 30px; } }
@media (min-width: 1024px) { .t-h2-sm { font-size: 36px; } }

.t-h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; line-height: 1.25; letter-spacing: -0.015em; margin: 0; }
@media (min-width: 1024px) { .t-h3 { font-size: 24px; line-height: 1.2; } }

.t-feature { font-family: var(--font-display); font-weight: 600; font-size: 30px; line-height: 1.1; letter-spacing: -0.02em; margin: 0; }
@media (min-width: 1024px) { .t-feature { font-size: 36px; line-height: 1.08; } }

.t-lead { font-size: 16px; line-height: 1.625; margin: 0; }
@media (min-width: 1024px) { .t-lead { font-size: 18px; } }

.t-meta { font-size: 14px; line-height: 1.55; margin: 0; }
.t-tag { font-size: 12px; font-weight: 500; line-height: 1.4; }
/* Section eyebrows on the homepage: tracking-wider (0.05em) */
.t-eyebrow { font-size: 12px; font-weight: 500; line-height: 1.4; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); }
/* Card eyebrows use the text-eyebrow token: 0.08em */
.t-eyebrow-tok { font-size: 12px; font-weight: 500; line-height: 1.4; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }

/* ---------- grids ---------- */
.g { display: grid; gap: 16px; }
@media (min-width: 1024px) { .g { gap: 20px; } }
@media (min-width: 640px) { .g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.g-tips { gap: 24px; }
@media (min-width: 1024px) { .g-tips { gap: 20px; } }
@media (min-width: 1024px) {
  .g-dest { grid-template-rows: repeat(2, minmax(0, 1fr)); grid-auto-rows: 1fr; }
  .dest-featured { grid-column: span 2 / span 2; grid-row: span 2 / span 2; }
}

/* ---------- section heading ---------- */
.sh { margin-bottom: 40px; }
.sh-split { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 1024px) {
  .sh-split { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.sh-body { max-width: 42rem; }

/* ---------- header ---------- */
.hdr { position: sticky; top: 0; z-index: 50; width: 100%; }
.hdr-pad { padding-top: 12px; }
@media (min-width: 640px) { .hdr-pad { padding-top: 16px; } }
.hdr-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-radius: 9999px; padding: 8px 8px 8px 20px;
  background: rgb(255 255 255 / 0.7);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid var(--b40);
  transition: all 300ms;
}
@media (min-width: 640px) { .hdr-bar { padding-left: 24px; padding-right: 10px; } }
.hdr-bar.is-scrolled {
  background: rgb(255 255 255 / 0.85);
  -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
  box-shadow: var(--shadow-pill);
  border-color: var(--b60);
}
.hdr-logo-a { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.025em; }
.hdr-logo-b { font-size: 18px; }
@media (min-width: 640px) { .hdr-logo-a, .hdr-logo-b { font-size: 20px; } }
.hdr-nav { display: none; }
@media (min-width: 1024px) { .hdr-nav { display: flex; align-items: center; gap: 4px; } }
/* Specificity raised: a later .btn-dark rule also sets display, which would
   otherwise keep the CTA visible below 640px. See VISUAL_REGRESSION_REPORT TC-01. */
.hdr-bar .hdr-cta { display: none; }
@media (min-width: 640px) { .hdr-bar .hdr-cta { display: inline-flex; } }
.hdr-burger { display: grid; }
@media (min-width: 1024px) { .hdr-burger { display: none; } }
.hdr-menu { display: block; }
@media (min-width: 1024px) { .hdr-menu { display: none; } }
.nav-link { padding: 8px 16px; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--fg) 75%, transparent); border-radius: 9999px; transition: color 150ms, background-color 150ms; }
.nav-link:hover { color: var(--fg); background: var(--secondary); }

/* ---------- hero ---------- */
.hero { padding-top: 16px; padding-bottom: 48px; }
@media (min-width: 640px) { .hero { padding-top: 24px; } }
@media (min-width: 1024px) { .hero { padding-top: 32px; padding-bottom: 80px; } }
.hero-grid { display: grid; gap: 32px; align-items: center; }
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 40px; }
  .hero-copy { grid-column: span 6 / span 6; }
  .hero-media { grid-column: span 6 / span 6; }
}
@media (min-width: 1280px) {
  .hero-copy { grid-column: span 5 / span 5; }
  .hero-media { grid-column: span 7 / span 7; }
}
.hero-frame { position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lift); }
@media (min-width: 640px) { .hero-frame { aspect-ratio: 16 / 11; } }
@media (min-width: 1024px) { .hero-frame { aspect-ratio: 5 / 6; border-radius: var(--r-2xl); } }
@media (min-width: 1280px) { .hero-frame { aspect-ratio: 16 / 13; } }
.hero-mini { position: absolute; bottom: 16px; left: 16px; right: 16px; }
@media (min-width: 640px) { .hero-mini { bottom: 24px; left: 24px; right: auto; max-width: 280px; } }
.hero-stat { display: none; }
@media (min-width: 1024px) { .hero-stat { display: flex; } }

/* ---------- cards ---------- */
.card-cat {
  position: relative; display: flex; flex-direction: column; justify-content: space-between;
  background: #fff; border-radius: var(--r-3xl); border: 1px solid var(--b70);
  padding: 24px; min-height: 240px; box-shadow: var(--shadow-soft);
  transition: box-shadow 300ms, transform 300ms;
}
@media (min-width: 1024px) { .card-cat { padding: 28px; } }
.card-cat:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.card-cat:hover .card-arrow { color: var(--accent); transform: translate(2px, -2px); }
.card-cat:hover .card-cta { color: var(--accent); }
.card-arrow { color: var(--muted-fg); transition: all 200ms; }
.card-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; color: var(--fg); transition: color 150ms; }

.card-dest { position: relative; display: block; overflow: hidden; border-radius: var(--r-3xl); background: #fff; box-shadow: var(--shadow-soft); transition: box-shadow 300ms; }
.card-dest:hover { box-shadow: var(--shadow-lift); }
.card-dest .zoom { transition: transform 1200ms ease-out; }
.card-dest:hover .zoom { transform: scale(1.05); }
.dest-frame { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--r-3xl); }
@media (min-width: 1024px) { .dest-featured .dest-frame { aspect-ratio: auto; height: 100%; } }
.dest-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; }
/* Approved component hard-caps the description at two lines (Cards.tsx line 155). */
.dest-body p { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
@media (min-width: 1024px) { .dest-body { padding: 24px; } }

.card-exp { display: flex; flex-direction: column; background: #fff; border-radius: var(--r-3xl); overflow: hidden; border: 1px solid var(--b70); box-shadow: var(--shadow-soft); transition: box-shadow 300ms, transform 300ms; }
.card-exp:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.card-exp.is-featured { border-color: color-mix(in srgb, var(--accent) 40%, transparent); box-shadow: var(--shadow-lift); transform: none; }
.card-exp .zoom { transition: transform 1200ms ease-out; }
.card-exp:hover .zoom { transform: scale(1.05); }
.card-exp:hover .card-cta { color: var(--accent); }

.card-it { position: relative; display: flex; flex-direction: column; padding: 28px; border-radius: var(--r-3xl); border: 1px solid var(--b70); background: #fff; box-shadow: var(--shadow-soft); transition: box-shadow 300ms, transform 300ms; }
.card-it:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.card-it:hover .card-cta { color: var(--accent); }
.card-it.is-dark { background: var(--fg); color: #fff; border-color: var(--fg); box-shadow: var(--shadow-lift); }
.card-it.is-dark:hover { transform: none; }

.card-art { display: block; }
.card-art .zoom { transition: transform 1200ms ease-out; }
.card-art:hover .zoom { transform: scale(1.05); }
.card-art:hover .card-art-title { color: var(--accent); }
.card-art-title { font-family: var(--font-display); font-weight: 600; font-size: 18px; line-height: 1.35; letter-spacing: -0.015em; margin: 0; transition: color 150ms; }

.chip-static { font-size: 12px; font-weight: 500; padding: 6px 14px; border-radius: 9999px; border: 1px solid var(--border); background: #fff; color: color-mix(in srgb, var(--fg) 80%, transparent); transition: background-color 150ms, border-color 150ms; }
.chip-static:hover { background: var(--secondary); border-color: color-mix(in srgb, var(--fg) 20%, transparent); }

.btn-dark { display: inline-flex; align-items: center; justify-content: center; gap: 6px; background: var(--fg); color: var(--bg); border-radius: 9999px; font-size: 14px; font-weight: 500; transition: background-color 150ms; }
.btn-dark:hover { background: var(--accent); }
.btn-accent { display: inline-flex; align-items: center; justify-content: center; gap: 6px; background: var(--accent); color: var(--accent-fg); border-radius: 9999px; font-size: 14px; font-weight: 500; transition: background-color 150ms; }
.btn-accent:hover { background: var(--fg); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; gap: 6px; background: #fff; color: var(--fg); border: 1px solid var(--border); border-radius: 9999px; font-size: 14px; font-weight: 500; transition: background-color 150ms; }
.btn-outline:hover { background: var(--secondary); }

/* ---------- CTA panel ---------- */
.cta-sec { padding-block: 64px; }
@media (min-width: 1024px) { .cta-sec { padding-block: 96px; } }
.cta-panel { position: relative; overflow: hidden; border-radius: var(--r-xl); background: var(--surface-warm); border: 1px solid var(--b60); box-shadow: var(--shadow-soft); }
@media (min-width: 1024px) { .cta-panel { border-radius: var(--r-2xl); } }
.cta-grid { display: grid; gap: 32px; align-items: center; padding: 24px; }
@media (min-width: 640px) { .cta-grid { padding: 40px; } }
@media (min-width: 1024px) { .cta-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; padding: 56px; } }
.cta-media { order: 2; position: relative; }
.cta-copy { order: 1; }
@media (min-width: 1024px) { .cta-media { order: 1; } .cta-copy { order: 2; } }
.cta-frame { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--r-3xl); box-shadow: var(--shadow-lift); }
@media (min-width: 640px) { .cta-frame { aspect-ratio: 5 / 4; } }
@media (min-width: 1024px) { .cta-frame { aspect-ratio: 4 / 5; } }
.cta-float { display: none; }
@media (min-width: 640px) { .cta-float { display: block; } }

/* ---------- about ---------- */
.about-sec { padding-bottom: 64px; }
@media (min-width: 1024px) { .about-sec { padding-bottom: 96px; } }
.about-panel { border-radius: var(--r-xl); background: var(--surface); border: 1px solid var(--b60); padding: 32px; text-align: center; }
@media (min-width: 640px) { .about-panel { padding: 48px; } }
@media (min-width: 1024px) { .about-panel { border-radius: var(--r-2xl); padding: 64px; } }

/* ---------- footer ---------- */
.ft { background: var(--surface); border-top: 1px solid var(--border); }
.ft-inner { padding-block: 56px; }
@media (min-width: 1024px) { .ft-inner { padding-block: 80px; } }
.ft-grid { display: grid; gap: 40px; }
@media (min-width: 768px) { .ft-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .ft-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .ft-brand { grid-column: span 3 / span 3; } .ft-cols { grid-column: span 9 / span 9; } }
.ft-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
@media (min-width: 640px) { .ft-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .ft-cols { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.ft-link { font-size: 14px; color: var(--muted-fg); transition: color 150ms; }
.ft-link:hover { color: var(--accent); }
.ft-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; justify-content: space-between; gap: 12px; font-size: 12px; color: var(--muted-fg); }
@media (min-width: 640px) { .ft-bottom { flex-direction: row; } }
.ft-legal { color: var(--muted-fg); }
.ft-legal:hover { color: var(--fg); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


/* =================================================================
   Page-level patterns for the Where to Go vertical.
   Extends the frozen homepage language; adds no new visual direction.
   ================================================================= */

/* breadcrumbs */
.bc { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12px; color: var(--muted-fg); padding-top: 24px; }
@media (min-width: 1024px) { .bc { padding-top: 32px; } }
.bc a { color: var(--muted-fg); transition: color 150ms; }
.bc a:hover { color: var(--accent); }
.bc .sep { color: color-mix(in srgb, var(--muted-fg) 45%, transparent); }
.bc .cur { color: var(--fg); font-weight: 500; }

/* page hero */
.ph { padding-top: 20px; padding-bottom: 48px; }
@media (min-width: 1024px) { .ph { padding-top: 28px; padding-bottom: 72px; } }
.ph-grid { display: grid; gap: 28px; align-items: center; }
@media (min-width: 1024px) { .ph-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 40px; } }
@media (min-width: 1024px) { .ph-copy { grid-column: span 6 / span 6; } .ph-media { grid-column: span 6 / span 6; } }
@media (min-width: 1280px) { .ph-copy { grid-column: span 5 / span 5; } .ph-media { grid-column: span 7 / span 7; } }
.ph-frame { position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lift); }
@media (min-width: 640px) { .ph-frame { aspect-ratio: 16 / 10; } }
@media (min-width: 1024px) { .ph-frame { aspect-ratio: 5 / 4; border-radius: var(--r-2xl); } }

/* generic image fill + overlays */
.fill { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; }
.ov-b { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--ink) 80%, transparent), color-mix(in srgb, var(--ink) 10%, transparent) 50%, transparent); }
.ov-soft { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--ink) 35%, transparent), transparent 55%); }
.tagw { font-size: 12px; font-weight: 500; background: rgb(255 255 255 / 0.95); color: var(--fg); padding: 6px 12px; border-radius: 9999px; box-shadow: var(--shadow-soft); }
.taga { font-size: 12px; font-weight: 500; background: var(--accent); color: var(--accent-fg); padding: 6px 12px; border-radius: 9999px; box-shadow: var(--shadow-soft); }

/* place card — live (interactive) */
.pc { position: relative; display: block; overflow: hidden; border-radius: var(--r-3xl); background: #fff; box-shadow: var(--shadow-soft); transition: box-shadow 300ms; }
a.pc:hover { box-shadow: var(--shadow-lift); }
.pc .zoom { transition: transform 1200ms ease-out; }
a.pc:hover .zoom { transform: scale(1.05); }
.pc-frame { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--r-3xl); }
.pc-frame.wide { aspect-ratio: 4 / 3; }
.pc-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; }
@media (min-width: 1024px) { .pc-body { padding: 24px; } }
.pc-body p { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
.pc-go { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; background: #fff; color: var(--fg); padding: 8px 16px; border-radius: 9999px; }
@media (min-width: 1024px) { .rg-feat { grid-column: span 2 / span 2; grid-row: span 2 / span 2; } .rg-feat .pc-frame { aspect-ratio: auto; height: 100%; } .rg { grid-auto-rows: 1fr; } }
/* Below 1024px .rg-feat does not span rows, so default stretch would pad the
   shorter card in each row with empty bordered surface. Cards size to content. */
@media (max-width: 1023px) { .rg { align-items: start; } }

/* full-width featured route card: no grid hole when the set is not a multiple of the columns */
.pc.feat-wide .pc-frame { aspect-ratio: 4 / 3; }
@media (min-width: 640px) { .pc.feat-wide .pc-frame { aspect-ratio: 16 / 9; } }
@media (min-width: 1024px) { .pc.feat-wide .pc-frame { aspect-ratio: 21 / 8; } }

/* featured preview: overlay layout of .pc, interaction state of .pv */
.pc-preview { background: var(--surface); border: 1px solid var(--b70); box-shadow: none; cursor: default; }
.pc-preview .pc-frame { margin: 12px; border-radius: var(--r-lg); }
@media (min-width: 1024px) { .rg-feat.pc-preview .pc-frame { height: calc(100% - 24px); } }
.pc-preview .pc-frame img { filter: saturate(0.82); }

/* place card — editorial preview (no affordance, per OD-07) */
.pv { position: relative; display: block; overflow: hidden; border-radius: var(--r-3xl); background: var(--surface); border: 1px solid var(--b70); cursor: default; }
.pv-frame { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r-3xl); margin: 12px; }
.pv-frame img { filter: saturate(0.82); }
.pv-body { padding: 4px 20px 22px; }
.pv-body h3 { color: var(--fg); }
.pv-body p { margin-top: 8px; color: var(--muted-fg); }

/* simple bordered card (topics, quick nav, planning) */
.crd { display: flex; flex-direction: column; background: #fff; border-radius: var(--r-3xl); border: 1px solid var(--b70); box-shadow: var(--shadow-soft); padding: 24px; transition: box-shadow 300ms, transform 300ms; }
@media (min-width: 1024px) { .crd { padding: 28px; } }
a.crd:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
a.crd:hover .card-cta { color: var(--accent); }
a.crd:hover .card-arrow { color: var(--accent); transform: translate(2px, -2px); }
.crd-quiet { background: var(--surface); box-shadow: none; }

/* quick nav pills */
.qn { display: flex; flex-wrap: wrap; gap: 8px; }
.qn a { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; background: #fff; border: 1px solid var(--b70); color: var(--fg); padding: 10px 18px; border-radius: 9999px; box-shadow: var(--shadow-soft); transition: background-color 150ms, color 150ms; }
.qn a:hover { background: var(--fg); color: var(--bg); }
.qn span.static { display: inline-flex; align-items: center; font-size: 14px; font-weight: 500; background: var(--secondary); border: 1px solid var(--b60); color: var(--muted-fg); padding: 10px 18px; border-radius: 9999px; }

/* key facts strip */
.facts { display: grid; gap: 12px; }
@media (min-width: 640px) { .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .facts { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; } }
.fact { background: #fff; border: 1px solid var(--b70); border-radius: var(--r-lg); padding: 18px 20px; box-shadow: var(--shadow-soft); }
.fact dt { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); margin: 0; }
.fact dd { margin: 6px 0 0; font-family: var(--font-display); font-weight: 600; font-size: 16px; line-height: 1.35; color: var(--fg); }

/* two-column content + sidebar */
.two { display: grid; gap: 32px; }
@media (min-width: 1024px) { .two { grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; align-items: start; } }
.side { display: block; }
@media (min-width: 1024px) { .side { position: sticky; top: 96px; } }

/* contextual tour recommendation */
.rec { overflow: hidden; border-radius: var(--r-xl); background: var(--surface-warm); border: 1px solid var(--b60); box-shadow: var(--shadow-soft); }
.rec-inline { display: grid; gap: 0; }
@media (min-width: 640px) { .rec-inline { grid-template-columns: 240px minmax(0, 1fr); align-items: stretch; } }
.rec-media { position: relative; aspect-ratio: 16 / 10; }
@media (min-width: 640px) { .rec-media { aspect-ratio: auto; min-height: 100%; } }
.rec-body { padding: 22px; }
@media (min-width: 1024px) { .rec-body { padding: 28px; } }
.rec-lbl { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); }
.rec-t { font-family: var(--font-display); font-weight: 600; font-size: 20px; line-height: 1.3; letter-spacing: -0.015em; margin: 8px 0 0; color: var(--fg); }
.rec-d { margin: 10px 0 0; font-size: 14px; line-height: 1.6; color: var(--muted-fg); }
.rec-body .btn-dark { min-height: 44px; }
/* Sidebar recommendation: card-sized in the sticky column at >=1024px, and
   horizontal (media + body) below that, where it flows in the content column. */
@media (min-width: 1024px) { .rec-side .rec-media { aspect-ratio: 4 / 3; }
  /* touch target */ }
@media (max-width: 639px) { .rec-side .rec-media { aspect-ratio: 16 / 10; } }
@media (min-width: 640px) and (max-width: 1023px) {
  .rec-side { display: grid; grid-template-columns: 240px minmax(0, 1fr); align-items: stretch; }
  .rec-side .rec-media { aspect-ratio: auto; min-height: 100%; }
}

/* nearby / compact list card */
.nb { display: grid; gap: 12px; }
@media (min-width: 640px) { .nb { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .nb { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } }
.nb-item { background: #fff; border: 1px solid var(--b70); border-radius: var(--r-lg); padding: 18px 20px; box-shadow: var(--shadow-soft); }
.nb-item .k { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--fg); }
.nb-item .v { margin-top: 4px; font-size: 13px; line-height: 1.55; color: var(--muted-fg); }
.nb-item .m { margin-top: 10px; font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); }

/* prose */
.prose p { font-size: 16px; line-height: 1.7; color: var(--muted-fg); margin: 0 0 16px; text-wrap: pretty; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 { margin: 28px 0 10px; }
.measure { max-width: 44rem; }

/* section band helper */
.band { background: var(--surface); }
.note { font-size: 12px; color: var(--muted-fg); }


/* =================================================================
   Article shell — shared by editorial guides and route/itinerary pages.
   ================================================================= */
.ahero { padding-top: 12px; }
.ahero-copy { max-width: 46rem; }
.ahero-frame { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r-xl); box-shadow: var(--shadow-lift); margin-top: 28px; }
@media (min-width: 640px) { .ahero-frame { aspect-ratio: 16 / 9; } }
@media (min-width: 1024px) { .ahero-frame { aspect-ratio: 21 / 9; border-radius: var(--r-2xl); margin-top: 36px; } }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span { font-size: 12px; font-weight: 500; padding: 8px 14px; border-radius: 9999px; border: 1px solid var(--b70); background: #fff; color: color-mix(in srgb, var(--fg) 80%, transparent); }

/* article body measure */
.abody { max-width: 46rem; }
.abody h2 { font-family: var(--font-display); font-weight: 600; font-size: 24px; line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 12px; color: var(--fg); }
@media (min-width: 1024px) { .abody h2 { font-size: 30px; } }
.abody h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; line-height: 1.3; letter-spacing: -0.015em; margin: 24px 0 8px; color: var(--fg); }
.abody p { font-size: 16px; line-height: 1.7; color: var(--muted-fg); margin: 0 0 16px; text-wrap: pretty; }
@media (min-width: 1024px) { .abody p { font-size: 17px; } }
.abody p:last-child { margin-bottom: 0; }
.abody ul { margin: 0 0 16px; padding-left: 20px; }
.abody li { font-size: 16px; line-height: 1.7; color: var(--muted-fg); margin-bottom: 6px; }

/* table of contents / quick nav */
.toc { background: var(--surface); border: 1px solid var(--b60); border-radius: var(--r-xl); padding: 22px; }
@media (min-width: 1024px) { .toc { padding: 26px 28px; } }
.toc-t { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); }
.toc ol { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 2px; counter-reset: toc; }
@media (min-width: 640px) { .toc ol { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 24px; } }
.toc li { counter-increment: toc; }
.toc a { display: flex; align-items: baseline; gap: 10px; padding: 9px 0; font-size: 15px; font-weight: 500; color: var(--fg); border-bottom: 1px solid var(--b60); transition: color 150ms; }
.toc a:hover { color: var(--accent); }
.toc a::before { content: counter(toc, decimal-leading-zero); font-size: 12px; font-weight: 600; color: var(--accent); font-variant-numeric: tabular-nums; }

/* alternating feature row */
.arow { display: grid; gap: 20px; align-items: center; }
@media (min-width: 1024px) { .arow { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; } }
.arow-frame { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--r-3xl); box-shadow: var(--shadow-soft); }
@media (min-width: 1024px) { .arow.flip .arow-frame { order: 2; } }
.arow-eye { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); }
.arow h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.25; letter-spacing: -0.02em; margin: 8px 0 0; color: var(--fg); }
@media (min-width: 1024px) { .arow h3 { font-size: 26px; } }
.arow p { font-size: 16px; line-height: 1.65; color: var(--muted-fg); margin: 12px 0 0; text-wrap: pretty; }
.kv { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.kv span { font-size: 12px; font-weight: 500; padding: 7px 13px; border-radius: 9999px; background: var(--secondary); color: color-mix(in srgb, var(--fg) 80%, transparent); }
.kv span.hi { background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--accent); }

/* route stop sequence */
.steps { display: grid; gap: 14px; counter-reset: step; }
.step { counter-increment: step; position: relative; display: grid; gap: 14px; background: #fff; border: 1px solid var(--b70); border-radius: var(--r-xl); padding: 20px; box-shadow: var(--shadow-soft); }
@media (min-width: 640px) { .step { grid-template-columns: 56px minmax(0, 1fr); gap: 18px; align-items: start; padding: 22px 24px; } }
.step-n { display: inline-grid; place-items: center; height: 40px; width: 40px; border-radius: 9999px; background: var(--fg); color: var(--bg); font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.step-n::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; line-height: 1.3; margin: 0; color: var(--fg); }
@media (min-width: 1024px) { .step h3 { font-size: 20px; } }
.step p { font-size: 15px; line-height: 1.65; color: var(--muted-fg); margin: 8px 0 0; }
.step-tag { margin-top: 12px; display: inline-flex; font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); }

/* decide-by-interest chooser */
.chooser { display: grid; gap: 12px; }
@media (min-width: 768px) { .chooser { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .chooser { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } }
.ch { background: #fff; border: 1px solid var(--b70); border-radius: var(--r-lg); padding: 20px; box-shadow: var(--shadow-soft); }
.ch dt { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); margin: 0; }
.ch dd { margin: 8px 0 0; font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.35; color: var(--fg); }
.ch .why { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--muted-fg); }

/* callout */
.callout { background: var(--surface-warm); border: 1px solid var(--b60); border-radius: var(--r-xl); padding: 22px 24px; }
.callout .h { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--fg); margin: 0; }
.callout p { margin: 8px 0 0; font-size: 15px; line-height: 1.65; color: var(--muted-fg); }


/* =================================================================
   Itinerary vertical: day-by-day module + side-by-side comparison.
   ================================================================= */
.day { display: grid; gap: 0; background: #fff; border: 1px solid var(--b70); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-soft); }
@media (min-width: 768px) { .day { grid-template-columns: 280px minmax(0, 1fr); align-items: stretch; } }
@media (min-width: 1024px) { .day { grid-template-columns: 320px minmax(0, 1fr); } }
.day-media { position: relative; aspect-ratio: 16 / 10; }
@media (min-width: 768px) { .day-media { aspect-ratio: auto; min-height: 100%; } }
.day-body { padding: 22px; }
@media (min-width: 1024px) { .day-body { padding: 28px 30px; } }
.day-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent-fg); background: var(--accent); padding: 6px 14px; border-radius: 9999px; }
.day-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.25; letter-spacing: -0.02em; margin: 14px 0 0; color: var(--fg); }
@media (min-width: 1024px) { .day-body h3 { font-size: 26px; } }
.day-body > p { font-size: 15px; line-height: 1.65; color: var(--muted-fg); margin: 10px 0 0; text-wrap: pretty; }
@media (min-width: 1024px) { .day-body > p { font-size: 16px; } }
.day-stops { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.day-stops li { position: relative; padding-left: 18px; font-size: 15px; line-height: 1.55; color: var(--fg); }
.day-stops li::before { content: ""; position: absolute; left: 0; top: 8px; height: 6px; width: 6px; border-radius: 9999px; background: var(--accent); }
.day-note { margin-top: 16px; background: var(--surface); border-radius: var(--r-md); padding: 12px 14px; font-size: 13px; line-height: 1.55; color: var(--muted-fg); }
.day-links { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.day-links a, .day-links span { font-size: 12px; font-weight: 500; padding: 7px 13px; border-radius: 9999px; }
.day-links a { background: var(--fg); color: var(--bg); transition: background-color 150ms; }
.day-links a:hover { background: var(--accent); }
.day-links span { background: var(--secondary); color: var(--muted-fg); }
.days { display: flex; flex-direction: column; gap: 16px; }

/* route line: compact visual overview of a multi-day route */
.routeline { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.routeline .stop { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--b70); border-radius: 9999px; padding: 9px 16px; font-size: 14px; font-weight: 500; color: var(--fg); box-shadow: var(--shadow-soft); }
.routeline .stop .n { font-size: 11px; font-weight: 600; color: var(--accent); font-variant-numeric: tabular-nums; }
.routeline .arrow { color: color-mix(in srgb, var(--muted-fg) 55%, transparent); }

/* side-by-side comparison */
.compare { display: grid; gap: 16px; }
@media (min-width: 768px) { .compare { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.compare-col { background: #fff; border: 1px solid var(--b70); border-radius: var(--r-xl); padding: 24px; box-shadow: var(--shadow-soft); }
.compare-col.hi { background: var(--surface-warm); border-color: var(--b60); }
.compare-col .lbl { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); }
.compare-col h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; line-height: 1.3; margin: 8px 0 0; color: var(--fg); }
.compare-col ul { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.compare-col li { position: relative; padding-left: 18px; font-size: 15px; line-height: 1.55; color: var(--muted-fg); }
.compare-col li::before { content: ""; position: absolute; left: 0; top: 8px; height: 6px; width: 6px; border-radius: 9999px; background: var(--accent); }


/* =================================================================
   Contact form UI. No new visual language — tokens, radii and pills
   as established; only the field chrome is new.
   ================================================================= */
.form-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.wide { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 500; color: var(--fg); }
.field .opt { font-weight: 400; color: var(--muted-fg); }
.field > input, .field > textarea, .field > select {
  width: 100%; box-sizing: border-box; min-height: 48px; padding: 13px 16px;
  font-family: var(--font-display); font-size: 15px; color: var(--fg);
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  transition: border-color 150ms, box-shadow 150ms;
}
.field > textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.field > select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2369727B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.field > input::placeholder, .field > textarea::placeholder { color: color-mix(in srgb, var(--muted-fg) 75%, transparent); }
.field > input:focus, .field > textarea:focus, .field > select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); }
.consent { display: flex; align-items: flex-start; gap: 12px; background: var(--surface); border: 1px solid var(--b60); border-radius: var(--r-md); padding: 14px 16px; }
.consent input { flex-shrink: 0; height: 20px; width: 20px; min-height: 0; margin: 2px 0 0; accent-color: var(--accent); }
.consent span { font-size: 13px; line-height: 1.55; color: var(--muted-fg); }
.form-panel { background: #fff; border: 1px solid var(--b70); border-radius: var(--r-xl); padding: 24px; box-shadow: var(--shadow-soft); }
@media (min-width: 1024px) { .form-panel { padding: 32px; border-radius: var(--r-2xl); } }
/* Below the sidebar breakpoint the panel spans the full container, which would
   stretch single-line inputs past a comfortable width. Cap it at the reading measure. */
@media (max-width: 1023px) { .form-panel { max-width: 46rem; } }
.form-two { display: grid; gap: 32px; align-items: start; }
@media (min-width: 1024px) { .form-two { grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; } }

/* seasonal / progression band */
.season { display: grid; gap: 16px; }
@media (min-width: 640px) { .season { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .season { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.season-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--b70); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-soft); }
.season-media { position: relative; aspect-ratio: 4 / 3; }
.season-body { padding: 20px; }
.season-body .s { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); }
.season-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; line-height: 1.3; margin: 8px 0 0; color: var(--fg); }
.season-body p { font-size: 14px; line-height: 1.6; color: var(--muted-fg); margin: 8px 0 0; }
.season-body ul { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.season-body li { position: relative; padding-left: 16px; font-size: 13px; line-height: 1.5; color: var(--muted-fg); }
.season-body li::before { content: ""; position: absolute; left: 0; top: 7px; height: 5px; width: 5px; border-radius: 9999px; background: var(--accent); }


/* =================================================================
   Curated tour listing (full form of the recommendation component),
   search results, and the legal document archetype.
   ================================================================= */
.tour { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--b70); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-soft); transition: box-shadow 300ms, transform 300ms; }
a.tour:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
a.tour:hover .card-cta { color: var(--accent); }
.tour-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.tour .zoom { transition: transform 1200ms ease-out; }
a.tour:hover .zoom { transform: scale(1.05); }
.tour-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
@media (min-width: 1024px) { .tour-body { padding: 24px 26px; } }
.tour-lbl { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); }
.tour-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; line-height: 1.3; letter-spacing: -0.015em; margin: 8px 0 0; color: var(--fg); }
.tour-body p { font-size: 14px; line-height: 1.6; color: var(--muted-fg); margin: 10px 0 0; flex: 1; }
.tour-meta { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.tour-meta span { font-size: 12px; font-weight: 500; padding: 6px 12px; border-radius: 9999px; background: var(--secondary); color: color-mix(in srgb, var(--fg) 80%, transparent); }

/* search */
.searchbar { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--b70); box-shadow: var(--shadow-soft); border-radius: 9999px; padding: 6px 6px 6px 20px; max-width: 40rem; }
.searchbar input { flex: 1; min-width: 0; background: transparent; font-family: var(--font-display); font-size: 15px; color: var(--fg); border: none; outline: none; padding-block: 13px; }
.res-group { margin-top: 40px; }
.res-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.res-head .t { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); }
.res-head .n { font-size: 13px; color: var(--muted-fg); font-variant-numeric: tabular-nums; }
.res-list { display: flex; flex-direction: column; }
.res { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--b60); }
@media (min-width: 640px) { .res { grid-template-columns: 96px minmax(0, 1fr); gap: 20px; padding: 18px 0; } }
.res-thumb { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--r-md); background: var(--secondary); }
.res-type { font-size: 11px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted-fg); }
.res h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.35; letter-spacing: -0.015em; margin: 4px 0 0; color: var(--fg); transition: color 150ms; }
a.res:hover h3 { color: var(--accent); }
.res p { font-size: 14px; line-height: 1.55; color: var(--muted-fg); margin: 5px 0 0; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }

/* legal document archetype */
.legal { display: grid; gap: 32px; align-items: start; }
@media (min-width: 1024px) { .legal { grid-template-columns: 260px minmax(0, 1fr); gap: 48px; } }
.legal-nav { background: var(--surface); border: 1px solid var(--b60); border-radius: var(--r-xl); padding: 20px 22px; }
@media (min-width: 1024px) { .legal-nav { position: sticky; top: 96px; } }
.legal-nav .t { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); }
.legal-nav ol { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; counter-reset: lg; }
.legal-nav li { counter-increment: lg; }
.legal-nav a { display: flex; gap: 10px; padding: 8px 0; font-size: 14px; color: color-mix(in srgb, var(--fg) 85%, transparent); transition: color 150ms; }
.legal-nav a::before { content: counter(lg, decimal-leading-zero); font-size: 11px; font-weight: 600; color: var(--accent); font-variant-numeric: tabular-nums; padding-top: 2px; }
.legal-nav a:hover { color: var(--accent); }
.legal-body { max-width: 44rem; }
.legal-body h2 { font-family: var(--font-display); font-weight: 600; font-size: 20px; line-height: 1.3; letter-spacing: -0.015em; margin: 36px 0 10px; color: var(--fg); }
.legal-body h2:first-child { margin-top: 0; }
@media (min-width: 1024px) { .legal-body h2 { font-size: 22px; } }
.legal-body p { font-size: 15px; line-height: 1.7; color: var(--muted-fg); margin: 0 0 14px; text-wrap: pretty; }
.legal-body ul { margin: 0 0 14px; padding-left: 20px; }
.legal-body li { font-size: 15px; line-height: 1.7; color: var(--muted-fg); margin-bottom: 6px; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 18px; }
.legal-meta span { font-size: 12px; font-weight: 500; padding: 7px 14px; border-radius: 9999px; background: var(--secondary); color: var(--muted-fg); }
.provisional { background: var(--surface-warm); border: 1px solid var(--b60); border-radius: var(--r-lg); padding: 16px 18px; margin-bottom: 28px; }
.provisional p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--muted-fg); }


/* =================================================================
   .is-preview — a card whose destination does not exist yet.
   Same composition, every navigation affordance removed (OD-07).
   ================================================================= */
.is-preview { cursor: default; }
.is-preview:hover { box-shadow: var(--shadow-soft) !important; transform: none !important; }
.card-dest.is-preview:hover, .pc.is-preview:hover { box-shadow: var(--shadow-soft) !important; }
.crd.is-preview:hover, .card-exp.is-preview:hover, .card-it.is-preview:hover, .tour.is-preview:hover { box-shadow: var(--shadow-soft) !important; transform: none !important; }
.is-preview img { filter: saturate(0.82); }
.is-preview:hover img { transform: none !important; }
.is-preview .card-cta, .is-preview .card-arrow, .is-preview .pc-go { display: none; }
/* card-art preview: quieter title, no hover colour shift */
.card-art.is-preview .card-art-title { color: var(--muted-fg); }
.card-art.is-preview:hover .card-art-title { color: var(--muted-fg); }
/* overlay-image previews keep legible white text on the gradient */
.card-dest.is-preview h3, .pc.is-preview h3 { color: #fff; }
