/* ────────────────────────────────────────────────────────────────
   Park Pair — Amusement Park Theme Design System
   Fun, colorful, trustworthy. Built for thrill-seekers.
   ──────────────────────────────────────────────────────────────── */

:root {
  /* Amusement Park Palette */
  --sky-blue:   #3B82F6;
  --deep-blue:  #1E40AF;
  --royal-purple:#7C3AED;
  --bright-purple:#A855F7;
  --magenta:    #EC4899;
  --hot-pink:   #FF6B9D;
  --coral:      #FF6B6B;
  --sunset:     #FB923C;
  --gold:       #FBBF24;
  --lemon:      #FEF08A;
  --mint:       #34D399;
  --teal:       #14B8A6;
  --white:      #FFFFFF;
  --cream:      #FFF7ED;
  --snow:       #F8FAFC;
  --ink:        #0F172A;
  --ink-light:  #334155;
  --ink-muted:  #64748B;
  --ink-faint:  #94A3B8;

  /* Typography */
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-fun:   'Poppins', var(--font-sans);

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

  /* Radius */
  --radius-sm: 0.75rem;  --radius: 1rem;
  --radius-md: 1.25rem;  --radius-lg: 1.5rem;
  --radius-xl: 2rem;     --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(15,23,42,0.06);
  --shadow:     0 4px 16px rgba(15,23,42,0.08);
  --shadow-md:  0 8px 24px rgba(15,23,42,0.10);
  --shadow-lg:  0 16px 40px rgba(15,23,42,0.12);
  --shadow-glow: 0 0 30px -5px rgba(124,58,237,0.25);

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}

/* ── Reset & Base ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--snow);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }

/* ── Navbar ── */
.navbar {
  position: fixed; inset:0 0 auto 0; z-index:100;
  height: var(--nav-height);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,0.6);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.navbar .container {
  max-width: var(--max-width); margin:0 auto; padding:0 var(--space-6);
  height:100%; display:flex; align-items:center; justify-content:space-between;
}
.nav-brand {
  display:flex; align-items:center; gap: var(--space-2);
  font-family: var(--font-fun); font-weight:800; font-size:1.35rem;
  color: var(--royal-purple);
  letter-spacing: -0.02em;
}
.nav-brand-icon {
  width: 40px; height: 40px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--royal-purple), var(--bright-purple));
  color: white; display:flex; align-items:center; justify-content:center;
  font-size: 1.1rem; font-weight:700; box-shadow: var(--shadow-glow);
  flex-shrink:0; position: relative; overflow: hidden;
}
.nav-brand-icon span {
  font-size: 0.65em; opacity: 0.85; margin-left: -2px;
}
.nav-links { display:flex; gap: var(--space-8); align-items:center; }
.nav-links a {
  font-weight: 600; font-size: 0.9rem; color: var(--ink-light);
  transition: color 0.2s; position: relative; padding: var(--space-2) 0;
}
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:0; width:0; height:3px;
  background: linear-gradient(90deg, var(--hot-pink), var(--gold));
  border-radius: 2px; transition: width 0.25s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover, .nav-links a.active { color: var(--royal-purple); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }

.menu-toggle {
  display:none; background:none; border:none; cursor:pointer;
  color: var(--ink); padding: var(--space-2);
}

/* Mobile Nav */
.mobile-nav {
  position:fixed; inset:0; z-index:200;
  background: linear-gradient(180deg, var(--royal-purple), var(--deep-blue));
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap: var(--space-8); opacity:0; pointer-events:none; transition: opacity 0.3s;
}
.mobile-nav.open { opacity:1; pointer-events:auto; }
.mobile-nav a {
  font-family: var(--font-fun); font-size: 1.75rem; font-weight:700;
  color: white; opacity:0; transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s;
}
.mobile-nav.open a { opacity:1; transform:translateY(0); }
.mobile-nav.open a:nth-child(2) { transition-delay:0.08s; }
.mobile-nav.open a:nth-child(3) { transition-delay:0.16s; }
.mobile-nav.open a:nth-child(4) { transition-delay:0.24s; }
.mobile-nav-close {
  position:absolute; top: var(--space-6); right: var(--space-6);
  background:none; border:none; color:white; font-size:2rem; cursor:pointer;
}

/* ── Hero ── */
.hero {
  position:relative; padding-top: calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-24); overflow:hidden;
  background: linear-gradient(165deg, #60A5FA 0%, #3B82F6 30%, #7C3AED 70%, #EC4899 100%);
  min-height: 100vh; display:flex; align-items:center;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.15)'/%3E%3C/svg%3E");
  opacity: 0.6;
}
/* Decorative floating shapes */
.hero-blob {
  position:absolute; border-radius: var(--radius-full); filter: blur(60px);
  opacity: 0.35; pointer-events:none;
}
.hero-blob-1 { width:400px; height:400px; background:#FBBF24; top:-10%; right:-5%; }
.hero-blob-2 { width:300px; height:300px; background:#FF6B9D; bottom:10%; left:-8%; opacity:0.25; }
.hero-blob-3 { width:200px; height:200px; background:#34D399; top:40%; right:20%; opacity:0.2; }

.hero .container { position:relative; z-index:2; max-width: var(--max-width); margin:0 auto; padding:0 var(--space-6); }
.hero-grid {
  display:grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items:center;
}

.hero-badge {
  display:inline-flex; align-items:center; gap: var(--space-2);
  background: rgba(255,255,255,0.2); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3); color: white;
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.8rem; margin-bottom: var(--space-6);
}
.hero-badge span { font-size: 1rem; }

.hero h1 {
  font-family: var(--font-fun); font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800; color: white; line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero h1 em {
  background: linear-gradient(90deg, var(--lemon), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-style: normal;
}
.hero p {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: rgba(255,255,255,0.92);
  max-width: 520px; margin-bottom: var(--space-8); line-height: 1.65;
}

.hero-cta { display:flex; gap: var(--space-4); flex-wrap:wrap; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap: var(--space-2);
  font-family: var(--font-fun); font-weight: 700; font-size: 0.95rem;
  padding: var(--space-3) var(--space-6); border-radius: var(--radius-full);
  border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-white {
  background: white; color: var(--royal-purple);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { box-shadow: var(--shadow-lg), 0 0 20px rgba(255,255,255,0.3); }

.btn-primary {
  background: linear-gradient(135deg, var(--hot-pink), var(--coral));
  color: white; box-shadow: 0 4px 16px rgba(236,72,153,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(236,72,153,0.45); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--sunset));
  color: var(--ink); box-shadow: 0 4px 16px rgba(251,191,36,0.35);
}
.btn-gold:hover { box-shadow: 0 8px 24px rgba(251,191,36,0.45); }

.btn-outline {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }

.btn-lg { padding: var(--space-4) var(--space-8); font-size: 1.05rem; }

.hero-stats {
  display:flex; gap: var(--space-8); margin-top: var(--space-10);
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat strong {
  display:block; font-family: var(--font-fun); font-size: 1.6rem;
  font-weight: 800; color: var(--gold); line-height:1;
}
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.75); font-weight:500; }

/* Hero Image */
.hero-visual {
  display:flex; align-items:center; justify-content:center;
  position: relative;
}
.hero-image-wrap {
  position:relative; width:100%; max-width: 560px;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(124,58,237,0.2);
  transform: perspective(800px) rotateY(-5deg) rotateX(3deg);
  transition: transform 0.4s ease;
}
.hero-image-wrap:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg) scale(1.02);
}
.hero-image-wrap img {
  width:100%; height:auto; border-radius: var(--radius-xl);
}
.hero-image-glow {
  position:absolute; inset: -20px; z-index:-1;
  background: linear-gradient(135deg, var(--gold), var(--hot-pink), var(--royal-purple));
  border-radius: calc(var(--radius-xl) + 20px);
  filter: blur(30px); opacity: 0.35;
}

/* ── Sections ── */
.section { padding: var(--space-24) 0; }
.section-header { text-align:center; max-width: 640px; margin:0 auto var(--space-16); }
.section-label {
  display:inline-block; font-family: var(--font-fun); font-weight:700;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--hot-pink); background: linear-gradient(135deg, rgba(236,72,153,0.08), rgba(251,191,36,0.08));
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.section-header h2 {
  font-family: var(--font-fun); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; color: var(--ink); line-height: 1.15; margin-bottom: var(--space-4);
}
.section-header p { color: var(--ink-muted); font-size: 1.05rem; }

/* ── Features ── */
.features { background: var(--white); }
.features-grid {
  display:grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6); max-width: var(--max-width); margin:0 auto; padding:0 var(--space-6);
}
.feature-card {
  background: var(--snow); border: 1px solid rgba(226,232,240,0.6);
  border-radius: var(--radius-lg); padding: var(--space-8);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: rgba(124,58,237,0.15);
}
.feature-icon-wrap {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display:flex; align-items:center; justify-content:center;
  font-size: 1.5rem; margin-bottom: var(--space-4);
  background: linear-gradient(135deg, var(--royal-purple), var(--hot-pink));
  box-shadow: 0 4px 12px rgba(124,58,237,0.2);
}
.feature-card:nth-child(2) .feature-icon-wrap { background: linear-gradient(135deg, var(--sky-blue), var(--teal)); }
.feature-card:nth-child(3) .feature-icon-wrap { background: linear-gradient(135deg, var(--gold), var(--sunset)); }
.feature-card:nth-child(4) .feature-icon-wrap { background: linear-gradient(135deg, var(--magenta), var(--coral)); }
.feature-card:nth-child(5) .feature-icon-wrap { background: linear-gradient(135deg, var(--deep-blue), var(--bright-purple)); }
.feature-card:nth-child(6) .feature-icon-wrap { background: linear-gradient(135deg, var(--mint), var(--teal)); }

.feature-card h3 {
  font-family: var(--font-fun); font-size: 1.15rem; font-weight:700;
  color: var(--ink); margin-bottom: var(--space-2);
}
.feature-card p { color: var(--ink-muted); font-size: 0.9rem; line-height:1.6; }

/* ── How It Works ── */
.how-it-works { background: linear-gradient(180deg, var(--snow), var(--cream)); }
.steps {
  display:grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8);
  max-width: var(--max-width); margin:0 auto; padding:0 var(--space-6);
}
.step {
  text-align:center; position:relative;
}
.step-number {
  width: 64px; height: 64px; margin:0 auto var(--space-6);
  border-radius: var(--radius-full);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-fun); font-size: 1.5rem; font-weight:800;
  color: white;
  background: linear-gradient(135deg, var(--royal-purple), var(--hot-pink));
  box-shadow: 0 6px 20px rgba(124,58,237,0.25);
}
.step:nth-child(2) .step-number { background: linear-gradient(135deg, var(--sky-blue), var(--teal)); }
.step:nth-child(3) .step-number { background: linear-gradient(135deg, var(--gold), var(--sunset)); }

.step h3 {
  font-family: var(--font-fun); font-size: 1.2rem; font-weight:700;
  color: var(--ink); margin-bottom: var(--space-2);
}
.step p { color: var(--ink-muted); font-size: 0.95rem; }

/* Connector lines between steps on desktop */
@media (min-width: 768px) {
  .step:not(:last-child)::after {
    content: ''; position: absolute; top: 32px; left: calc(50% + 40px);
    width: calc(100% - 80px); height: 3px;
    background: linear-gradient(90deg, var(--royal-purple), var(--hot-pink));
    border-radius: 2px; opacity: 0.25;
  }
  .step:nth-child(2)::after { background: linear-gradient(90deg, var(--sky-blue), var(--gold)); }
}

/* ── Safety ── */
.safety { background: var(--white); }
.safety-grid {
  display:grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5);
  max-width: var(--max-width); margin:0 auto; padding:0 var(--space-6);
}
.safety-card {
  display:flex; gap: var(--space-4); align-items:flex-start;
  background: var(--snow); border: 1px solid rgba(226,232,240,0.6);
  border-radius: var(--radius-lg); padding: var(--space-6);
  transition: transform 0.3s, box-shadow 0.3s;
}
.safety-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.safety-icon-wrap {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display:flex; align-items:center; justify-content:center;
  font-size: 1.4rem; flex-shrink:0;
  background: linear-gradient(135deg, var(--royal-purple), var(--hot-pink));
  box-shadow: 0 4px 12px rgba(124,58,237,0.15);
}
.safety-card:nth-child(2) .safety-icon-wrap { background: linear-gradient(135deg, var(--sky-blue), var(--teal)); }
.safety-card:nth-child(3) .safety-icon-wrap { background: linear-gradient(135deg, var(--gold), var(--sunset)); }
.safety-card:nth-child(4) .safety-icon-wrap { background: linear-gradient(135deg, var(--magenta), var(--coral)); }

.safety-card h4 { font-family: var(--font-fun); font-weight:700; margin-bottom: var(--space-1); }
.safety-card p { color: var(--ink-muted); font-size: 0.9rem; }

/* ── Characters Banner ── */
.characters-banner { background: linear-gradient(180deg, var(--white), var(--snow)); padding: var(--space-16) 0; }
.characters-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-10);
  align-items: center; background: linear-gradient(135deg, var(--deep-blue), var(--royal-purple));
  border-radius: var(--radius-xl); padding: var(--space-10) var(--space-12);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.characters-card::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.characters-content { position: relative; z-index: 2; }
.characters-content h2 {
  font-family: var(--font-fun); font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800; color: white; line-height: 1.15; margin-bottom: var(--space-4);
}
.characters-content p {
  color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.65;
  margin-bottom: var(--space-6); max-width: 440px;
}
.characters-badges {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
}
.char-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); color: white;
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.85rem;
}
.characters-visual {
  position: relative; z-index: 2; display: flex; align-items: center; justify-content: center;
}
.characters-visual img {
  width: 100%; max-width: 420px; border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .characters-card { grid-template-columns: 1fr; text-align: center; padding: var(--space-8) var(--space-6); }
  .characters-content p { margin-left: auto; margin-right: auto; }
  .characters-badges { justify-content: center; }
  .characters-visual { order: -1; }
  .characters-visual img { max-width: 300px; }
}

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, var(--royal-purple), var(--hot-pink), var(--gold));
  position:relative; overflow:hidden; padding: var(--space-24) 0;
}
.cta::before {
  content:''; position:absolute; inset:0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ctext x='10' y='55' font-size='30' opacity='0.08'%3E🎡%3C/text%3E%3C/svg%3E");
}
.cta-content { text-align:center; position:relative; z-index:2; }
.cta-content h2 {
  font-family: var(--font-fun); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: white; margin-bottom: var(--space-4);
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.cta-content p { color: rgba(255,255,255,0.9); max-width: 520px; margin:0 auto var(--space-8); font-size: 1.05rem; }

/* ── Footer ── */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: var(--space-16) 0 var(--space-8); }
.footer-grid {
  max-width: var(--max-width); margin:0 auto; padding:0 var(--space-6);
  display:grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-10);
}
.footer-brand {
  font-family: var(--font-fun); font-size: 1.3rem; font-weight:800;
  color: white; margin-bottom: var(--space-3);
}
.footer-desc { font-size: 0.9rem; line-height:1.6; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-fun); font-weight:700; font-size:0.85rem;
  text-transform:uppercase; letter-spacing:0.08em;
  color: var(--gold); margin-bottom: var(--space-4);
}
.footer-col a {
  display:block; color: rgba(255,255,255,0.65); font-size:0.9rem;
  margin-bottom: var(--space-3); transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: var(--max-width); margin: var(--space-10) auto 0; padding: var(--space-6) var(--space-6) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:var(--space-4);
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* ── Policy Pages ── */
.policy-page { padding-top: calc(var(--nav-height) + var(--space-16)); padding-bottom: var(--space-16); }
.policy-card {
  max-width: 800px; margin:0 auto; background: var(--white);
  border-radius: var(--radius-xl); padding: var(--space-10) var(--space-12);
  box-shadow: var(--shadow-md); border: 1px solid rgba(226,232,240,0.5);
}
.policy-card h1 {
  font-family: var(--font-fun); font-size: 2rem; font-weight:800;
  color: var(--ink); margin-bottom: var(--space-2);
}
.policy-date {
  display:inline-block; font-size: 0.8rem; font-weight:600;
  color: var(--hot-pink); background: rgba(236,72,153,0.08);
  padding: var(--space-1) var(--space-3); border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}
.policy-card h2 {
  font-family: var(--font-fun); font-size: 1.2rem; font-weight:700;
  color: var(--ink); margin: var(--space-8) 0 var(--space-3);
}
.policy-card p { color: var(--ink-light); margin-bottom: var(--space-4); font-size: 0.95rem; }
.policy-card ul { margin: var(--space-3) 0 var(--space-4) var(--space-6); }
.policy-card li { color: var(--ink-light); margin-bottom: var(--space-2); font-size: 0.95rem; }
.policy-card a { color: var(--royal-purple); font-weight:600; border-bottom: 1px solid currentColor; }
.policy-card a:hover { color: var(--hot-pink); }

/* ── Scroll Reveal ── */
.reveal { opacity:0; transform:translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--space-10); text-align:center; }
  .hero p { margin-left:auto; margin-right:auto; }
  .hero-cta { justify-content:center; }
  .hero-stats { justify-content:center; }
  .hero-visual { order:-1; }
  .hero-image-wrap { max-width: 420px; margin:0 auto; transform:none; }
  .hero-image-wrap:hover { transform: scale(1.02); }
}

@media (max-width: 768px) {
  .nav-links { display:none; }
  .menu-toggle { display:block; }
  .steps { grid-template-columns: 1fr; gap: var(--space-8); }
  .safety-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction:column; text-align:center; }
  .hero { padding-top: calc(var(--nav-height) + var(--space-10)); padding-bottom: var(--space-16); min-height:auto; }
  .section { padding: var(--space-16) 0; }
  .policy-card { padding: var(--space-8) var(--space-6); border-radius: var(--radius-lg); }
  .hero-blob { display:none; }
}

/* ── Amusement Park Theme Extras ── */

/* Bunting flags */
.bunting {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  height: 40px; pointer-events: none; overflow: hidden;
}
.bunting-string {
  position: absolute; top: 0; left: -5%; right: -5%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--hot-pink), var(--sky-blue), var(--gold));
  border-radius: 1px;
}
.pennant {
  position: absolute; top: 1px; left: calc(var(--i) * 8.5% + 1%);
  width: 0; height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 22px solid var(--gold);
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.08));
  animation: pennantSway 3s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.15s);
}
.pennant:nth-child(3n+1) { border-top-color: var(--hot-pink); }
.pennant:nth-child(3n+2) { border-top-color: var(--sky-blue); }
.pennant:nth-child(3n+3) { border-top-color: var(--mint); }
.bunting-sm { position: relative; height: 30px; margin-bottom: var(--space-8); }
.bunting-sm .pennant { border-left-width: 10px; border-right-width: 10px; border-top-width: 16px; }
@keyframes pennantSway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

/* Decorative floating icons */
.deco-ferris, .deco-coaster, .deco-balloon, .deco-ticket {
  position: absolute; z-index: 2; font-size: 2.5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
.deco-ferris { top: 18%; left: 5%; animation-delay: 0s; }
.deco-coaster { top: 55%; left: 8%; font-size: 2rem; animation-delay: 1.5s; }
.deco-balloon { top: 20%; right: 45%; font-size: 2.2rem; animation-delay: 0.8s; }
.deco-ticket { bottom: 20%; left: 15%; font-size: 1.8rem; animation-delay: 2.2s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(3deg); }
  66% { transform: translateY(6px) rotate(-2deg); }
}

/* Marquee lights */
.marquee-lights {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-around; align-items: center;
  height: 32px; padding: 0 var(--space-4);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.2));
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.bulb {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold), 0 0 16px var(--gold);
  animation: bulbBlink 1.5s ease-in-out infinite;
}
.bulb:nth-child(odd) { animation-delay: 0.75s; background: var(--hot-pink); box-shadow: 0 0 8px var(--hot-pink), 0 0 16px var(--hot-pink); }
.bulb:nth-child(3n) { animation-delay: 0.3s; background: var(--sky-blue); box-shadow: 0 0 8px var(--sky-blue), 0 0 16px var(--sky-blue); }
@keyframes bulbBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Ticket notches */
.ticket-notch {
  position: absolute; top: 50%; width: 24px; height: 24px;
  background: var(--snow); border-radius: 50%;
  transform: translateY(-50%); z-index: 3;
}
.ticket-notch-left { left: -12px; }
.ticket-notch-right { right: -12px; }

/* Step icons */
.step-icon {
  font-size: 2.5rem; margin: var(--space-4) 0; line-height: 1;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.08));
}

/* Marquee divider */
.marquee-divider {
  overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--deep-blue), var(--royal-purple));
  padding: var(--space-6) 0;
}
.marquee-stripes {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 10px,
    rgba(255,255,255,0.04) 10px, rgba(255,255,255,0.04) 20px
  );
}
.marquee-text {
  display: flex; gap: var(--space-10); white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
  position: relative; z-index: 2;
}
.marquee-text span {
  font-family: var(--font-fun); font-weight: 700; font-size: 1.2rem;
  color: white; opacity: 0.9;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Ticket stubs for characters section */
.ticket-stub {
  position: absolute; top: 0; bottom: 0; width: 32px; z-index: 3;
  background: linear-gradient(180deg, var(--gold), var(--sunset));
  display: flex; align-items: center; justify-content: center;
}
.ticket-stub-left { left: 0; border-radius: var(--radius-xl) 0 0 var(--radius-xl); }
.ticket-stub-right { right: 0; border-radius: 0 var(--radius-xl) var(--radius-xl) 0; }
.stub-holes { display: flex; flex-direction: column; gap: 10px; }
.stub-hole {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.15);
}

/* CTA Ticket */
.cta-ticket {
  display: flex; align-items: stretch; justify-content: center;
  max-width: 700px; margin: 0 auto;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-ticket-stub {
  width: 40px; flex-shrink: 0;
  background: linear-gradient(180deg, var(--hot-pink), var(--coral));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.cta-ticket-stub-left { border-radius: var(--radius-xl) 0 0 var(--radius-xl); }
.cta-ticket-stub-right { border-radius: 0 var(--radius-xl) var(--radius-xl) 0; }
.cta-stub-dots { display: flex; flex-direction: column; gap: 12px; }
.cta-stub-dots div {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.85);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.15);
}
.cta-ticket-body {
  padding: var(--space-10) var(--space-8);
  text-align: center;
}
.cta-ticket-body h2 { color: var(--ink); }
.cta-ticket-body p { color: var(--ink-muted); }

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .btn-lg { padding: var(--space-3) var(--space-5); font-size: 0.9rem; }
  .hero-stats { gap: var(--space-5); }
  .deco-ferris, .deco-coaster, .deco-balloon, .deco-ticket { display: none; }
  .marquee-lights { display: none; }
  .ticket-stub { display: none; }
  .characters-card { padding: var(--space-8) var(--space-6); }
  .cta-ticket-stub { width: 24px; }
}
