/* ============================================================
   BASE — Reset, Typography, Utilities
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  background-image:
    radial-gradient(ellipse at top, rgba(247,200,115,.08), transparent 60%),
    radial-gradient(circle at 15% 85%, rgba(30,77,43,.04), transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(168,35,26,.04), transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

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

/* Section */
.section { padding: var(--section-pad) 0; position: relative; }
.section-dark {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(247,200,115,.10), transparent 55%),
    radial-gradient(ellipse at 20% 100%, rgba(196,30,58,.09), transparent 60%);
  color: #fff;
}
.section-red {
  background: var(--red);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(247,200,115,.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.12), transparent 55%);
  color: #fff; position: relative; overflow: hidden;
}
.section-green {
  background: var(--green);
  background-image:
    radial-gradient(ellipse at top, rgba(247,200,115,.12), transparent 60%);
  color: #fff;
}
.section-cream {
  background: var(--cream);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(247,200,115,.12), transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(168,35,26,.06), transparent 55%);
}

/* Section Headers */
.section-header { text-align: center; margin-bottom: 56px; position: relative; }
.section-label {
  display: inline-block;
  font-family: var(--font-script); font-weight: 600; font-size: 1.6rem;
  letter-spacing: .01em; text-transform: none;
  color: var(--red); margin-bottom: 4px;
  transform: rotate(-2deg);
}
.section-label::before,
.section-label::after {
  content: '❄'; color: var(--lamplight); margin: 0 10px;
  font-size: .85rem; opacity: .7; vertical-align: middle;
}
.section-dark .section-label,
.section-green .section-label { color: var(--lamplight); }
.section-title {
  font-family: var(--font-impact); font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-transform: uppercase; line-height: 1.05; letter-spacing: -.01em;
}
.section-desc {
  max-width: 580px; margin: 14px auto 0;
  color: var(--gray); font-size: .95rem;
}
.section-dark .section-desc { color: rgba(255,255,255,.7); }
.section-green .section-desc { color: rgba(255,255,255,.75); }

/* Buttons — softened storybook feel */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-impact); font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 16px 36px; border-radius: 999px; text-decoration: none;
  transition: all .3s cubic-bezier(.4,1.4,.6,1); border: none; cursor: pointer;
  position: relative;
}
.btn-primary {
  background: linear-gradient(180deg, #D5293F 0%, var(--red) 55%, var(--red-dk) 100%);
  color: #fff;
  box-shadow: 0 4px 18px var(--red-glow), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--red-glow), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-outline {
  background: rgba(255,255,255,.06); color: #fff;
  border: 2px solid rgba(247,200,115,.45);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { border-color: var(--lamplight); background: rgba(247,200,115,.12); transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 55%, #B8902E 100%);
  color: #3A2812;
  box-shadow: 0 4px 18px rgba(212,168,67,.45), inset 0 1px 0 rgba(255,255,255,.35);
  font-weight: 700;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,168,67,.55), inset 0 1px 0 rgba(255,255,255,.4); }
.btn-sm { font-size: .88rem; padding: 12px 28px; }

/* Status Pills */
.pill {
  display: inline-block; font-size: .72rem; font-weight: 600;
  padding: 3px 10px; border-radius: 50px;
}
.pill-success { background: #D1FAE5; color: #065F46; }
.pill-warning { background: #FEF3C7; color: #92400E; }
.pill-danger  { background: #FEE2E2; color: #991B1B; }
.pill-info    { background: #DBEAFE; color: #1E40AF; }
