:root {
  --primary: #c56b4a;
  --primary-dark: #b35c3d;
  --primary-soft: #f6e2d7;
  --amber: #e6a44e;
  --amber-soft: #f6e7cf;
  --sage: #8ca05a;
  --sage-soft: #e7ebd8;
  --plum: #7a3b52;
  --ink: #241f1c;
  --ink-soft: #574e48;
  --muted: #8f867f;
  --cream: #fbf3ea;
  --cream-deep: #f6ead9;
  --line: #ece0d4;
  --white: #ffffff;
  --radius: 22px;
  --radius-lg: 30px;
  --shadow-sm: 0 6px 18px rgba(36, 31, 28, 0.07);
  --shadow-md: 0 20px 46px rgba(36, 31, 28, 0.12);
  --shadow-phone: 0 34px 74px rgba(36, 31, 28, 0.24);
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --script: "Caveat", "Segoe Script", cursive;
  --maxw: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 0.4em;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); }

/* Serif + script display mixing */
.display .script,
.script {
  font-family: var(--script);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0;
  line-height: 0.8;
  font-size: 1.28em;
  padding: 0 0.04em;
}
.display span { }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.eyebrow-invert { color: #fff; }
.star { font-size: 0.9em; color: var(--amber); animation: spin 9s linear infinite; display: inline-block; }
.eyebrow-invert .star { color: #fff; }

@keyframes spin { to { transform: rotate(360deg); } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(197, 107, 74, 0.32); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 0.92rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 243, 234, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 74px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--ink);
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--primary);
  color: #fff;
  transform: rotate(-6deg);
}
.nav { display: flex; gap: 28px; margin-left: 22px; }
.nav a { font-weight: 500; color: var(--ink-soft); font-size: 0.98rem; transition: color 0.2s ease; }
.nav a:hover { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.lang-toggle { display: inline-flex; background: var(--primary-soft); border-radius: 999px; padding: 3px; }
.lang-btn {
  border: 0; background: transparent; font-family: var(--sans); font-weight: 600;
  font-size: 0.82rem; color: var(--ink-soft); padding: 6px 12px; border-radius: 999px;
  cursor: pointer; transition: background 0.2s ease, color 0.2s ease;
}
.lang-btn.is-active { background: #fff; color: var(--primary); box-shadow: var(--shadow-sm); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.hamburger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(900px 460px at 88% -8%, #fbe3d3 0%, rgba(251, 227, 211, 0) 62%),
    radial-gradient(680px 420px at 6% 108%, #f1ead2 0%, rgba(241, 234, 210, 0) 60%),
    var(--cream);
  padding: 70px 0 96px;
  overflow: hidden;
}
.hero-doodles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-doodles .food { position: absolute; opacity: 0.9; filter: drop-shadow(0 8px 18px rgba(36,31,28,.06)); }
.food-egg { width: 92px; left: 4%; bottom: 6%; transform: rotate(-8deg); animation: bob 7s ease-in-out infinite; }
.food-chili { width: 62px; left: 15%; top: 20%; transform: rotate(12deg); animation: bob 8s ease-in-out infinite 0.6s; }
.food-leaf { width: 108px; right: 8%; bottom: 10%; transform: rotate(6deg); animation: bob 9s ease-in-out infinite 0.3s; }
.food-citrus { width: 84px; right: 3%; top: 16%; transform: rotate(-6deg); animation: bob 7.5s ease-in-out infinite 1s; }
.food-tomato { width: 76px; left: 2%; top: 24%; transform: rotate(8deg); animation: bob 8.5s ease-in-out infinite 0.9s; }
.scribble-1 { position: absolute; width: 150px; left: 34%; bottom: 4%; opacity: 0.7; }

@keyframes bob { 0%,100% { transform: translateY(0) rotate(var(--r, 0deg)); } 50% { transform: translateY(-14px) rotate(var(--r, 0deg)); } }
.food-egg { --r: -8deg; } .food-chili { --r: 12deg; } .food-leaf { --r: 6deg; }
.food-citrus { --r: -6deg; } .food-tomato { --r: 8deg; }

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-copy .lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 36ch; margin: 8px 0 28px; }
.display { position: relative; }
h1.display { margin-bottom: 0.25em; }
h1.display .script { display: inline-block; transform: rotate(-3deg); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.hero-cta-center { justify-content: center; }
.hero-note { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; color: var(--muted); margin: 0; }

.store-badge {
  display: inline-flex; align-items: center; gap: 10px; background: var(--ink); color: #fff;
  padding: 11px 18px; border-radius: 14px; transition: transform 0.15s ease, opacity 0.2s ease;
}
.store-badge:hover { transform: translateY(-2px); opacity: 0.92; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-badge small { font-size: 0.68rem; opacity: 0.85; }
.store-badge strong { font-size: 1.02rem; }
.store-badge-invert { background: #fff; color: var(--ink); }
.store-badge-sm { padding: 9px 14px; }
.store-badge-sm strong { font-size: 0.92rem; }

/* Hero media / phone + blobs */
.hero-media { position: relative; display: flex; justify-content: center; }
.blob {
  position: absolute; z-index: 0; width: 118%; height: 108%; top: -4%; left: -9%;
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
}
.blob-hero { background: radial-gradient(closest-side, var(--amber) 0%, #e79c47 55%, rgba(231,156,71,0) 72%); opacity: 0.9; animation: morph 12s ease-in-out infinite; }
.blob-a { background: var(--sage); opacity: 0.9; }
.blob-b { background: var(--amber); opacity: 0.92; }
.blob-c { background: var(--primary); opacity: 0.9; }
.blob-d { background: var(--plum); opacity: 0.88; }

@keyframes morph {
  0%,100% { border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; }
  50% { border-radius: 58% 42% 44% 56% / 46% 58% 42% 54%; }
}

.scribble-2 { position: absolute; z-index: 2; width: 96px; top: -6%; right: 2%; opacity: 0.9; }

.phone-shot {
  position: relative; z-index: 1; width: min(288px, 72vw); aspect-ratio: 471 / 1024;
  border-radius: 36px; overflow: hidden; box-shadow: var(--shadow-phone);
  border: 5px solid #fff; background: #fff;
}
.phone-shot img {
  width: 100%; height: 100%; display: block; object-fit: contain; object-position: center;
}
.phone-tilt { transform: rotate(-2.5deg); }

.float-chip {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border-radius: 999px; padding: 10px 16px; font-weight: 700; font-size: 0.9rem;
  box-shadow: var(--shadow-md); animation: float 4.5s ease-in-out infinite;
}
.float-chip .chip-ico { font-size: 1rem; }
.chip-swipe { top: 12%; left: -6%; color: var(--primary); }
.chip-heart { bottom: 14%; right: -4%; color: var(--primary); animation-delay: 1.2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Trust band */
.trust-band {
  background: linear-gradient(135deg, var(--amber) 0%, #d98f3c 100%);
  color: #4a3212; padding: 34px 0; position: relative;
}
.trust-label { text-align: center; font-weight: 700; letter-spacing: 0.02em; margin: 0 0 18px; color: #573b16; }
.trust-stats { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 26px; }
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--serif); font-size: 2.1rem; line-height: 1; color: #3d2a10; }
.stat span { color: #5c421d; font-size: 0.92rem; }
.stat-divider { width: 1px; height: 40px; background: rgba(61,42,16,.25); }

/* Sections */
.section { padding: 92px 0; }
.section-cream { background: var(--cream-deep); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 60px; }
.section-head h2 { margin-bottom: 0; }
.section-head-invert h2 { color: #fff; }

/* Feature rows */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 96px; }
.feature:last-child { margin-bottom: 0; }
.feature-rev .feature-copy { order: 2; }
.feature-rev .feature-media { order: 1; }

.pill {
  display: inline-block; background: var(--primary-soft); color: var(--primary-dark);
  font-weight: 700; font-size: 0.82rem; padding: 6px 15px; border-radius: 999px; margin-bottom: 16px;
}
.feature-copy p { color: var(--ink-soft); font-size: 1.08rem; max-width: 46ch; margin: 0 0 22px; }
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 34px; color: var(--ink); font-weight: 500; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b35c3d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.feature-media { position: relative; display: flex; justify-content: center; }
.feature-media .phone-shot { width: min(280px, 68vw); }
.feature-media .blob { width: 96%; height: 96%; top: 2%; left: 2%; }

/* Recipe scatter band */
.recipe-band {
  position: relative; overflow: hidden; padding: 92px 0 100px;
  background: linear-gradient(150deg, var(--primary) 0%, #a9502f 100%);
  color: #fff;
}
.band-scribble { position: absolute; opacity: 0.55; z-index: 0; }
.bs-1 { width: 220px; top: 10%; left: 4%; }
.bs-2 { width: 130px; bottom: 8%; right: 6%; }
.recipe-band .section-head { margin-bottom: 48px; }

.recipe-cards {
  position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px; padding-top: 12px;
}
.recipe-card {
  background: #fff; color: var(--ink); border-radius: var(--radius); padding: 18px;
  box-shadow: var(--shadow-md); transition: transform 0.25s ease;
}
.rc-1 { transform: rotate(-3deg); }
.rc-2 { transform: rotate(2deg) translateY(14px); }
.rc-3 { transform: rotate(-2deg) translateY(6px); }
.rc-4 { transform: rotate(3deg); }
.recipe-card:hover { transform: rotate(0deg) translateY(-6px); }
.rc-thumb {
  height: 108px; border-radius: 14px; display: grid; place-items: center; font-size: 3rem; margin-bottom: 14px;
}
.recipe-card h3 { font-size: 1.16rem; margin: 0 0 6px; }
.rc-meta { color: var(--muted); font-size: 0.86rem; margin: 0 0 14px; }
.rc-meta .clock { margin-right: 2px; }
.rc-actions { display: flex; gap: 8px; border-top: 1px solid var(--line); padding-top: 12px; }
.rc-act {
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%;
  background: var(--cream-deep); color: var(--primary); font-size: 0.95rem;
}

/* Testimonials */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin: 0; box-shadow: var(--shadow-sm); }
.quote:nth-child(2) { transform: translateY(-14px); }
.stars { color: #e0a24d; letter-spacing: 2px; margin-bottom: 14px; }
.quote blockquote { margin: 0 0 20px; font-size: 1.06rem; color: var(--ink); font-family: var(--serif); line-height: 1.5; }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-soft); color: var(--primary-dark); display: grid; place-items: center; font-weight: 700; font-family: var(--serif); }
.who { display: flex; flex-direction: column; }
.who strong { color: var(--ink); }
.who span { color: var(--muted); font-size: 0.9rem; }

/* FAQ */
.section .faq-wrap { max-width: 780px; }
.faq { display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 4px 22px; box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; font-weight: 600; font-size: 1.08rem; padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--serif);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; color: var(--primary); font-weight: 400; transition: transform 0.25s ease; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 0 18px; }
.faq-body p { margin: 0; color: var(--ink-soft); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--plum) 0%, #5e2c40 100%); color: #fff; padding: 84px 0; }
.cta-scribble { position: absolute; width: 260px; top: 14%; left: 50%; transform: translateX(-50%); opacity: 0.6; }
.cta-inner { text-align: center; max-width: 660px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner h2 { color: #fff; }
.cta-inner .script { color: var(--amber); }
.cta-inner p { color: rgba(255, 255, 255, 0.88); font-size: 1.12rem; margin: 0 0 28px; }

/* Footer */
.site-footer { background: var(--ink); color: #cbc2ba; padding: 64px 0 28px; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; }
.brand-light { color: #fff; }
.footer-brand p { max-width: 30ch; margin: 14px 0 18px; color: #9a918a; }
.footer-col h4 { font-family: var(--sans); color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer-col a { display: block; color: #b3aaa3; padding: 5px 0; font-size: 0.95rem; transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }
.footer-badges { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-badges .store-badge { background: #322b26; }
.socials { display: flex; gap: 12px; }
.socials a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: #fff; padding: 0; transition: background 0.2s ease, transform 0.2s ease; }
.socials a:hover { background: var(--primary); transform: translateY(-2px); }

/* Giant footer wordmark */
.footer-wordmark {
  display: flex; align-items: center; justify-content: center; gap: 0.12em;
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(4rem, 22vw, 17rem); line-height: 0.82;
  color: #322b26; letter-spacing: -0.03em;
  margin: 42px 0 -0.14em; user-select: none;
}
.footer-wordmark .fw-mark { color: var(--primary); display: inline-flex; transform: rotate(-8deg); font-size: 0.62em; margin-right: 0.06em; }

.footer-bottom { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.88rem; color: #8a817b; }
.footer-bottom p { margin: 0; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 980px) {
  .recipe-cards { grid-template-columns: repeat(2, 1fr); gap: 20px 24px; }
  .rc-2, .rc-3 { transform: rotate(0); translate: 0; }
  .rc-1 { transform: rotate(-2deg); } .rc-4 { transform: rotate(2deg); }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-copy .lead { max-width: none; margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-note { justify-content: center; }
  .hero-note { display: flex; }
  .feature { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .feature-rev .feature-copy { order: 2; }
  .feature-rev .feature-media { order: 1; }
  .feature-copy p { max-width: none; margin-left: auto; margin-right: auto; }
  .ticks { display: inline-grid; text-align: left; }
  .cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .quote:nth-child(2) { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .food-chili, .food-tomato { display: none; }
}
@media (max-width: 760px) {
  .nav {
    position: fixed; top: 74px; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 8px 24px 18px; margin-left: 0; box-shadow: var(--shadow-md);
    transform: translateY(-150%); transition: transform 0.28s ease;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .hamburger { display: inline-flex; }
  .header-actions .btn { display: none; }
  .section { padding: 64px 0; }
  .recipe-band { padding: 66px 0 74px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-stats { gap: 18px; }
  .stat strong { font-size: 1.7rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .recipe-cards { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .rc-1, .rc-2, .rc-3, .rc-4 { transform: rotate(0); }
  .hero-cta { flex-direction: column; }
  .store-badge { justify-content: center; }
  .food-leaf, .food-citrus { width: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .float-chip, .food-egg, .food-chili, .food-leaf, .food-citrus, .food-tomato, .blob-hero, .star { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
