/* ============================================
   Fairytale Dreamers Travel
   Storybook-elegant brand stylesheet
   ============================================ */

:root {
  --purple-900: #2A1F4A;
  --purple-800: #3A2E5A;
  --purple-700: #4A3D6F;
  --purple-500: #6E5E97;
  --purple-200: #D8D0E6;
  --gold-700: #8A6A38;
  --gold-600: #B8975E;
  --gold-500: #C7A678;
  --gold-300: #E4D2AE;
  --cream-50:  #FDFBF6;
  --cream-100: #F8F1E7;
  --cream-200: #F1E6D4;
  --blush-100: #F7E7E3;
  --blush-200: #EFD9D2;
  --ink: #2A2540;
  --ink-soft: #5A5470;
  --white: #FFFFFF;
  /* Extended palette — each tool gets its own accent */
  --coral-300: #F2B5A3;  --coral-500: #D87A60;  --coral-700: #9C4A30;
  --teal-300:  #A8D4D8;  --teal-500:  #4F9DAA;  --teal-700:  #1F5C68;
  --ocean-300: #B0CFEA;  --ocean-500: #6395C6;  --ocean-700: #2E5A8A;
  --sage-300:  #C5DAB7;  --sage-500:  #7AAB60;  --sage-700:  #41702C;
  --peach-300: #F4D2A8;  --peach-500: #D89F5C;  --peach-700: #9C6A2A;
  --rose-300:  #F4C5D4;  --rose-500:  #D27F9D;  --rose-700:  #963F60;
  --shadow-sm: 0 4px 16px rgba(58, 46, 90, 0.08);
  --shadow-md: 0 12px 32px rgba(58, 46, 90, 0.12);
  --shadow-lg: 0 24px 60px rgba(58, 46, 90, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-script: "Allura", "Great Vibes", cursive;
  --font-body: "Inter", "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* -------- Reset & base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple-800); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-600); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--purple-900); margin: 0 0 .5em; font-weight: 600; letter-spacing: .005em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.15; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
p  { margin: 0 0 1.1em; color: var(--ink-soft); }
.script {
  font-family: var(--font-script);
  color: var(--gold-600);
  font-weight: 400;
  font-size: 1.5em;
  display: block;
  margin-bottom: .1em;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  color: var(--gold-700);
  font-weight: 600;
  margin-bottom: .9em;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(60px, 9vw, 120px) 0; position: relative; }
.section--cream { background: var(--cream-100); }
.section--blush { background: linear-gradient(180deg, var(--blush-100) 0%, var(--cream-50) 100%); }
.section--ink  { background: var(--purple-900); color: var(--cream-50); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream-50); }
.section--ink p { color: rgba(253, 251, 246, 0.78); }
.text-center { text-align: center; }

/* -------- Decorative flourishes -------- */
.flourish {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 6px auto 18px;
  color: var(--gold-500);
}
.flourish::before, .flourish::after {
  content: ""; height: 1px; width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}
.flourish::after { background: linear-gradient(270deg, transparent, var(--gold-500)); }
.sparkle { color: var(--gold-500); }

/* -------- Top bar / nav -------- */
.topbar {
  background: var(--purple-900);
  color: var(--cream-100);
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 8px 0;
  text-align: center;
}
.topbar a { color: var(--gold-300); text-decoration: underline; text-underline-offset: 3px; }
.topbar a:hover { color: var(--white); }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 251, 246, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(58, 46, 90, 0.08);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1280px; margin: 0 auto; gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { height: 52px; width: auto; }
.nav__brand-text {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.15rem;
  color: var(--purple-900); line-height: 1;
}
.nav__brand-text small { display: block; font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-700); margin-top: 3px; font-family: var(--font-body); font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-weight: 500; color: var(--purple-900);
  font-size: .98rem; letter-spacing: .02em;
  position: relative; padding: 6px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 2px; background: var(--gold-500);
  transform: translateX(-50%); transition: width .25s ease;
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta {
  background: var(--gold-600); color: var(--purple-900);
  padding: 16px 30px; border-radius: var(--radius-pill);
  font-size: .96rem; font-weight: 700;
  letter-spacing: .04em; line-height: 1.15;
  min-height: 48px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 2px 10px rgba(184, 151, 94, 0.28);
}
.nav__cta:hover { background: var(--gold-500); color: var(--purple-900); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav__cta, .nav__cta span { color: var(--purple-900); }
.nav__toggle {
  display: none; border: none; background: transparent; cursor: pointer;
  width: 44px; height: 44px; padding: 0; color: var(--purple-900);
}
.nav__toggle svg { width: 28px; height: 28px; }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav__links {
    position: absolute; top: 100%; right: 16px;
    background: var(--cream-50); border-radius: var(--radius-md);
    padding: 18px 22px; box-shadow: var(--shadow-lg);
    flex-direction: column; align-items: flex-start; gap: 14px;
    transform-origin: top right; transform: scale(.95); opacity: 0; pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav__links.is-open { transform: scale(1); opacity: 1; pointer-events: auto; }
  .nav__cta { padding: 10px 18px; }
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 34px;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 1rem; letter-spacing: .03em; line-height: 1.15;
  min-height: 52px;
  border: none; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn--primary { background: var(--purple-800); color: var(--cream-50); }
.btn--primary:hover { background: var(--purple-900); color: var(--cream-50); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold-600); color: var(--purple-900); }
.btn--gold:hover { background: var(--gold-500); color: var(--purple-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--cream-50); border: 1.5px solid rgba(253, 251, 246, 0.6); }
.btn--ghost:hover { background: rgba(253, 251, 246, 0.1); color: var(--cream-50); border-color: var(--cream-50); }
.btn--outline { background: transparent; color: var(--purple-800); border: 1.5px solid var(--purple-800); }
.btn--outline:hover { background: var(--purple-800); color: var(--cream-50); }
.btn--lg { padding: 22px 40px; font-size: 1.05rem; min-height: 58px; }

/* -------- Hero -------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 60%, var(--purple-500) 100%);
  color: var(--cream-50);
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) 0 clamp(100px, 14vw, 180px);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(228, 210, 174, 0.18), transparent 38%),
    radial-gradient(circle at 82% 78%, rgba(239, 217, 210, 0.14), transparent 42%);
  pointer-events: none;
}
.hero__stars {
  position: absolute; inset: 0; opacity: .55; pointer-events: none;
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 60px; align-items: center;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}
.hero h1 { color: var(--cream-50); margin-bottom: .25em; }
.hero h1 em { font-style: italic; color: var(--gold-300); font-weight: 500; }
.hero__lede { font-size: 1.15rem; color: rgba(253, 251, 246, 0.85); max-width: 540px; }
@media (max-width: 900px) { .hero__lede { margin-left: auto; margin-right: auto; } }
.hero__cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 14px; }
@media (max-width: 900px) { .hero__cta-row { justify-content: center; } }
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42, 31, 74, 0.45) 100%);
}
.hero__badge {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--gold-500); color: var(--purple-900);
  width: 138px; height: 138px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  line-height: 1.1; padding: 14px; box-shadow: var(--shadow-md);
  transform: rotate(-8deg);
}
.hero__badge small { display: block; font-family: var(--font-body); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 4px; }
@media (max-width: 900px) {
  .hero__visual { max-width: 420px; margin: 0 auto; }
  .hero__badge { left: 0; }
}

/* -------- Feature trio (cruise + meetup + planning) -------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--cream-50);
  border: 1px solid rgba(184, 151, 94, 0.18);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex; flex-direction: column;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-500); }
.feature-card__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--blush-100); color: var(--purple-800);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feature-card__icon svg { width: 30px; height: 30px; }
.feature-card h3 { margin-bottom: .35em; }
.feature-card p { flex: 1; }
.feature-card a {
  margin-top: 10px; font-weight: 600; color: var(--purple-800);
  display: inline-flex; align-items: center; gap: 6px;
}
.feature-card a:hover { color: var(--gold-700); }

/* -------- Showcase / highlight cards -------- */
.showcase {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; align-items: center;
}
@media (max-width: 900px) { .showcase { grid-template-columns: 1fr; } }
.showcase--reverse .showcase__media { order: 2; }
@media (max-width: 900px) { .showcase--reverse .showcase__media { order: 0; } }
.showcase__media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 4;
}
.showcase__media img { width: 100%; height: 100%; object-fit: cover; }
.showcase__media .tag {
  position: absolute; top: 22px; left: 22px;
  background: var(--gold-500); color: var(--purple-900);
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
}
.showcase__meta {
  display: flex; gap: 24px; margin: 18px 0 22px; flex-wrap: wrap;
}
.showcase__meta span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .92rem; color: var(--ink); font-weight: 500;
}
.showcase__meta svg { width: 18px; height: 18px; color: var(--gold-600); }

/* -------- Team -------- */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.team-card {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
  border: 1px solid rgba(184, 151, 94, 0.15);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden; background: var(--blush-100);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__body { padding: 22px 22px 26px; }
.team-card__body h3 { margin-bottom: .15em; }
.team-card__role { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-700); font-weight: 600; }
.team-card__bio { font-size: .95rem; margin-top: 12px; }
.team-card__bio--full { margin-top: 16px; }

/* -------- Gallery -------- */
.gallery {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.gallery__item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-sm);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.05); }

/* -------- Process / steps -------- */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  counter-reset: step;
}
.step {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: 36px 28px 30px;
  position: relative;
  border: 1px solid rgba(58, 46, 90, 0.08);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3.4rem; line-height: 1; color: var(--gold-500);
  font-weight: 600; display: block; margin-bottom: 10px;
}
.step h3 { font-size: 1.25rem; margin-bottom: .3em; }
.step p { font-size: .96rem; margin: 0; }

/* -------- Stat strip -------- */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.stat { text-align: center; padding: 14px; }
.stat__num {
  font-family: var(--font-display); font-size: 3rem;
  color: var(--gold-300); font-weight: 600; line-height: 1; margin-bottom: 6px;
}
.section--ink .stat__num { color: var(--gold-300); }
.stat__label { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(253,251,246,.7); }

/* -------- Services list -------- */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.service-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 22px;
  background: var(--cream-50);
  border: 1px solid rgba(184, 151, 94, 0.2);
  border-radius: var(--radius-md);
  font-weight: 600; color: var(--purple-900);
  transition: background .2s ease, border-color .2s ease;
}
.service-pill:hover { background: var(--blush-100); border-color: var(--gold-500); }
.service-pill svg { width: 22px; height: 22px; color: var(--gold-600); flex: 0 0 22px; }

/* -------- CTA strip / contact -------- */
.cta-strip {
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%);
  color: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 70px) clamp(28px, 5vw, 70px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(228,210,174,.25), transparent 70%);
}
.cta-strip h2 { color: var(--cream-50); }
.cta-strip p { color: rgba(253, 251, 246, 0.82); }
@media (max-width: 900px) { .cta-strip { grid-template-columns: 1fr; text-align: center; } }

/* -------- Forms -------- */
.form-card {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: 38px 34px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(184, 151, 94, 0.18);
}
.form-grid { display: grid; gap: 16px; }
.form-grid label { font-weight: 600; font-size: .92rem; color: var(--purple-900); display: block; margin-bottom: 6px; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid rgba(58, 46, 90, 0.32);
  border-radius: var(--radius-sm);
  background: var(--white); font-family: inherit; font-size: 1rem; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-grid textarea { min-height: 120px; resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: none; border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(199, 166, 120, 0.18);
}
.form-card .btn { width: 100%; justify-content: center; margin-top: 10px; }
.form-card__note { font-size: .85rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }

/* -------- Page header (interior pages) -------- */
.page-header {
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%);
  color: var(--cream-50);
  padding: clamp(70px, 9vw, 130px) 0 clamp(90px, 11vw, 150px);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(228,210,174,.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(247,231,227,.1), transparent 45%);
  pointer-events: none;
}
.page-header h1 { color: var(--cream-50); margin-bottom: .2em; position: relative; z-index: 1; }
.page-header p { color: rgba(253, 251, 246, 0.85); max-width: 680px; margin: 0 auto; font-size: 1.1rem; position: relative; z-index: 1; }
.page-header .script { color: var(--gold-300); }

/* Hero icon — sits above the script title in the page header */
.page-header__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(228, 210, 174, 0.18);
  border: 1px solid rgba(228, 210, 174, 0.4);
  color: var(--gold-300);
  margin: 0 auto 18px;
  position: relative; z-index: 1;
}
.page-header__icon svg { width: 42px; height: 42px; }
.page-header__icon::before, .page-header__icon::after {
  content: ""; position: absolute;
  background: var(--gold-300); border-radius: 50%;
}
.page-header__icon::before { width: 5px; height: 5px; top: -2px; right: 8px; opacity: .6; }
.page-header__icon::after  { width: 3px; height: 3px; bottom: 4px; left: -4px; opacity: .5; }

/* Page header accent variants */
.page-header--ocean   { background: linear-gradient(135deg, #1E3F60 0%, #2E5A8A 100%); }
.page-header--teal    { background: linear-gradient(135deg, #133B43 0%, #1F5C68 100%); }
.page-header--rose    { background: linear-gradient(135deg, #4A1F31 0%, #7C3654 100%); }
.page-header--sage    { background: linear-gradient(135deg, #2A4F1F 0%, #41702C 100%); }
.page-header--coral   { background: linear-gradient(135deg, #5C2818 0%, #9C4A30 100%); }
.page-header--peach   { background: linear-gradient(135deg, #5C3A18 0%, #9C6A2A 100%); }

/* ============================================
   Agent CRM
   ============================================ */
.agent-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  background: var(--cream-50);
}
.agent-sidebar {
  background: var(--purple-900);
  color: var(--cream-100);
  padding: 28px 22px;
  position: sticky; top: 0;
  height: 100vh;
  overflow-y: auto;
}
.agent-sidebar__brand {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 36px;
  color: var(--cream-50);
  text-decoration: none;
}
.agent-sidebar__brand img { height: 38px; }
.agent-sidebar__brand-text {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1rem; line-height: 1.1;
}
.agent-sidebar__brand-text small {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-300); margin-top: 3px;
}
.agent-sidebar__label {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; color: rgba(228, 210, 174, .6);
  margin: 24px 0 8px;
}
.agent-sidebar__nav { list-style: none; padding: 0; margin: 0; }
.agent-sidebar__nav li { margin: 0; }
.agent-sidebar__nav a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(253, 251, 246, .85);
  padding: 9px 12px; border-radius: 8px;
  font-size: .94rem;
  margin-bottom: 2px;
  transition: background .15s ease;
}
.agent-sidebar__nav a:hover { background: rgba(228, 210, 174, .08); color: var(--cream-50); }
.agent-sidebar__nav a.active { background: rgba(228, 210, 174, .14); color: var(--gold-300); font-weight: 600; }
.agent-sidebar__nav svg { width: 18px; height: 18px; opacity: .7; }
.agent-sidebar__foot {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  font-size: .78rem; color: rgba(253, 251, 246, .5);
}
.agent-sidebar__foot a { color: var(--gold-300); }

.agent-main { padding: 36px 44px; }
.agent-main__head {
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap; gap: 14px;
  margin-bottom: 32px;
}
.agent-main__head h1 {
  font-size: 2rem; margin-bottom: 4px;
}
.agent-main__head p { color: var(--ink-soft); margin: 0; }

.kpi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; margin-bottom: 36px;
}
.kpi-card {
  background: var(--cream-50);
  border: 1px solid rgba(184, 151, 94, .2);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.kpi-card__label {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-700); font-weight: 700; margin-bottom: 6px;
}
.kpi-card__num {
  font-family: var(--font-display); font-weight: 700;
  color: var(--purple-900); font-size: 2.4rem; line-height: 1;
}
.kpi-card__trend {
  font-size: .82rem; color: var(--ink-soft); margin-top: 4px;
}
.kpi-card__trend strong { color: var(--purple-900); }

.agent-section {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(184, 151, 94, .15);
}
.agent-section__head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 18px; gap: 12px; flex-wrap: wrap;
}
.agent-section__head h2 { font-size: 1.4rem; margin: 0; }
.agent-section__head .agent-section__actions {
  display: flex; gap: 8px; align-items: center;
}

.agent-table {
  width: 100%; border-collapse: collapse;
  font-size: .94rem;
}
.agent-table th {
  text-align: left;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-soft);
  padding: 10px 12px;
  border-bottom: 1px solid rgba(58, 46, 90, .12);
}
.agent-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(58, 46, 90, .06);
  vertical-align: top;
}
.agent-table tr:hover td { background: var(--cream-100); }
.agent-table__name { font-weight: 600; color: var(--purple-900); }
.agent-table__email { font-size: .85rem; color: var(--ink-soft); }
.agent-table__notes { font-size: .85rem; color: var(--ink-soft); max-width: 280px; }

.agent-status {
  display: inline-block;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; padding: 3px 9px; border-radius: var(--radius-pill);
  background: rgba(58, 46, 90, .1); color: var(--purple-900);
}
.agent-status--new        { background: #C8DEEC; color: var(--ocean-700); }
.agent-status--contacted  { background: #F5E4B8; color: #7E5A1A; }
.agent-status--qualified  { background: #DDE9C5; color: var(--sage-700); }
.agent-status--converted  { background: #C8EBD2; color: #1B5A2E; }
.agent-status--declined   { background: rgba(58, 46, 90, .1); color: var(--ink-soft); }
.agent-status--planning   { background: #FAEEDD; color: var(--peach-700); }
.agent-status--deposited  { background: #F5E4B8; color: #7E5A1A; }
.agent-status--paid       { background: #C8EBD2; color: #1B5A2E; }
.agent-status--completed  { background: #DDE9C5; color: var(--sage-700); }
.agent-status--cancelled  { background: rgba(58, 46, 90, .1); color: var(--ink-soft); }

.agent-form {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px 20px;
}
.agent-form__field { display: flex; flex-direction: column; }
.agent-form__field--full { grid-column: 1 / -1; }
.agent-form__field label {
  font-size: .82rem; font-weight: 700;
  color: var(--purple-900); margin-bottom: 6px;
}
.agent-form__field input,
.agent-form__field textarea,
.agent-form__field select {
  padding: 10px 12px;
  border: 1.5px solid rgba(58, 46, 90, .2);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: inherit; font-size: .96rem; color: var(--ink);
}
.agent-form__field input:focus,
.agent-form__field textarea:focus,
.agent-form__field select:focus {
  outline: none; border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(199, 166, 120, .18);
}
.agent-form__field textarea { min-height: 80px; resize: vertical; }
.agent-form__submit {
  grid-column: 1 / -1; display: flex; gap: 10px; align-items: center;
  margin-top: 6px;
}

.agent-login {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
  padding: 40px 20px;
}
.agent-login__card {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: 44px 44px 36px;
  max-width: 420px; width: 100%;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.agent-login__card img { height: 56px; margin: 0 auto 14px; display: block; }
.agent-login__card h1 { font-size: 1.6rem; margin-bottom: 6px; }
.agent-login__card p { color: var(--ink-soft); margin-bottom: 22px; font-size: .95rem; }
.agent-login__form { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.agent-login__form label { font-weight: 700; font-size: .82rem; color: var(--purple-900); }
.agent-login__form input {
  padding: 12px 14px;
  border: 1.5px solid rgba(58, 46, 90, .2);
  border-radius: var(--radius-sm); background: var(--white);
  font-family: inherit; font-size: 1rem; color: var(--ink);
}
.agent-login__form input:focus {
  outline: none; border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(199, 166, 120, .18);
}
.agent-login__error {
  background: #F5DADA; color: #8E1A1A;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: .88rem; text-align: center;
  display: none;
}
.agent-login__error.is-show { display: block; }
.agent-login__hint { font-size: .78rem; color: var(--ink-soft); margin-top: 12px; }

@media (max-width: 800px) {
  .agent-shell { grid-template-columns: 1fr; }
  .agent-sidebar {
    position: relative; height: auto;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
    padding: 16px 18px;
  }
  .agent-sidebar__brand { margin-bottom: 0; }
  .agent-sidebar__label { display: none; }
  .agent-sidebar__nav { display: flex; gap: 4px; flex-wrap: wrap; }
  .agent-sidebar__nav a { padding: 8px 10px; font-size: .85rem; }
  .agent-sidebar__foot { position: relative; bottom: auto; left: auto; right: auto; width: 100%; margin-top: 10px; }
  .agent-main { padding: 24px 18px; }
}

/* -------- Footer -------- */
.footer {
  background: var(--purple-900);
  color: rgba(253, 251, 246, 0.78);
  padding: 70px 0 30px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(253, 251, 246, 0.12);
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 56px; margin-bottom: 16px; }
.footer__brand p { color: rgba(253, 251, 246, 0.72); font-size: .95rem; }
.footer h4 {
  color: var(--gold-300); font-family: var(--font-body);
  font-size: .82rem; letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer a { color: rgba(253, 251, 246, 0.78); }
.footer a:hover { color: var(--gold-300); }
.footer__bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: .85rem; color: rgba(253, 251, 246, 0.6);
}
.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(253, 251, 246, 0.08); color: var(--cream-50);
  transition: background .2s ease, color .2s ease;
}
.footer__socials a:hover { background: var(--gold-500); color: var(--purple-900); }
.footer__socials svg { width: 18px; height: 18px; }

/* -------- Reveal on scroll -------- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* -------- Misc helpers -------- */
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 720px; }
.text-center .lead { margin-left: auto; margin-right: auto; }
.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.partner-note {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cream-200); color: var(--purple-900);
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  margin-top: 18px;
}
.partner-note span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-600); }

/* ============================================
   Live park-hours strip (under topbar)
   ============================================ */
.park-strip {
  background: linear-gradient(90deg, #1F1738 0%, #2A1F4A 50%, #1F1738 100%);
  color: var(--cream-100);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 18px;
  text-align: center;
  border-top: 1px solid rgba(228, 210, 174, 0.12);
  border-bottom: 1px solid rgba(228, 210, 174, 0.12);
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.park-strip::-webkit-scrollbar { display: none; }
.park-strip__label { color: var(--gold-300); font-weight: 700; margin-right: 14px; }
.park-strip__item  { color: rgba(253, 251, 246, 0.75); margin: 0 4px; }
.park-strip__item b { color: var(--cream-50); font-weight: 700; }
.park-strip__item--open b::after { content: " ●"; color: #98E0A6; }
.park-strip__item--open em { color: #98E0A6; font-style: normal; font-weight: 600; }
.park-strip__sep   { color: rgba(228, 210, 174, 0.4); margin: 0 4px; }
.park-strip__loading, .park-strip__fallback { color: rgba(253, 251, 246, 0.7); }
.park-strip__fallback a { color: var(--gold-300); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================
   Park hours panel (homepage / tips page)
   ============================================ */
.park-panel {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(184, 151, 94, 0.18);
}
.park-panel__head { margin-bottom: 22px; }
.park-panel__group { margin-top: 22px; }
.park-panel__group-label {
  font-size: .76rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-700); font-weight: 700; margin-bottom: 10px;
}
.park-tiles {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}
.park-tile {
  background: var(--cream-100);
  border: 1px solid rgba(184, 151, 94, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color .2s ease, transform .2s ease;
}
.park-tile:hover { border-color: var(--gold-500); transform: translateY(-1px); }
.park-tile__name {
  font-family: var(--font-display); font-weight: 600;
  color: var(--purple-900); font-size: 1.1rem; line-height: 1.2;
  margin-bottom: 4px;
}
.park-tile__hours {
  font-size: .98rem; color: var(--ink); font-weight: 600;
  letter-spacing: .02em;
}
.park-tile__status {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 6px; display: inline-flex; align-items: center; gap: 6px;
}
.park-tile--open .park-tile__status { color: #1B5A2E; font-weight: 700; }
.park-tile--open .park-tile__status .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #4FBE6A;
  box-shadow: 0 0 0 0 rgba(79, 190, 106, .55);
  animation: pulse 1.8s infinite;
}
.park-tile--closed { opacity: 0.7; }
.park-panel__loading { padding: 30px 0; color: var(--ink-soft); display: flex; align-items: center; gap: 12px; }
.park-panel__spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(58, 46, 90, .15); border-top-color: var(--purple-700);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(79, 190, 106, .55); }
  70%  { box-shadow: 0 0 0 8px rgba(79, 190, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(79, 190, 106, 0); }
}

/* ============================================
   ASL Today card
   ============================================ */
.asl-card {
  background: linear-gradient(135deg, var(--cream-50) 0%, var(--blush-100) 100%);
  border: 1px solid rgba(184, 151, 94, 0.25);
  border-radius: var(--radius-md);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.asl-card::after {
  content: ""; position: absolute; right: -50px; bottom: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 166, 120, 0.18), transparent 70%);
}
.asl-card__head {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 14px;
  position: relative; z-index: 1;
}
.asl-card__icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--purple-800); color: var(--gold-300);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 52px;
}
.asl-card__icon svg { width: 28px; height: 28px; }
.asl-card h3 em { font-style: italic; color: var(--gold-700); }
.asl-card__actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 14px;
  position: relative; z-index: 1;
}
.asl-shows {
  display: grid; gap: 8px;
  margin: 14px 0 12px;
  position: relative; z-index: 1;
}
.asl-show {
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  border-left: 3px solid var(--gold-500);
}
.asl-show__name {
  font-weight: 600; color: var(--purple-900);
  font-size: .94rem; margin-bottom: 4px;
}
.asl-show__times {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.asl-show-time {
  font-size: .78rem; font-weight: 700;
  padding: 3px 9px; border-radius: var(--radius-pill);
  background: var(--cream-100); color: var(--purple-900);
  border: 1px solid rgba(184, 151, 94, .25);
}
.asl-show-time.is-passed {
  opacity: 0.4;
  text-decoration: line-through;
}
.asl-show-time.is-next {
  background: #C8EBD2;
  color: #1B5A2E;
  border-color: #4FBE6A;
  box-shadow: 0 0 0 2px rgba(79, 190, 106, .2);
}
.asl-legend {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: .72rem; color: var(--ink-soft);
  letter-spacing: .04em;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.asl-legend__dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  margin-right: 5px; vertical-align: middle;
}
.asl-legend__dot--next   { background: #4FBE6A; }
.asl-legend__dot--passed { background: rgba(58, 46, 90, .3); }

.asl-card__disclaimer {
  font-size: .8rem; color: var(--ink-soft); line-height: 1.55;
  background: rgba(255, 255, 255, 0.5); padding: 12px 14px; border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold-500); margin-top: 14px; margin-bottom: 0;
  position: relative; z-index: 1;
}

/* ============================================
   Team tiles (clickable cards for drawer)
   ============================================ */
.team-tiles {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-tile {
  position: relative; cursor: pointer;
  background: var(--cream-50);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(184, 151, 94, 0.18);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.team-tile:hover, .team-tile:focus {
  transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-500);
  outline: none;
}
.team-tile__photo {
  aspect-ratio: 3 / 4; overflow: hidden; background: var(--blush-100);
}
.team-tile__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.team-tile:hover .team-tile__photo img { transform: scale(1.06); }
.team-tile__body { padding: 20px 22px 22px; }
.team-tile__role {
  display: block;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-700); font-weight: 700; margin-bottom: 4px;
}
.team-tile__name {
  font-family: var(--font-display); font-weight: 600;
  color: var(--purple-900); font-size: 1.5rem; margin-bottom: 6px; line-height: 1.1;
}
.team-tile__tag {
  font-size: .88rem; color: var(--ink-soft); line-height: 1.45;
}
.team-tile__readmore {
  margin-top: 14px; font-size: .82rem; font-weight: 700;
  color: var(--purple-800); letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 6px;
}
.team-tile__readmore svg { width: 14px; height: 14px; }

/* ============================================
   Drawer (side panel)
   ============================================ */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none; opacity: 0;
  transition: opacity .25s ease;
}
.drawer.is-open { pointer-events: auto; opacity: 1; }
.drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(42, 31, 74, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(560px, 100%);
  background: var(--cream-50);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  transform: translateX(40px);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(42, 31, 74, 0.06);
  border: none; cursor: pointer;
  color: var(--purple-900);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.drawer__close:hover { background: rgba(42, 31, 74, 0.14); }
.drawer__close svg { width: 20px; height: 20px; }
.drawer__photo {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
}
.drawer__body { padding: 30px 34px 40px; }
.drawer__role {
  font-size: .76rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-700); font-weight: 700; margin-bottom: 4px;
}
.drawer__name { font-size: 2.6rem; margin-bottom: .15em; line-height: 1.05; }
.drawer__quote {
  font-family: var(--font-display); font-style: italic;
  color: var(--purple-800); font-size: 1.2rem; line-height: 1.4;
  border-left: 3px solid var(--gold-500); padding-left: 16px;
  margin: 18px 0 22px;
}
.drawer__tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.tag-pill {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: var(--purple-900);
  background: var(--blush-100);
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.drawer__bio p { font-size: .98rem; line-height: 1.7; }
.drawer__cta {
  margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap;
}

/* ============================================
   Insight / tip cards
   ============================================ */
.insight-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.insight-card {
  background: var(--cream-50);
  border: 1px solid rgba(184, 151, 94, 0.18);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-500); }
.insight-card__badge {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-700); margin-bottom: 10px;
}
.insight-card h3 { margin-bottom: .35em; font-size: 1.45rem; }
.insight-card p  { font-size: .96rem; flex: 1; }
.insight-card__link {
  margin-top: 10px; font-weight: 700; color: var(--purple-800);
  display: inline-flex; align-items: center; gap: 6px;
}
.insight-card__link:hover { color: var(--gold-700); }

/* ============================================
   Long-form article styling (Tips page)
   ============================================ */
.article {
  max-width: 760px; margin: 0 auto;
}
.article h2 { margin-top: 1.4em; }
.article h3 { margin-top: 1.2em; font-size: 1.5rem; }
.article ul { padding-left: 1.4em; margin-bottom: 1.3em; }
.article ul li { margin-bottom: .55em; color: var(--ink); }
.article blockquote {
  border-left: 3px solid var(--gold-500);
  padding: 14px 22px; margin: 24px 0;
  background: var(--cream-100);
  font-family: var(--font-display); font-style: italic;
  color: var(--purple-800); font-size: 1.15rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article .callout {
  background: var(--blush-100);
  border-radius: var(--radius-md);
  padding: 22px 26px; margin: 28px 0;
  border-left: 4px solid var(--gold-500);
}
.article .callout h4 {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--purple-900); margin-bottom: 8px;
}
.article .callout p:last-child { margin-bottom: 0; }
.article .toc {
  background: var(--cream-100);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 40px;
}
.article .toc h4 {
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-700); margin-bottom: 12px; font-family: var(--font-body); font-weight: 700;
}
.article .toc ul { padding-left: 0; list-style: none; columns: 2; column-gap: 28px; }
.article .toc ul li { margin-bottom: 8px; break-inside: avoid; }
.article .toc a { color: var(--purple-800); font-weight: 600; font-size: .96rem; }
@media (max-width: 600px) { .article .toc ul { columns: 1; } }

/* ============================================
   Fleet Tracker (cruise page)
   ============================================ */
.fleet-panel {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: 36px 32px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(184, 151, 94, 0.18);
  position: relative; overflow: hidden;
}
.fleet-panel::before {
  content: ""; position: absolute; bottom: -80px; right: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 166, 120, 0.18), transparent 70%);
  pointer-events: none;
}
.fleet-panel__head { position: relative; margin-bottom: 18px; }
.fleet-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
  position: relative;
}
.fleet-card {
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  border: 1px solid rgba(58, 46, 90, 0.1);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.fleet-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--gold-500); }
.fleet-card__head {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(58, 46, 90, 0.08);
}
.fleet-card__ship {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--purple-800); color: var(--gold-300);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 40px;
}
.fleet-card__ship svg { width: 22px; height: 22px; }
.fleet-card__name {
  font-family: var(--font-display); font-weight: 600;
  color: var(--purple-900); font-size: 1.2rem; line-height: 1.15;
}
.fleet-card__class {
  font-size: .76rem; color: var(--ink-soft); letter-spacing: .04em;
  margin-top: 2px;
}
.fleet-card__row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px; gap: 12px;
}
.fleet-card__label {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-700); font-weight: 700; flex: 0 0 80px;
}
.fleet-card__value {
  font-size: .94rem; color: var(--ink); text-align: right; flex: 1;
  display: inline-flex; align-items: center; gap: 6px; justify-content: flex-end;
}
.fleet-card__value strong { color: var(--purple-900); }
.fleet-card__value .anchor-icon {
  display: inline-flex; color: var(--gold-600);
}
.fleet-card__value .anchor-icon svg { width: 14px; height: 14px; }
.fleet-card__note {
  font-size: .85rem; color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.55); padding: 10px 12px;
  border-radius: var(--radius-sm); margin-top: 6px;
  border-left: 2px solid var(--gold-500);
}
.fleet-panel__disclaimer {
  font-size: .8rem; color: var(--ink-soft);
  margin: 20px 0 0; padding-top: 16px;
  border-top: 1px solid rgba(58, 46, 90, 0.08);
  position: relative;
}

/* ============================================
   runDisney Race Calendar
   ============================================ */
.race-hero {
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%);
  color: var(--cream-50);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-bottom: 18px;
  box-shadow: var(--shadow-md);
}
.race-hero h3 { color: var(--cream-50); margin-bottom: 4px; font-size: 1.6rem; }
.race-hero .eyebrow { color: var(--gold-300); margin-bottom: 6px; }
.race-hero p { color: rgba(253, 251, 246, 0.8); }
.race-hero__count {
  text-align: center; flex: 0 0 auto;
  background: rgba(228, 210, 174, 0.15);
  border: 1px solid rgba(228, 210, 174, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 22px;
}
.race-hero__num {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  color: var(--gold-300); font-size: 3rem; line-height: 1;
}
.race-hero__lbl {
  display: block; font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(253, 251, 246, 0.7); margin-top: 4px;
}
@media (max-width: 700px) {
  .race-hero { flex-direction: column; text-align: center; }
}

.race-alert {
  background: var(--blush-100);
  border: 1px solid rgba(184, 151, 94, 0.3);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-sm);
  padding: 14px 18px; margin-bottom: 18px;
  font-size: .96rem; color: var(--purple-900);
}

.race-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.race-card {
  background: var(--cream-50);
  border: 1px solid rgba(184, 151, 94, 0.2);
  border-radius: var(--radius-md);
  padding: 24px 26px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.race-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.race-card--wine::before  { background: linear-gradient(90deg, #8B3050, #C75B7A); }
.race-card--blue::before  { background: linear-gradient(90deg, #2A4F8E, #5C8FD9); }
.race-card--pink::before  { background: linear-gradient(90deg, #C84984, #F0A8C8); }
.race-card--green::before { background: linear-gradient(90deg, #3B7A5C, #7CC0A0); }
.race-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.race-card__head {
  display: flex; justify-content: space-between; align-items: center;
  margin: 6px 0 10px; gap: 12px; flex-wrap: wrap;
}
.race-card__when {
  font-size: .82rem; font-weight: 700; color: var(--ink);
  letter-spacing: .04em;
}
.race-card__status {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; padding: 4px 10px; border-radius: var(--radius-pill);
}
.race-card__status--soon { background: var(--gold-300); color: var(--purple-900); }
.race-card__status--open { background: #C8EBD2; color: #1B5A2E; }
.race-card__status--past { background: rgba(58, 46, 90, 0.1); color: var(--ink-soft); }
.race-card__name {
  font-size: 1.3rem; margin-bottom: 6px; font-family: var(--font-display);
  font-weight: 600; color: var(--purple-900);
}
.race-card__theme {
  font-size: .92rem; color: var(--ink-soft); margin-bottom: 14px;
}
.race-card__distances {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.race-distance {
  font-size: .76rem; font-weight: 700; letter-spacing: .04em;
  color: var(--purple-900);
  background: var(--blush-100);
  padding: 5px 10px; border-radius: var(--radius-pill);
}
.race-card__foot {
  margin-top: auto;
  padding-top: 14px; border-top: 1px solid rgba(58, 46, 90, 0.08);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.race-card__reg {
  font-size: .8rem; color: var(--ink-soft);
}
.race-card__link {
  font-size: .82rem; font-weight: 700; color: var(--purple-800);
  white-space: nowrap;
}
.race-card__link:hover { color: var(--gold-700); }

/* ============================================
   When-to-Visit Quiz
   ============================================ */
.quiz-container {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: 40px 38px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(184, 151, 94, 0.18);
}
.quiz-intro { margin-bottom: 32px; text-align: center; }
.quiz-intro h3 { font-size: 2rem; margin-bottom: 8px; }
.quiz-intro em { font-style: italic; color: var(--gold-700); }
.quiz-intro p { max-width: 560px; margin: 0 auto; color: var(--ink-soft); }

.quiz-sliders {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 32px;
}
.quiz-slider {
  display: block;
  background: var(--cream-100);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  border: 1px solid rgba(58, 46, 90, 0.06);
  cursor: pointer;
}
.quiz-slider__head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.quiz-slider__title {
  font-weight: 600; color: var(--purple-900); font-size: 1rem;
}
.quiz-slider__val {
  font-family: var(--font-display); font-weight: 600;
  color: var(--gold-700); font-size: 1.4rem;
  background: var(--cream-50); padding: 2px 12px; border-radius: var(--radius-pill);
  min-width: 44px; text-align: center;
}
.quiz-slider input[type="range"] {
  width: 100%; height: 8px; -webkit-appearance: none; appearance: none;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-600));
  border-radius: var(--radius-pill); outline: none;
}
.quiz-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--purple-800); cursor: pointer;
  border: 3px solid var(--cream-50);
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease;
}
.quiz-slider input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.quiz-slider input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--purple-800); cursor: pointer;
  border: 3px solid var(--cream-50);
}
.quiz-slider__scale {
  display: flex; justify-content: space-between;
  font-size: .72rem; color: var(--ink-soft); margin-top: 6px;
  letter-spacing: .05em;
}

.quiz-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.quiz-results { margin-top: 50px; }
.results-head { text-align: center; margin-bottom: 30px; }
.results-head h3 { font-size: 2rem; margin-bottom: 6px; }
.results-podium {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 30px;
}
.podium-card {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: 28px 26px 24px;
  border: 1px solid rgba(184, 151, 94, 0.2);
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.podium-card--1 {
  background: linear-gradient(180deg, var(--cream-50), var(--blush-100));
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
.podium-card__rank {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--gold-700); letter-spacing: .1em;
  margin-bottom: 6px;
}
.podium-card--1 .podium-card__rank {
  color: var(--purple-900); font-size: 1.25rem;
}
.podium-card__month {
  font-family: var(--font-display); font-weight: 600;
  color: var(--purple-900); font-size: 2.2rem; line-height: 1;
  margin-bottom: 12px;
}
.podium-card__bands {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.band {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; padding: 5px 10px; border-radius: var(--radius-pill);
  background: rgba(58, 46, 90, 0.06); color: var(--purple-900);
  white-space: nowrap;
}
.band--low  { background: #C8EBD2; color: #1B5A2E; }
.band--mid  { background: #F5E4B8; color: #7E5A1A; }
.band--high { background: #F2D0AC; color: #8E3E1A; }
.band--peak { background: #E8B0B0; color: #7E1A1A; }
.podium-card__why {
  font-size: .94rem; color: var(--ink); line-height: 1.5;
  margin-bottom: 10px; flex: 1;
}
.podium-card__event {
  font-size: .82rem; color: var(--ink-soft); font-style: italic;
  margin: 0; padding-top: 10px;
  border-top: 1px solid rgba(58, 46, 90, 0.08);
}

.results-rest { margin: 14px 0; }
.results-rest summary {
  cursor: pointer; font-weight: 600; color: var(--purple-800);
  padding: 12px 18px; background: var(--cream-100);
  border-radius: var(--radius-sm);
  list-style: none;
}
.results-rest summary::-webkit-details-marker { display: none; }
.results-rest summary::after { content: " ↓"; font-size: .88rem; }
.results-rest[open] summary::after { content: " ↑"; }
.results-table { padding: 18px 4px 0; display: grid; gap: 10px; }
.results-row {
  display: grid;
  grid-template-columns: 50px 110px auto auto auto 1fr;
  gap: 12px; align-items: center;
  padding: 10px 14px;
  background: var(--cream-50);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(58, 46, 90, 0.06);
  font-size: .9rem;
}
.results-row__rank {
  font-family: var(--font-display); font-weight: 700; color: var(--gold-700);
}
.results-row__month { font-weight: 600; color: var(--purple-900); }
.results-row__event { color: var(--ink-soft); font-size: .85rem; }
@media (max-width: 700px) {
  .results-row { grid-template-columns: auto auto auto; }
  .results-row__event { grid-column: 1 / -1; }
}

.results-cta {
  text-align: center; padding: 28px 24px;
  background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
  color: var(--cream-50); border-radius: var(--radius-md);
  margin-top: 24px;
}
.results-cta p { color: rgba(253, 251, 246, 0.85); }
.results-cta strong { color: var(--gold-300); }

/* ============================================
   Disney Offers
   ============================================ */
.offers-section {
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
}
.offers-head { text-align: center; margin-bottom: 28px; }
.offers-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.offer-card {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: 24px 26px 22px;
  border: 1px solid rgba(184, 151, 94, 0.2);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.offer-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.offer-card--gold::before    { background: linear-gradient(90deg, #9C7B45, #E4D2AE); }
.offer-card--blue::before    { background: linear-gradient(90deg, #2A4F8E, #5C8FD9); }
.offer-card--pink::before    { background: linear-gradient(90deg, #C84984, #F0A8C8); }
.offer-card--purple::before  { background: linear-gradient(90deg, #4A3D6F, #8C7CB8); }
.offer-card--green::before   { background: linear-gradient(90deg, #3B7A5C, #7CC0A0); }
.offer-card--teal::before    { background: linear-gradient(90deg, #2C7E8E, #6BBDCC); }
.offer-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-500); }
.offer-card__featured {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold-500); color: var(--purple-900);
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  padding: 4px 9px; border-radius: var(--radius-pill);
}
.offer-card__badge {
  display: inline-block;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-700);
  background: var(--cream-100);
  padding: 4px 10px; border-radius: var(--radius-pill);
  margin-top: 8px; margin-bottom: 10px;
}
.offer-card__title {
  font-size: 1.25rem; line-height: 1.2; margin-bottom: 8px;
  font-family: var(--font-display); font-weight: 600; color: var(--purple-900);
}
.offer-card__body {
  font-size: .92rem; color: var(--ink); flex: 1; margin-bottom: 12px; line-height: 1.5;
}
.offer-card__meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; padding: 8px 0; margin-bottom: 12px;
  border-top: 1px dashed rgba(58, 46, 90, 0.15);
  border-bottom: 1px dashed rgba(58, 46, 90, 0.15);
  gap: 10px; flex-wrap: wrap;
}
.offer-card__eligibility { color: var(--ink-soft); }
.offer-card__expiry { color: var(--purple-800); font-weight: 600; }
.offer-card__expiry.is-urgent {
  color: #8E3E1A; background: #F2D0AC;
  padding: 3px 8px; border-radius: var(--radius-pill); font-size: .72rem;
}
.offer-card__actions {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.offer-card__disney {
  font-size: .85rem; font-weight: 700; color: var(--purple-800);
}
.offer-card__disney:hover { color: var(--gold-700); }
.btn--sm { padding: 12px 20px; font-size: .85rem; min-height: 40px; line-height: 1.1; }
.offers-disclaimer {
  font-size: .78rem; color: var(--ink-soft); margin: 24px auto 0;
  max-width: 700px; text-align: center;
  padding-top: 18px; border-top: 1px solid rgba(58, 46, 90, 0.08);
}

/* ============================================
   Planning Windows
   ============================================ */
.planning-panel {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(184, 151, 94, 0.18);
}
.planning-head { text-align: center; margin-bottom: 24px; }
.planning-head h3 { font-size: 1.9rem; margin-bottom: 6px; }
.planning-input {
  text-align: center; margin: 0 auto 26px; max-width: 480px;
  background: var(--cream-100); padding: 20px 24px;
  border-radius: var(--radius-md); border: 1px solid rgba(184, 151, 94, 0.18);
}
.planning-input label {
  display: block; font-weight: 600; color: var(--purple-900);
  margin-bottom: 8px;
}
.planning-input input[type="date"] {
  width: 100%; max-width: 280px; padding: 12px 14px;
  border: 1.5px solid rgba(58, 46, 90, 0.18);
  border-radius: var(--radius-sm); background: var(--white);
  font-family: inherit; font-size: 1.05rem; color: var(--ink);
  font-weight: 600;
}
.planning-input input[type="date"]:focus {
  outline: none; border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(199, 166, 120, 0.18);
}
.planning-input__hint {
  display: block; font-size: .78rem; color: var(--ink-soft); margin-top: 8px;
}
.planning-summary {
  text-align: center; margin: 22px auto;
}
.planning-summary__num {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  color: var(--gold-700); font-size: 3rem; line-height: 1;
  margin-right: 8px; vertical-align: middle;
}
.planning-summary__txt {
  color: var(--ink); font-size: 1.05rem; vertical-align: middle;
}
.window-row {
  background: var(--cream-100);
  border-radius: var(--radius-sm);
  padding: 16px 18px; margin-bottom: 12px;
  border-left: 4px solid var(--gold-500);
}
.window-row--open { border-left-color: #4FBE6A; background: #E8F5EC; }
.window-row--past { opacity: 0.55; border-left-color: rgba(58, 46, 90, 0.2); }
.window-row__head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.window-row__label { font-family: var(--font-display); font-weight: 600; color: var(--purple-900); font-size: 1.15rem; }
.window-row__status {
  font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: rgba(184, 151, 94, 0.2); color: var(--purple-900);
}
.window-row--open .window-row__status { background: #2F9F4D; color: white; }
.window-row--past .window-row__status { background: rgba(58, 46, 90, 0.1); color: var(--ink-soft); }
.window-row__date { color: var(--ink); font-weight: 600; font-size: .96rem; margin-top: 4px; }
.window-row__why { color: var(--ink-soft); font-size: .9rem; margin: 6px 0 0; }
.planning-events { margin-top: 32px; }
.planning-events__title {
  font-family: var(--font-display); color: var(--purple-900);
  font-size: 1.3rem; margin-bottom: 16px; font-weight: 600;
}
.event-list { display: grid; gap: 10px; }
.event-row {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 14px; align-items: center;
  background: var(--cream-100);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  border: 1px solid rgba(58, 46, 90, 0.06);
}
.event-row__when {
  display: flex; flex-direction: column; align-items: flex-start;
  border-right: 1px solid rgba(58, 46, 90, 0.12); padding-right: 10px;
}
.event-row__days {
  font-family: var(--font-display); font-weight: 700; color: var(--gold-700);
  font-size: 1.4rem; line-height: 1;
}
.event-row__date {
  font-size: .72rem; color: var(--ink-soft); letter-spacing: .04em;
}
.event-row__name { font-weight: 600; color: var(--purple-900); font-size: 1rem; }
.event-row__hint { font-size: .82rem; color: var(--ink-soft); margin-top: 2px; }
.event-row__cat {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-700);
  background: var(--blush-100); padding: 2px 8px; border-radius: var(--radius-pill);
  margin-left: 4px;
}
.planning-cta {
  margin-top: 26px; padding: 20px 24px;
  background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
  color: var(--cream-50); border-radius: var(--radius-md);
  text-align: center;
}
.planning-cta p { color: rgba(253, 251, 246, 0.85); margin-bottom: 10px; }
.planning-cta strong { color: var(--gold-300); }
.planning-empty {
  text-align: center; padding: 22px; color: var(--ink-soft); font-style: italic;
}

/* ============================================
   Lead Magnet / Email Capture
   ============================================ */
.lead-magnet {
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%);
  color: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: 50px 48px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lead-magnet::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 210, 174, 0.2), transparent 70%);
}
.lead-magnet__cover {
  width: 220px; height: 285px;
  background: linear-gradient(135deg, var(--cream-100), var(--blush-100));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: rotate(-4deg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 18px;
  position: relative; z-index: 1;
  border: 2px solid var(--gold-500);
}
.lead-magnet__cover-eyebrow {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-700); margin-bottom: 10px;
}
.lead-magnet__cover-title {
  font-family: var(--font-display); font-weight: 600;
  color: var(--purple-900); font-size: 1.6rem;
  line-height: 1.1; text-align: center; margin-bottom: 12px;
}
.lead-magnet__cover-title em {
  font-style: italic; color: var(--gold-700);
  display: block; font-size: 1.4rem; margin: 4px 0;
}
.lead-magnet__cover-sub {
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--purple-800); font-weight: 600; text-align: center;
}
.lead-magnet__body { position: relative; z-index: 1; }
.lead-magnet h2 { color: var(--cream-50); margin-bottom: 6px; }
.lead-magnet h2 em { font-style: italic; color: var(--gold-300); }
.lead-magnet p { color: rgba(253, 251, 246, 0.85); }
.lead-form {
  margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap;
}
.lead-form input[type="email"] {
  flex: 1; min-width: 220px;
  padding: 14px 16px;
  border: 1.5px solid rgba(228, 210, 174, 0.5);
  border-radius: var(--radius-pill);
  background: rgba(253, 251, 246, 0.12);
  color: var(--cream-50); font-family: inherit; font-size: 1rem;
}
.lead-form input[type="email"]::placeholder { color: rgba(253, 251, 246, 0.78); }
.lead-form input[type="email"]:focus {
  outline: none; border-color: var(--gold-300);
  background: rgba(253, 251, 246, 0.18);
}
.lead-form .btn { flex: 0 0 auto; }
.lead-magnet__features {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  font-size: .82rem; color: rgba(253, 251, 246, 0.75);
  margin-top: 18px;
}
.lead-magnet__features span::before { content: "✦  "; color: var(--gold-300); }
@media (max-width: 900px) {
  .lead-magnet { grid-template-columns: 1fr; text-align: center; padding: 40px 30px; }
  .lead-magnet__cover { margin: 0 auto; transform: rotate(-2deg); }
  .lead-magnet__features { justify-content: center; }
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(20, 14, 36, 0.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 100%; max-height: 90vh; object-fit: contain;
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; background: rgba(253, 251, 246, 0.12);
  color: var(--cream-50); border: 1px solid rgba(253, 251, 246, 0.2);
  border-radius: 50%; cursor: pointer;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover {
  background: rgba(253, 251, 246, 0.25);
}
.lightbox__count {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(253, 251, 246, 0.7); font-size: .85rem; letter-spacing: .1em;
}
.gallery__item { cursor: zoom-in; }

/* ============================================
   Blog cards
   ============================================ */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(184, 151, 94, 0.18);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__photo { aspect-ratio: 16/9; overflow: hidden; }
.blog-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card__photo img { transform: scale(1.05); }
.blog-card__body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-700); margin-bottom: 8px;
}
.blog-card__title {
  font-family: var(--font-display); font-weight: 600; color: var(--purple-900);
  font-size: 1.35rem; line-height: 1.2; margin-bottom: 8px;
}
.blog-card__excerpt { color: var(--ink-soft); font-size: .92rem; flex: 1; }
.blog-card__more {
  margin-top: 12px; font-weight: 700; color: var(--purple-800); font-size: .88rem;
}
.blog-card__more:hover { color: var(--gold-700); }

/* Article (blog post) */
.post-header {
  text-align: center; padding: 0 0 30px;
  border-bottom: 1px solid rgba(58, 46, 90, 0.1); margin-bottom: 40px;
}
.post-header__meta {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-700); margin-bottom: 10px;
}
.post-header h1 { margin-bottom: 8px; }
.post-header__lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 640px; margin: 0 auto; }

/* ============================================
   Features Launchpad
   ============================================ */
.launch-section {
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
}
.launch-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.launch-tile {
  position: relative;
  background: var(--cream-50);
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 151, 94, 0.2);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-decoration: none; color: inherit;
}
.launch-tile:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: var(--gold-500); color: inherit;
}
.launch-tile__preview {
  height: 110px;
  background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
  color: var(--gold-300);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
}
.launch-tile__preview::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(228,210,174,.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(247,231,227,.12), transparent 50%);
}
.launch-tile__preview-content {
  position: relative; z-index: 1; text-align: center;
  font-family: var(--font-display); font-style: italic;
  color: var(--gold-300); font-size: 1rem; line-height: 1.3;
}
.launch-tile__preview-content strong {
  display: block;
  font-family: var(--font-display); font-style: normal;
  color: var(--cream-50); font-weight: 600; font-size: 1.5rem;
  margin: 4px 0;
}
.launch-tile__body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.launch-tile__badge {
  display: inline-block; align-self: flex-start;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-700);
  background: var(--cream-100);
  padding: 4px 10px; border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.launch-tile__title {
  font-family: var(--font-display); font-weight: 600;
  color: var(--purple-900); font-size: 1.3rem; line-height: 1.2;
  margin-bottom: 6px;
}
.launch-tile__desc {
  color: var(--ink-soft); font-size: .92rem; flex: 1;
  line-height: 1.5; margin-bottom: 12px;
}
.launch-tile__cta {
  font-weight: 700; color: var(--purple-800); font-size: .9rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.launch-tile:hover .launch-tile__cta { color: var(--gold-700); }
.launch-tile__live {
  position: absolute; top: 12px; right: 12px;
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--cream-50);
  background: rgba(79, 190, 106, 0.9);
  padding: 4px 9px; border-radius: var(--radius-pill);
  z-index: 2;
}

/* ============================================
   Rotating deal banner
   ============================================ */
.deal-ribbon {
  background: linear-gradient(90deg, var(--gold-700) 0%, var(--gold-500) 50%, var(--gold-700) 100%);
  color: var(--purple-900);
  font-size: .82rem;
  letter-spacing: .06em;
  padding: 9px 18px;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid rgba(42, 31, 74, 0.1);
  position: relative;
  overflow: hidden;
}
.deal-ribbon__inner {
  display: inline-flex; align-items: center; gap: 10px;
  transition: opacity .4s ease;
}
.deal-ribbon__inner.is-changing { opacity: 0; }
.deal-ribbon a {
  color: var(--purple-900); text-decoration: underline;
  text-underline-offset: 3px; font-weight: 700;
}
.deal-ribbon a:hover { color: var(--purple-900); text-decoration: underline; }
.deal-ribbon__sparkle { font-size: .9rem; }
.deal-ribbon__dots {
  display: inline-flex; gap: 4px; margin-left: 16px; vertical-align: middle;
}
.deal-ribbon__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(42, 31, 74, 0.25);
  transition: background .3s ease;
}
.deal-ribbon__dot.is-active { background: var(--purple-900); }

/* ============================================
   Nav dropdown — "Tools" submenu
   ============================================ */
.nav__has-sub { position: relative; }
.nav__sub-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 6px 0;
  color: var(--purple-900); font-family: inherit; font-weight: 500;
  font-size: .98rem; letter-spacing: .02em;
}
.nav__sub-toggle:hover, .nav__has-sub:hover .nav__sub-toggle { color: var(--gold-700); }
.nav__sub-toggle::after {
  content: ""; display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 4px; opacity: .6;
  transition: transform .2s ease;
}
.nav__has-sub:hover .nav__sub-toggle::after,
.nav__has-sub.is-open .nav__sub-toggle::after { transform: rotate(180deg); }

.nav__submenu {
  position: absolute;
  top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: var(--cream-50);
  border: 1px solid rgba(184, 151, 94, 0.2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  list-style: none; margin: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 102;
}
.nav__has-sub:hover .nav__submenu,
.nav__has-sub.is-open .nav__submenu,
.nav__has-sub:focus-within .nav__submenu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__submenu::before {
  content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: var(--cream-50);
  border-top: 1px solid rgba(184, 151, 94, 0.2);
  border-left: 1px solid rgba(184, 151, 94, 0.2);
}
.nav__submenu li { margin: 0; }
.nav__submenu a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  color: var(--purple-900); font-size: .94rem;
  transition: background .15s ease;
}
.nav__submenu a:hover { background: var(--cream-100); color: var(--purple-900); }
.nav__submenu a::after { display: none; }
.nav__sub-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 36px;
}
.nav__sub-icon svg { width: 20px; height: 20px; }
.nav__sub-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav__sub-name { font-weight: 600; }
.nav__sub-desc { font-size: .76rem; color: var(--ink-soft); margin-top: 2px; }

/* Tool-specific accent backgrounds for the submenu icons */
.nav__sub-icon--offers   { background: var(--peach-300); color: var(--peach-700); }
.nav__sub-icon--parks    { background: var(--ocean-300); color: var(--ocean-700); }
.nav__sub-icon--fleet    { background: var(--teal-300);  color: var(--teal-700);  }
.nav__sub-icon--races    { background: var(--rose-300);  color: var(--rose-700);  }
.nav__sub-icon--quiz     { background: var(--sage-300);  color: var(--sage-700);  }
.nav__sub-icon--planning { background: var(--coral-300); color: var(--coral-700); }

@media (max-width: 900px) {
  .nav__submenu {
    position: static; transform: none; box-shadow: none;
    background: var(--cream-100); border: none; margin-top: 8px;
    opacity: 1; pointer-events: auto;
    min-width: 0; width: 100%;
    display: none;
  }
  .nav__has-sub.is-open .nav__submenu { display: block; }
  .nav__submenu::before { display: none; }
}

/* ============================================
   Featured tool spotlight (rotates per visit)
   ============================================ */
.featured-tool {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 50px);
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  align-items: center;
  border: 1px solid rgba(58, 46, 90, 0.08);
  box-shadow: var(--shadow-md);
}
@media (max-width: 800px) { .featured-tool { grid-template-columns: 1fr; gap: 24px; text-align: center; } }
.featured-tool__eyebrow {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 8px;
}
.featured-tool h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px;
}
.featured-tool h3 em { font-style: italic; }
.featured-tool p { font-size: 1.02rem; line-height: 1.55; margin-bottom: 18px; }
.featured-tool__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .96rem; letter-spacing: .03em;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.featured-tool__cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.featured-tool__art {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.featured-tool__art svg { width: 100%; max-width: 280px; height: auto; }
.featured-tool__chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

/* Per-accent variants */
.featured-tool--offers {
  background: linear-gradient(135deg, #FAEEDD 0%, #F4D2A8 100%);
}
.featured-tool--offers h3, .featured-tool--offers .featured-tool__eyebrow { color: var(--peach-700); }
.featured-tool--offers p { color: var(--ink); }
.featured-tool--offers .featured-tool__cta { background: var(--peach-700); color: var(--cream-50); }
.featured-tool--offers .featured-tool__chip { background: rgba(216, 159, 92, 0.25); color: var(--peach-700); }

.featured-tool--parks {
  background: linear-gradient(135deg, #E4F0F8 0%, #B0CFEA 100%);
}
.featured-tool--parks h3, .featured-tool--parks .featured-tool__eyebrow { color: var(--ocean-700); }
.featured-tool--parks .featured-tool__cta { background: var(--ocean-700); color: var(--cream-50); }
.featured-tool--parks .featured-tool__chip { background: rgba(99, 149, 198, 0.25); color: var(--ocean-700); }

.featured-tool--fleet {
  background: linear-gradient(135deg, #DCEDEF 0%, #A8D4D8 100%);
}
.featured-tool--fleet h3, .featured-tool--fleet .featured-tool__eyebrow { color: var(--teal-700); }
.featured-tool--fleet .featured-tool__cta { background: var(--teal-700); color: var(--cream-50); }
.featured-tool--fleet .featured-tool__chip { background: rgba(79, 157, 170, 0.25); color: var(--teal-700); }

.featured-tool--races {
  background: linear-gradient(135deg, #FAE3EB 0%, #F4C5D4 100%);
}
.featured-tool--races h3, .featured-tool--races .featured-tool__eyebrow { color: var(--rose-700); }
.featured-tool--races .featured-tool__cta { background: var(--rose-700); color: var(--cream-50); }
.featured-tool--races .featured-tool__chip { background: rgba(210, 127, 157, 0.25); color: var(--rose-700); }

.featured-tool--quiz {
  background: linear-gradient(135deg, #E8F1DF 0%, #C5DAB7 100%);
}
.featured-tool--quiz h3, .featured-tool--quiz .featured-tool__eyebrow { color: var(--sage-700); }
.featured-tool--quiz .featured-tool__cta { background: var(--sage-700); color: var(--cream-50); }
.featured-tool--quiz .featured-tool__chip { background: rgba(122, 171, 96, 0.25); color: var(--sage-700); }

.featured-tool--planning {
  background: linear-gradient(135deg, #FAE0D6 0%, #F2B5A3 100%);
}
.featured-tool--planning h3, .featured-tool--planning .featured-tool__eyebrow { color: var(--coral-700); }
.featured-tool--planning .featured-tool__cta { background: var(--coral-700); color: var(--cream-50); }
.featured-tool--planning .featured-tool__chip { background: rgba(216, 122, 96, 0.25); color: var(--coral-700); }

/* Auto-refresh timestamp chip */
.refresh-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; letter-spacing: .04em;
  color: var(--ink-soft);
  background: var(--cream-100);
  padding: 4px 10px; border-radius: var(--radius-pill);
  margin-top: 8px;
}
.refresh-chip__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4FBE6A;
  animation: pulse 2.4s infinite;
}

/* ============================================
   Long-form content components
   Factoid nuggets, pull quotes, photo breaks
   ============================================ */

/* Factoid nugget — drop into article body to break up text */
.factoid {
  display: grid; grid-template-columns: 76px 1fr; gap: 18px;
  background: var(--cream-100);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin: 30px 0;
  border-left: 4px solid var(--gold-500);
  align-items: center;
}
.factoid__num {
  font-family: var(--font-display); font-weight: 700;
  color: var(--gold-700); font-size: 2.4rem; line-height: 1;
  text-align: center;
}
.factoid__num em { font-style: italic; }
.factoid__body { line-height: 1.5; }
.factoid__label {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-700); margin-bottom: 4px;
}
.factoid__text { color: var(--ink); font-size: .96rem; margin: 0; }
.factoid__text strong { color: var(--purple-900); }
/* Variants */
.factoid--ocean   { border-left-color: var(--ocean-500); }
.factoid--ocean   .factoid__num, .factoid--ocean   .factoid__label { color: var(--ocean-700); }
.factoid--teal    { border-left-color: var(--teal-500); }
.factoid--teal    .factoid__num, .factoid--teal    .factoid__label { color: var(--teal-700); }
.factoid--rose    { border-left-color: var(--rose-500); }
.factoid--rose    .factoid__num, .factoid--rose    .factoid__label { color: var(--rose-700); }
.factoid--sage    { border-left-color: var(--sage-500); }
.factoid--sage    .factoid__num, .factoid--sage    .factoid__label { color: var(--sage-700); }
.factoid--coral   { border-left-color: var(--coral-500); }
.factoid--coral   .factoid__num, .factoid--coral   .factoid__label { color: var(--coral-700); }

/* Pull-quote — author-attributed */
.pull-quote {
  margin: 36px 0;
  padding: 28px 30px;
  background: linear-gradient(135deg, var(--cream-50), var(--cream-100));
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 151, 94, 0.2);
  position: relative;
}
.pull-quote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-500);
  position: absolute;
  top: 8px; left: 16px;
  opacity: .35;
}
.pull-quote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--purple-900);
  margin: 0 0 14px 32px;
}
.pull-quote__attr {
  display: flex; align-items: center; gap: 12px;
  margin-left: 32px; padding-top: 10px;
  border-top: 1px solid rgba(58, 46, 90, 0.1);
}
.pull-quote__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; flex: 0 0 44px;
  background: var(--blush-100);
}
.pull-quote__avatar img { width: 100%; height: 100%; object-fit: cover; }
.pull-quote__name { font-weight: 700; color: var(--purple-900); font-size: .95rem; }
.pull-quote__title { font-size: .78rem; color: var(--ink-soft); }
@media (max-width: 600px) {
  .pull-quote::before { font-size: 3rem; }
  .pull-quote__text { margin-left: 18px; font-size: 1.1rem; }
  .pull-quote__attr { margin-left: 18px; }
}

/* Inline photo break — small image with caption */
.photo-break {
  margin: 36px -10px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.photo-break img { width: 100%; height: auto; display: block; }
.photo-break__cap {
  background: var(--cream-100);
  padding: 10px 16px;
  font-size: .82rem;
  color: var(--ink-soft);
  font-style: italic;
  border-top: 1px solid rgba(184, 151, 94, 0.2);
}

/* Sidebar nugget — pulls out of body to side on wide screens */
.aside-nugget {
  background: var(--blush-100);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin: 30px 0;
  border-left: 4px solid var(--rose-500);
}
.aside-nugget__title {
  font-family: var(--font-display); font-weight: 600;
  color: var(--purple-900); font-size: 1.15rem;
  margin: 0 0 8px;
}
.aside-nugget__body { font-size: .94rem; color: var(--ink); margin: 0; line-height: 1.5; }
.aside-nugget__body p { margin: 0 0 .6em; }
.aside-nugget__body p:last-child { margin-bottom: 0; }

/* Multi-stat row — for header sections */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  margin: 32px 0;
  padding: 24px;
  background: linear-gradient(135deg, var(--cream-100), var(--cream-50));
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 151, 94, 0.2);
}
.stat-row__item { text-align: center; }
.stat-row__num {
  font-family: var(--font-display); font-weight: 700;
  color: var(--purple-900); font-size: 2.4rem; line-height: 1;
  margin-bottom: 4px;
}
.stat-row__num em { font-style: italic; color: var(--gold-700); }
.stat-row__lbl {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
}

/* ============================================
   Mobile polish — audit fixes (2026-05-13)
   Append-only; complements the existing @media rules above.
   ============================================ */

/* — drawer + nav CTA cleanup (≤900px) — */
@media (max-width: 900px) {
  .nav__links { width: min(320px, calc(100vw - 32px)); }
  .nav__links li:last-child {
    width: 100%; margin-top: 6px; padding-top: 14px;
    border-top: 1px solid rgba(58,46,90,.08);
  }
  .nav__cta {
    display: flex; width: 100%; justify-content: center;
    padding: 14px 18px;
  }
  .nav__links > li > a:not(.nav__cta) {
    padding: 10px 0; min-height: 44px;
    display: flex; align-items: center;
  }
  .nav__sub-toggle {
    width: 100%; justify-content: space-between;
    padding: 10px 0; min-height: 44px;
  }
  .nav__submenu a { padding: 12px 10px; min-height: 48px; }
  .hero__visual { overflow: visible; max-width: 380px; }
  .hero__badge {
    width: 110px; height: 110px; font-size: .92rem;
    bottom: -14px; left: -10px; padding: 12px;
  }
}

/* — tighten table on tablet down (≤800px) — */
@media (max-width: 800px) {
  .agent-section table, .agent-table {
    display: block; overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .agent-table { min-width: 720px; font-size: .85rem; }
  .agent-sidebar__nav {
    width: 100%; overflow-x: auto; flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .agent-sidebar__nav a { white-space: nowrap; }
}

/* — phone polish (≤600px) — */
@media (max-width: 600px) {
  .topbar { font-size: .7rem; letter-spacing: .05em; padding: 6px 12px; }
  .deal-ribbon { font-size: .74rem; padding: 8px 14px; letter-spacing: .03em; }
  .deal-ribbon__dots { display: none; }
  .park-strip {
    font-size: .72rem; padding: 8px 14px;
    text-align: left; position: relative;
  }
  .hero { padding: 48px 0 64px; }
  .form-card { padding: 24px 18px; }
  .form-grid input, .form-grid select, .form-grid textarea {
    font-size: 16px;  /* prevents iOS Safari auto-zoom on focus */
    padding: 12px 14px;
  }
  .cta-strip::before { display: none; }
  .cta-strip { padding: 36px 22px; }
  .lead-form { flex-direction: column; }
  .lead-form input[type="email"], .lead-form .btn {
    width: 100%; min-width: 0;
  }
  .lead-magnet__cover { width: 180px; height: 235px; }
  .lead-magnet__cover-title { font-size: 1.35rem; }
}

/* — smallest phones (≤480px) — */
@media (max-width: 480px) {
  .nav__brand img { height: 42px; }
  .nav__brand-text { font-size: 1rem; }
  .nav__brand-text small { display: none; }
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .hero__cta-row .btn { justify-content: center; }
  .btn--lg { padding: 16px 24px; font-size: 1rem; }
  .factoid {
    grid-template-columns: 56px 1fr;
    gap: 12px; padding: 18px;
  }
  .factoid__num { font-size: 1.9rem; }
}

