:root {
  color-scheme: light;
  --ink: #17231d;
  --muted: #52635a;
  --paper: #fbfcf8;
  --panel: #ffffff;
  --green: #215b45;
  --green-soft: #dfece5;
  --blue: #315f8c;
  --blue-soft: #e1edf7;
  --yellow: #b98a24;
  --yellow-soft: #f5ecd0;
  --teal: #2f6b68;
  --rose: #9a5147;
  --line: #dce4dc;
  --shadow: 0 18px 45px rgba(23, 35, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: clip;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px clamp(18px, 5vw, 56px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.3);
}

.brand img {
  width: 40px;
  height: 40px;
}

.header-login {
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.web-link {
  color: #fff;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  align-items: center;
  overflow: hidden;
  padding: 126px clamp(18px, 5vw, 56px) 78px;
  background: #18231e;
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 26, 20, 0.86), rgba(15, 26, 20, 0.56) 48%, rgba(15, 26, 20, 0.12)),
    linear-gradient(0deg, rgba(15, 26, 20, 0.42), rgba(15, 26, 20, 0.08));
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 790px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f6d88b;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 4.8rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.35rem;
  line-height: 1.5;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.store-actions.compact {
  margin-top: 22px;
  margin-bottom: 0;
}

.store-button {
  display: inline-flex;
  min-width: 172px;
  min-height: 58px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(23, 35, 29, 0.18);
  border-radius: 8px;
  padding: 10px 18px;
  background: #18231e;
  color: #fff;
  box-shadow: var(--shadow);
}

.hero .store-button {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.store-name {
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.2;
}

.store-state {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.25;
}

.hero .store-state,
.download-section .store-state {
  color: var(--muted);
}

.intro-band,
.recipe-section,
.voff-section,
.download-section {
  padding: clamp(54px, 8vw, 90px) clamp(18px, 5vw, 56px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: end;
  background: var(--paper);
}

.section-inner {
  max-width: 780px;
}

.section-inner h2,
.voff-copy h2 {
  margin-bottom: 14px;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-inner p,
.feature-card p,
.voff-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.recipe-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.recipe-highlights span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  font-weight: 850;
  line-height: 1.25;
}

.recipe-highlights strong {
  font-size: 1.25rem;
}

.recipe-voff-row {
  display: grid;
  max-width: 340px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.recipe-voff-row img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 35, 29, 0.1);
  object-fit: contain;
}

.intro-points {
  display: grid;
  gap: 10px;
}

.intro-points span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff;
  color: var(--green);
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 56px) clamp(54px, 8vw, 90px);
}

.feature-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--panel);
}

.feature-card h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.feature-card::before {
  display: block;
  width: 44px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 999px;
  content: "";
}

.feature-voff {
  width: 100%;
  max-height: 150px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #f6f8f4;
  object-fit: contain;
}

.accent-green::before {
  background: var(--green);
}

.accent-yellow::before {
  background: var(--yellow);
}

.accent-blue::before {
  background: var(--blue);
}

.accent-teal::before {
  background: var(--teal);
}

.accent-rose::before {
  background: var(--rose);
}

.recipe-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(26px, 5vw, 54px);
  align-items: center;
  background: #f1f6ef;
}

.recipe-collage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
}

.recipe-card {
  position: relative;
  min-height: 180px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe8df;
  box-shadow: var(--shadow);
}

.recipe-card.is-large {
  grid-row: span 2;
  min-height: 374px;
}

.recipe-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.recipe-card figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.voff-section {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 720px);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  background: var(--paper);
}

.voff-visual {
  display: grid;
  place-items: center;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue-soft);
}

.landing-voff-photo {
  width: min(280px, 78vw);
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.download-section {
  background: var(--green-soft);
}

.download-section .store-button {
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer span {
  color: var(--ink);
  font-weight: 850;
}

.site-footer a {
  color: var(--green);
  font-weight: 750;
}

@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recipe-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-top: 16px;
  }

  .header-login {
    font-size: 0.88rem;
  }

  .hero {
    min-height: 84svh;
    padding-top: 118px;
    padding-bottom: 58px;
  }

  h1 {
    font-size: 3.4rem;
  }

  .section-inner h2,
  .voff-copy h2 {
    font-size: 1.9rem;
  }

  .intro-band,
  .voff-section {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-voff {
    max-height: 180px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
  }

  .brand span {
    display: none;
  }

  .header-login {
    padding: 9px 10px;
  }

  .hero {
    min-height: 680px;
    padding-top: 106px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .store-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .store-button {
    width: 100%;
    min-width: 0;
  }

  .recipe-collage {
    grid-template-columns: 1fr;
  }

  .recipe-card,
  .recipe-card.is-large {
    min-height: 240px;
  }

  .recipe-voff-row {
    max-width: none;
  }

  .voff-visual {
    min-height: auto;
    padding: 18px;
  }

  .landing-voff-photo {
    width: min(250px, 100%);
  }
}
