/* ============================================================
   Suertay — global stylesheet
   Design system: functional editorial
   Last updated: 2026-05-08
   ============================================================ */


/* ---- 1. Design tokens ---- */

:root {
  /* Surfaces */
  --bg: #FBF7F1;              /* warm cream — primary background */
  --bg-elevated: #FFFFFF;     /* cards, elevated surfaces */
  --bg-tinted: #F4EEE3;       /* subtle alternate sections */

  /* Text */
  --text: #1F1A14;            /* primary text — near-black, warm */
  --text-muted: #7A6F62;      /* secondary text */
  --text-soft: #A89F92;       /* tertiary text, captions */

  /* Brand accent — terracotta (the action color) */
  --accent: #C77A50;
  --accent-hover: #B66A40;
  --accent-soft: rgba(199, 122, 80, 0.08);
  --accent-border: rgba(199, 122, 80, 0.25);

  /* Secondary — sage (less aggressive actions, secondary CTAs) */
  --secondary: #6B8E7F;
  --secondary-hover: #5A7D6E;

  /* Highlight — sun yellow (badges, callouts) */
  --highlight: #E8B547;
  --highlight-soft: #FAEFD5;

  /* Status colors */
  --success: #5A8C5A;
  --alert: #C5503D;

  /* Lines & dividers */
  --line: #E9E1D5;
  --line-strong: #D4C9B7;

  /* Typography */
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type scale */
  --text-display: clamp(56px, 12vw, 96px);
  --text-h1: clamp(40px, 6vw, 64px);
  --text-h2: clamp(28px, 4vw, 40px);
  --text-h3: clamp(22px, 3vw, 28px);
  --text-h4: 18px;
  --text-body: 16px;
  --text-small: 14px;
  --text-caption: 13px;

  /* Spacing scale (8px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Layout widths */
  --max-narrow: 720px;        /* long-form prose */
  --max-content: 960px;       /* main content */
  --max-wide: 1200px;         /* full-width sections */

  /* Radii */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08);
}


/* ---- 2. Reset & base ---- */

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent-hover); }


/* ---- 3. Typography ---- */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

h1 { font-size: var(--text-h1); margin-bottom: var(--space-5); }
h2 { font-size: var(--text-h2); margin-bottom: var(--space-4); line-height: 1.15; }
h3 { font-size: var(--text-h3); margin-bottom: var(--space-3); line-height: 1.2; }
h4 { font-size: var(--text-h4); margin-bottom: var(--space-2); font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }

p { margin-bottom: var(--space-4); max-width: var(--max-narrow); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
}


/* ---- 4. Layout primitives ---- */

.container {
  width: 100%;
  max-width: var(--max-content);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container.narrow { max-width: var(--max-narrow); }
.container.wide { max-width: var(--max-wide); }

main { flex: 1; }

section { padding-block: var(--space-8); }
section.compact { padding-block: var(--space-7); }
section.tinted { background: var(--bg-tinted); }


/* ---- 5. Header & nav ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--max-wide);
  margin-inline: auto;
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}
.site-header__brand {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.site-header__brand:hover { color: var(--accent-hover); }

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.site-nav a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}
.site-nav a:hover { color: var(--accent); }

/* ---- Parks dropdown ---- */
.site-nav__dropdown {
  position: relative;
}
.site-nav__dropdown-trigger {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .15s;
}
.site-nav__dropdown-trigger:hover,
.site-nav__dropdown:focus-within .site-nav__dropdown-trigger {
  color: var(--accent);
}
.site-nav__dropdown-caret {
  font-size: 10px;
  line-height: 1;
  transition: transform 0.18s ease;
}
.site-nav__dropdown:hover .site-nav__dropdown-caret,
.site-nav__dropdown:focus-within .site-nav__dropdown-caret {
  transform: rotate(180deg);
}
.site-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: var(--space-2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 100;
}
/* Invisible bridge so the dropdown doesn't close when the cursor crosses the gap */
.site-nav__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.site-nav__dropdown:hover .site-nav__dropdown-menu,
.site-nav__dropdown:focus-within .site-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.site-nav__dropdown-menu a {
  display: block;
  padding: 10px var(--space-3);
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.site-nav__dropdown-menu a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.site-nav__cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: background .15s, transform .1s;
}
.site-nav__cta:hover { background: var(--accent-hover); color: #fff !important; }
.site-nav__cta:active { transform: scale(0.98); }

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}

@media (max-width: 820px) {
  .site-nav { display: none; }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: var(--space-3) var(--space-5) var(--space-5);
  }
  .site-nav.is-open a {
    padding: var(--space-3) 0;
    border-top: 1px solid var(--line);
    text-align: left;
  }
  .site-nav.is-open .site-nav__cta {
    margin-top: var(--space-3);
    text-align: center;
    border-top: none;
  }
  /* Mobile dropdown — show inline as a flat indented list instead of a popover */
  .site-nav.is-open .site-nav__dropdown {
    width: 100%;
    border-top: 1px solid var(--line);
    padding: var(--space-3) 0;
  }
  .site-nav.is-open .site-nav__dropdown-trigger {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0 0 var(--space-2);
  }
  .site-nav.is-open .site-nav__dropdown-caret { display: none; }
  .site-nav.is-open .site-nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: 0;
  }
  .site-nav.is-open .site-nav__dropdown-menu::before { display: none; }
  .site-nav.is-open .site-nav__dropdown-menu a {
    padding: var(--space-2) var(--space-4);
    font-size: 14.5px;
    color: var(--text-muted);
  }
  .mobile-menu-toggle { display: block; }
}


/* ---- 6. Footer ---- */

.site-footer {
  background: var(--bg-tinted);
  border-top: 1px solid var(--line);
  padding: var(--space-7) 0 var(--space-5);
  margin-top: var(--space-9);
}
.site-footer__inner {
  max-width: var(--max-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}
@media (max-width: 720px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
  .site-footer__brand { grid-column: 1 / -1; }
}
.site-footer__brand-name {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.site-footer__tag {
  color: var(--text-muted);
  font-size: var(--text-small);
  max-width: 280px;
}
.site-footer h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--space-3);
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: var(--space-2); }
.site-footer a {
  color: var(--text-muted);
  font-size: var(--text-small);
}
.site-footer a:hover { color: var(--accent); }
.site-footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--text-caption);
  color: var(--text-soft);
}


/* ---- 7. Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, transform .1s, box-shadow .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn--primary:active { transform: scale(0.98); }
.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn--secondary:hover { background: var(--bg-tinted); }

/* Hero context: secondary buttons need to pop against photo backgrounds */
.hero .btn--secondary {
  background: rgba(31, 26, 20, 0.45);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero .btn--secondary:hover {
  background: rgba(31, 26, 20, 0.65);
  border-color: #fff;
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--accent);
  padding-inline: var(--space-3);
}
.btn--ghost:hover { color: var(--accent-hover); }
.btn--lg {
  padding: 16px 28px;
  font-size: 16px;
}
.btn--block { width: 100%; }


/* ---- 8. Hero modules ---- */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2a1f3d;
  background-image: linear-gradient(180deg, #1a1f3a 0%, #4a3266 25%, #c77a50 60%, #f4a261 80%, #fbf7f1 100%);
  z-index: 0;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 26, 20, 0) 0%, rgba(31, 26, 20, 0.35) 40%, rgba(31, 26, 20, 0.92) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-wide);
  margin-inline: auto;
  width: 100%;
  padding: var(--space-8) var(--space-5) var(--space-7);
}
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-3);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.hero h1 {
  color: #fff;
  margin-bottom: var(--space-3);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}
.hero__tagline {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  max-width: 580px;
  margin-bottom: var(--space-5);
  line-height: 1.5;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
}
.hero__cta-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}


/* ---- 9. Editorial sections ---- */

.editorial {
  max-width: var(--max-narrow);
  margin-inline: auto;
}
.editorial p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--space-5);
}
.editorial p.lead {
  font-size: 20px;
  color: var(--text);
  font-weight: 400;
  margin-bottom: var(--space-6);
}
.editorial h2 { margin-top: var(--space-7); }
.editorial h3 { margin-top: var(--space-6); }
.editorial blockquote {
  border-left: 3px solid var(--accent);
  padding: var(--space-2) var(--space-5);
  margin: var(--space-6) 0;
  font-style: italic;
  color: var(--text-muted);
  font-size: 18px;
}


/* ---- 10. Cards ---- */

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.card__media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-tinted);
}
.card__body { padding: var(--space-5); }
.card__title {
  font-family: var(--font-sans);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: var(--space-2);
  letter-spacing: -0.005em;
}
.card__meta {
  display: flex;
  gap: var(--space-3);
  font-size: var(--text-small);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}
.card__excerpt {
  color: var(--text-muted);
  font-size: 15px;
}


/* ---- 10b. Editorial-with-aside (2-column: prose + recommendation tiles) ---- */

.editorial-aside {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-7);
  align-items: start;
}
@media (max-width: 820px) {
  .editorial-aside { grid-template-columns: 1fr; gap: var(--space-6); }
}
.editorial-aside__main { max-width: 580px; }
.editorial-aside__main p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: var(--space-5);
  max-width: none;
}
.editorial-aside__main p.lead {
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--space-5);
}
.editorial-aside__main blockquote {
  border-left: 3px solid var(--accent);
  padding: var(--space-2) var(--space-5);
  margin: var(--space-5) 0 0;
  font-style: italic;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.5;
}
.editorial-aside__side h3 {
  font-size: 22px;
  margin-bottom: var(--space-4);
}
.editorial-aside__side .info-grid {
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
.editorial-aside__side .info-tile { padding: var(--space-4); }
.editorial-aside__side .info-tile h4 { font-size: 16px; margin-bottom: var(--space-1); }
.editorial-aside__side .info-tile p { font-size: 13.5px; line-height: 1.5; }


/* ---- 11. Ticket comparison module ---- */

.tickets {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.tickets__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--line);
}
.tickets__title {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: var(--space-1);
}
.tickets__subtitle {
  font-size: var(--text-small);
  color: var(--text-muted);
}
.tickets__date-picker {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-small);
}
.tickets__date-picker label { color: var(--text-muted); }
.tickets__date-picker input {
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: var(--text-small);
  background: var(--bg);
  color: var(--text);
}
.tickets__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* Party-size picker (adults / children) */
.party-picker {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: center;
  justify-content: flex-start;
  margin-bottom: var(--space-4);
  padding: var(--space-4);
  background: var(--bg-tinted);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.party-picker__group {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.party-picker__label {
  color: var(--text);
  font-weight: 500;
  font-size: var(--text-small);
}
.party-picker__hint {
  color: var(--text-soft);
  font-size: var(--text-caption);
  font-weight: 400;
}
.party-picker__counter {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 2px;
}
.party-picker__btn {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 18px;
  color: var(--accent);
  font-weight: 600;
  line-height: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .12s;
}
.party-picker__btn:hover { background: var(--accent-soft); }
.party-picker__btn:disabled { color: var(--text-soft); cursor: not-allowed; }
.party-picker__btn:disabled:hover { background: none; }
.party-picker__count {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.ticket-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s;
}
.ticket-row:hover { border-color: var(--accent-border); }
@media (max-width: 640px) {
  .ticket-row { grid-template-columns: 1fr; }
}
.ticket-row__info { min-width: 0; }

/* Dual-CTA wrap: primary affiliate button + small "or buy direct" text link below */
.ticket-row__cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
  min-width: 180px;
}
.ticket-row__cta-alt {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
  white-space: nowrap;
  font-weight: 500;
}
.ticket-row__cta-alt:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}
.ticket-row__name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}
.ticket-row__detail {
  font-size: var(--text-small);
  color: var(--text-muted);
}
.ticket-row__price {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.ticket-row__price-suffix {
  font-family: var(--font-sans);
  font-size: var(--text-small);
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 4px;
}
.ticket-row__cta {
  white-space: nowrap;
}
.ticket-row__per-person {
  display: block;
  font-size: var(--text-caption);
  color: var(--text-muted);
  margin-top: 4px;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0;
}
.ticket-row__total {
  font-family: var(--font-sans);
  font-size: var(--text-small);
  color: var(--text);
  margin-top: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px dashed var(--line);
}
.ticket-row__total strong {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

/* Ride card meta (height requirements, etc.) */
.ride-meta {
  display: block;
  font-size: var(--text-caption);
  color: var(--text-muted);
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}
.ride-meta strong { color: var(--text); font-weight: 600; }


/* ---- 11b. Skip-the-line add-on cards (Lightning Lane / Express Pass / Quick Queue) ---- */

.addons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}
.addon-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: box-shadow .15s, transform .15s;
}
.addon-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.addon-card__title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--text);
  line-height: 1.25;
}
.addon-card__price {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.addons--compact-price .addon-card__price {
  font-size: 18px;
}
.addon-card__price-suffix {
  font-family: var(--font-sans);
  font-size: var(--text-small);
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 6px;
  display: block;
  margin-top: 4px;
  letter-spacing: 0;
}
.addon-card__detail {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.addon-card__verdict {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: var(--text-small);
  color: var(--text);
  line-height: 1.55;
}
.addon-card__verdict strong { color: var(--accent); font-weight: 700; }
.addon-card .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  white-space: normal;
  line-height: 1.3;
}
.tickets__disclosure {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  font-size: var(--text-caption);
  color: var(--text-soft);
  line-height: 1.5;
}


/* ---- 12. Info grid (e.g., "Who it's for", "When to go") ---- */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}
.info-tile {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-5);
}
.info-tile__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  font-size: 20px;
}
.info-tile h4 {
  margin-bottom: var(--space-2);
}
.info-tile p {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}


/* ---- 13. Badges & tags ---- */

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge--accent { background: var(--accent-soft); color: var(--accent); }
.badge--sage { background: rgba(107, 142, 127, 0.12); color: var(--secondary); }
.badge--sun { background: var(--highlight-soft); color: #8B6A1F; }


/* ---- 14. FAQ ---- */

.faq__item {
  border-bottom: 1px solid var(--line);
  padding: var(--space-4) 0;
}
.faq__item:last-child { border-bottom: none; }
.faq__question {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: var(--space-2);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: "+";
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  transition: transform .15s;
}
.faq__item[open] .faq__question::after { content: "−"; }
.faq__answer {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  padding-top: var(--space-2);
}


/* ---- 15. Affiliate disclosure (compact, on every commercial page) ---- */

.aff-disclosure {
  font-size: var(--text-caption);
  color: var(--text-soft);
  background: var(--bg-tinted);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  margin-bottom: var(--space-5);
  line-height: 1.5;
}


/* ---- 14b. Breadcrumbs ---- */

.breadcrumbs {
  max-width: var(--max-wide);
  margin-inline: auto;
  padding: var(--space-3) var(--space-5) 0;
  font-size: var(--text-small);
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs__sep {
  margin: 0 6px;
  color: var(--text-soft);
}
.breadcrumbs__current {
  color: var(--text);
  font-weight: 500;
}


/* ---- 14c. At-a-glance facts strip ---- */

.facts-strip {
  background: var(--bg-tinted);
  border-block: 1px solid var(--line);
  padding: var(--space-4) var(--space-5);
}
.facts-strip__inner {
  max-width: var(--max-wide);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3) var(--space-5);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.6;
  text-align: center;
}
.facts-strip__item {
  display: inline-flex;
  align-items: center;
}
.facts-strip__item:not(:last-child)::after {
  content: "·";
  margin-left: var(--space-5);
  color: var(--accent);
  opacity: 0.7;
  letter-spacing: 0;
}
@media (max-width: 720px) {
  .facts-strip__inner { font-size: 11px; gap: var(--space-2) var(--space-3); letter-spacing: 0.12em; }
  .facts-strip__item:not(:last-child)::after { margin-left: var(--space-3); }
}


/* ---- 14d. Last-updated badge ---- */

.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-caption);
  color: var(--text-soft);
  background: var(--bg-tinted);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-3);
  font-weight: 500;
}
.last-updated::before {
  content: "•";
  color: var(--success);
  font-size: 16px;
  line-height: 1;
}


/* ---- 14e. Practical info grid ---- */

.practical {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.practical__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
}
.practical__tile { padding: 0; }
.practical__label {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.practical__value {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
  line-height: 1.3;
  margin-bottom: 4px;
}
.practical__detail {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.5;
}
.practical__advisory {
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: var(--text-small);
  color: var(--text);
  line-height: 1.5;
}
.practical__advisory.is-hidden { display: none; }


/* ---- 14f. Cross-links to other parks ---- */

.cross-links {
  background: var(--bg-tinted);
  padding: var(--space-7) 0;
  border-top: 1px solid var(--line);
}
.cross-links__inner {
  max-width: var(--max-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.cross-links__heading {
  text-align: center;
  margin-bottom: var(--space-5);
}
.cross-links__heading h3 {
  font-size: 24px;
  margin-bottom: 0;
}
.cross-links__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
}
.cross-link {
  display: flex;
  flex-direction: column;
  padding: var(--space-4) var(--space-5);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .15s, transform .15s, box-shadow .15s;
  text-decoration: none;
}
.cross-link:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.cross-link__name {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.cross-link:hover .cross-link__name { color: var(--accent); }
.cross-link__detail {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.4;
}


/* ---- 14g. Sticky mobile CTA ---- */

.sticky-cta {
  display: none;
}
@media (max-width: 720px) {
  .sticky-cta {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px 20px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(31, 26, 20, 0.25);
    transition: transform .2s, opacity .2s;
    opacity: 0;
    transform: translateY(80px);
    pointer-events: none;
  }
  .sticky-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .sticky-cta:active { transform: translateY(0) scale(0.98); }
}


/* ---- 16. Utilities ---- */

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: var(--space-3); }
.mt-5 { margin-top: var(--space-5); }
.mt-7 { margin-top: var(--space-7); }
.mb-0 { margin-bottom: 0 !important; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: var(--space-3); }
.gap-5 { gap: var(--space-5); }


/* ============================================================
   HOMEPAGE-SPECIFIC COMPONENTS
   ============================================================ */

/* ---- Home hero — gradient + typography (no photo) ---- */
.home-hero {
  position: relative;
  padding: var(--space-9) 0 var(--space-8);
  background: linear-gradient(135deg, #FBF7F1 0%, #F8E8D5 35%, #E8C4A0 70%, #D08850 100%);
  overflow: hidden;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(199, 122, 80, 0.25) 0%, transparent 55%);
  pointer-events: none;
}
.home-hero__inner {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  padding: 0 var(--space-5);
  text-align: center;
  z-index: 1;
}
.home-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
}
.home-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 76px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: var(--space-5);
  color: var(--text);
}
.home-hero__lead {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-muted);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
  line-height: 1.55;
  font-weight: 400;
}
.home-hero__cta-row {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Home subhero (small facts strip below hero) ---- */
.home-subhero {
  background: var(--bg-tinted);
  border-bottom: 1px solid var(--line);
  padding: var(--space-4) 0;
}
.home-subhero__inner {
  max-width: var(--max-wide);
  margin-inline: auto;
  padding: 0 var(--space-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3) var(--space-5);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
}
.home-subhero__item { display: inline-flex; align-items: center; }
.home-subhero__item:not(:last-child)::after {
  content: "·";
  margin-left: var(--space-5);
  color: var(--accent);
  opacity: 0.7;
  letter-spacing: 0;
}
@media (max-width: 720px) {
  .home-subhero__inner { font-size: 11px; gap: var(--space-2) var(--space-3); letter-spacing: 0.12em; }
  .home-subhero__item:not(:last-child)::after { margin-left: var(--space-3); }
}

/* ---- Park group (operator-grouped park cards) ---- */
.park-group { margin-bottom: var(--space-8); }
.park-group:last-child { margin-bottom: 0; }
.park-group__header {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.park-group__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 32px);
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
  line-height: 1.1;
}
.park-group__detail {
  font-size: var(--text-small);
  color: var(--text-muted);
  margin: 0;
}
.park-group__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}

/* ---- Hub feature cards (Disney World, Universal Orlando, SeaWorld+BG hubs) ---- */
.hub-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.hub-feature-grid--2x2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 980px) {
  .hub-feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .hub-feature-grid,
  .hub-feature-grid--2x2 { grid-template-columns: 1fr; }
}
.hub-feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.hub-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--accent-soft);
}
.hub-feature-card__image {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-tinted);
  position: relative;
}
.hub-feature-card__image .badge {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-4);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.hub-feature-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hub-feature-card__name {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 0 0 var(--space-2);
  color: var(--ink);
  line-height: 1.2;
}
.hub-feature-card__price {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-3);
}
.hub-feature-card__price-suffix {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 6px;
  display: block;
  margin-top: 2px;
}
.hub-feature-card__detail {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: var(--space-3);
  color: var(--text);
  flex: 1;
}
.hub-feature-card__verdict {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: var(--space-3) var(--space-4);
  border-radius: 0 6px 6px 0;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: var(--space-3);
  color: var(--text);
}
.hub-feature-card__verdict strong { color: var(--accent); font-weight: 700; }
.hub-feature-card .btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* Force 4-across on picker grids (hub "Which park should you pick?" sections) */
.picker--four-up {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 980px) {
  .picker--four-up { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 540px) {
  .picker--four-up { grid-template-columns: 1fr !important; }
}

/* ---- Park card (homepage tile linking to park page) ---- */
.park-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-decoration: none;
  color: inherit;
}
.park-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent-border);
  color: inherit;
}
.park-card:hover .park-card__name { color: var(--accent); }
.park-card__photo {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-tinted);
  position: relative;
}
.park-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 26, 20, 0) 60%, rgba(31, 26, 20, 0.15) 100%);
}
.park-card__body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.park-card__name {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0 0 var(--space-2);
  color: var(--text);
  transition: color .15s;
}
.park-card__tagline {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-3);
  flex: 1;
}
.park-card__meta {
  font-size: var(--text-caption);
  color: var(--accent);
  font-weight: 600;
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
  letter-spacing: 0.04em;
}

/* ---- "How Suertay works" steps ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
  max-width: var(--max-wide);
  margin-inline: auto;
}
.step { text-align: center; padding: var(--space-5) var(--space-3); }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 26px;
  margin-bottom: var(--space-4);
  border: 1px solid var(--accent-border);
}
.step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--text);
}
.step p {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 280px;
}

/* ---- Builder teaser (preview of /plan tool) ---- */
.builder-teaser {
  background: linear-gradient(135deg, var(--bg-tinted) 0%, var(--accent-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  text-align: center;
  max-width: var(--max-content);
  margin-inline: auto;
}
.builder-teaser h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: var(--space-3);
}
.builder-teaser p {
  max-width: 540px;
  margin: 0 auto var(--space-5);
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}
.builder-teaser__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

/* ---- Email signup (homepage variant) ---- */
.home-signup {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  text-align: center;
  max-width: var(--max-content);
  margin-inline: auto;
}
.home-signup h3 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: var(--space-3);
}
.home-signup p {
  max-width: 480px;
  margin: 0 auto;
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.5;
}
.home-signup form {
  display: flex;
  gap: var(--space-2);
  max-width: 480px;
  margin: var(--space-5) auto 0;
  flex-wrap: wrap;
}
.home-signup input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  background: var(--bg);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.home-signup input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.home-signup .thanks {
  display: none;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin: var(--space-3) auto 0;
  font-size: var(--text-small);
  max-width: 480px;
  color: var(--text);
}
.home-signup .thanks.show { display: block; }
.home-signup__note {
  font-size: var(--text-caption);
  color: var(--text-soft);
  margin-top: var(--space-3);
}

/* ---- Editorial pull (homepage editorial section) ---- */
.editorial-pull {
  max-width: var(--max-narrow);
  margin-inline: auto;
  text-align: center;
}
.editorial-pull p {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  color: var(--text);
  max-width: none;
  margin-bottom: var(--space-4);
}
.editorial-pull p:last-child { margin-bottom: 0; }


/* ============================================================
   HUB PAGES — comparison table component
   ============================================================ */

.compare {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: var(--text-small);
}
.compare-table th,
.compare-table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare-table tr:last-child th,
.compare-table tr:last-child td { border-bottom: none; }
.compare-table th.compare-table__attr {
  width: 160px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--bg-tinted);
  border-right: 1px solid var(--line);
}
.compare-table thead th {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  letter-spacing: -0.005em;
  background: var(--bg-elevated);
  border-bottom: 2px solid var(--accent-border);
  padding-block: var(--space-4);
}
.compare-table thead th a {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  display: block;
}
.compare-table thead th a:hover { color: var(--accent); }
.compare-table thead th .compare-table__sub {
  display: block;
  font-size: var(--text-caption);
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0;
  text-transform: none;
}
.compare-table td {
  color: var(--text);
  line-height: 1.5;
}
.compare-table tr:nth-child(even) td,
.compare-table tr:nth-child(even) th.compare-table__attr {
  background: var(--bg);
}

/* Decision tree (which park should I pick) */
.picker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
  max-width: var(--max-wide);
  margin-inline: auto;
}
.picker-card {
  display: block;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-decoration: none;
  color: inherit;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.picker-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--accent-border);
  color: inherit;
}
.picker-card__q {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}
.picker-card__answer {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--text);
  margin-bottom: var(--space-2);
}
.picker-card:hover .picker-card__answer { color: var(--accent); }
.picker-card__detail {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.5;
}


/* ============================================================
   STATIC PAGES — smaller hero for About / legal / hotels
   ============================================================ */

.static-hero {
  background: var(--bg-tinted);
  border-bottom: 1px solid var(--line);
  padding: var(--space-7) 0 var(--space-6);
}
.static-hero__inner {
  max-width: var(--max-narrow);
  margin-inline: auto;
  padding: 0 var(--space-5);
  text-align: center;
}
.static-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-3);
  color: var(--text);
}
.static-hero__lead {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Long-form prose containers */
.prose {
  max-width: var(--max-narrow);
  margin-inline: auto;
}
.prose h2 {
  font-size: clamp(24px, 3vw, 30px);
  margin-top: var(--space-7);
  margin-bottom: var(--space-3);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.005em;
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
}
.prose p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: var(--space-4);
  color: var(--text);
  max-width: none;
}
.prose ul, .prose ol {
  padding-left: var(--space-5);
  margin-bottom: var(--space-4);
}
.prose li {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: var(--space-2);
  color: var(--text);
}
.prose .legal-meta {
  font-size: var(--text-small);
  color: var(--text-soft);
  font-style: italic;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
}
