:root {
  --bg: #FFFBF5;
  --bg-alt: #FFF5E8;
  --fg: #2D2A26;
  --fg-muted: #6B655C;
  --accent: #E8764B;
  --accent-soft: #FCEEE7;
  --green: #4A7C59;
  --green-soft: #E8F0EA;
  --purple: #7B6B8A;
  --purple-soft: #F0ECF3;
  --gold: #C4961A;
  --gold-soft: #FDF6E3;
  --blue: #4A6FA5;
  --blue-soft: #E8EEF5;
  --radius: 12px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: linear-gradient(175deg, var(--bg) 0%, var(--bg-alt) 40%, var(--accent-soft) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-soft);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tag {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.06);
  color: var(--fg-muted);
  backdrop-filter: blur(4px);
}

/* Decorative blooms */
.hero-decoration { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.bloom {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.bloom-1 {
  width: 400px; height: 400px;
  background: var(--accent);
  top: -100px; right: -80px;
}

.bloom-2 {
  width: 300px; height: 300px;
  background: var(--green);
  bottom: -60px; left: -60px;
}

.bloom-3 {
  width: 200px; height: 200px;
  background: var(--gold);
  top: 40%; left: 10%;
}

/* Sections */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.themes, .how-it-works, .grades, .closing {
  padding: 100px 0;
}

.themes { background: var(--bg); }
.how-it-works { background: var(--bg-alt); }
.grades { background: var(--bg); }
.closing { background: linear-gradient(180deg, var(--bg-alt) 0%, var(--accent-soft) 100%); }

h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--fg);
}

.section-sub {
  text-align: center;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 1.05rem;
}

/* Theme Grid */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.theme-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.theme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.theme-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.theme-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.theme-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.theme-seasonal { border-top: 3px solid var(--gold); }
.theme-fantasy { border-top: 3px solid var(--purple); }
.theme-writing { border-top: 3px solid var(--accent); }
.theme-review { border-top: 3px solid var(--blue); }
.theme-games { border-top: 3px solid var(--green); }
.theme-subject { border-top: 3px solid var(--fg); }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step { text-align: center; }

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 12px;
}

.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 280px;
  margin: 0 auto;
}

/* Grade Bands */
.grade-bands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grade-band {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
}

.grade-label {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.grade-band p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Closing */
.closing-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.closing-content p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-top: 20px;
  line-height: 1.75;
}

.closing-accent {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--accent) !important;
  font-size: 1.3rem !important;
  margin-top: 32px !important;
}

/* Footer */
.site-footer {
  background: var(--fg);
  color: rgba(255,255,255,0.7);
  padding: 48px 24px;
  text-align: center;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { min-height: 70vh; padding: 100px 20px 60px; }
  .theme-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .grade-bands { grid-template-columns: repeat(2, 1fr); }
  .themes, .how-it-works, .grades, .closing { padding: 64px 0; }
}

@media (max-width: 480px) {
  .grade-bands { grid-template-columns: 1fr; }
  .hero-tags { gap: 8px; }
  .tag { font-size: 13px; padding: 6px 12px; }
}