:root {
  --cream: #fff7ee;
  --peach: #ffd7b8;
  --butter: #ffe89a;
  --mint: #cfef9d;
  --sage: #b9d6a3;
  --moss: #5e7a45;
  --forest: #26361f;
  --coral: #ff8f6b;
  --tomato: #f56f46;
  --berry: #c95d8e;
  --cocoa: #765644;
  --white: #fffdfc;
  --line: rgba(38, 54, 31, 0.08);
  --shadow: 0 18px 40px rgba(38, 54, 31, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, var(--cream), #fffdf7);
  color: var(--forest);
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 247, 238, 0.84);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.app-store-badge {
  display: inline-block;
}

.app-store-badge img {
  height: 48px;
  width: auto;
}
.app-download-section {
  padding: 80px 24px;
  background: #f8f4ec;
  text-align: center;
}

.app-download-content {
  max-width: 720px;
  margin: 0 auto;
}

.app-download-content .eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6f8f5f;
  margin-bottom: 12px;
}

.app-download-content h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  margin-bottom: 20px;
  color: #263322;
}

.app-download-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4f5d49;
  margin-bottom: 32px;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: #263322;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.app-store-button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 6px;
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.logo-badge img {
  width: 44px;
  height: 44px;
  object-fit: cover;
}

.logo-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.logo-subtitle {
  display: block;
  font-size: 0.76rem;
  color: var(--cocoa);
  font-weight: 700;
}

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


.nav-links,
.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-pill,
.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  background: var(--white);
  color: var(--forest);
  border: 1px solid var(--line);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.nav-pill:hover,
.footer-pill:hover {
  transform: translateY(-1px);
  background: var(--forest);
  color: var(--white);
}


.nav a,
.footer-links a {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}

.hero {
  padding: 56px 0 28px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 16%, var(--butter), transparent 22%),
    radial-gradient(circle at 86% 12%, var(--peach), transparent 24%),
    radial-gradient(circle at 78% 72%, var(--mint), transparent 22%),
    linear-gradient(180deg, var(--cream), var(--white));
  z-index: -2;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  z-index: -1;
}

.hero::before {
  width: 180px; height: 180px;
  background: rgba(255, 143, 107, 0.3);
  left: -20px; top: 90px;
}

.hero::after {
  width: 220px; height: 220px;
  background: rgba(207, 239, 157, 0.36);
  right: -40px; top: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.dot {
  width: 10px; height: 10px; border-radius: 999px; background: var(--tomato);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 20px 0 0;
}

.hero p.lead {
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--cocoa);
  max-width: 680px;
  margin-top: 18px;
  font-weight: 600;
}

.button-row,
.pill-row,
.stats-row,
.card-grid,
.info-grid,
.legal-grid,
.contact-grid,
.mini-grid {
  display: grid;
  gap: 16px;
}

.button-row { grid-auto-flow: column; justify-content: start; margin-top: 28px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 22px;
  padding: 18px 24px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--tomato); color: white; }
.btn-secondary { background: var(--white); border-color: var(--line); }

.pill-row {
  grid-template-columns: repeat(3, max-content);
  margin-top: 22px;
}
.pill {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 800;
}

.stats-row {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  max-width: 540px;
}
.stat-card,
.note-card,
.small-card,
.contact-card,
.legal-card,
.mini-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-card {
  border-radius: 20px;
  padding: 14px;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--berry);
  text-transform: uppercase;
}

.stat-value {
  margin-top: 6px;
  font-size: 1.2rem;
  font-weight: 900;
}

.phone-wrap {
  position: relative;
  padding: 20px 10px 30px;
}

.sticker,
.recipe-note,
.fresh-badge {
  position: absolute;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.sticker,
.recipe-note { border-radius: 24px; padding: 14px 16px; }
.fresh-badge { border-radius: 999px; padding: 10px 16px; }
.sticker-left { left: -10px; top: 26px; background: var(--butter); transform: rotate(-8deg); }
.sticker-right { right: -8px; bottom: 70px; background: var(--mint); transform: rotate(8deg); }
.fresh-badge { right: 26px; top: -4px; background: var(--white); color: var(--tomato); transform: rotate(6deg); }
.recipe-note { left: 12px; bottom: -6px; background: var(--peach); transform: rotate(-6deg); }

.phone {
  width: min(320px, 100%);
  margin: 0 auto;
  background: linear-gradient(180deg, var(--forest), #1a2514);
  border-radius: 42px;
  padding: 12px;
  box-shadow: 0 28px 60px rgba(38, 54, 31, 0.24);
  transform: rotate(2deg);
}

.phone-screen {
  background: var(--white);
  border-radius: 34px;
  padding: 16px;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.kicker {
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--berry);
}

.phone-title {
  margin-top: 6px;
  font-size: 1.28rem;
  font-weight: 900;
}

.badge {
  background: var(--butter);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.76rem;
  font-weight: 900;
}

.item-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.item-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 14px;
}
.item-card h4 { margin: 0; font-size: 1rem; }
.item-card p { margin: 6px 0 0; color: var(--cocoa); font-size: 0.92rem; font-weight: 700; }
.item-chip {
  background: var(--white);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 900;
}
.item-row { display: flex; justify-content: space-between; gap: 10px; }

.dual-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.skew-card {
  border-radius: 24px;
  padding: 14px;
}
.skew-card strong { display: block; font-size: 0.74rem; }
.skew-card span { display: block; margin-top: 6px; font-size: 2rem; font-weight: 900; }

.section { padding: 18px 0; }

.card-grid { grid-template-columns: repeat(3, 1fr); }
.info-grid { grid-template-columns: 0.9fr 1.1fr; align-items: stretch; }
.legal-grid { grid-template-columns: 0.95fr 1.05fr; }
.contact-grid { grid-template-columns: 0.82fr 1.18fr; }
.mini-grid { grid-template-columns: repeat(3, 1fr); }

.big-card,
.dark-panel,
.legal-panel,
.contact-panel,
.form-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.big-card {
  border-radius: 34px;
  padding: 28px;
}
.big-card h3,
.dark-panel h2,
.legal-panel h1,
.contact-panel h1,
.form-panel h1 {
  margin: 0;
}
.big-card p,
.dark-panel p,
.legal-panel p,
.contact-panel p,
.form-panel p,
.note-card p,
.small-card p,
.mini-card p {
  color: var(--cocoa);
  line-height: 1.8;
  font-weight: 600;
}

.dark-panel {
  border-radius: 38px;
  padding: 30px;
  background: var(--forest);
  color: white;
}
.dark-panel p { color: rgba(255,255,255,0.85); }
.label-chip {
  display: inline-flex;
  background: var(--tomato);
  color: white;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.small-card {
  border-radius: 28px;
  padding: 22px;
}
.small-card h4,
.note-card h3,
.mini-card h4 {
  margin: 0;
  font-size: 1.2rem;
}

.note-card {
  border-radius: 32px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.mini-card {
  border-radius: 24px;
  padding: 20px;
}

.split-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.callout-coral {
  background: var(--coral);
  color: white;
}
.callout-coral p { color: rgba(255,255,255,0.92); }
.callout-white { background: var(--white); }

.footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: rgba(255, 247, 238, 0.9);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-panel,
.contact-panel,
.form-panel {
  border-radius: 34px;
  padding: 28px;
  background: var(--white);
}

.contact-panel {
  background: var(--forest);
  color: white;
}
.contact-panel p { color: rgba(255,255,255,0.85); }
.contact-mail {
  margin-top: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 18px;
}

label { display: block; font-weight: 800; margin-bottom: 8px; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 15px 16px;
  font: inherit;
  background: var(--white);
}
textarea { min-height: 180px; resize: vertical; }
.field { margin-bottom: 18px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.actions .btn { text-decoration: none; }

.legal-copy h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.legal-copy p,
.legal-copy li {
  color: var(--cocoa);
  line-height: 1.9;
  font-weight: 600;
}

@media (max-width: 960px) {
  .hero-grid,
  .card-grid,
  .info-grid,
  .legal-grid,
  .contact-grid,
  .mini-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .pill-row,
  .stats-row {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .button-row { grid-auto-flow: row; }


  .nav-links,
  .footer-pills {
    width: 100%;
  }


  .sticker-left,
  .sticker-right,
  .fresh-badge,
  .recipe-note {
    position: static;
    transform: none;
    margin: 0 0 12px;
  }

  .phone-wrap {
    display: flex;
    flex-direction: column;
  }
}
