/* === BASE === */
:root {
  --bg: #FDF6EE;
  --bg-2: #F5E8D6;
  --bg-dark: #2D1F14;
  --fg: #2D1F14;
  --fg-2: #6B4F3A;
  --fg-3: #9A7B66;
  --accent: #C85A2C;
  --accent-light: #E8A45C;
  --teal: #1B4D3E;
  --teal-light: #2A6B56;
  --white: #FFFFFF;
  --shadow: rgba(45, 31, 20, 0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(253, 246, 238, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 90, 44, 0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--fg);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 2rem 4rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(200, 90, 44, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Illustration */
.hero-illustration {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.illus-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(200, 90, 44, 0.08) 0%, rgba(27, 77, 62, 0.04) 50%, transparent 80%);
  border-radius: 24px;
}
.illus-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
/* Lamp glow */
.lamp-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 80px;
  background: radial-gradient(ellipse at 50% 100%, rgba(232, 164, 92, 0.35) 0%, transparent 70%);
  filter: blur(8px);
}
/* Book */
.book {
  position: absolute;
  bottom: 38%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 50px;
  display: flex;
  align-items: center;
}
.book-left {
  width: 38px;
  height: 50px;
  background: linear-gradient(135deg, #E8A45C 0%, #C85A2C 100%);
  border-radius: 4px 0 0 4px;
  box-shadow: inset -3px 0 6px rgba(0,0,0,0.15);
}
.book-right {
  width: 38px;
  height: 50px;
  background: linear-gradient(225deg, #E8A45C 0%, #C85A2C 100%);
  border-radius: 0 4px 4px 0;
  box-shadow: inset 3px 0 6px rgba(0,0,0,0.1);
}
.book-spine {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 50px;
  background: var(--teal);
  border-radius: 2px;
}
/* Parent figure */
.parent-figure {
  position: absolute;
  bottom: 25%;
  left: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.parent-head {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #C9A87C 0%, #A08060 100%);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.parent-body {
  width: 44px;
  height: 60px;
  background: linear-gradient(180deg, #1B4D3E 0%, #0E2E22 100%);
  border-radius: 20px 20px 8px 8px;
  margin-top: 4px;
}
.parent-arm {
  position: absolute;
  top: 40px;
  right: -30px;
  width: 50px;
  height: 6px;
  background: linear-gradient(90deg, #A08060, #C9A87C);
  border-radius: 3px;
  transform: rotate(-20deg);
}
/* Child figure */
.child-figure {
  position: absolute;
  bottom: 25%;
  right: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.child-head {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #D4A574 0%, #B8845A 100%);
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
}
.child-body {
  width: 32px;
  height: 44px;
  background: linear-gradient(180deg, #C85A2C 0%, #8B3D1A 100%);
  border-radius: 14px 14px 6px 6px;
  margin-top: 3px;
}
.child-arm {
  position: absolute;
  top: 28px;
  left: -24px;
  width: 36px;
  height: 5px;
  background: linear-gradient(90deg, #B8845A, #D4A574);
  border-radius: 3px;
  transform: rotate(15deg);
}
/* Floor */
.floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(200, 90, 44, 0.04) 100%);
}
/* Sparkles */
.sparkle {
  position: absolute;
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}
.s1 {
  width: 8px; height: 8px;
  top: 20%; left: 15%;
  background: var(--accent-light);
  animation-delay: 0s;
}
.s2 {
  width: 6px; height: 6px;
  top: 30%; right: 20%;
  background: var(--teal);
  animation-delay: 1s;
}
.s3 {
  width: 5px; height: 5px;
  top: 45%; left: 60%;
  background: var(--accent);
  animation-delay: 2s;
}
/* Hearts */
.heart {
  position: absolute;
  animation: float 4s ease-in-out infinite;
}
.h1 {
  top: 35%;
  left: 35%;
  width: 16px;
  height: 16px;
  background: var(--accent);
  clip-path: path('M8 2 C6 0, 2 0, 2 4 C2 6, 8 10, 8 10 C8 10, 14 6, 14 4 C14 0, 10 0, 8 2Z');
  animation-delay: 0.5s;
}
.h2 {
  top: 25%;
  right: 30%;
  width: 12px;
  height: 12px;
  background: var(--teal);
  clip-path: path('M6 1.5 C4.5 0, 1.5 0, 1.5 3 C1.5 4.5, 6 7.5, 6 7.5 C6 7.5, 10.5 4.5, 10.5 3 C10.5 0, 7.5 0, 6 1.5Z');
  animation-delay: 1.5s;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 480px;
}
.hero-stat-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 90, 44, 0.15);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-desc {
  font-size: 0.82rem;
  color: var(--fg-3);
  line-height: 1.4;
  max-width: 160px;
}
.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(200, 90, 44, 0.15);
  flex-shrink: 0;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--bg-dark);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--teal) 50%, var(--accent-light) 100%);
}
.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 2rem;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  line-height: 1.6;
  color: #F5E8D6;
  font-style: normal;
}
.manifesto-quote em {
  color: var(--accent-light);
  font-style: italic;
}
.manifesto-sig {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(245, 232, 214, 0.6);
}
.manifesto-sig-sub {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* === HOW IT WORKS === */
.howitworks {
  padding: 6rem 2rem;
  background: var(--bg);
}
.hiw-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hiw-header {
  margin-bottom: 3.5rem;
}
.hiw-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.hiw-sub {
  font-size: 1rem;
  color: var(--fg-2);
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.hiw-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--bg-2);
  border-radius: 16px;
  border: 1px solid rgba(200, 90, 44, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hiw-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.08em;
}
.step-icon {
  width: 56px;
  height: 56px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 90, 44, 0.1);
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
}
.step-desc {
  font-size: 0.9rem;
  color: var(--fg-2);
  line-height: 1.65;
}

/* === SAFETY === */
.safety {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #F5E8D6 0%, var(--bg) 50%, rgba(27, 77, 62, 0.04) 100%);
}
.safety-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.safety-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(27, 77, 62, 0.08);
  border: 1px solid rgba(27, 77, 62, 0.2);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.25rem;
}
.safety-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.safety-title em {
  color: var(--teal);
  font-style: italic;
}
.safety-body {
  font-size: 1rem;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.safety-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.safety-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--fg);
}
.check-icon {
  flex-shrink: 0;
  margin-top: 1px;
}
.safety-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.shield-illus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.shield-outer {
  width: 180px;
  height: 200px;
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(200, 90, 44, 0.06) 100%);
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 90, 44, 0.12);
}
.shield-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.shield-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === RESOURCES === */
.resources {
  padding: 6rem 2rem;
  background: var(--bg-2);
}
.resources-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.res-header {
  max-width: 640px;
  margin-bottom: 3rem;
}
.res-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.res-sub {
  font-size: 1rem;
  color: var(--fg-2);
  line-height: 1.65;
}
.res-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.res-card {
  padding: 1.75rem;
  background: var(--bg);
  border-radius: 14px;
  border: 1px solid rgba(200, 90, 44, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.res-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow);
}
.res-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 90, 44, 0.08);
}
.res-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}
.res-card-desc {
  font-size: 0.85rem;
  color: var(--fg-2);
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: 6rem 2rem;
  background: var(--teal);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(200, 90, 44, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.closing-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232, 164, 92, 0.8);
  margin-bottom: 1.25rem;
}
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--bg);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.closing-body {
  font-size: 1rem;
  color: rgba(253, 246, 238, 0.75);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 640px;
}
.closing-promise {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 3rem;
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(253, 246, 238, 0.9);
}
.closing-closing {
  padding-top: 2rem;
  border-top: 1px solid rgba(253, 246, 238, 0.1);
}
.closing-closing p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(232, 164, 92, 0.8);
}

/* === FOOTER === */
.site-footer {
  padding: 3rem 2rem;
  background: var(--bg-dark);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #F5E8D6;
  margin-bottom: 0.25rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245, 232, 214, 0.5);
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(245, 232, 214, 0.35);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-illustration { height: 300px; }
  .hiw-steps { grid-template-columns: 1fr; }
  .safety-inner { grid-template-columns: 1fr; }
  .safety-visual { display: none; }
  .res-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero { padding: 6rem 1.25rem 3rem; }
  .hiw-steps { gap: 1.25rem; }
  .res-cards { grid-template-columns: 1fr; }
  .hero-stat-row { flex-direction: column; gap: 1rem; }
  .hero-stat-divider { display: none; }
  .manifesto { padding: 4rem 1.25rem; }
  .howitworks, .safety, .resources, .closing { padding: 4rem 1.25rem; }
}