@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  --ink: #1f1b16;
  --sand: #f4efe6;
  --spice: #d6723c;
  --clay: #8c5b3d;
  --leaf: #567a52;
  --sun: #f0c36b;
  --accent: #e58f3a;
  --white: #fffdf8;
  --shadow: rgba(31, 27, 22, 0.12);
}

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

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff8e8 0%, #f6eee2 38%, #efe1cf 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.hero {
  position: relative;
  padding: 40px 8vw 80px;
  background: linear-gradient(135deg, #fef3dd 0%, #f7e2cc 55%, #f0d7c3 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.35;
  filter: blur(0);
}

.hero::before {
  width: 280px;
  height: 280px;
  background: #f7c5a5;
  top: -80px;
  right: 8vw;
}

.hero::after {
  width: 220px;
  height: 220px;
  background: #e0d4b0;
  bottom: -120px;
  left: 4vw;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-weight: 600;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent);
}

.lead {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
}

.btn-primary,
.btn-ghost {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
}

.hero-stats {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.stat-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: #6b5a4a;
}

.hero-card {
  background: var(--white);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 20px 60px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photo-placeholder {
  background: linear-gradient(135deg, #f4cfa3, #e8a57d);
  color: #5c3b24;
  border-radius: 18px;
  height: 200px;
  display: grid;
  place-items: center;
  font-weight: 600;
  letter-spacing: 1px;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  height: auto;
  padding: 0;
  overflow: hidden;
  display: block;
}

.video-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.photo-placeholder.tall {
  height: 320px;
}

.card-info h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 6px;
}

.card-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.card-tags span {
  background: #f6eee2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid rgba(229, 143, 58, 0.35);
}

.section {
  padding: 70px 8vw;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 28px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.story-card {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 16px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.story-card h3 {
  margin-bottom: 0;
  font-family: "Playfair Display", serif;
}

.story-card p {
  line-height: 1.7;
}

.story-short {
  display: none;
  font-size: 0.98rem;
}

.story-card ul {
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.story-card li {
  margin-left: 4px;
}

.health {
  background: #fbf4ea;
}

.health-content {
  background: var(--white);
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 16px 40px var(--shadow);
  display: grid;
  gap: 16px;
  line-height: 1.7;
}

.health-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.health-block {
  display: grid;
  gap: 12px;
}

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

.health-card {
  background: #fff6ea;
  border: 1px solid rgba(229, 143, 58, 0.2);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(31, 27, 22, 0.08);
  display: grid;
  gap: 8px;
}

.health-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}

.health-card p {
  font-size: 0.95rem;
}

.nutrition-facts {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.nutrition-facts h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.nutrition-card {
  background: #fff3df;
  border: 2px solid rgba(229, 143, 58, 0.55);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 16px 36px rgba(31, 27, 22, 0.14);
  display: grid;
  gap: 6px;
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nutrition-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b5a4a;
}

.nutrition-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}

.nutrition-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(31, 27, 22, 0.2);
}

.wisdom {
  background: #f7efe2;
}

.wisdom-intro {
  max-width: 820px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.wisdom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.wisdom-card {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 16px 40px var(--shadow);
  display: grid;
  gap: 12px;
}

.wisdom-card h3 {
  font-family: "Playfair Display", serif;
}

.wisdom-card ul {
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.wisdom-card li {
  margin-left: 4px;
}

.wisdom-note {
  margin-top: 20px;
  background: #fff3df;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 14px;
  line-height: 1.7;
}

.game-link {
  background: #f3e9db;
}

.game-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.game-card h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.game-card p {
  max-width: 620px;
  line-height: 1.7;
}

.game-button {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--accent);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .game-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer {
  padding: 60px 8vw 40px;
  background: #1f1b16;
  color: #f8efe6;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 24px;
}

.footer h3,
.footer h4 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.footer-note {
  font-size: 0.85rem;
  color: #cfc2b1;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 32px 6vw 60px;
  }

  .section {
    padding: 56px 6vw;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .story-long {
    display: none;
  }

  .story-short {
    display: block;
  }
}

.hero,
.section,
.footer {
  animation: fadeUp 0.8s ease both;
}

.story-card,
.health-content,
.wisdom-card {
  animation: fadeUp 0.9s ease both;
}

.story-card:nth-child(2),
.wisdom-card:nth-child(2) {
  animation-delay: 0.1s;
}

.story-card:nth-child(3),
.wisdom-card:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
