/* ================================================================
   KidTown Guide - Shared Stylesheet
   Extracted from inline <style> blocks across all pages.
   ================================================================ */

/* ── CSS Variables ── */
:root {
  --cream: #faf7f2;
  --ink: #1a1a18;
  --coral: #e85d3a;
  --sage: #7a9e7e;
  --gold: #c9a84c;
  --muted: #888880;
  --border: #e2ddd6;
  --card-bg: #ffffff;
  --orange: #e8732a;
  --navy: #2d3e5c;
}

/* ── Reset / Base ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Navigation ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 80px;
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; color: var(--ink); text-decoration: none; }
.nav-logo span { color: var(--coral); }
.nav-logo img { height: 76px; width: auto; display: block; }
.nav-back { font-size: 0.82rem; color: var(--coral); text-decoration: none; font-weight: 600; }
.nav-back:hover { text-decoration: underline; }

/* CSS logo (shown if logo.png is missing) */
.nav-logo-css {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
  gap: 1px;
}
.nav-logo-css .logo-the { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #5b9bd5; }
.nav-logo-css .logo-main { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1; }
.nav-logo-css .logo-kid { color: #e8732a; font-style: italic; }
.nav-logo-css .logo-town { color: #2d3e5c; font-style: italic; }
.nav-logo-css .logo-guide { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #c9a84c; }

/* Fallback text logo */
.nav-logo-fallback { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--ink); text-decoration: none; display: none; }

.nav-links { display: none; gap: 1.2rem; list-style: none; align-items: center; }
.nav-links a, .nav-links-plain { text-decoration: none; color: var(--muted); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-subscribe { background: var(--coral); color: #fff !important; padding: 0.45rem 1.2rem; border-radius: 2px; transition: background 0.2s !important; }
.nav-subscribe:hover { background: var(--ink) !important; color: #fff !important; }

/* ── Nav Dropdowns ── */
.nav-dropdown { position: relative; list-style: none; }
.nav-drop-btn {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s; font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; gap: 0.3rem; padding: 0;
}
.nav-drop-btn:hover { color: var(--ink); }
.drop-arrow { font-size: 0.75rem; transition: transform 0.2s; display: inline-block; }
.nav-drop-btn.open .drop-arrow { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  padding: 0.4rem 0; min-width: 210px; z-index: 9000;
  display: none; flex-direction: column;
}
.nav-drop-menu.open { display: flex; }
.nav-drop-menu a {
  padding: 0.5rem 1.2rem; font-size: 0.84rem;
  color: var(--ink); text-decoration: none;
  transition: background 0.15s; white-space: nowrap;
  text-transform: none; letter-spacing: 0; font-weight: 500;
}
.nav-drop-menu a:hover { background: var(--cream); color: var(--coral); }
.nav-ebook-btn { background: var(--gold) !important; color: var(--ink) !important; padding: 0.42rem 0.9rem !important; border-radius: 3px; font-weight: 700 !important; }
.nav-ebook-btn:hover { background: #e0b843 !important; }
.nav-coloring-btn { background: #7a9e7e !important; color: #fff !important; padding: 8px 16px !important; border-radius: 6px !important; font-weight: 600 !important; font-size: .85rem !important; text-transform: uppercase !important; letter-spacing: .04em !important; }
.nav-coloring-btn:hover { background: #6b8f6f !important; }

/* ── Mobile Hamburger Menu ── */
.nav-hamburger {
  display: none;
  background: none; border: none;
  font-size: 1.6rem; color: var(--ink);
  cursor: pointer; padding: 0.3rem;
  line-height: 1; font-family: sans-serif;
  margin-left: auto;
  min-width: 44px; min-height: 44px;
}
.mobile-menu-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(26,26,24,0.5); z-index: 9999;
}
.mobile-menu-overlay.open { display: block; }
.mobile-menu {
  position: fixed; top: 0; right: 0;
  width: 300px; max-width: 85vw; height: 100vh;
  background: var(--cream); overflow-y: auto;
  padding: 1.2rem 1.5rem 2rem;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  animation: slideIn 0.25s ease;
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.mobile-menu-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none;
  font-size: 1.4rem; color: var(--muted);
  cursor: pointer; line-height: 1;
}
.mobile-menu-section { padding: 0.8rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu-section:last-child { border-bottom: none; }
.mobile-menu-heading {
  font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--coral, #e85d3a);
  font-weight: 700; margin-bottom: 0.5rem;
}
.mobile-menu-section a {
  display: block; padding: 0.45rem 0;
  color: var(--ink, #1a1a18); text-decoration: none;
  font-size: 0.92rem; font-weight: 500; transition: color 0.15s;
}
.mobile-menu-section a:hover { color: var(--coral, #e85d3a); }

/* ── Hero Section (homepage) ── */
.hero {
  padding: 48px 5% 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); font-weight: 600; margin-bottom: 1rem; }
.hero-title { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 900; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 1.4rem; }
.hero-title em { font-style: italic; color: var(--coral); }
.hero-desc { font-size: 1rem; color: #555; max-width: 420px; line-height: 1.75; margin-bottom: 2rem; }
.hero-note { margin-top: 0.7rem; font-size: 0.78rem; color: var(--muted); }
.hero-visual { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 0.75rem; }
.hero-card { display: none; }
.hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

/* Hero Ebook Cards */
.hero-ebook-card {
  display: block; text-decoration: none;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 320px; width: 100%; flex: 1; min-width: 0;
}
.hero-ebook-card:hover { transform: translateY(-5px); box-shadow: 0 20px 52px rgba(0,0,0,0.18); }
.hero-ebook-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.hero-ebook-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.4s ease; }
.hero-ebook-card:hover .hero-ebook-img-wrap img { transform: scale(1.04); }
.hero-ebook-fallback {
  display: none; width: 100%; height: 100%;
  background: linear-gradient(150deg, #2d3e5c 0%, #1a2744 55%, #e8732a 100%);
  align-items: center; justify-content: center; flex-direction: column;
  gap: 1rem; padding: 2rem; text-align: center;
}
.hero-ebook-fallback-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; font-weight: 700; color: #fff; line-height: 1.25; }
.hero-ebook-fallback-sub { font-size: 0.78rem; color: rgba(255,255,255,0.75); letter-spacing: 0.08em; text-transform: uppercase; }
.hero-ebook-fallback-icons { font-size: 1.8rem; letter-spacing: 0.1em; }
.hero-ebook-badge-wrap { position: absolute; top: 10px; left: 10px; }
.hero-ebook-badge { background: #c9a84c; color: #1a1a18; font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; padding: 0.25rem 0.55rem; border-radius: 2px; text-transform: uppercase; }
.hero-ebook-info { padding: 0.85rem 1rem 1rem; background: var(--card-bg); }
.hero-ebook-label { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 600; color: #c9a84c; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.2rem; }
.hero-ebook-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 0.3rem; }
.hero-ebook-meta { font-size: 0.75rem; color: var(--muted); }

/* ── Subscribe Form ── */
.subscribe-form {
  display: flex; flex-direction: column; gap: 8px;
  max-width: 420px; border: none; border-radius: 3px;
  overflow: hidden; background: transparent;
}
.subscribe-form input { flex: 1; padding: 0.75rem 1rem; border: 1.5px solid var(--ink); border-radius: 3px; outline: none; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; background: #fff; color: var(--ink); }
.subscribe-form input::placeholder { color: #aaa; }
.subscribe-form button { padding: 0.75rem 1.4rem; background: var(--ink); color: #fff; border: none; border-radius: 3px; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em; transition: background 0.2s; white-space: nowrap; width: 100%; }
.subscribe-form button:hover { background: var(--coral); }

/* ── Ticker ── */
.ticker-wrap { background: var(--ink); color: var(--cream); overflow: hidden; padding: 10px 0; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: ticker 35s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 0.5rem; margin-right: 3rem; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; }
.ticker-dot { width: 5px; height: 5px; background: var(--coral); border-radius: 50%; display: inline-block; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Ebook Lead Magnet Band ── */
.ebook-band { background: linear-gradient(135deg, #2d3e5c 0%, #1a1a18 100%); padding: 70px 5%; position: relative; overflow: hidden; }
.ebook-band::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; background: rgba(232, 93, 58, 0.08); border-radius: 50%; }
.ebook-band::after { content: ''; position: absolute; bottom: -40px; left: -40px; width: 200px; height: 200px; background: rgba(201, 168, 76, 0.06); border-radius: 50%; }
.ebook-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.ebook-mockup { display: none; justify-content: center; }
.ebook-book { width: 220px; border-radius: 6px 12px 12px 6px; box-shadow: -6px 6px 0 #c9a84c, -10px 10px 0 rgba(201,168,76,0.3), 0 20px 60px rgba(0,0,0,0.4); position: relative; transform: rotate(-3deg); transition: transform 0.3s; overflow: hidden; }
.ebook-book:hover { transform: rotate(0deg) scale(1.02); }
.ebook-book-cover-img { width: 100%; display: block; border-radius: 4px 10px 10px 4px; }
.ebook-book-spine { position: absolute; left: -7px; top: 0; bottom: 0; width: 7px; background: linear-gradient(180deg, #c9a84c, #a88630); border-radius: 3px 0 0 3px; }
.ebook-book-tag { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); font-weight: 700; margin-bottom: 0.6rem; }
.ebook-book-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 900; color: var(--navy); line-height: 1.3; margin-bottom: 0.5rem; }
.ebook-book-emoji { font-size: 2.5rem; display: block; margin: 0.8rem 0; text-align: center; }
.ebook-book-sub { font-size: 0.75rem; color: #888; text-align: center; }
.ebook-book-logo { margin-top: 1rem; font-family: 'Playfair Display', serif; font-size: 0.75rem; font-weight: 700; color: var(--navy); text-align: center; border-top: 1px solid #e2ddd6; padding-top: 0.6rem; }
.ebook-text { color: var(--cream); }
.ebook-tag { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.ebook-tag::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--gold); }
.ebook-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem; }
.ebook-title em { font-style: italic; color: var(--gold); }
.ebook-desc { color: #aaa; font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.8rem; }
.ebook-perks { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.ebook-perk { display: flex; align-items: center; gap: 0.7rem; font-size: 0.85rem; color: #ccc; }
.ebook-perk-check { width: 18px; height: 18px; background: rgba(122, 158, 126, 0.2); border: 1px solid var(--sage); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--sage); flex-shrink: 0; }
.ebook-form { display: flex; flex-direction: column; gap: 0; border: none; border-radius: 3px; overflow: hidden; max-width: 440px; background: transparent; }
.ebook-form input { flex: 1; padding: 0.85rem 1.1rem; border: 1.5px solid rgba(255,255,255,0.2); border-radius: 3px; background: rgba(255,255,255,0.06); color: var(--cream); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; }
.ebook-form input::placeholder { color: rgba(255,255,255,0.35); }
.ebook-form button { padding: 0.85rem 1.4rem; background: var(--coral); color: #fff; border: none; border-radius: 3px; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em; transition: background 0.2s; white-space: nowrap; }
.ebook-form button:hover { background: var(--gold); color: var(--ink); }
.ebook-note { margin-top: 0.7rem; font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* Ebook success state */
.ebook-success { display: none; background: rgba(122, 158, 126, 0.15); border: 1px solid rgba(122, 158, 126, 0.4); border-radius: 4px; padding: 1.5rem; max-width: 440px; }
.ebook-success.show { display: block; }
.ebook-success h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--cream); margin-bottom: 0.5rem; }
.ebook-success p { font-size: 0.85rem; color: #aaa; margin-bottom: 1rem; }
.ebook-download-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--gold); color: var(--ink); padding: 0.65rem 1.2rem; border-radius: 3px; font-size: 0.85rem; font-weight: 700; text-decoration: none; transition: background 0.2s; }
.ebook-download-btn:hover { background: #e0b843; }

/* Ebook Promo Card */
.ebook-promo-card { text-decoration: none; display: block; background: var(--card-bg); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }
.ebook-promo-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); transform: translateY(-3px); }
.ebook-cover-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: top center; display: block; transition: transform 0.4s ease; }
.ebook-promo-card:hover .ebook-cover-img { transform: scale(1.04); }

/* ── Section Headers ── */
.section-wrap { max-width: 1200px; margin: 0 auto; padding: 60px 5%; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--ink); }
.section-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900; letter-spacing: -0.02em; }
.section-link { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--coral); text-decoration: none; }
.section-link:hover { text-decoration: underline; }

/* ── Card Components ── */
.card-img-placeholder { width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.card-body { padding: 0.85rem 1rem; }
.card-tag { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); font-weight: 600; margin-bottom: 0.3rem; }
.card-title { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; line-height: 1.3; color: var(--ink); }
.card-meta { font-size: 0.75rem; color: var(--muted); margin-top: 0.3rem; }

/* ── Event Cards (category, age, index pages) ── */
.event-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden; cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s;
}
.event-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.evt-img-wrap { position: relative; overflow: hidden; }
.evt-img-wrap a { display: block; }
.evt-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.4s; }
.event-card:hover .evt-img-wrap img { transform: scale(1.04); }
.evt-img-fallback { width: 100%; aspect-ratio: 4/3; display: none; align-items: center; justify-content: center; font-size: 3rem; }
.evt-badge { position: absolute; top: 12px; left: 12px; background: var(--coral); color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; }
.evt-badge.free { background: var(--sage); }
.evt-body { padding: 1.1rem 1.2rem 1.3rem; }
.evt-cat { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); font-weight: 600; margin-bottom: 0.4rem; }
.evt-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.5rem; color: var(--ink); }
.evt-title a { color: inherit; text-decoration: none; }
.evt-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 0.6rem; }
.evt-tag { font-size: 0.75rem; padding: 2px 8px; border-radius: 10px; background: var(--cream); color: var(--muted); border: 1px solid var(--border); font-weight: 500; }
.evt-tag.free { background: rgba(122,158,126,0.12); color: #4a7e4e; border-color: rgba(122,158,126,0.3); }
.evt-tag.paid { background: rgba(232,93,58,0.08); color: var(--coral); border-color: rgba(232,93,58,0.2); }
.evt-desc { font-size: 0.85rem; line-height: 1.7; color: #555; margin-bottom: 0.8rem; }
.evt-meta { display: flex; flex-wrap: wrap; gap: 0.3rem 1rem; font-size: 0.75rem; color: var(--muted); }

/* Event Grid */
.events-grid, .featured-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.events-section { max-width: 1100px; margin: 0 auto; padding: 3rem 5%; }

/* Event Images */
.event-img-wrap { position: relative; overflow: hidden; }
.event-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.4s ease; }
.event-img-link { display: block; overflow: hidden; }
.event-img-link:hover .event-img, .event-card:hover .event-img { transform: scale(1.04); }
.event-img-placeholder { width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.event-badge { position: absolute; top: 12px; left: 12px; background: var(--coral); color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; }
.event-free-badge { background: var(--sage); }
.event-content { padding: 1.1rem 1.2rem 1.3rem; }
.event-category { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); font-weight: 600; margin-bottom: 0.4rem; }
.event-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; line-height: 1.3; color: var(--ink); margin-bottom: 0.5rem; }
.event-card.featured .event-title { font-size: 1.35rem; }
.event-desc { font-size: 0.85rem; color: #666; line-height: 1.6; margin-bottom: 0.8rem; }
.event-meta { display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; font-size: 0.75rem; color: var(--muted); align-items: center; }
.event-meta span { display: flex; align-items: center; gap: 4px; }

/* ── Age Tags ── */
.age-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.7rem; }
.age-tag { background: #f0ede8; color: var(--muted); font-size: 0.75rem; padding: 2px 7px; border-radius: 20px; font-weight: 500; }
.age-tag.free { background: #e8f5ea; color: var(--sage); }
.age-tag.paid { background: #fde8d8; color: var(--coral); }

/* ── Transit Tags ── */
.transit-row { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.5rem; }
.transit-tag { font-size: 0.75rem; padding: 2px 8px; border-radius: 20px; font-weight: 500; display: inline-flex; align-items: center; gap: 3px; }
.transit-tag.metro { background: #e8ecff; color: #3a4db5; }
.transit-tag.bus { background: #fff3e0; color: #e65100; }
.transit-tag.car { background: #f3e5f5; color: #6a1b9a; }
.transit-tag.walk { background: #e8f5e9; color: #2e7d32; }

/* ── List Events ── */
.events-list { display: flex; flex-direction: column; gap: 16px; }
.event-list-item {
  display: grid; grid-template-columns: 90px 1fr; gap: 0;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden; transition: box-shadow 0.2s; cursor: pointer;
}
.event-list-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.list-img-placeholder { width: 90px; min-height: 90px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; }
.list-content { padding: 0.8rem 1rem 0.8rem 0.8rem; }
.list-title { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.list-meta { font-size: 0.75rem; color: var(--muted); }
.list-img { width: 90px; min-height: 90px; max-height: 110px; object-fit: cover; display: block; flex-shrink: 0; }

/* ── Two Column Layout ── */
.two-col { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }

/* ── Newsletter Band ── */
.newsletter-band { background: var(--ink); color: var(--cream); padding: 48px 5%; }
.newsletter-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.newsletter-tag { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); font-weight: 600; margin-bottom: 1rem; }
.newsletter-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem; }
.newsletter-title em { font-style: italic; color: var(--gold); }
.newsletter-desc { color: #aaa; font-size: 0.95rem; line-height: 1.7; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form input { padding: 0.9rem 1.1rem; border: 1px solid #444; border-radius: 3px; background: #2a2a28; color: var(--cream); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s; }
.newsletter-form input:focus { border-color: var(--coral); }
.newsletter-form input::placeholder { color: #666; }
.newsletter-form button { padding: 0.9rem; background: var(--coral); color: #fff; border: none; border-radius: 3px; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.03em; transition: background 0.2s; }
.newsletter-form button:hover { background: var(--gold); color: var(--ink); }
.newsletter-perks { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.perk { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: #888; }
.perk-icon { color: var(--sage); font-size: 1rem; }

/* ── Categories Grid ── */
.categories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.category-card { border: 1.5px solid var(--border); border-radius: 4px; padding: 1.5rem 1rem; text-align: center; cursor: pointer; transition: border-color 0.2s, background 0.2s; background: var(--card-bg); }
.category-card:hover { border-color: var(--coral); background: #fff8f6; }
.category-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.category-name { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.category-count { font-size: 0.75rem; color: var(--muted); }

/* ── Event Hero (event detail pages) ── */
.event-hero { position: relative; height: 420px; overflow: hidden; background: #1a1a18; }
.event-hero img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,24,0.85) 0%, rgba(26,26,24,0.2) 60%); display: flex; align-items: flex-end; padding: 2.5rem 5%; }
.hero-text-wrap { max-width: 800px; }
.event-eyebrow { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--coral); font-weight: 700; margin-bottom: 0.5rem; }
.event-hero-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 0.5rem; }
.event-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.event-tag { background: rgba(255,255,255,0.15); color: #fff; font-size: 0.75rem; padding: 3px 10px; border-radius: 20px; font-weight: 500; }
.event-tag.free { background: rgba(122,158,126,0.5); }
.event-tag.paid { background: rgba(232,93,58,0.5); }

/* ── Content Wrap ── */
.content-wrap { max-width: 860px; margin: 0 auto; padding: 3rem 5%; }

/* ── Detail Grid (event pages) ── */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.detail-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 1.4rem; }
.detail-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.9rem; color: var(--ink); padding-bottom: 0.6rem; border-bottom: 2px solid var(--coral); display: inline-block; }
.detail-row { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.6rem; font-size: 0.85rem; }
.detail-icon { width: 18px; flex-shrink: 0; }

/* ── Section Headings ── */
.section-heading { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }

/* ── Description Text ── */
.description-text { font-size: 0.95rem; line-height: 1.8; color: #444; margin-bottom: 2rem; text-align: justify; }

/* ── Tips List ── */
.tips-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.tips-list li { display: flex; gap: 0.7rem; font-size: 0.88rem; line-height: 1.6; }
.tip-icon { flex-shrink: 0; }
/* Tips list with coral dots (On the Go pages) */
.tips-list li { list-style: none; padding-left: 1.5rem; position: relative; font-size: 0.95rem; color: #555; line-height: 1.6; }

/* ── Transit Section ── */
.transit-section { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 1.4rem; margin-bottom: 2rem; }
.transit-options { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 0.8rem; }
.transit-option { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.85rem; }
.transit-badge { padding: 2px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; flex-shrink: 0; margin-top: 2px; }
.metro { background: #e8ecff; color: #3a4db5; }
.bus { background: #fff3e0; color: #e65100; }
.car { background: #f3e5f5; color: #6a1b9a; }
.walk { background: #e8f5e9; color: #2e7d32; }

/* ── Subscribe Box ── */
.subscribe-box { background: var(--ink); color: var(--cream); border-radius: 6px; padding: 2.5rem; text-align: center; margin: 2rem 0; }
.subscribe-box h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 0.5rem; }
.subscribe-box p { font-size: 0.88rem; color: #aaa; margin-bottom: 1.5rem; }
.sub-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.sub-form input { padding: 0.7rem 1rem; border: none; border-radius: 3px; font-size: 0.88rem; width: 260px; }
.sub-form button { padding: 0.7rem 1.4rem; background: var(--coral); color: #fff; border: none; border-radius: 3px; font-weight: 700; cursor: pointer; font-size: 0.88rem; }
.sub-form button:hover { background: var(--gold); color: var(--ink); }

/* ── Subscribe Band (category pages) ── */
.subscribe-band { background: linear-gradient(135deg, var(--navy) 0%, #1a1a18 100%); padding: 4rem 5%; text-align: center; margin-top: 2rem; }
.subscribe-band h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 0.75rem; }
.subscribe-band h2 em { color: var(--coral); font-style: italic; }
.subscribe-band p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 2rem; max-width: 440px; margin-left: auto; margin-right: auto; }
.beehiiv-wrap { max-width: 480px; margin: 0 auto; }

/* ── Share Buttons ── */
.share-bar { display: flex; align-items: center; gap: 0.6rem; margin: 1.5rem 0 2rem; flex-wrap: wrap; }
.share-bar-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.share-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem; border-radius: 6px;
  font-size: 0.82rem; font-weight: 600; text-decoration: none;
  border: none; cursor: pointer; transition: opacity 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.share-btn:hover { opacity: 0.85; }
.share-btn-whatsapp { background: #25D366; color: #fff; }
.share-btn-facebook { background: #1877F2; color: #fff; }
.share-btn-copy { background: var(--cream); color: var(--ink); border: 1px solid var(--border); }
.share-btn-copy.copied { background: var(--sage); color: #fff; border-color: var(--sage); }

/* ── Back Button ── */
.back-btn { display: inline-flex; align-items: center; gap: 6px; color: var(--coral); font-size: 0.82rem; font-weight: 600; text-decoration: none; margin-bottom: 1.5rem; }
.back-btn:hover { text-decoration: underline; }
.highlight { font-weight: 600; color: var(--coral); }

/* ── Content Header (On the Go pages) ── */
.content-header { max-width: 1000px; margin: 0 auto; padding: 60px 5% 40px; text-align: center; }
.content-eyebrow { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); font-weight: 600; margin-bottom: 1rem; }
.content-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1rem; color: var(--ink); }
.content-subtitle { font-size: 1.05rem; color: #666; max-width: 700px; line-height: 1.7; margin: 0 auto; }

/* ── Carousel (On the Go pages) ── */
.carousel-wrap { max-width: 900px; margin: 40px auto; position: relative; }
.carousel-container { position: relative; overflow: hidden; background: #f5f1eb; border-radius: 4px; width: 900px; height: 550px; max-width: 100%; }
.carousel-inner { display: flex; overflow: hidden; width: 100%; height: 100%; }
.carousel-slide { flex: 0 0 100%; width: 100%; height: 550px; display: none; align-items: center; justify-content: center; }
.carousel-slide.active { display: flex; }
.carousel-slide img { width: 100%; height: 550px; object-fit: cover; display: block; }
.carousel-counter { text-align: center; margin-top: 8px; font-size: 0.8rem; color: var(--muted); font-family: 'DM Sans', sans-serif; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); color: #fff; border: none;
  cursor: pointer; padding: 12px 16px; font-size: 1.2rem;
  border-radius: 4px; transition: background 0.2s;
  z-index: 10; font-family: sans-serif; line-height: 1;
}
.carousel-btn:hover { background: rgba(0,0,0,0.7); }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

/* ── Article Content (On the Go pages) ── */
.article-wrap { max-width: 900px; margin: 0 auto; padding: 40px 5%; }
.article-body { font-size: 1rem; line-height: 1.8; color: #333; margin-bottom: 2rem; }
.article-body p { text-align: justify; margin-bottom: 1.5rem; }
.article-section-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--coral); margin-top: 2.5rem; margin-bottom: 1.2rem; letter-spacing: -0.02em; }
.article-section { margin-bottom: 2.5rem; }
.article-section p { font-size: 0.95rem; line-height: 1.8; color: #555; margin-bottom: 1rem; }

/* ── Tips Box (On the Go pages) ── */
.tips-box { background: var(--card-bg); border: 2px solid var(--border); border-radius: 4px; padding: 2rem; margin: 2.5rem 0; }
.tips-box h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--ink); margin-bottom: 1.2rem; font-weight: 700; }
.tips-box .tips-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.tips-box .tips-list li { display: flex; align-items: baseline; gap: 0.5rem; padding-left: 1.5rem; position: relative; font-size: 0.95rem; color: #555; line-height: 1.6; list-style: none; }
.tips-box .tips-list li::before { content: '\2022'; position: absolute; left: 0; color: var(--coral); font-weight: bold; font-size: 1.2rem; line-height: 1.6; }
.tips-box .tips-list li strong { flex-shrink: 0; min-width: 140px; display: inline-block; color: var(--ink); }
@media (max-width: 600px) {
  .tips-box .tips-list li { flex-direction: column; gap: 0.1rem; }
  .tips-box .tips-list li strong { min-width: auto; }
}

/* ── Article Footer ── */
.article-footer { font-size: 0.85rem; color: var(--muted); font-style: italic; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); text-align: center; }

/* ── Category Hero ── */
.cat-hero { padding: 4rem 5% 3rem; position: relative; overflow: hidden; }
.cat-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 360px; height: 360px; background: rgba(232,93,58,0.08); border-radius: 50%; }
.hero-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 2; }
.hero-back { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 1.5rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-back:hover { color: rgba(255,255,255,0.75); }
.hero-icon { font-size: 3rem; margin-bottom: 0.75rem; display: block; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 480px; }

/* ── Newsletter Popup (ktg-pop) ── */
#ktg-pop { background: var(--cream); border-radius: 10px; max-width: 420px; width: 100%; position: relative; box-shadow: 0 20px 60px rgba(26,26,24,0.35); overflow: hidden; }
.pop-top { background: var(--navy); padding: 1.8rem 2rem 1.5rem; text-align: center; position: relative; }
.pop-close { position: absolute; top: 0.75rem; right: 0.75rem; background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.5); font-size: 1.2rem; line-height: 1; padding: 0.25rem 0.5rem; min-width: 44px; min-height: 44px; }
.pop-close:hover { color: #fff; }
.pop-eye { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.5rem; }
.pop-title { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 0.4rem; }
.pop-title em { color: var(--coral); font-style: italic; }
.pop-sub { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.pop-body { padding: 1.4rem 2rem 1.8rem; }
.pop-perks { list-style: none; margin-bottom: 1.1rem; }
.pop-perks li { display: flex; gap: 0.6rem; font-size: 0.84rem; margin-bottom: 0.45rem; color: var(--ink); }
.pop-perks li::before { content: '\2713'; color: var(--sage); font-weight: 700; flex-shrink: 0; }
.pop-note { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 0.6rem; }

/* ── Finn Section (homepage) ── */
.finn-band { background: linear-gradient(180deg, #f0f7f1 0%, var(--cream) 100%); padding: 2.5rem 5% 2rem; }
.finn-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; text-align: center; }
.finn-cover-wrap { position: relative; max-width: 260px; margin: 0 auto; }
.finn-cover-wrap img { width: 100%; border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,0.15), -8px 8px 0 var(--sage); display: block; transition: transform 0.3s; }
.finn-cover-wrap:hover img { transform: scale(1.02) rotate(-1deg); }
.finn-new-badge { position: absolute; top: -12px; right: -12px; background: var(--coral); color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; box-shadow: 0 4px 12px rgba(232,93,58,0.4); }
.finn-eyebrow { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); font-weight: 700; margin-bottom: 0.6rem; }
.finn-headline { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; line-height: 1.15; color: var(--ink); margin-bottom: 0.8rem; }
.finn-headline em { color: var(--coral); font-style: italic; }
.finn-sub { font-size: 0.95rem; color: #555; line-height: 1.7; margin-bottom: 1.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.finn-perks { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; justify-content: center; }
.finn-perk { display: inline-flex; align-items: center; gap: 0.4rem; background: #fff; border: 1px solid #d9e8da; border-radius: 20px; padding: 0.35rem 0.75rem; font-size: 0.78rem; font-weight: 600; color: var(--ink); }
.finn-perk-icon { font-size: 1rem; }
.finn-cta-row { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; justify-content: center; }
.finn-btn { display: inline-block; background: var(--coral); color: #fff; text-decoration: none; padding: 0.85rem 1.8rem; border-radius: 8px; font-weight: 700; font-size: 0.95rem; font-family: 'DM Sans', sans-serif; transition: background 0.2s, transform 0.15s; box-shadow: 0 4px 16px rgba(232,93,58,0.3); }
.finn-btn:hover { background: #d04e2d; transform: translateY(-2px); }
.finn-btn-sub { font-size: 0.78rem; color: var(--muted); max-width: 200px; line-height: 1.4; }
.finn-coming { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid #d9e8da; }
.finn-coming-label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); font-weight: 700; margin-bottom: 0.5rem; }
.finn-coming-list { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; }
.finn-coming-item { background: rgba(122,158,126,0.1); border: 1px solid rgba(122,158,126,0.2); border-radius: 6px; padding: 0.35rem 0.7rem; font-size: 0.78rem; font-weight: 500; color: #4a7e4e; }

/* ── Footer ── */
footer { border-top: 1px solid var(--border); padding: 40px 5%; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 1.2rem; text-align: center; align-items: center;
}
.footer-logo img { height: 48px; width: auto; display: block; }
.footer-tagline { font-size: 0.8rem; color: var(--muted); margin-top: 0.5rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.82rem; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: 0.75rem; color: #bbb; text-align: right; }

/* ── Divider ── */
.divider { border: none; border-top: 1px solid var(--border); }

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Sprint 1: Touch Targets (M2) ── */
.mobile-menu-section a { min-height: 44px; display: flex; align-items: center; padding: 10px 0; }
.footer-links a { min-height: 44px; display: inline-flex; align-items: center; padding: 8px 4px; }
.nav-subscribe { min-height: 44px; display: inline-flex; align-items: center; }
.mobile-menu-close { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; }

/* ── Sprint 1: Font Sizes min 12px (M7) ── */
.card-tag, .event-badge, .event-category, .age-tag { font-size: 0.75rem; }
.card-meta, .hero-eyebrow { font-size: 0.78rem; }

/* ── Sprint 1: Sticky Bottom Bar (N2) ── */
#ktg-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: #2d3e5c; padding: 10px 16px; box-shadow: 0 -2px 8px rgba(0,0,0,0.15); }
#ktg-sticky-bar .sticky-inner { display: flex; align-items: center; gap: 8px; max-width: 600px; margin: 0 auto; }
#ktg-sticky-bar .sticky-text { color: #fff; font-size: 0.82rem; font-family: 'DM Sans', sans-serif; line-height: 1.3; flex: 1; }
#ktg-sticky-bar .sticky-text strong { color: #c9a84c; }
#ktg-sticky-bar .sticky-btn { background: #e85d3a; color: #fff; border: none; border-radius: 6px; padding: 8px 14px; font-size: 0.82rem; font-family: 'DM Sans', sans-serif; font-weight: 600; cursor: pointer; white-space: nowrap; min-height: 44px; }
#ktg-sticky-bar .sticky-btn:hover { background: #d04e2d; }
#ktg-sticky-bar .sticky-close { background: none; border: none; color: #fff; font-size: 1.2rem; cursor: pointer; padding: 4px; opacity: 0.7; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
#ktg-sticky-bar .sticky-close:hover { opacity: 1; }

/* ================================================================
   RESPONSIVE BREAKPOINTS (mobile-first)
   ================================================================ */

/* Tablet small (481px+) */
@media (min-width: 481px) {
  .hero { padding: 60px 5% 48px; gap: 40px; }
  .hero-title { font-size: clamp(2.4rem, 4vw, 3rem); }
  .subscribe-form { flex-direction: row; border: 1.5px solid var(--ink); background: transparent; gap: 0; }
  .subscribe-form input { border: none; border-radius: 0; }
  .subscribe-form button { border-radius: 0; width: auto; }
  .section-title { font-size: 1.4rem; }
  .newsletter-band { padding: 56px 5%; }
}

/* Tablet (601px+) */
@media (min-width: 601px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .event-card.featured { grid-column: span 2; }
  .footer-inner { flex-direction: row; gap: 0; text-align: left; justify-content: space-between; }
  .footer-links { flex-wrap: nowrap; justify-content: flex-end; }
  .ebook-form { flex-direction: row; border: 1.5px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); }
  .ebook-form input { border: none; border-radius: 0; background: transparent; }
  .ebook-form button { border-radius: 0; }
  .section-title { font-size: 1.6rem; }
}

/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
  .event-hero { height: 280px; }
  .event-hero-title { font-size: 1.7rem; }
  .detail-grid { grid-template-columns: 1fr; }
  .sub-form { flex-direction: column; align-items: center; }
  .sub-form input { width: 100%; max-width: 340px; }
  nav { padding: 0 3%; }
  .nav-logo img { height: 60px; }
  .content-header { padding: 40px 5% 30px; }
  .content-title { font-size: 1.8rem; }
  .carousel-container { height: 250px; }
  .carousel-slide { height: 250px; }
  .carousel-slide img { height: 250px; }
  .article-wrap { padding: 30px 5%; }
  .article-body { font-size: 0.95rem; }
  .article-section-title { font-size: 1.4rem; }
  .tips-box { padding: 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1.2rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* Nav hamburger visibility */
@media (max-width: 700px) {
  .nav-links { display: none; }
}

@media (max-width: 860px) {
  .nav-hamburger { display: block; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .events-grid { grid-template-columns: 1fr; }
}

/* Carousel tablet (max-width: 900px) */
@media (max-width: 900px) {
  .nav-hamburger { display: block; }
  .carousel-container { height: 400px; }
  .carousel-slide { height: 400px; }
  .carousel-slide img { height: 400px; }
  .carousel-btn { padding: 10px 12px; font-size: 1rem; }
  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }
  body { padding-bottom: 60px; }
}

/* Desktop (901px+) */
@media (min-width: 901px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .hero { grid-template-columns: 1fr 1fr; gap: 60px; padding: 80px 5% 60px; }
  .hero-visual { gap: 1rem; align-items: center; }
  .hero-title { font-size: clamp(2.8rem, 5vw, 4.2rem); }
  .featured-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .event-card.featured { grid-column: span 1; }
  .two-col { grid-template-columns: 2fr 1fr; gap: 60px; }
  .newsletter-inner { grid-template-columns: 1fr 1fr; gap: 60px; }
  .newsletter-band { padding: 70px 5%; }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .ebook-inner { grid-template-columns: 1fr 1.4fr; gap: 60px; }
  .ebook-mockup { display: flex; }
  #ktg-sticky-bar { display: none !important; }
  /* Finn section desktop */
  .finn-band { padding: 5rem 5% 4rem; }
  .finn-inner { grid-template-columns: 380px 1fr; gap: 3.5rem; text-align: left; }
  .finn-cover-wrap { max-width: none; margin: 0; }
  .finn-sub { margin-left: 0; margin-right: 0; }
  .finn-headline { font-size: clamp(1.8rem, 4vw, 2.6rem); }
  .finn-perks { justify-content: flex-start; gap: 0.6rem; }
  .finn-perk { padding: 0.4rem 0.9rem; font-size: 0.82rem; }
  .finn-cta-row { justify-content: flex-start; }
  .finn-coming-list { justify-content: flex-start; gap: 0.8rem; }
  .finn-btn { padding: 0.9rem 2rem; font-size: 1rem; }
}

/* ── On the Go Badge (category listing pages) ── */
.onthego-badge { display: inline-block; background: var(--gold); color: var(--ink); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 2px; margin-bottom: 1rem; }

/* ── Breadcrumb Navigation ── */
.breadcrumb { padding: 8px 16px; font-size: 0.85rem; color: #666; max-width: 900px; margin: 0 auto; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; padding: 0; margin: 0; }
.breadcrumb li:not(:last-child)::after { content: "\203A"; margin-left: 6px; color: #999; }
.breadcrumb a { color: var(--coral); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--ink); }
/* Finn CTA Box */
.finn-cta-box { background: linear-gradient(135deg, #faf7f2 0%, #f0ebe3 100%); border: 2px solid #e85d3a; border-radius: 12px; padding: 24px; margin: 32px auto; max-width: 600px; text-align: center; }
.finn-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.finn-cta-text h3 { font-family: 'Playfair Display', serif; color: #e85d3a; font-size: 1.4rem; margin: 0 0 8px; }
.finn-cta-text p { color: #1a1a18; font-size: 0.95rem; margin: 0 0 12px; line-height: 1.5; }
.finn-cta-btn { display: inline-block; background: #e85d3a; color: #fff; padding: 12px 28px; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: 1rem; min-height: 44px; transition: background 0.2s; }
.finn-cta-btn:hover { background: #d04e2d; }

/* Coloring Book Banner */
.coloring-banner { background: #2d3e5c; border-radius: 10px; padding: 16px 20px; margin: 0 auto 24px; max-width: 900px; }
.coloring-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.coloring-banner-text { color: #fff; font-size: 0.9rem; flex: 1; min-width: 200px; }
.coloring-banner-text strong { color: #c9a84c; }
.coloring-banner-btn { background: #e85d3a; color: #fff; padding: 10px 20px; border-radius: 6px; font-weight: 600; text-decoration: none; white-space: nowrap; min-height: 44px; display: inline-flex; align-items: center; font-size: 0.9rem; }
.coloring-banner-btn:hover { background: #d04e2d; }
@media(max-width:600px) { .coloring-banner-inner { flex-direction: column; text-align: center; } }

/* ── Exit-Intent Popup (N4) ── */
#ktg-exit { position:fixed; top:0; left:0; right:0; bottom:0; z-index:10000; display:flex; align-items:center; justify-content:center; }
.exit-backdrop { position:absolute; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.6); }
.exit-box { position:relative; background:#faf7f2; border-radius:12px; padding:32px 24px; max-width:400px; width:90%; text-align:center; z-index:1; }
.exit-close { position:absolute; top:8px; right:12px; background:none; border:none; font-size:1.5rem; cursor:pointer; color:#666; min-width:44px; min-height:44px; }
.exit-box h3 { font-family:'Playfair Display',serif; color:#e85d3a; font-size:1.4rem; margin:0 0 12px; }
.exit-box p { color:#1a1a18; font-size:0.95rem; line-height:1.5; margin:0 0 16px; }
.exit-btn { display:inline-block; background:#e85d3a; color:#fff; padding:12px 28px; border-radius:8px; font-weight:600; text-decoration:none; min-height:44px; }
.exit-btn:hover { background:#d04e2d; }
.exit-small { font-size:0.8rem; color:#888; margin-top:12px; }

/* ── Thank-You Page Redesign (R3) ── */
.ty-hero { background: linear-gradient(160deg, #f0f7f1 0%, #faf7f2 50%, #fef6ee 100%); padding: 5rem 5% 4rem; text-align: center; }
.ty-hero-inner { max-width: 600px; margin: 0 auto; }
.ty-check { width: 72px; height: 72px; background: var(--sage); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; color: #fff; }
.ty-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4.5vw, 2.4rem); font-weight: 900; margin-bottom: 0.8rem; color: var(--ink); line-height: 1.2; }
.ty-hero p { font-size: 1.05rem; color: #555; line-height: 1.65; margin-bottom: 1.8rem; }
.ty-download-btn { display: inline-block; background: var(--coral); color: #fff; text-decoration: none; padding: 0.95rem 2.5rem; border-radius: 6px; font-weight: 700; font-size: 1.05rem; transition: background 0.2s, transform 0.15s; margin-bottom: 1.5rem; }
.ty-download-btn:hover { background: #d04e2d; transform: translateY(-1px); }
.ty-tips { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.whats-next { background: #fff; padding: 3.5rem 5%; }
.whats-next-inner { max-width: 880px; margin: 0 auto; }
.whats-next h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; text-align: center; margin-bottom: 2rem; }
.next-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.next-card { background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: 2rem 1.5rem; text-align: center; }
.next-emoji { font-size: 2rem; margin-bottom: 0.8rem; display: block; }
.next-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--ink); }
.next-card p { font-size: 0.88rem; color: #666; line-height: 1.6; margin-bottom: 1rem; }
.next-card a { color: var(--coral); text-decoration: none; font-weight: 600; font-size: 0.88rem; }
.next-card a:hover { text-decoration: underline; }
@media (min-width: 601px) { .next-grid { grid-template-columns: repeat(3, 1fr); } }
.share-section { padding: 3rem 5%; text-align: center; max-width: 600px; margin: 0 auto; }
.share-section h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900; margin-bottom: 0.6rem; }
.share-section p { font-size: 0.92rem; color: var(--muted); margin-bottom: 1.5rem; }
.share-buttons { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.6rem 1.4rem; border-radius: 6px; text-decoration: none; font-size: 0.88rem; font-weight: 600; transition: opacity 0.2s; }
.share-btn:hover { opacity: 0.85; }
.share-fb { background: #1877f2; color: #fff; }
.share-copy { background: var(--cream); color: var(--ink); border: 1px solid var(--border); cursor: pointer; font-family: 'DM Sans', sans-serif; }
.ty-fb-follow { display: inline-flex; align-items: center; gap: 0.5rem; background: #1877f2; color: #fff; padding: 0.7rem 1.6rem; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.92rem; transition: opacity 0.2s; margin-top: 1rem; }
.ty-fb-follow:hover { opacity: 0.85; }

/* ── Author Byline ── */
.byline { font-size:0.82rem; color:#888; font-family:'DM Sans',sans-serif; margin:-8px 0 16px; }
.byline a { color:#e85d3a; text-decoration:none; }
.byline a:hover { text-decoration:underline; }

/* ── Trust Badge (On the Go reviews) ── */
.trust-badge { display:inline-block; background:#eef4ee; color:#7a9e7e; font-size:0.8rem; font-weight:600; padding:4px 12px; border-radius:4px; font-family:'DM Sans',sans-serif; margin-bottom:12px; }
