:root {
  --background: #FAF7F0;
  --surface: #FFFFFF;
  --surface-muted: #F1ECE1;
  --border: #E7E0D2;

  --green: #1C3829;
  --green-dark: #122A1D;
  --green-muted: #4B6355;
  --green-tint: #E7EEE7;

  --ink: #0E1411;
  --ink-soft: #161E19;
  --on-ink: #F3EFE6;
  --on-ink-muted: rgba(243, 239, 230, 0.66);
  --ink-line: rgba(243, 239, 230, 0.14);

  --gold: #C69433;
  --gold-soft: #D9B36A;
  --gold-tint: #F6ECD6;

  --text: #221F1A;
  --text-muted: #6B6459;
  --text-on-green: #FDFBF6;

  --serif: Georgia, 'Times New Roman', serif;
  --sans: system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --page: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--green);
  line-height: 1.12;
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}

p { margin: 0; }

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.micro {
  font-size: 14px;
  color: var(--text-muted);
}

.eyebrow {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Buttons */

.btn {
  display: inline-block;
  background: var(--green);
  color: var(--text-on-green);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 28px;
  border: 1px solid var(--green);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}
.btn:hover {
  background: var(--green-dark);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--green-tint);
  color: var(--green-dark);
}
.btn-small {
  padding: 10px 20px;
  font-size: 15px;
}

/* Buttons on dark bands */

.on-ink .btn {
  background: var(--on-ink);
  color: var(--ink);
  border-color: var(--on-ink);
}
.on-ink .btn:hover { background: #FFFFFF; }
.on-ink .btn-ghost {
  background: transparent;
  color: var(--on-ink);
  border-color: var(--ink-line);
}
.on-ink .btn-ghost:hover {
  background: rgba(243, 239, 230, 0.08);
  color: var(--on-ink);
  border-color: rgba(243, 239, 230, 0.35);
}

/* Top: nav + hero share the dark ground */

.top {
  background: var(--ink);
  color: var(--on-ink);
}

.nav {
  max-width: var(--page);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--on-ink);
}
.brand:hover { text-decoration: none; }
.nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  flex-wrap: wrap;
}
.nav nav a:not(.btn):not(.lang) { color: var(--on-ink-muted); }
.nav nav a:not(.btn):not(.lang):hover { color: var(--on-ink); text-decoration: none; }

/* Desktop: brand | links + CTA | language pill + (hidden) hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 3;
}
.site-nav { order: 2; margin-left: auto; margin-right: 20px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--on-ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
.lang {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--on-ink) !important;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  padding: 6px 12px;
}
.lang:hover {
  border-color: rgba(243, 239, 230, 0.4);
  text-decoration: none;
}

/* Light nav on legal pages */

.nav-light { background: var(--background); }
.nav-light .brand { color: var(--green); }
.nav-light nav a:not(.btn):not(.lang) { color: var(--green-muted); }
.nav-light nav a:not(.btn):not(.lang):hover { color: var(--green); }
.nav-light .lang {
  color: var(--green) !important;
  border-color: var(--border);
}
.nav-light .lang:hover { background: var(--green-tint); }

/* Hero */

.hero {
  max-width: var(--page);
  margin: 0 auto;
  padding: 64px 24px 96px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  color: var(--on-ink);
  font-size: clamp(44px, 6.4vw, 74px);
  letter-spacing: -0.02em;
}
.lead {
  font-size: 20px;
  color: var(--on-ink-muted);
  margin-top: 24px;
  max-width: 44ch;
}
.lead strong {
  color: var(--on-ink);
  font-weight: 600;
}
.cta-row {
  display: flex;
  gap: 12px;
  margin: 36px 0 16px;
  flex-wrap: wrap;
}
.hero .micro { color: var(--on-ink-muted); }

.hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.hero-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 20, 17, 0.82);
  backdrop-filter: blur(6px);
  color: var(--on-ink);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--ink-line);
}
.hero-chip em {
  font-style: normal;
  color: var(--on-ink-muted);
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* Shared section header */

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head h2 { font-size: clamp(30px, 4.2vw, 44px); }
.section-head p {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 18px;
}
.on-ink .section-head h2 { color: var(--on-ink); }
.on-ink .section-head p { color: var(--on-ink-muted); }
.section-foot { text-align: center; margin-top: 32px; }

/* Problem quotes */

.problem {
  padding: 88px 24px;
}
.problem-inner { max-width: var(--page); margin: 0 auto; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.problem blockquote {
  margin: 0;
  padding: 4px 0 0 22px;
  border-left: 2px solid var(--gold);
}
.problem blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  color: var(--green);
}

/* Menu */

.recipes {
  background: var(--surface-muted);
  padding: 96px 24px;
}
.recipes-inner { max-width: var(--page); margin: 0 auto; }
.recipe-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}
.recipe a {
  display: block;
  color: inherit;
}
.recipe a:hover { text-decoration: none; }
.recipe-photo-wrap {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--border);
}
.recipe-photo {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.recipe a:hover .recipe-photo { transform: scale(1.035); }
.recipe-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.recipe h3 {
  font-size: 22px;
}
.recipe a:hover h3 { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.time {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}
.recipe-meta {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 4px;
}
.recipe-price {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
}
.recipe-price span {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 6px;
}
.recipe-cta {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.recipe-own {
  border: 1px dashed var(--green-muted);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 230px;
}
.recipe-own h3 { font-size: 22px; margin-bottom: 8px; }
.recipe-own p { color: var(--text-muted); font-size: 15px; }

/* Instagram demo */

.insta {
  max-width: var(--page);
  margin: 0 auto;
  padding: 96px 24px;
}
.insta-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.insta-video {
  display: flex;
  justify-content: center;
}
.insta-video video {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  /* matches the phone's own corner radius so the black corners in the clip disappear */
  border-radius: 30px;
  background: var(--ink);
  box-shadow: 0 30px 60px rgba(14, 20, 17, 0.3);
}
.insta-copy h2 { font-size: clamp(30px, 4.2vw, 44px); }
.insta-lead {
  color: var(--text-muted);
  font-size: 18px;
  margin: 18px 0 26px;
  max-width: 46ch;
}
.insta-steps {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.insta-steps li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 16px;
}
.insta-steps span {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 20px;
  min-width: 18px;
}

/* Steps */

.steps {
  background: var(--ink);
  color: var(--on-ink);
  padding: 96px 24px;
}
.steps h2 {
  color: var(--on-ink);
  font-size: clamp(30px, 4.2vw, 44px);
  text-align: center;
  max-width: var(--page);
  margin: 0 auto 56px;
}
.step-grid {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-grid li {
  border-top: 1px solid var(--ink-line);
  padding-top: 24px;
}
.step-num {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  color: var(--gold-soft);
  margin-bottom: 14px;
  line-height: 1;
}
.step-grid h3 {
  color: var(--on-ink);
  font-size: 23px;
  margin-bottom: 10px;
}
.step-grid p { color: var(--on-ink-muted); font-size: 16px; }

/* Pricing */

.pricing {
  max-width: var(--page);
  margin: 0 auto;
  padding: 96px 24px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.weighed { margin: 0; }
.weighed img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
}
.weighed figcaption {
  margin-top: 12px;
  text-align: center;
}
.stat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.stat-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.stat-list li:last-child { border-bottom: 1px solid var(--border); }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 46px);
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 15px;
  color: var(--text-muted);
  text-align: right;
}

/* Partner + fresh produce (one section) */

.partner {
  background: var(--ink);
  color: var(--on-ink);
  padding: 96px 24px;
}
.partner-grid {
  max-width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.partner h2 {
  color: var(--on-ink);
  font-size: clamp(30px, 4.2vw, 44px);
}
.partner-lead {
  color: var(--on-ink-muted);
  font-size: 18px;
  margin: 18px 0 28px;
  max-width: 48ch;
}
.partner-photo img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.tick-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 480px;
}
.tick-list li {
  position: relative;
  padding-left: 30px;
  color: var(--on-ink);
  font-size: 16px;
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 6px;
  width: 7px; height: 13px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}
.fresh {
  max-width: var(--page);
  margin: 72px auto 0;
  padding-top: 56px;
  border-top: 1px solid var(--ink-line);
}
.fresh h3 {
  color: var(--on-ink);
  font-size: 26px;
  text-align: center;
  margin-bottom: 8px;
}
.fresh > p {
  color: var(--on-ink-muted);
  text-align: center;
  margin-bottom: 40px;
}
.fresh-grid {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fresh-item { text-align: center; }
.fresh-item img {
  width: 148px;
  height: 148px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}
.fresh-item h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--on-ink);
  margin: 0 0 4px;
}
.fresh-item p { color: var(--on-ink-muted); font-size: 15px; }

/* Why */

.why {
  max-width: var(--page);
  margin: 0 auto;
  padding: 96px 24px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.why-grid article {
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.why-grid h3 { font-size: 22px; margin-bottom: 8px; }
.why-grid p { color: var(--text-muted); font-size: 16px; }

/* Waitlist */

.waitlist-wrap {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 24px 96px;
}
.waitlist {
  background: var(--ink);
  color: var(--on-ink);
  border-radius: var(--radius);
  padding: 64px 32px;
  text-align: center;
}
.waitlist h2 {
  color: var(--on-ink);
  font-size: clamp(30px, 4.2vw, 44px);
}
.waitlist > p:first-of-type {
  color: var(--on-ink-muted);
  margin: 16px auto 30px;
  max-width: 46ch;
  font-size: 18px;
}
.waitlist .micro { color: var(--on-ink-muted); }
.signup {
  position: relative;
  margin-bottom: 14px;
}
.signup input {
  flex: 1 1 260px;
  max-width: 340px;
  min-width: 0;
  padding: 15px 20px;
  font-size: 16px;
  font-family: inherit;
  color: var(--on-ink);
  background: rgba(243, 239, 230, 0.06);
  border: 1px solid rgba(243, 239, 230, 0.25);
  border-radius: 999px;
}
.signup input::placeholder { color: var(--on-ink-muted); }
.signup input:focus { border-color: var(--gold); }
.signup-fields {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.signup .btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}
/* Honeypot: off-screen for people, a plain text field for bots. */
.hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.signup-status {
  margin-top: 6px;
  font-size: 18px;
  color: var(--on-ink);
}
.signup-status.is-error { color: #E9A89A; }

/* Legal pages */

.legal {
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 24px 88px;
}
.legal h1 {
  font-size: clamp(32px, 5vw, 46px);
  margin-bottom: 10px;
}
.legal .updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 23px;
  margin: 36px 0 10px;
}
.legal p, .legal li {
  color: var(--text);
  font-size: 16px;
}
.legal ul {
  margin: 10px 0 0;
  padding-left: 22px;
}
.legal a { text-decoration: underline; }

/* 404 */

.notfound {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  text-align: center;
}
.notfound h1 { font-size: clamp(34px, 5vw, 50px); margin-bottom: 16px; }
.notfound p { color: var(--text-muted); font-size: 18px; margin-bottom: 28px; }

/* Footer */

.footer {
  background: var(--ink);
  color: var(--on-ink);
  padding: 48px 24px;
  text-align: center;
  border-top: 1px solid var(--ink-line);
}
.footer p:first-child {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 4px;
}
.footer .tagline {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer .micro { color: var(--on-ink-muted); }
.footer a {
  color: var(--on-ink-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer a:hover { color: var(--on-ink); }

/* Responsive */

@media (max-width: 1000px) and (min-width: 861px) {
  .recipe-grid,
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  /* Hamburger: the page links drop into a panel, the language pill stays in the bar. */
  .nav {
    position: relative;
    flex-wrap: nowrap;
    padding: 16px 20px;
  }
  .nav-toggle { display: block; }
  .nav .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 30;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px 20px 22px;
    background: var(--ink);
    border-top: 1px solid var(--ink-line);
    border-bottom: 1px solid var(--ink-line);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
  }
  .nav .site-nav.is-open { display: flex; }
  .nav .site-nav a:not(.btn) {
    font-size: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--ink-line);
    color: var(--on-ink) !important;
  }
  .nav .site-nav .btn {
    margin-top: 18px;
    text-align: center;
    padding: 14px 24px;
    font-size: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 36px 24px 72px;
    gap: 40px;
  }
  .step-grid,
  .why-grid,
  .problem-grid,
  .recipe-grid,
  .pricing-grid,
  .partner-grid,
  .insta-grid,
  .fresh-grid { grid-template-columns: 1fr; }
  .partner-grid, .pricing-grid, .insta-grid { gap: 36px; }
  .insta-video { order: 2; }
  .problem, .recipes, .steps, .pricing, .partner, .why, .insta { padding: 64px 24px; }
  .fresh { margin-top: 56px; padding-top: 44px; }
  .waitlist { padding: 48px 24px; }
  .stat-label { text-align: right; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .lead { font-size: 18px; }
  .nav { padding: 16px; }
  .signup input, .signup .btn { flex: 1 1 100%; max-width: none; }
  .recipe-photo { height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
