/* Landing page only: legal and account pages retain their existing stylesheet. */
@font-face {
  font-family: Instrument;
  src: url("/assets/instrument-sans.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Instrument;
  src: url("/assets/instrument-sans-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
:root {
  color-scheme: light;
  --ink: #153e2a;
  --text: #283c31;
  --muted: #526158;
  --paper: #fcfcf7;
  --green: #205c3b;
  --line: #d8dfd5;
  --accent: #eab953;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family:
    Instrument,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
a {
  color: inherit;
  text-underline-offset: 0.25em;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #bd6523;
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
h1 {
  font-size: clamp(3.5rem, 6.6vw, 6.25rem);
  font-weight: 750;
  margin-bottom: 1.5rem;
}
h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 700;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.wrap {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: white;
  padding: 1rem;
  z-index: 10;
}
.skip-link:focus {
  top: 1rem;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}
.brand img {
  object-fit: contain;
}
.brand-dot {
  color: #af5e1e;
  margin-left: -8px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 600;
}
.site-header nav a {
  text-decoration: none;
}
.site-header nav a:hover {
  text-decoration: underline;
}
.nav-cta {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 11px 20px;
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-block: 36px 76px;
}
.hero-copy {
  padding-block: 28px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 8px;
}
.hero-description {
  font-size: 1.25rem;
  line-height: 1.55;
  max-width: 440px;
  margin-bottom: 16px;
}
.hero-support {
  color: var(--muted);
  max-width: 420px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 52px;
  padding: 14px 24px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 650;
  line-height: 1.4;
  transition:
    background 0.15s,
    transform 0.15s;
}
.button:hover {
  background: #287045;
  transform: translateY(-2px);
}
.text-link {
  font-size: 0.9rem;
  font-weight: 600;
}
.availability {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.hero-visual {
  position: relative;
  min-width: 0;
  padding-bottom: 22px;
}
.food-photo {
  display: block;
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: center 54%;
  border-radius: 140px 20px 20px 20px;
}
.photo-note {
  position: absolute;
  bottom: 0;
  left: -25px;
  right: 25px;
  display: flex;
  gap: 16px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 12px 35px #18342312;
}
.photo-note strong,
.photo-note span:not(.note-icon) {
  display: block;
}
.photo-note strong {
  font-size: 1rem;
  color: var(--ink);
}
.photo-note span:not(.note-icon) {
  font-size: 0.85rem;
  color: var(--muted);
}
.note-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: #e9f1df;
  color: var(--ink);
  font-size: 1.2rem;
}
.benefit-strip {
  border-block: 1px solid var(--line);
}
.benefit-strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-block: 22px;
  font-size: 0.85rem;
  font-weight: 600;
}
.section {
  padding-block: 88px;
}
.section-heading {
  max-width: 740px;
  margin-bottom: 46px;
}
.section-heading h2 {
  margin-bottom: 20px;
}
.section-heading > p:last-child {
  color: var(--muted);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.steps article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.step-number {
  display: block;
  font-family: Georgia, serif;
  font-size: 2.6rem;
  color: var(--green);
  margin-bottom: 22px;
  line-height: 1;
}
.steps p {
  color: var(--muted);
}
.steps .step-detail {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
}
.together {
  background: var(--ink);
  color: #edf4e9;
  padding-block: 80px;
}
.together-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}
.together h2 {
  color: white;
}
.together .eyebrow {
  color: var(--accent);
}
.together p {
  max-width: 500px;
}
.small {
  font-size: 0.85rem;
  line-height: 1.6;
}
.together .small {
  color: #c0d3c5;
}
.kitchen-note {
  padding: 35px;
  background: #f8f7e7;
  color: var(--ink);
  transform: rotate(2deg);
  box-shadow: 10px 10px 0 #0d2b1c;
  border-radius: 3px;
}
.note-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.kitchen-note ol {
  padding-left: 24px;
}
.kitchen-note li {
  padding: 16px 0 16px 8px;
  border-bottom: 1px solid #c5cdbb;
}
.kitchen-note > p:last-child {
  margin: 28px 0 0;
}
.cooking-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.cooking-features p {
  color: var(--muted);
}
.plans {
  padding-top: 0;
}
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.plan {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.plan.plus {
  background: #eff3e8;
  border-color: #c8d4bd;
}
.plan ul {
  padding-left: 20px;
}
.plan li {
  padding: 7px 0;
}
.plan .small {
  margin-bottom: 0;
  color: var(--muted);
}
.plan-note {
  max-width: 850px;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 22px;
}
.faq {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  column-gap: 90px;
  align-items: start;
}
.faq h2 {
  grid-row: span 5;
  font-size: 2.35rem;
  position: sticky;
  top: 30px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  font-weight: 650;
  padding-right: 15px;
  min-height: 32px;
}
.faq details p {
  color: var(--muted);
  margin: 15px 0 5px;
}
.early-access {
  text-align: center;
  border-radius: 24px;
  background: #edf1e5;
  padding: 55px 24px;
  margin-bottom: 80px;
}
.early-access img {
  object-fit: contain;
  margin-bottom: 16px;
}
.early-access h2 {
  margin-bottom: 20px;
}
.early-access .small {
  margin-top: 18px;
  color: var(--muted);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.site-footer p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}
.site-footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-left: auto;
  font-size: 0.85rem;
}
.site-footer a {
  padding-block: 8px;
}
section[id] {
  scroll-margin-top: 32px;
}
@media (min-width: 1600px) {
  .wrap {
    max-width: 1280px;
  }
  .hero {
    gap: 90px;
  }
}
@media (max-width: 1000px) {
  .site-header nav {
    gap: 18px;
  }
  .hero {
    gap: 35px;
  }
  .food-photo {
    height: 540px;
  }
  .photo-note {
    left: 0;
    right: 0;
    padding: 16px;
  }
  .together-grid {
    gap: 45px;
  }
  .steps,
  .cooking-features {
    gap: 25px;
  }
  .faq {
    gap: 35px;
  }
}
@media (max-width: 720px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 84px;
  }
  .site-header nav > a:not(.nav-cta) {
    display: none;
  }
  .site-header nav {
    font-size: 0.85rem;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 6px;
    gap: 26px;
    padding-bottom: 44px;
  }
  .hero-copy {
    padding: 20px 0 0;
  }
  h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }
  .hero-support,
  .hero-description {
    max-width: 100%;
  }
  .hero-actions {
    gap: 20px;
  }
  .food-photo {
    height: 390px;
    border-top-left-radius: 100px;
  }
  .hero-visual {
    padding-bottom: 20px;
  }
  .photo-note {
    left: 12px;
    right: 12px;
  }
  .benefit-strip .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    font-size: 0.8rem;
  }
  .section {
    padding-block: 55px;
  }
  .steps,
  .cooking-features,
  .together-grid,
  .plan-grid,
  .faq {
    grid-template-columns: 1fr;
  }
  .steps {
    gap: 24px;
  }
  .step-number {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .together {
    padding-block: 55px;
  }
  .kitchen-note {
    transform: none;
    box-shadow: 6px 6px 0 #0d2b1c;
    padding: 26px;
  }
  .cooking-features {
    gap: 18px;
  }
  .plan {
    padding: 26px;
  }
  .plans,
  .faq {
    padding-top: 0;
  }
  .faq {
    gap: 0;
  }
  .faq h2 {
    position: static;
    grid-row: auto;
    margin-bottom: 24px;
    font-size: 2rem;
  }
  .early-access {
    padding: 40px 20px;
    margin-bottom: 45px;
  }
  .desktop-break {
    display: none;
  }
  .site-footer {
    gap: 20px;
  }
  .site-footer nav {
    margin-left: 0;
    gap: 20px;
  }
  .site-footer p {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
  .button:hover {
    transform: none;
  }
}
