:root {
  --cream: #FFFBF1;
  --yellow: #FFD23F;
  --yellow-soft: #FFE9A8;
  --pink: #F4588A;
  --pink-soft: #FFC9DA;
  --pink-pale: #ffe9f0;
  --brown: #4A2C17;
  --brown-soft: #6B4426;
  --teal: #2AA79B;
  --orange: #F68B3C;
  --purple: #8B5FC7;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand {
  font-family: 'Fredoka', 'Nunito', sans-serif;
  line-height: 1.15;
  color: var(--brown);
}

/* ---------- nav ---------- */
.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-weight: 700;
  font-size: 1.35rem;
  text-decoration: none;
}
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a {
  color: var(--brown-soft);
  text-decoration: none;
  font-weight: 700;
}
.nav-links a:hover { color: var(--pink); }

/* ---------- shared card ---------- */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.card-yellow {
  position: relative;
  background: var(--yellow);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(244, 180, 30, .25);
}

/* ---------- hero ---------- */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: center;
  padding: 3.5rem 3rem;
}
.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: .6rem;
}
.tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: .8rem;
}
.lede {
  font-size: 1.08rem;
  color: var(--brown-soft);
  margin-bottom: 1.6rem;
  max-width: 34ch;
}
.btn-pill {
  display: inline-block;
  background: var(--brown);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: .8rem 1.9rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(74, 44, 23, .25);
  transition: transform .15s ease;
}
.btn-pill:hover { transform: translateY(-2px); }
.hero-img img {
  width: 100%;
  border-radius: 1.5rem;
  display: block;
  box-shadow: 0 10px 28px rgba(74, 44, 23, .18);
}
.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
}
.deco-c1 { width: 130px; height: 130px; top: -45px; right: 12%; }
.deco-c2 { width: 70px; height: 70px; bottom: 8%; left: 4%; }
.sparkle { position: absolute; color: #fff; opacity: .9; }
.s1 { top: 12%; left: 46%; font-size: 1.4rem; }
.s2 { bottom: 14%; right: 6%; font-size: 1.1rem; }

/* ---------- story ---------- */
.card-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(244, 88, 138, .16);
}
.story-text {
  background: var(--pink-pale);
  padding: 3rem 2.8rem;
}
.eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: .4rem;
}
.story-text h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin-bottom: 1rem;
}
.story-text p + p { margin-top: .9rem; }
.story-side {
  background: #fff;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  text-align: center;
}
.duck-frame {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 8px 24px rgba(244, 88, 138, .25);
  background: var(--pink-pale);
}
.duck-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.caption {
  font-family: 'Caveat', cursive;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--brown-soft);
  line-height: 1.35;
}

/* ---------- what we make ---------- */
.make { text-align: center; }
.section-title {
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  margin-bottom: .4rem;
}
.section-sub {
  color: var(--brown-soft);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  text-align: left;
}
.make-card {
  background: #fff;
  border-radius: 1.6rem;
  padding: 1.8rem;
  box-shadow: 0 10px 28px rgba(74, 44, 23, .10);
  position: relative;
}
.make-card img {
  width: 100%;
  border-radius: 1.1rem;
  display: block;
  margin-bottom: 1.1rem;
}
.card-num {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-block;
  padding: .25rem .8rem;
  border-radius: 999px;
  margin-bottom: .9rem;
}
.num-pink { background: var(--pink-soft); color: var(--pink); }
.num-yellow { background: var(--yellow-soft); color: #B8860B; }
.make-card h3 { font-size: 1.45rem; margin-bottom: .5rem; }
.make-card p { color: var(--brown-soft); }

/* ---------- flock ---------- */
.flock {
  text-align: center;
  padding: 3rem 2.5rem;
}
.flock-title {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.fc-pink { color: var(--pink); }
.fc-teal { color: var(--teal); }
.fc-orange { color: var(--orange); }
.fc-purple { color: var(--purple); }
.flock-img {
  width: min(560px, 100%);
  border-radius: 1.5rem;
  display: block;
  margin: 0 auto 1.4rem;
  box-shadow: 0 10px 28px rgba(74, 44, 23, .18);
}
.flock-text {
  color: var(--brown-soft);
  font-size: 1.08rem;
  max-width: 52ch;
  margin: 0 auto 1rem;
  font-weight: 600;
}
.follow-label {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 1.2rem 0 .9rem;
}
.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 1.2rem;
}
.soc-jag {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--pink-soft);
  color: var(--brown);
  text-decoration: none;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.35rem;
  padding: .45rem 1.1rem;
  /* hand-cut / jagged rectangle */
  border-radius: 14px 22px 12px 20px / 20px 12px 22px 14px;
  transform: rotate(-1deg);
  box-shadow: 0 4px 12px rgba(244, 88, 138, .25);
  transition: transform .15s ease;
}
.soc-jag:nth-of-type(2) { transform: rotate(1.2deg); }
.soc-jag:hover { transform: rotate(0) scale(1.05); }
.soc-icon { width: 1.5rem; height: 1.5rem; flex: none; }
.heart { color: var(--pink); font-size: 1.2rem; }

/* ---------- footer ---------- */
.footer {
  text-align: center;
  padding: 1.5rem;
  color: var(--brown-soft);
  font-size: .95rem;
}

/* ---------- responsive ---------- */
@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; padding: 2.4rem 1.6rem; }
  .hero-img { order: -1; }
  .card-split { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .flock { padding: 2.2rem 1.4rem; }
  .social-row { gap: .55rem; }
}
