/* ── TOKENS ────────────────────────────────────────────────────────────────── */
:root, [data-theme='light'] {
  --color-bg: #f7f6f2;
  --color-surface: #f9f8f5;
  --color-surface-2: #fbfbf9;
  --color-surface-offset: #edeae5;
  --color-border: #d4d1ca;
  --color-divider: #dcd9d5;
  --color-text: #28251d;
  --color-text-muted: #7a7974;
  --color-text-faint: #bab9b4;
  --color-primary: #01696f;
  --color-primary-hover: #0c4e54;
  --color-primary-highlight: #cedcd8;
  --color-success: #437a22;
  --color-warning: #964219;
  --color-water: #006494;
  --color-water-light: #c6d8e4;
  --shadow-sm: 0 1px 2px oklch(0.2 0.01 80 / 0.06);
  --shadow-md: 0 4px 16px oklch(0.2 0.01 80 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.01 80 / 0.12);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  --font-display: 'Cabinet Grotesk', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  --content-narrow: 720px;
  --content-default: 960px;
  --content-wide: 1200px;
}

[data-theme='dark'] {
  --color-bg: #171614;
  --color-surface: #1c1b19;
  --color-surface-2: #201f1d;
  --color-surface-offset: #22211f;
  --color-border: #393836;
  --color-divider: #262523;
  --color-text: #cdccca;
  --color-text-muted: #797876;
  --color-text-faint: #5a5957;
  --color-primary: #4f98a3;
  --color-primary-hover: #227f8b;
  --color-primary-highlight: #1e3035;
  --color-success: #6daa45;
  --color-warning: #bb653b;
  --color-water: #5591c7;
  --color-water-light: #1e2c3a;
  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.3);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #171614;
    --color-surface: #1c1b19;
    --color-surface-2: #201f1d;
    --color-surface-offset: #22211f;
    --color-border: #393836;
    --color-divider: #262523;
    --color-text: #cdccca;
    --color-text-muted: #797876;
    --color-text-faint: #5a5957;
    --color-primary: #4f98a3;
    --color-primary-hover: #227f8b;
    --color-primary-highlight: #1e3035;
    --color-success: #6daa45;
    --color-warning: #bb653b;
    --color-water: #5591c7;
    --color-water-light: #1e2c3a;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
    --shadow-md: 0 4px 16px oklch(0 0 0 / 0.3);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
  }
}

/* ── RESET ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
ul[role='list'] { list-style: none; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); }
p,li { text-wrap: pretty; max-width: 68ch; }
a, button, [role='button'] {
  transition: color var(--transition), background var(--transition),
              border-color var(--transition), box-shadow var(--transition), opacity var(--transition);
}
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
::selection { background: color-mix(in oklab, var(--color-primary) 20%, transparent); }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ── LAYOUT ────────────────────────────────────────────────────────────────── */
.container { max-width: var(--content-default); margin-inline: auto; padding-inline: var(--space-6); }
.container-narrow { max-width: var(--content-narrow); margin-inline: auto; padding-inline: var(--space-6); }
.section { padding-block: clamp(var(--space-12), 8vw, var(--space-20)); }
.section-alt { background: var(--color-surface); }

.section-header { margin-bottom: var(--space-10); }
.section-header h2 { font-size: var(--text-xl); font-weight: 800; margin-bottom: var(--space-2); }
.section-header p { color: var(--color-text-muted); font-size: var(--text-base); }

/* ── NAV ───────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in oklab, var(--color-bg) 90%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
  height: 3.5rem;
  display: flex; align-items: center; gap: var(--space-8);
}
.logo {
  display: flex; align-items: center; gap: var(--space-2);
  text-decoration: none; color: var(--color-text);
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-sm);
}
.logo:hover { color: var(--color-primary); }
.nav-links { display: flex; gap: var(--space-6); margin-left: auto; }
.nav-links a {
  text-decoration: none; color: var(--color-text-muted);
  font-size: var(--text-sm); font-weight: 500;
}
.nav-links a:hover { color: var(--color-primary); }
.theme-btn {
  margin-left: var(--space-4);
  padding: var(--space-2);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  display: flex; align-items: center;
}
.theme-btn:hover { color: var(--color-primary); background: var(--color-surface); }

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--color-primary) 0%, #0a4f56 60%, #073a40 100%);
  color: white;
  padding-block: clamp(var(--space-16), 12vw, var(--space-20)) var(--space-20);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(79,152,163,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(1,105,111,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-6);
  position: relative; z-index: 1;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-6);
}
.tag {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 600;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 0.02em;
}
.tag-water { background: rgba(79,152,163,0.3); border-color: rgba(79,152,163,0.5); }
.tag-link {
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.tag-link:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-1px);
}
.tag-link::after {
  content: ' ↗';
  font-size: 0.7em;
  opacity: 0.7;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  margin-bottom: var(--space-5);
}
.hero h1 em {
  font-style: normal;
  color: #7dcdd6;
}
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  margin-bottom: var(--space-10);
  line-height: 1.55;
}
.hero-stats {
  display: flex; align-items: center; flex-wrap: wrap; gap: var(--space-6);
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-val {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 800; color: white; line-height: 1;
}
.stat-label { font-size: var(--text-xs); color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-div { width: 1px; height: 2.5rem; background: rgba(255,255,255,0.2); }
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* ── TABS ──────────────────────────────────────────────────────────────────── */
.tabs {
  display: flex; gap: var(--space-2);
  background: var(--color-surface-offset);
  border-radius: var(--radius-xl);
  padding: var(--space-1);
  margin-bottom: var(--space-10);
  max-width: 520px;
  border: 1px solid var(--color-border);
}
.tab {
  flex: 1;
  display: flex; flex-direction: column; gap: 2px;
  padding: var(--space-3) var(--space-4);
  border-radius: calc(var(--radius-xl) - 2px);
  text-align: left; cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
}
.tab-date { font-size: var(--text-xs); font-weight: 600; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.tab-name { font-size: var(--text-sm); font-weight: 700; color: var(--color-text-muted); font-family: var(--font-display); }
.tab.active {
  background: var(--color-bg);
  box-shadow: var(--shadow-md);
}
.tab.active .tab-date { color: var(--color-primary); }
.tab.active .tab-name { color: var(--color-text); }
.tab:not(.active):hover { background: color-mix(in oklab, var(--color-bg) 50%, transparent); }

/* ── DAY PANELS ────────────────────────────────────────────────────────────── */
.day-panel { display: none; }
.day-panel.active { display: block; }

/* ── TIMELINE ──────────────────────────────────────────────────────────────── */
.timeline {
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute; left: 4.5rem; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-border) 100%);
  opacity: 0.3;
}

.event {
  display: grid;
  grid-template-columns: 4rem 1rem 1fr;
  gap: 0 var(--space-5);
  align-items: start;
  padding-bottom: var(--space-6);
  position: relative;
}
.event:last-child { padding-bottom: 0; }

.event-time {
  font-family: var(--font-display);
  font-size: var(--text-sm); font-weight: 700;
  color: var(--color-text-muted);
  padding-top: var(--space-4);
  text-align: right;
  line-height: 1;
}

.event-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  margin-top: calc(var(--space-4) + 3px);
  position: relative; z-index: 1;
  flex-shrink: 0;
  align-self: start;
  box-shadow: 0 0 0 2px var(--color-border);
}
.event-dot.sup    { background: var(--color-primary); box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-primary) 25%, transparent); }
.event-dot.swim   { background: var(--color-water); box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-water) 25%, transparent); }
.event-dot.food   { background: var(--color-warning); box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-warning) 25%, transparent); }
.event-dot.bike   { background: var(--color-success); box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-success) 25%, transparent); }
.event-dot.nature { background: var(--color-success); box-shadow: 0 0 0 3px color-mix(in oklab, var(--color-success) 25%, transparent); }

.event-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.event-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.event-head {
  display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-2);
  flex-wrap: wrap;
}
.event-head h3 {
  font-size: var(--text-base); font-weight: 700;
  font-family: var(--font-display);
}
.event-badge {
  display: inline-block;
  padding: 2px var(--space-2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.event-badge.sup    { background: color-mix(in oklab, var(--color-primary) 15%, transparent); color: var(--color-primary); }
.event-badge.swim   { background: color-mix(in oklab, var(--color-water) 15%, transparent); color: var(--color-water); }
.event-badge.food   { background: color-mix(in oklab, var(--color-warning) 15%, transparent); color: var(--color-warning); }
.event-badge.bike   { background: color-mix(in oklab, var(--color-success) 15%, transparent); color: var(--color-success); }
.event-badge.nature { background: color-mix(in oklab, var(--color-success) 15%, transparent); color: var(--color-success); }

.event-venue {
  font-size: var(--text-xs); color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}
.event-desc {
  font-size: var(--text-sm); color: var(--color-text);
  margin-bottom: var(--space-3);
  line-height: 1.5;
}
.event-meta {
  display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-3);
}
.meta-chip {
  display: inline-block;
  padding: 2px var(--space-2);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  background: var(--color-surface-offset);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.meta-chip.cost   { color: var(--color-warning); border-color: color-mix(in oklab, var(--color-warning) 30%, transparent); background: color-mix(in oklab, var(--color-warning) 8%, transparent); }
.meta-chip.free   { color: var(--color-success); border-color: color-mix(in oklab, var(--color-success) 30%, transparent); background: color-mix(in oklab, var(--color-success) 8%, transparent); }
.meta-chip.transport { color: var(--color-primary); border-color: color-mix(in oklab, var(--color-primary) 30%, transparent); background: color-mix(in oklab, var(--color-primary) 8%, transparent); }

.event-link {
  display: inline-block;
  font-size: var(--text-xs); font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  padding: var(--space-1) var(--space-3);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-full);
}
.event-link:hover {
  background: var(--color-primary);
  color: white;
}

/* ── BOOKINGS ──────────────────────────────────────────────────────────────── */
.bookings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: var(--space-5);
}

.booking-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.booking-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.booking-card.priority { border-color: color-mix(in oklab, var(--color-primary) 40%, transparent); }
.booking-card.free { border-color: color-mix(in oklab, var(--color-success) 30%, transparent); }

.booking-status {
  display: inline-block;
  align-self: flex-start;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
}
.to-book      { background: color-mix(in oklab, var(--color-primary) 12%, transparent); color: var(--color-primary); }
.call-ahead   { background: color-mix(in oklab, var(--color-warning) 12%, transparent); color: var(--color-warning); }
.optional-tag { background: var(--color-surface-offset); color: var(--color-text-muted); }
.free-tag     { background: color-mix(in oklab, var(--color-success) 12%, transparent); color: var(--color-success); }

.booking-body h3 { font-size: var(--text-base); font-weight: 700; font-family: var(--font-display); margin-bottom: var(--space-1); }
.booking-detail { font-size: var(--text-xs); color: var(--color-text-muted); margin-bottom: var(--space-1); }
.booking-price  { font-size: var(--text-sm); font-weight: 700; color: var(--color-primary); margin-bottom: var(--space-2); }
.booking-body p { font-size: var(--text-sm); color: var(--color-text-muted); }

.booking-btn {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 600;
  text-decoration: none;
  background: var(--color-primary); color: white;
  align-self: flex-start;
}
.booking-btn:hover { background: var(--color-primary-hover); }
.booking-btn.secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.booking-btn.secondary:hover { background: var(--color-primary); color: white; }

.booking-check {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); color: var(--color-text-muted);
  cursor: pointer;
  user-select: none;
  margin-top: auto;
}
.booking-check input[type="checkbox"] {
  width: 1rem; height: 1rem;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.booking-card.checked {
  opacity: 0.6;
}
.booking-card.checked .booking-status {
  background: color-mix(in oklab, var(--color-success) 12%, transparent);
  color: var(--color-success);
}

/* ── BUDGET ────────────────────────────────────────────────────────────────── */
.budget-table {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.budget-row {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: var(--space-6);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--color-divider);
  align-items: center;
}
.budget-row:last-child { border-bottom: none; }
.budget-row.header {
  background: var(--color-surface-offset);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--color-text-muted);
}
.budget-row.highlight { background: color-mix(in oklab, var(--color-success) 6%, transparent); }
.free-label { color: var(--color-success); font-weight: 600; }
.budget-row.total {
  background: var(--color-primary);
  color: white;
  font-weight: 700; font-family: var(--font-display);
  font-size: var(--text-base);
}
.budget-row.total .free-label { color: white; }
.budget-row span:last-child, .budget-row span:nth-last-child(2) { font-weight: 600; text-align: right; white-space: nowrap; }

.budget-note {
  font-size: var(--text-sm); color: var(--color-text-muted);
  padding: var(--space-4);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-8);
}
.footer .container {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4);
}
.footer p { font-size: var(--text-xs); color: var(--color-text-muted); }
.footer-links { display: flex; gap: var(--space-5); }
.footer-links a {
  font-size: var(--text-xs); font-weight: 500;
  color: var(--color-text-muted); text-decoration: none;
}
.footer-links a:hover { color: var(--color-primary); }

/* ── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .timeline::before { left: 0; }
  .event { grid-template-columns: 0 12px 1fr; gap: 0 var(--space-4); }
  .event-time { display: none; }
  .nav-links { display: none; }
  .hero-stats { gap: var(--space-4); }
  .stat-div { display: none; }
  .tabs { max-width: 100%; }
  .budget-row { grid-template-columns: 1fr auto auto; gap: var(--space-3); }
  .footer .container { flex-direction: column; align-items: flex-start; }
}

/* ── FADE-IN ANIMATION ──────────────────────────────────────────────────────── */
.event-card {
  animation: fadeUp 0.4s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.day-panel.active .event:nth-child(1) .event-card { animation-delay: 0.05s; }
.day-panel.active .event:nth-child(2) .event-card { animation-delay: 0.1s; }
.day-panel.active .event:nth-child(3) .event-card { animation-delay: 0.15s; }
.day-panel.active .event:nth-child(4) .event-card { animation-delay: 0.2s; }
.day-panel.active .event:nth-child(5) .event-card { animation-delay: 0.25s; }
.day-panel.active .event:nth-child(6) .event-card { animation-delay: 0.3s; }
.day-panel.active .event:nth-child(7) .event-card { animation-delay: 0.35s; }

/* ── FAQ ───────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  color: var(--color-text);
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--color-primary); }
.faq-item > p {
  padding: 0 var(--space-5) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-4);
}
.faq-item > p a { color: var(--color-primary); text-decoration: underline; text-decoration-color: transparent; }
.faq-item > p a:hover { text-decoration-color: var(--color-primary); }
.faq-item > p strong { color: var(--color-text); font-weight: 600; }
