:root {
  --cream: #FFF7E8;
  --cream-dark: #F6E8CC;
  --barn-red: #E8503A;
  --barn-red-dark: #C23A28;
  --sunflower: #FFC93C;
  --sunflower-dark: #E0A81E;
  --leaf: #6FBF4E;
  --sky: #8ED3F0;
  --ink: #3A2C23;
  --ink-soft: #6E5A4C;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Baloo 2', 'Trebuchet MS', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

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

/* Site nav — solid, readable, on-brand */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 2px solid var(--cream-dark);
}
.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.nav-brand img { width: 40px; height: 40px; border-radius: 10px; }
.nav-brand span { font-weight: 800; font-size: 1.2rem; }
.nav-links { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  padding: 8px 14px;
  border-radius: 10px;
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover {
  color: var(--barn-red);
  background: var(--cream-dark);
}

@media (max-width: 640px) {
  .site-header .nav { padding: 10px 0; gap: 8px; }
  .nav-brand span { font-size: 1.05rem; }
  .nav-links { gap: 0; }
  .nav-links a { padding: 6px 8px; font-size: .82rem; }
}

/* Buttons */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 18px;
  font-weight: 800; font-size: 1.05rem; text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn-primary {
  background: var(--leaf); color: #fff;
  box-shadow: 0 5px 0 #4d8a33;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 7px 0 #4d8a33; }
.btn-secondary {
  background: var(--sunflower); color: var(--ink);
  box-shadow: 0 5px 0 var(--sunflower-dark);
}
.btn-secondary:hover { transform: translateY(-2px); }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--sky) 0%, #CDEBF7 45%, var(--cream) 100%);
  padding: 56px 0 40px; text-align: center; overflow: hidden;
}
.hero img.logo { width: min(420px, 82vw); height: auto; }
.hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 18px 0 10px; }
.hero p.tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: var(--ink-soft);
  max-width: 640px; margin: 0 auto 28px;
}
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.hero .store-note { font-size: .9rem; color: var(--ink-soft); }
.hero .hens { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.hero .hens img { width: clamp(64px, 10vw, 110px); height: auto; animation: bob 2.6s ease-in-out infinite; }
.hero .hens img:nth-child(2) { animation-delay: .3s; }
.hero .hens img:nth-child(3) { animation-delay: .6s; }
.hero .hens img:nth-child(4) { animation-delay: .9s; }
.hero .hens img:nth-child(5) { animation-delay: 1.2s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Sections */
section { padding: 72px 0; }
.section-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.35rem); margin-bottom: 10px; line-height: 1.15; }
.section-head .lead,
p.lead { color: var(--ink-soft); font-size: 1.05rem; }

/* Love / features — full-bleed spotlights, no emoji cards */
.love { background: var(--cream); }
.spotlight {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 56px;
}
.spotlight-flip { direction: rtl; }
.spotlight-flip > * { direction: ltr; }
.spotlight img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(58, 44, 35, 0.18);
}
.spotlight-copy h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.2;
  margin-bottom: 12px;
}
.spotlight-copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 36ch;
}

.flock-strip {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.flock-strip figure {
  flex: 0 0 auto;
  width: clamp(72px, 11vw, 108px);
  text-align: center;
}
.flock-strip img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(58, 44, 35, 0.18));
  transition: transform .2s ease;
}
.flock-strip figure:hover img { transform: translateY(-6px) scale(1.04); }
.flock-strip figcaption {
  margin-top: 6px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.2;
}
.flock-note {
  text-align: center;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 22px auto 0;
  font-size: .98rem;
}

@media (max-width: 800px) {
  .spotlight,
  .spotlight-flip {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 18px;
    margin-bottom: 40px;
  }
  .spotlight-copy p { max-width: none; }
}

/* How to play — visual flow, not numbered white cards */
.howto {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(142, 211, 240, 0.45), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(255, 201, 60, 0.28), transparent 50%),
    #fff;
}
.howto-flow {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: beat;
}
.howto-flow li {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.howto-flow img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #cdebf7 0%, #fff7e8 100%);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(58, 44, 35, 0.14);
  display: block;
}
.howto-flow h3 {
  font-size: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.howto-flow h3::before {
  counter-increment: beat;
  content: counter(beat);
  font-size: .85rem;
  font-weight: 800;
  color: var(--barn-red);
  letter-spacing: 0.04em;
}
.howto-flow p { color: var(--ink-soft); font-size: .98rem; }

@media (max-width: 800px) {
  .howto-flow { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* FAQ — split layout, hairline rows */
.faq { background: var(--cream-dark); }
.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.faq-intro { position: sticky; top: 100px; }
.faq-intro img {
  width: 120px;
  height: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 10px 18px rgba(58, 44, 35, 0.2));
  animation: bob 3s ease-in-out infinite;
}
.faq-intro h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  text-align: left;
  margin-bottom: 8px;
}
.faq-intro .lead { text-align: left; margin: 0; max-width: 28ch; }

.faq-list { max-width: none; margin: 0; }
.faq-list details {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(58, 44, 35, 0.18);
  border-radius: 0;
  padding: 18px 0;
  margin: 0;
}
.faq-list summary {
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.05rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-weight: 800;
  color: var(--barn-red);
  font-size: 1.3rem;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { margin-top: 10px; color: var(--ink-soft); max-width: 54ch; }

@media (max-width: 800px) {
  .faq-layout { grid-template-columns: 1fr; gap: 20px; }
  .faq-intro { position: static; text-align: center; }
  .faq-intro img { margin-left: auto; margin-right: auto; }
  .faq-intro h2,
  .faq-intro .lead { text-align: center; max-width: none; }
}

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 48px 24px; }
.legal h1 { margin-bottom: 6px; }
.legal .updated { color: var(--ink-soft); margin-bottom: 28px; font-size: .95rem; }
.legal h2 { font-size: 1.25rem; margin: 28px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { padding-left: 22px; margin: 8px 0; }
.legal a { color: var(--barn-red); }

/* Footer */
footer {
  background: var(--ink); color: #EFE6DA; padding: 36px 0; margin-top: 40px;
}
.footer-grid { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: center; }
.footer-grid .brand { display: flex; gap: 10px; align-items: center; font-weight: 800; }
.footer-grid .brand img { width: 38px; border-radius: 10px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: #EFE6DA; text-decoration: none; font-size: .92rem; }
.footer-links a:hover { color: var(--sunflower); }
.copyright { margin-top: 18px; font-size: .85rem; color: #B9AC9E; text-align: center; }
