@font-face {
  font-family: "Lazydog";
  src: url("lazydog.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --yellow: #f9c94c;
  --yellow-soft: #fdeec0;
  --coral: #ee8a6b;
  --coral-dark: #d96a4b;
  --green: #a9c978;
  --blue: #7eb6de;
  --navy: #2c3e50;
  --cream: #fffaf0;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 10px 30px rgba(44, 62, 80, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Quicksand", "Segoe UI", system-ui, sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
}

h1, h2, h3, .headline {
  font-family: "Lazydog", "Quicksand", cursive;
  font-weight: normal;
  line-height: 1.25;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

a { color: var(--coral-dark); }

img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 4px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}

.brand img {
  height: 44px;
  width: 44px;
  border-radius: 12px;
}

.brand-name {
  font-family: "Lazydog", cursive;
  font-size: 1.3rem;
  line-height: 1.1;
}

.brand-name small {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral-dark);
  font-weight: 700;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

nav.main-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}

nav.main-nav a.active,
nav.main-nav a:hover {
  color: var(--coral-dark);
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(238, 138, 107, 0.4);
}

.btn-primary:hover { background: var(--coral-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-small { padding: 8px 18px; font-size: 0.85rem; }

/* Hero */
.hero {
  background: var(--yellow-soft);
  overflow: hidden;
  position: relative;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-copy .eyebrow {
  display: inline-block;
  background: var(--green);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero-copy p.lead {
  font-size: 1.15rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

/* Feature cards */
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: left;
}

.card .icon-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.dot-yellow { background: var(--yellow); }
.dot-coral { background: var(--coral); }
.dot-green { background: var(--green); }
.dot-blue { background: var(--blue); }

/* About split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.bg-blue { background: #eaf4fb; }
.bg-green { background: #f2f8e9; }

/* CTA banner */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin: 0 24px;
}

.cta-banner h2 { color: var(--white); }
.cta-banner p { color: #cfd8e0; }

/* Milestones / accordion */
.milestone {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  margin-bottom: 18px;
  overflow: hidden;
}

.milestone summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.milestone summary::-webkit-details-marker { display: none; }

.milestone summary .age-badge {
  background: var(--yellow-soft);
  color: var(--coral-dark);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-right: 14px;
}

.milestone summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--coral);
  margin-left: auto;
}

.milestone[open] summary::after { content: "\2212"; }

.milestone .milestone-body {
  padding: 0 26px 24px;
}

.milestone .milestone-body ul { margin: 0; padding-left: 20px; }

.tip-list {
  display: grid;
  gap: 16px;
}

.tip-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow);
  align-items: flex-start;
}

.tip-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.callout {
  background: var(--green);
  border-radius: var(--radius-md);
  padding: 24px 28px;
}

.callout h3 { margin-bottom: 8px; }

/* Footer */
footer.site-footer {
  background: var(--navy);
  color: #cfd8e0;
  padding: 48px 0 28px;
  margin-top: 40px;
}

footer.site-footer a { color: var(--white); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-grid h4 {
  color: var(--white);
  font-family: "Quicksand", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-size: 0.85rem;
  text-align: center;
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--navy);
}

@media (max-width: 820px) {
  .hero .container, .split { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .footer-grid { grid-template-columns: 1fr; }

  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    border-bottom: 4px solid var(--yellow);
    box-shadow: var(--shadow);
  }

  nav.main-nav.open { display: flex; }
  .nav-toggle { display: block; }
}
