:root {
  --bg: #fef9f3;
  --surface: #fffaf2;
  --surface-alt: #f7eadb;
  --primary: #235347;
  --primary-contrast: #ffffff;
  --accent: #f5c76b;
  --text: #21312b;
  --muted: #65736d;
  --border: #e8d8c6;
  --shadow: 0 18px 45px rgba(35, 83, 71, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; color: var(--text); background: var(--bg); font-family: 'Quicksand', system-ui, sans-serif; }
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(254, 249, 243, 0.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }
.logo { height: 24px; width: auto; }
.nav-links { display: flex; gap: 24px; font-weight: 700; font-size: 0.95rem; }
.nav-links a { text-decoration: none; color: var(--primary); }
.nav-links a:hover { text-decoration: underline; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 20px; border-radius: 999px; border: 1px solid var(--primary); font-weight: 800; text-decoration: none; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.button:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.button-primary { background: var(--primary); color: var(--primary-contrast); }
.button-secondary { background: transparent; color: var(--primary); }

.hero { padding: 76px 0; }
.hero-grid { display: grid; align-items: center; gap: 56px; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr); }
.eyebrow { display: inline-flex; margin: 0 0 16px; padding: 8px 14px; border-radius: 999px; background: rgba(245, 199, 107, 0.35); color: var(--primary); font-size: 0.9rem; font-weight: 800; }
h1, h2, h3 { font-family: 'Baloo 2', system-ui, sans-serif; color: var(--primary); line-height: 1.05; margin: 0; }
h1 { font-size: clamp(2.6rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
h3 { font-size: 1.45rem; }
.lead { color: var(--muted); font-size: 1.2rem; line-height: 1.7; margin: 24px 0 0; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-card { padding: 14px; border-radius: 34px; background: var(--primary); box-shadow: var(--shadow); }
.hero-card img { border-radius: 24px; aspect-ratio: 16 / 9; object-fit: cover; }

.section { padding: 72px 0; }
.section-alt { background: var(--surface-alt); }
.section-cta { background: rgba(245, 199, 107, 0.25); text-align: center; }
.section-heading { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-heading p { color: var(--muted); font-size: 1.1rem; line-height: 1.7; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { padding: 28px; border-radius: 28px; background: var(--surface); box-shadow: 0 10px 30px rgba(35, 83, 71, 0.08); }
.card p, .step p, .prose p { color: var(--muted); line-height: 1.7; }
.icon-bubble { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 18px; background: var(--accent); color: var(--primary); font-weight: 900; margin-bottom: 18px; }
.story-grid { display: grid; grid-template-columns: 0.95fr 1fr; gap: 56px; align-items: center; }
.rounded-image { border-radius: 34px; box-shadow: var(--shadow); aspect-ratio: 16 / 9; object-fit: cover; }
.steps { display: grid; gap: 22px; margin-top: 28px; }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 16px; }
.step-number { width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; background: var(--primary); color: white; font-weight: 900; }
.page { padding: 72px 0; }
.page-narrow { max-width: 760px; }
.prose { font-size: 1.1rem; margin-top: 28px; }

.site-footer { background: var(--primary); color: var(--primary-contrast); padding: 52px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; }
.site-footer a { color: rgba(255,255,255,0.82); text-decoration: none; }
.site-footer a:hover { color: white; text-decoration: underline; }
.footer-links { display: grid; gap: 10px; margin-top: 14px; }
.footer-muted { color: rgba(255,255,255,0.78); line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); margin-top: 36px; padding-top: 20px; color: rgba(255,255,255,0.72); font-size: 0.92rem; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .hero { padding: 52px 0; }
  .hero-grid, .story-grid, .card-grid, .footer-grid { grid-template-columns: 1fr; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
}
