/* Park Pulse Daily — Site Styles (Whimsical Edition) */

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #6C3CE1;
  --purple-dark: #4A23AA;
  --purple-light: #EDE5FF;
  --purple-wash: #F5F0FF;
  --navy: #1A1040;
  --navy-mid: #2A1F50;
  --yellow: #FFD046;
  --yellow-light: #FFF8DC;
  --text: #2A1F50;
  --muted: #7A6FA0;
  --lavender: #F5F0FF;
  --border: #E8E0FF;
  --white: #ffffff;
  --max-width: 640px;
  /* Park accent colors */
  --disney: #6C3CE1;
  --universal: #00C271;
  --seaworld: #00B4CC;
  --busch: #FF6B2C;
  --other: #FF4FAD;
}

html { font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--lavender);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ── Layout ───────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Nav / Masthead ───────────────────────────────── */
.site-nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(108,60,225,0.1);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Wordmark: "Park" dark, "Pulse" vivid gradient, "Daily" soft italic */
.site-nav__wordmark {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
  color: var(--navy);
}
.site-nav__wordmark:hover { text-decoration: none; }
.site-nav__wordmark span {
  background: linear-gradient(125deg, #6C3CE1 0%, #c44dff 55%, #FF4FAD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-nav__wordmark em {
  font-style: italic;
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--muted);
  font-weight: 400;
  -webkit-text-fill-color: var(--muted);
}

.site-nav__links {
  display: flex;
  gap: 24px;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-nav__links a { color: var(--muted); transition: color 0.15s; }
.site-nav__links a:hover { color: var(--purple); text-decoration: none; }

/* ── Hero / Landing ───────────────────────────────── */
.hero {
  text-align: center;
  padding: 80px 24px 100px;
  /* Sparkle dot + rich mesh gradient */
  background:
    radial-gradient(circle, rgba(255,208,70,0.18) 1px, transparent 1px),
    radial-gradient(ellipse 100% 80% at 10% 110%, rgba(108,60,225,0.5) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 95% -10%, rgba(196,77,255,0.25) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(255,79,173,0.15) 0%, transparent 60%),
    linear-gradient(160deg, #110830 0%, #1e0c50 45%, #12092e 100%);
  background-size: 26px 26px, auto, auto, auto, auto;
  position: relative;
  overflow: hidden;
}

/* Animated shimmer orb top-right */
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(196,77,255,0.22) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroOrb 8s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Scalloped bottom — flat base flush with hero edge, only top is arched */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -20%;
  right: -20%;
  height: 80px;
  background: var(--lavender);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero__tagline {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255,208,70,0.9);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.hero__headline {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
}

/* "Pulse" in headline gets the same gradient as the wordmark */
.hero__headline span {
  background: linear-gradient(125deg, #FFD046 0%, #FF9F1C 60%, #FF4FAD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__deck {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero .signup-form input[type="email"] {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 99px;
}
.hero .signup-form input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.hero .signup-form input[type="email"]:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,208,70,0.22);
  background: rgba(255,255,255,0.15);
}
.hero .signup-form button {
  background: linear-gradient(125deg, #FFD046 0%, #FF9F1C 100%);
  color: var(--navy);
  border-radius: 99px;
  box-shadow: 0 4px 16px rgba(255,208,70,0.35);
  font-weight: 800;
}
.hero .signup-form button:hover {
  background: linear-gradient(125deg, #ffe066 0%, #FFB02E 100%);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,208,70,0.45);
}

/* ── Signup Form ──────────────────────────────────── */
.signup-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
}

.signup-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: 99px;
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.signup-form input[type="email"]::placeholder { color: var(--muted); }
.signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(108,60,225,0.15);
}

.signup-form button {
  padding: 14px 28px;
  background: linear-gradient(135deg, #6C3CE1 0%, #9B4FE8 100%);
  color: var(--white);
  border: none;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  box-shadow: 0 3px 10px rgba(108,60,225,0.35);
  letter-spacing: 0.01em;
}
.signup-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(108,60,225,0.4);
  filter: brightness(1.08);
}

/* ── Value Props ──────────────────────────────────── */
.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-bottom: 8px;
}

.value-prop {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 22px 26px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}

/* Top color stripe per park */
.value-prop:nth-child(1) { border-top: 4px solid var(--disney); }
.value-prop:nth-child(2) { border-top: 4px solid var(--universal); }
.value-prop:nth-child(3) { border-top: 4px solid var(--seaworld); }

/* Subtle wash behind each card */
.value-prop:nth-child(1)::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(180deg, rgba(108,60,225,0.05) 0%, transparent 100%);
  pointer-events: none;
}
.value-prop:nth-child(2)::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(180deg, rgba(0,194,113,0.05) 0%, transparent 100%);
  pointer-events: none;
}
.value-prop:nth-child(3)::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(180deg, rgba(0,180,204,0.05) 0%, transparent 100%);
  pointer-events: none;
}

.value-prop:hover {
  transform: translateY(-4px) rotate(-0.5deg);
}
.value-prop:nth-child(1):hover { box-shadow: 0 8px 24px rgba(108,60,225,0.18); }
.value-prop:nth-child(2):hover { box-shadow: 0 8px 24px rgba(0,194,113,0.18); }
.value-prop:nth-child(3):hover { box-shadow: 0 8px 24px rgba(0,180,204,0.18); }

.value-prop__icon {
  display: block;
  font-size: 32px;
  margin-bottom: 12px;
  animation: iconBounce 3s ease-in-out infinite;
}
.value-prop:nth-child(2) .value-prop__icon { animation-delay: 0.6s; }
.value-prop:nth-child(3) .value-prop__icon { animation-delay: 1.2s; }

.value-prop__title {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-prop__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Park Badges Strip ────────────────────────────── */
.park-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 28px 0 10px;
}

.park-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  letter-spacing: 0.04em;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: default;
}
.park-badge:hover { transform: translateY(-2px) scale(1.06); }

.park-badge--disney  {
  background: var(--purple-light);
  color: var(--purple);
  box-shadow: 0 2px 8px rgba(108,60,225,0.18);
}
.park-badge--universal {
  background: #DFFBEF;
  color: #007a45;
  box-shadow: 0 2px 8px rgba(0,194,113,0.18);
}
.park-badge--seaworld {
  background: #E0F8FC;
  color: #007a8a;
  box-shadow: 0 2px 8px rgba(0,180,204,0.18);
}
.park-badge--busch {
  background: #FFEEE6;
  color: #a33500;
  box-shadow: 0 2px 8px rgba(255,107,44,0.18);
}
.park-badge--other {
  background: #FFE8F5;
  color: #a01060;
  box-shadow: 0 2px 8px rgba(255,79,173,0.18);
}

/* ── Bottom CTA ──────────────────────────────────── */
.bottom-cta {
  text-align: center;
  background: linear-gradient(140deg, #1A1040 0%, #3B1472 45%, #1c2060 100%);
  border-radius: 20px;
  padding: 52px 32px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26,16,64,0.3);
}

/* Decorative orb inside bottom CTA */
.bottom-cta::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,208,70,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.bottom-cta::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(196,77,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.bottom-cta__headline {
  position: relative;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.bottom-cta__text {
  position: relative;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.55;
}

.bottom-cta .signup-form { position: relative; }
.bottom-cta .signup-form input[type="email"] {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.bottom-cta .signup-form input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.bottom-cta .signup-form input[type="email"]:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,208,70,0.22);
  background: rgba(255,255,255,0.15);
}
.bottom-cta .signup-form button {
  background: linear-gradient(125deg, #FFD046 0%, #FF9F1C 100%);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(255,208,70,0.35);
  font-weight: 800;
}
.bottom-cta .signup-form button:hover {
  background: linear-gradient(125deg, #ffe066 0%, #FFB02E 100%);
  box-shadow: 0 6px 20px rgba(255,208,70,0.45);
}

/* ── Latest Edition Card — ticket-stub style ─────── */
.latest-edition {
  background: var(--white);
  /* Dashed outer border to suggest a ticket */
  border: 2px dashed rgba(108,60,225,0.35);
  border-radius: 16px;
  padding: 36px 36px 32px;
  margin: 48px 0;
  text-align: center;
  box-shadow: 0 4px 24px rgba(108,60,225,0.1);
  position: relative;
  overflow: hidden;
}

/* Top rainbow stripe — like a ticket header */
.latest-edition::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    var(--disney) 0%, var(--disney) 20%,
    var(--universal) 20%, var(--universal) 40%,
    var(--seaworld) 40%, var(--seaworld) 60%,
    var(--busch) 60%, var(--busch) 80%,
    var(--other) 80%, var(--other) 100%);
}

.latest-edition__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, #6C3CE1 0%, #c44dff 100%);
  padding: 5px 16px;
  border-radius: 99px;
  margin-bottom: 18px;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(108,60,225,0.3);
}

.latest-edition__date {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.latest-edition__preview {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.latest-edition__link {
  display: inline-block;
  padding: 13px 32px;
  background: linear-gradient(135deg, #6C3CE1 0%, #9B4FE8 100%);
  color: var(--white);
  border-radius: 99px;
  font-size: 14px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  letter-spacing: 0.05em;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  box-shadow: 0 3px 12px rgba(108,60,225,0.35);
}
.latest-edition__link:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108,60,225,0.4);
  filter: brightness(1.08);
}

/* ── Archive CTA ──────────────────────────────────── */
.archive-cta {
  text-align: center;
  padding-bottom: 56px;
}
.archive-cta a {
  font-size: 14px;
  font-weight: 800;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border: 2px solid var(--purple-light);
  border-radius: 99px;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.archive-cta a:hover {
  border-color: var(--purple);
  background: var(--purple-light);
  text-decoration: none;
}

/* ── Archive List ─────────────────────────────────── */
.archive-header {
  padding: 48px 0 28px;
  text-align: center;
}

.archive-header h1 {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
}

.archive-list {
  list-style: none;
  padding-bottom: 48px;
}

/* Cycle park colors on left border */
.archive-list__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--purple);
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s;
}
.archive-list__item:nth-child(5n+1) { border-left-color: var(--disney); }
.archive-list__item:nth-child(5n+2) { border-left-color: var(--universal); }
.archive-list__item:nth-child(5n+3) { border-left-color: var(--seaworld); }
.archive-list__item:nth-child(5n+4) { border-left-color: var(--busch); }
.archive-list__item:nth-child(5n+5) { border-left-color: var(--other); }

.archive-list__item:hover {
  box-shadow: 0 4px 18px rgba(108,60,225,0.12);
  transform: translateX(3px);
}

.archive-list__date {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}

.archive-list__preview {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.archive-list__item a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  width: 100%;
}
.archive-list__item a:hover { text-decoration: none; }

/* ── Back Link ────────────────────────────────────── */
.back-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  padding: 6px 14px;
  border: 1.5px solid var(--purple-light);
  border-radius: 99px;
  transition: background 0.15s, border-color 0.15s;
}
.back-link:hover {
  background: var(--purple-light);
  border-color: var(--purple);
  text-decoration: none;
  color: var(--purple-dark);
}

/* ── Edition Wrapper ──────────────────────────────── */
.edition-header {
  text-align: center;
  padding: 36px 0 28px;
}

.edition-header__date {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.edition-header__preview {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.5;
}

.edition-iframe {
  width: 100%;
  min-height: 800px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  margin-bottom: 32px;
  box-shadow: 0 6px 28px rgba(108,60,225,0.1);
  display: block;
}

/* ── Subscribe CTA strip ─────────────────────────── */
.subscribe-cta {
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(140deg, #1A1040 0%, #3B1472 50%, #1c2060 100%);
  border-radius: 16px;
  margin-top: 16px;
  margin-bottom: 32px;
  box-shadow: 0 6px 28px rgba(26,16,64,0.25);
}

.subscribe-cta p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.subscribe-cta .signup-form input[type="email"] {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.subscribe-cta .signup-form input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.subscribe-cta .signup-form input[type="email"]:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,208,70,0.22);
  background: rgba(255,255,255,0.15);
}
.subscribe-cta .signup-form button {
  background: linear-gradient(125deg, #FFD046 0%, #FF9F1C 100%);
  color: var(--navy);
  box-shadow: 0 3px 12px rgba(255,208,70,0.35);
  font-weight: 800;
}
.subscribe-cta .signup-form button:hover {
  background: linear-gradient(125deg, #ffe066 0%, #FFB02E 100%);
  box-shadow: 0 5px 18px rgba(255,208,70,0.45);
}

/* ── Form Messages ───────────────────────────────── */
.signup-form__msg {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 99px;
  margin-top: 12px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 0.3s ease;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
}

.signup-form__msg--success {
  background: var(--purple-light);
  color: var(--purple-dark);
  border: 1.5px solid rgba(108,60,225,0.25);
}

.signup-form__msg--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1.5px solid rgba(153,27,27,0.15);
}

/* On dark backgrounds */
.hero .signup-form__msg--success,
.bottom-cta .signup-form__msg--success,
.subscribe-cta .signup-form__msg--success {
  background: rgba(255,208,70,0.15);
  color: var(--yellow);
  border-color: rgba(255,208,70,0.35);
}

.hero .signup-form__msg--error,
.bottom-cta .signup-form__msg--error,
.subscribe-cta .signup-form__msg--error {
  background: rgba(255,100,100,0.15);
  color: #fca5a5;
  border-color: rgba(255,100,100,0.25);
}

.signup-form button:disabled { opacity: 0.7; cursor: not-allowed; }

/* ── Keyframe Animations ─────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroOrb {
  from { transform: translate(0, 0) scale(1); opacity: 0.8; }
  to   { transform: translate(-30px, 30px) scale(1.2); opacity: 1; }
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: 24px 0;
  border-top: 2px solid var(--border);
  margin-top: 24px;
}

.site-footer p {
  font-size: 12px;
  color: var(--muted);
}

/* ── Responsive ───────────────────────────────────── */

/* Tablet / small desktop */
@media (max-width: 680px) {
  .container { padding: 0 16px; }
  .value-props { grid-template-columns: 1fr; gap: 12px; }
  .value-prop { padding: 22px 18px; }
  .latest-edition { padding: 28px 22px; margin: 36px 0; }
  .latest-edition__date { font-size: 22px; }
  .archive-header { padding: 36px 0 20px; }
  .archive-header h1 { font-size: 26px; }
  .archive-list__item { padding: 18px 20px; }
  .archive-list__date { font-size: 16px; }
  .edition-header { padding: 28px 0 20px; }
  .edition-header__date { font-size: 24px; }
  .edition-header__preview { font-size: 13px; }
}

/* Mobile */
@media (max-width: 520px) {
  .container { padding: 0 14px; }

  /* Nav */
  .site-nav { padding: 10px 0; }
  .site-nav__wordmark { font-size: 18px; }
  .site-nav__links { gap: 16px; font-size: 12px; }

  /* Hero */
  .hero { padding: 48px 16px 90px; }
  .hero__tagline { font-size: 13px; margin-bottom: 14px; }
  .hero__headline { font-size: 34px; letter-spacing: -1.2px; margin-bottom: 18px; }
  .hero__deck { font-size: 14px; margin-bottom: 28px; line-height: 1.55; }

  /* Signup forms — stack vertically */
  .signup-form { flex-direction: column; max-width: 100%; }
  .signup-form input[type="email"] { font-size: 16px; padding: 13px 18px; }
  .signup-form button { padding: 13px 20px; font-size: 15px; }

  /* Value props */
  .value-props { grid-template-columns: 1fr; gap: 10px; margin-top: 28px; }
  .value-prop { padding: 20px 16px; }
  .value-prop__title { font-size: 16px; }
  .value-prop__text { font-size: 12px; }

  /* Latest edition card */
  .latest-edition { padding: 22px 18px; margin: 28px 0; }
  .latest-edition__date { font-size: 20px; }
  .latest-edition__preview { font-size: 13px; margin-bottom: 18px; }
  .latest-edition__link { padding: 11px 24px; font-size: 13px; }

  /* Bottom CTA */
  .bottom-cta { padding: 32px 16px; border-radius: 14px; margin-bottom: 24px; }
  .bottom-cta__headline { font-size: 23px; }
  .bottom-cta__text { font-size: 14px; }

  /* Archive list */
  .archive-header { padding: 28px 0 16px; }
  .archive-header h1 { font-size: 24px; }
  .archive-list { padding-bottom: 32px; }
  .archive-list__item { flex-direction: column; gap: 4px; padding: 16px; margin-bottom: 8px; }
  .archive-list__item:hover { transform: none; }
  .archive-list__item a { flex-direction: column; gap: 4px; }
  .archive-list__date { font-size: 15px; }
  .archive-list__preview { white-space: normal; font-size: 12px; line-height: 1.45; }

  /* Archive CTA */
  .archive-cta { padding-bottom: 36px; }

  /* Edition wrapper pages */
  .back-link { margin-top: 16px; font-size: 12px; }
  .edition-header { padding: 20px 0 16px; }
  .edition-header__date { font-size: 20px; margin-bottom: 6px; }
  .edition-header__preview { font-size: 12px; line-height: 1.45; }
  .edition-iframe { border-radius: 8px; margin-bottom: 20px; }
  .subscribe-cta { padding: 26px 14px; border-radius: 12px; margin-bottom: 24px; }
  .subscribe-cta p { font-size: 14px; margin-bottom: 14px; }

  /* Form messages */
  .signup-form__msg { font-size: 13px; padding: 10px 16px; }

  /* Footer */
  .site-footer { padding: 18px 0; margin-top: 16px; }
}

/* Narrow phones (≤ 420px) */
@media (max-width: 420px) {
  .container { padding: 0 12px; }

  .site-nav { padding: 8px 0; }
  .site-nav__wordmark { font-size: 16px; }
  .site-nav__links { gap: 12px; font-size: 11px; }

  .hero { padding: 38px 12px 80px; }
  .hero__tagline { font-size: 12px; margin-bottom: 12px; }
  .hero__headline { font-size: 28px; letter-spacing: -1px; margin-bottom: 14px; }
  .hero__deck { font-size: 13px; margin-bottom: 24px; }

  .signup-form input[type="email"] { padding: 12px 16px; font-size: 15px; }
  .signup-form button { padding: 12px 16px; font-size: 14px; }

  .value-prop { padding: 18px 14px; }
  .value-prop__icon { font-size: 26px; margin-bottom: 8px; }
  .value-prop__title { font-size: 15px; }

  .latest-edition { padding: 20px 14px; margin: 24px 0; }
  .latest-edition__label { font-size: 10px; padding: 4px 12px; }
  .latest-edition__date { font-size: 19px; }
  .latest-edition__preview { font-size: 12px; }
  .latest-edition__link { padding: 11px 20px; font-size: 12px; }

  .bottom-cta { padding: 26px 14px; margin-bottom: 20px; }
  .bottom-cta__headline { font-size: 21px; }
  .bottom-cta__text { font-size: 13px; }

  .archive-header h1 { font-size: 22px; }
  .archive-list__item { padding: 14px 12px; }
  .archive-list__date { font-size: 14px; }
  .archive-list__preview { font-size: 11px; }

  .edition-header__date { font-size: 18px; }
  .edition-header__preview { font-size: 11px; }
  .subscribe-cta { padding: 22px 12px; }
  .subscribe-cta p { font-size: 13px; }
}

/* ── FULL EVENT CALENDAR ─────────────────────────── */
.cal-section { margin-top: 32px; }

.cal-wrapper {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 0 var(--border);
}

.cal-header {
  background: var(--navy);
  padding: 20px 22px 16px;
}

.cal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.cal-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  margin-top: 3px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.5px;
}

.month-tabs {
  display: flex;
  background: #f0ebff;
  padding: 10px 14px;
  overflow-x: auto;
  scrollbar-width: none;
}
.month-tabs::-webkit-scrollbar { display: none; }

.mtab {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 7px 16px;
  border: none;
  background: transparent;
  color: var(--muted);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}
.mtab:hover { background: rgba(108,60,225,0.1); color: var(--purple); }
.mtab.active { background: var(--purple); color: #fff; }

.park-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}

.pfilt {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
}
.pfilt:hover { border-color: var(--purple); color: var(--purple); }
.pfilt.active { background: var(--purple); color: #fff; border-color: var(--purple); }
.pfilt[data-park="disney"].active    { background: #4527a0; border-color: #4527a0; }
.pfilt[data-park="universal"].active { background: #2e7d32; border-color: #2e7d32; }
.pfilt[data-park="seaworld"].active  { background: #00838f; border-color: #00838f; }
.pfilt[data-park="busch"].active     { background: #e64a19; border-color: #e64a19; }
.pfilt[data-park="other"].active     { background: #c2185b; border-color: #c2185b; }

.cal-events { padding: 6px 0 8px; min-height: 100px; }

.cal-event-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid #f4f0ff;
  transition: background 0.12s;
  animation: fadeRow 0.2s ease;
}
@keyframes fadeRow {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cal-event-row:last-child { border-bottom: none; }
.cal-event-row:hover { background: #faf8ff; }

.cal-event-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 52px;
  padding-top: 2px;
}

.cal-day {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.cal-month-sm {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1px;
  margin-top: 2px;
  text-transform: uppercase;
}

.cal-event-body { flex: 1; min-width: 0; }

.cal-event-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 4px;
}

.cal-event-desc {
  font-family: 'Source Serif 4', serif;
  font-size: 12.5px;
  color: #5a4f80;
  line-height: 1.6;
}

.cal-event-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.cal-park-pill {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 99px;
  white-space: nowrap;
  text-transform: uppercase;
}
.pp-disney    { background: #6C3CE1; color: #fff; }
.pp-universal { background: #00C271; color: #fff; }
.pp-seaworld  { background: #00B4CC; color: #fff; }
.pp-busch     { background: #FF6B2C; color: #fff; }
.pp-other     { background: #FF4FAD; color: #fff; }

.cal-type-pill {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: 99px;
  text-transform: uppercase;
}
.ct-festival { background: #FFF8DC; color: #9a7000; }
.ct-opening  { background: #e8f5e9; color: #008a50; }
.ct-concert  { background: #fce4ec; color: #c2185b; }
.ct-closure  { background: #f0f0f5; color: #888; }
.ct-special  { background: #EDE5FF; color: #6C3CE1; }
.ct-race     { background: #e0f7fa; color: #007a8a; }

.cal-empty {
  text-align: center;
  padding: 32px 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

/* ── Archive edition page content area ───────────── */
.edition-main {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  margin-top: 28px;
  margin-bottom: 32px;
  box-shadow: 0 2px 0 var(--border);
}
