/* =========================================================
   Young Leaders Summer Program — styles
   Pastel green dominant + navy / orange / gold accents,
   hand-drawn doodles, brush strokes, squiggle underlines.
   (No purple, per VJ.)
   ========================================================= */

:root {
  /* ——— Greens (dominant) ——— */
  --mint-50:  #F4FBF7;
  --mint-100: #E6F6EC;
  --mint-200: #D1EEDD;
  --mint-300: #A8E6CF;
  --mint-400: #7FD4AE;
  --mint-500: #56C091;
  --mint-600: #3B9F73;
  --mint-700: #2A7E59;
  --mint-800: #1F5C3A;
  --mint-900: #123F26;

  /* ——— Accent palette (from the flyer, minus purple) ——— */
  --navy:       #1E3C6E;
  --navy-soft:  #EAF0FA;
  --navy-deep:  #0F2340;

  --orange:      #F28035;
  --orange-dark: #D96A1E;
  --orange-soft: #FFE8D4;

  --gold:        #FFC947;
  --gold-soft:   #FFF4CE;

  --coral:       #FF7A6B;     /* used sparingly — "Limited Seats" pop */

  --white:    #FFFFFF;
  --cream:    #FAFCF9;
  --ink:      #1F3328;
  --ink-soft: #4B5F54;

  /* ——— Shadow system (requested: shadowed icons) ——— */
  --icon-shadow:
      drop-shadow(0 3px 0 rgba(15, 35, 64, 0.18))
      drop-shadow(0 8px 14px rgba(15, 35, 64, 0.22));
  --icon-shadow-strong:
      drop-shadow(0 4px 0 rgba(15, 35, 64, 0.24))
      drop-shadow(0 14px 22px rgba(15, 35, 64, 0.30));
  --card-shadow:      0 2px 0 rgba(15, 35, 64, 0.06), 0 18px 40px -16px rgba(15, 35, 64, 0.22);
  --card-shadow-lift: 0 4px 0 rgba(15, 35, 64, 0.08), 0 28px 50px -18px rgba(15, 35, 64, 0.32);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --font-head: 'Fredoka', system-ui, -apple-system, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;
  --font-hand: 'Patrick Hand', 'Fredoka', cursive;
}

/* =============== BASE =============== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--navy);
}
p { margin: 0; }
a { color: var(--mint-700); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px; }
a:hover { color: var(--orange-dark); }
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; position: relative; }

/* Section titles get a hand-drawn squiggle underline */
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  text-align: center;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
  padding: 0 12px 18px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--navy);
}
.section-title::after {
  content: '';
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 0;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2 8 Q20 2 40 8 T80 8 T120 8 T160 8 T198 8' fill='none' stroke='%233B9F73' stroke-width='4' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.section-title .kicker-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: super;
  box-shadow: 0 3px 0 rgba(217, 106, 30, 0.3);
}

/* =============== SHARED DOODLES =============== */
.doodle {
  position: absolute;
  pointer-events: none;
  filter: var(--icon-shadow);
  animation: bob 5s ease-in-out infinite;
}
.doodle-gold   { color: var(--gold); fill: var(--gold); }
.doodle-green  { color: var(--mint-500); fill: var(--mint-500); }
.doodle-navy   { color: var(--navy); fill: var(--navy); }
.doodle-orange { color: var(--orange); fill: var(--orange); }
.doodle-coral  { color: var(--coral); fill: var(--coral); }

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-8px) rotate(calc(var(--rot, 0deg) + 6deg)); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.6; transform: scale(1) rotate(var(--rot, 0deg)); }
  50%      { opacity: 1;   transform: scale(1.2) rotate(calc(var(--rot, 0deg) + 15deg)); }
}

/* Highlighter / marker stroke behind emphasis words */
.highlight {
  position: relative;
  display: inline-block;
  padding: 0 4px;
  white-space: nowrap;
}
.highlight::before {
  content: '';
  position: absolute;
  left: -6px; right: -6px;
  top: 55%;
  height: 60%;
  background: var(--accent, var(--gold));
  opacity: 0.55;
  z-index: -1;
  border-radius: 6px;
  transform: rotate(-1deg);
}
.highlight-green  { --accent: var(--mint-300); }
.highlight-gold   { --accent: var(--gold); }
.highlight-orange { --accent: var(--orange-soft); }
.highlight-navy   { --accent: var(--navy-soft); }

/* =============== BUTTONS =============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
  white-space: nowrap;
  position: relative;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 5px 0 var(--orange-dark), 0 18px 28px -14px rgba(217, 106, 30, 0.55);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--orange-dark), 0 22px 34px -14px rgba(217, 106, 30, 0.6);
}
.btn-primary:active { transform: translateY(1px); box-shadow: 0 2px 0 var(--orange-dark); }
.btn-submit { width: 100%; padding: 20px 28px; font-size: 20px; }
.btn-spinner { display: none; width: 18px; height: 18px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.45); border-top-color: #fff; animation: spin .8s linear infinite; }
.btn.is-loading .btn-label { opacity: 0.6; }
.btn.is-loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =============== HERO =============== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 120px;
  background:
    radial-gradient(ellipse at 100% 0%, var(--mint-200) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, var(--gold-soft) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 100%, var(--orange-soft) 0%, transparent 40%),
    linear-gradient(180deg, var(--mint-50) 0%, var(--white) 100%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.6;
  z-index: 0;
}
.hero-blob-1 { width: 440px; height: 440px; background: var(--mint-300); top: -140px; right: -140px; }
.hero-blob-2 { width: 380px; height: 380px; background: var(--gold-soft); bottom: -160px; left: -160px; }
.hero-blob-3 { width: 260px; height: 260px; background: var(--orange-soft); top: 30%; left: -120px; opacity: 0.8; }

/* Floating doodles in hero */
.hero .doodle { z-index: 1; }
.hero .doodle-s1 { top: 10%;  left: 8%;  width: 34px; --rot: -12deg; animation: twinkle 3.2s ease-in-out infinite; }
.hero .doodle-s2 { top: 18%;  right: 9%; width: 26px; --rot: 15deg;  animation: twinkle 4s ease-in-out infinite .6s; }
.hero .doodle-s3 { top: 62%;  left: 6%;  width: 28px; --rot: 20deg;  animation: twinkle 3.6s ease-in-out infinite 1.1s; }
.hero .doodle-s4 { top: 68%;  right: 7%; width: 40px; --rot: -8deg;  animation: twinkle 4.4s ease-in-out infinite .3s; }
.hero .doodle-bulb  { top: 14%; right: 18%; width: 56px; --rot: 10deg; }
.hero .doodle-heart { top: 50%; right: 12%; width: 34px; --rot: -15deg; }
.hero .doodle-star  { bottom: 18%; left: 14%; width: 44px; --rot: -18deg; }
.hero .doodle-arrow { bottom: 20%; right: 22%; width: 80px; --rot: -10deg; }

.hero-inner { position: relative; z-index: 2; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--mint-500);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(60px, 11vw, 132px);
  line-height: 0.88;
  margin: 0 0 22px;
  text-shadow: 0 4px 0 rgba(15, 35, 64, 0.10), 0 14px 30px rgba(15, 35, 64, 0.14);
}
.hero-title-word { display: block; position: relative; }
.hero-title-young {
  color: var(--navy);
  transform: rotate(-2deg);
}
.hero-title-leaders {
  color: var(--mint-600);
  transform: rotate(1deg);
  margin-top: -4px;
}
.hero-title-leaders::after {
  content: '';
  position: absolute;
  left: 18%; right: 18%;
  bottom: -8px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 18' preserveAspectRatio='none'><path d='M2 10 Q25 2 50 10 T100 10 T150 10 T198 10' fill='none' stroke='%23FFC947' stroke-width='6' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.85;
}

.hero-tagline {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(18px, 2.1vw, 24px);
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto 16px;
}
.hero-hand {
  font-family: var(--font-hand);
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--navy);
  margin-bottom: 36px;
  line-height: 1.3;
}
.hero-hand .h-1 { color: var(--navy); }
.hero-hand .h-2 { color: var(--mint-600); }
.hero-hand .h-3 { color: var(--orange); }

.hero-cta-row {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
}

.limited-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 0 #C94C3C, 0 12px 18px -8px rgba(255, 122, 107, 0.6);
  transform: rotate(-3deg);
  position: relative;
  top: -4px;
}
.limited-badge::before { content: '●'; font-size: 10px; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

.hero-cta-note {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
}
.hero-cta-note strong { color: var(--orange-dark); }

/* =============== FACTS =============== */
.facts {
  position: relative;
  margin-top: -70px;
  z-index: 3;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 24px;
}
.fact {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 18px 22px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.fact::before {
  content: '';
  position: absolute;
  top: 8px; right: 10px;
  width: 8px; height: 8px;
  background: var(--accent-dot, var(--mint-300));
  border-radius: 50%;
  box-shadow: 14px 4px 0 var(--accent-dot-2, var(--gold));
}
.fact-1 { --accent-dot: var(--mint-300); --accent-dot-2: var(--gold); }
.fact-2 { --accent-dot: var(--gold);     --accent-dot-2: var(--orange); }
.fact-3 { --accent-dot: var(--orange);   --accent-dot-2: var(--navy); }
.fact-4 { --accent-dot: var(--navy);     --accent-dot-2: var(--mint-500); }

.fact:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-lift); }
.fact-icon {
  width: 76px; height: 76px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--icon-bg, var(--mint-100));
  border-radius: 50%;
  position: relative;
}
.fact-icon svg {
  width: 44px; height: 44px;
  fill: var(--icon-color, var(--mint-700));
  stroke: var(--icon-color, var(--mint-700));
  filter: var(--icon-shadow);
}
.fact-1 .fact-icon { --icon-bg: var(--mint-100);  --icon-color: var(--mint-700); }
.fact-2 .fact-icon { --icon-bg: var(--gold-soft); --icon-color: var(--orange-dark); }
.fact-3 .fact-icon { --icon-bg: var(--mint-100);  --icon-color: var(--navy); }
.fact-4 .fact-icon { --icon-bg: var(--orange-soft); --icon-color: var(--orange-dark); }

.fact-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint-600);
  margin-bottom: 4px;
}
.fact-value {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.25;
}

/* =============== OVERVIEW =============== */
.overview { padding: 110px 0 60px; position: relative; }
.overview .doodle-wiggle-1 { top: 20px;  left: 5%;  width: 48px; --rot: -8deg; }
.overview .doodle-wiggle-2 { bottom: 40px; right: 6%; width: 44px; --rot: 14deg; }

.overview-inner { text-align: center; max-width: 820px; margin: 0 auto; }
.overview-body {
  font-size: 20px;
  color: var(--ink);
  margin: 32px auto 28px;
  max-width: 720px;
  line-height: 1.7;
}
.overview-body .highlight { font-weight: 700; }

.overview-accent {
  font-family: var(--font-hand);
  font-size: 26px;
  color: var(--navy);
  background: var(--mint-100);
  padding: 18px 32px;
  border-radius: var(--radius-md);
  display: inline-block;
  box-shadow: var(--card-shadow), inset 0 0 0 3px var(--mint-300);
  transform: rotate(-0.8deg);
  position: relative;
}
.overview-accent::before,
.overview-accent::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 3px 0 rgba(217, 106, 30, 0.2);
}
.overview-accent::before { top: -10px; left: -10px; transform: rotate(-12deg); }
.overview-accent::after  { bottom: -10px; right: -10px; background: var(--orange); }

/* =============== EXPECT =============== */
.expect { padding: 60px 0 100px; position: relative; }
.expect .doodle-arrow-card { top: 80px; right: 4%; width: 64px; --rot: 20deg; }
.expect .doodle-star-card  { top: 60px; left: 4%;  width: 36px; --rot: -18deg; }

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.expect-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--card-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--card-accent, var(--mint-400));
}
.expect-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--card-tint, var(--mint-50)) 0%, transparent 45%);
  pointer-events: none;
}
.expect-card::after {
  content: '';
  position: absolute;
  top: 16px; right: 16px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--card-accent, var(--mint-400));
  opacity: 0.35;
}
.expect-card > * { position: relative; }
.expect-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-lift); }

.expect-card-1 { --card-accent: var(--orange);   --card-tint: var(--orange-soft); }
.expect-card-2 { --card-accent: var(--mint-500); --card-tint: var(--mint-100); }
.expect-card-3 { --card-accent: var(--navy);     --card-tint: var(--navy-soft); }
.expect-card-finale { --card-accent: var(--gold); --card-tint: var(--gold-soft); }

.expect-icon {
  width: 88px; height: 88px;
  background: var(--icon-bg, var(--mint-200));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.expect-icon svg {
  width: 52px; height: 52px;
  fill: var(--icon-color, var(--navy));
  stroke: var(--icon-color, var(--navy));
  filter: var(--icon-shadow-strong);
}
.expect-card-1 .expect-icon { --icon-bg: var(--orange-soft); --icon-color: var(--orange-dark); }
.expect-card-2 .expect-icon { --icon-bg: var(--mint-200);    --icon-color: var(--mint-700); }
.expect-card-3 .expect-icon { --icon-bg: var(--navy-soft);   --icon-color: var(--navy); }
.expect-card-finale .expect-icon { --icon-bg: var(--white);  --icon-color: var(--orange-dark); }

.expect-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--navy);
}
.expect-card p { color: var(--ink); font-size: 16px; }

.expect-card-finale {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--orange-soft) 100%);
}
.expect-card-finale::before { display: none; }
.expect-card-finale h3 { color: var(--orange-dark); font-size: 26px; }
.finale-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.finale-badge {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 3px 0 rgba(15, 35, 64, 0.12);
  letter-spacing: 0.04em;
}
.finale-badge-1 { color: var(--orange-dark); }
.finale-badge-2 { color: var(--mint-700); }
.finale-badge-3 { color: var(--navy); }

/* =============== REGISTRATION =============== */
.register {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--mint-50) 0%, var(--white) 100%);
  position: relative;
}
.register .doodle-r1 { top: 60px; left: 6%;  width: 50px; --rot: -12deg; }
.register .doodle-r2 { top: 140px; right: 6%; width: 44px; --rot: 18deg; }

.register-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }

.seats-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 999px;
  max-width: 360px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 0 #C94C3C, 0 12px 18px -8px rgba(255, 122, 107, 0.55);
  transform: rotate(-1deg);
}
.seats-banner::before {
  content: '●';
  font-size: 11px;
  animation: pulse 1.6s ease-in-out infinite;
}

.register-intro {
  text-align: center;
  font-size: 17px;
  color: var(--ink-soft);
  margin: 12px auto 36px;
  max-width: 620px;
}

.form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--card-shadow-lift);
  border: 1px solid var(--mint-100);
  position: relative;
  overflow: hidden;
}
.form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--mint-400) 0%, var(--gold) 50%, var(--orange) 100%);
}

.form-section {
  border: 0;
  padding: 0 0 28px;
  margin: 0 0 28px;
  border-bottom: 1px dashed var(--mint-200);
}
.form-section:last-of-type { border-bottom: 0; margin-bottom: 16px; padding-bottom: 8px; }
.form-section legend {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  padding: 6px 14px;
  margin-bottom: 14px;
  background: var(--mint-100);
  border-radius: 999px;
  display: inline-block;
}
.form-section:nth-of-type(2) legend { background: var(--orange-soft); color: var(--orange-dark); }
.form-section:nth-of-type(3) legend { background: var(--gold-soft); color: var(--orange-dark); }
.form-section:nth-of-type(4) legend { background: var(--navy-soft); color: var(--navy); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}
.form-row:last-child { margin-bottom: 0; }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.field-full { grid-column: 1 / -1; }
.field > span {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  color: var(--navy);
}
.field em { color: var(--orange); font-style: normal; font-weight: 700; margin-left: 2px; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--mint-200);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 72px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--mint-500);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--mint-100);
}

.radio-row { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.radio {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--cream);
  border: 2px solid var(--mint-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.radio:hover { border-color: var(--mint-400); }
.radio input { accent-color: var(--mint-600); width: 18px; height: 18px; }
.radio:has(input:checked) { border-color: var(--mint-600); background: var(--mint-100); }

.form-footer { margin-top: 28px; }
.fee-callout {
  background: var(--gold-soft);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 20px;
}
.fee-callout strong { color: var(--orange-dark); }

.form-message {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  animation: pop-in .3s ease-out;
}
.form-message-success { background: var(--mint-100); border: 2px solid var(--mint-400); color: var(--mint-800); }
.form-message-error   { background: #FFF1ED; border: 2px solid #F5B2A0; color: #8B2F15; }
.form-message h3 { font-size: 20px; margin-bottom: 6px; color: inherit; }
.form-message p  { font-size: 15px; }
@keyframes pop-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* =============== FOOTER =============== */
.footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--mint-400) 0%, var(--gold) 50%, var(--orange) 100%);
}
.footer-hand {
  font-family: var(--font-hand);
  font-size: 30px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.footer-hand .f-1 { color: var(--mint-300); }
.footer-hand .f-2 { color: var(--gold); }
.footer-hand .f-3 { color: var(--orange); }
.footer-contact { color: var(--mint-100); font-size: 15px; }
.footer-contact a { color: var(--gold); text-decoration-color: var(--orange); }

/* =============== RESPONSIVE =============== */
@media (max-width: 960px) {
  .expect-grid { grid-template-columns: 1fr 1fr; }
  .expect-card-finale { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .facts { margin-top: -40px; }
  .expect-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form { padding: 28px 22px; }
  .hero { padding: 56px 0 90px; }
  .overview { padding: 90px 0 40px; }
  .hero .doodle-bulb, .hero .doodle-heart { display: none; }
  .hero .doodle-arrow { right: 8%; width: 60px; }
}
@media (max-width: 480px) {
  .facts-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 18vw; }
  .section-title { font-size: 28px; }
  .hero .doodle-star { display: none; }
}
