:root {
  --pink: #ff8fab;
  --peach: #ffd6a5;
  --cream: #fff7f0;
  --ink: #3d2b2b;
  --soft: #7a6a6a;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(255, 143, 171, 0.18);
}

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

html { scroll-behavior: smooth; }

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

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, #ffe5ec 0%, #fff0d9 100%);
  padding-bottom: 3.5rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

.brand { font-weight: 800; font-size: 1.25rem; }

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  margin-left: 1.25rem;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink); }

.hero-inner {
  max-width: 760px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.subtitle { font-size: 1.2rem; color: var(--soft); margin-bottom: 1.5rem; }

.critter-row { font-size: 2.5rem; margin: 1.5rem 0; }
.critter {
  display: inline-block;
  margin: 0 0.3rem;
  animation: bounce 2s ease-in-out infinite;
}
.critter:nth-child(2) { animation-delay: 0.2s; }
.critter:nth-child(3) { animation-delay: 0.4s; }
.critter:nth-child(4) { animation-delay: 0.6s; }
.critter:nth-child(5) { animation-delay: 0.8s; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Buttons ---------- */
.btn {
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.15s, background 0.2s;
}
.btn:hover { transform: translateY(-2px) scale(1.03); background: #ff759a; }
.btn:active { transform: scale(0.97); }

.cuddle-count { margin-top: 0.9rem; color: var(--soft); font-weight: 600; }

/* ---------- Sections ---------- */
.section { max-width: 1000px; margin: 0 auto; padding: 4rem 1.5rem; }
.section-alt { background: #fff0f3; max-width: none; }
.section-alt > * { max-width: 1000px; margin-left: auto; margin-right: auto; }

.section h2 { font-size: 2rem; text-align: center; margin-bottom: 0.5rem; }
.lead { text-align: center; color: var(--soft); margin-bottom: 2.5rem; }

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

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.card:hover { transform: translateY(-6px); }
.card .emoji { font-size: 2.8rem; margin-bottom: 0.75rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--soft); }

/* ---------- Fact section ---------- */
.fact-section { text-align: center; }
.fact-box {
  background: #fff;
  border-left: 6px solid var(--peach);
  border-radius: 14px;
  padding: 1.5rem;
  max-width: 600px;
  margin: 0 auto 1.75rem;
  font-size: 1.2rem;
  font-style: italic;
  box-shadow: var(--shadow);
  min-height: 3.5rem;
}

/* ---------- Footer ---------- */
.footer {
  background: #3d2b2b;
  color: #ffe5ec;
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.footer .muted { color: #c9a9a9; font-size: 0.9rem; margin-top: 0.4rem; }

@media (max-width: 480px) {
  .nav-links a { margin-left: 0.8rem; font-size: 0.9rem; }
}
