:root {
  --ink: #161a17;
  --ink-soft: #3d443f;
  --paper: #fffdf7;
  --cream: #f2eee2;
  --lime: #c9ff38;
  --orange: #ff5e35;
  --forest: #102a20;
  --mint: #dff3e4;
  --rose: #ffe6dc;
  --line: #c9c7bd;
  --white: #ffffff;
  --shadow: 10px 10px 0 var(--ink);
  --radius: 1.25rem;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8.5rem;
  font-size: 16px;
}

html[data-font-size="large"] { font-size: 18px; }
html[data-font-size="x-large"] { font-size: 20px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.high-contrast {
  --ink: #000000;
  --ink-soft: #000000;
  --paper: #ffffff;
  --cream: #ffffff;
  --lime: #fff000;
  --orange: #0066ff;
  --forest: #000000;
  --mint: #ffffff;
  --rose: #ffffff;
  --line: #000000;
  --shadow: 8px 8px 0 #000000;
}

body.reduce-motion *,
body.reduce-motion *::before,
body.reduce-motion *::after {
  scroll-behavior: auto !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

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

button,
select,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

.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;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.accessibility-bar {
  position: relative;
  z-index: 80;
  min-height: 2.7rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  padding: 0.35rem 4vw;
  background: var(--forest);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.accessibility-label {
  margin-right: 0.35rem;
  font-size: 0.8rem;
  font-weight: 800;
}

.accessibility-bar button {
  min-height: 2rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 0.25rem;
  background: transparent;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.accessibility-bar button:hover,
.accessibility-bar button[aria-pressed="true"] {
  background: var(--lime);
  border-color: var(--lime);
  color: #111;
}

.pilot-banner {
  min-height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.35rem 1rem;
  background: var(--lime);
  border-bottom: 1px solid var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  min-height: 5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 4vw;
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 253, 247, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  width: 2.3rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  color: #111;
  font-weight: 900;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.site-header nav a,
.header-cta {
  font-size: 0.88rem;
  font-weight: 800;
  text-underline-offset: 0.3rem;
}

.site-header nav a {
  text-decoration: none;
}

.site-header nav a:hover {
  text-decoration: underline;
}

.header-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  border: 1px solid var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.25rem 0;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 10rem);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  border-bottom: 1px solid var(--ink);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7.5rem) clamp(1.5rem, 5vw, 6rem);
  background: var(--cream);
}

.eyebrow,
.section-label {
  margin: 0 0 1.2rem;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--orange);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.6rem, 6.4vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.88;
}

h1 em {
  display: inline-block;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-description {
  max-width: 650px;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.5vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-primary {
  background: var(--lime);
}

.button-secondary {
  background: var(--paper);
}

.button-dark {
  width: 100%;
  background: var(--ink);
  color: var(--white);
}

.inline-link {
  font-weight: 900;
  text-underline-offset: 0.3rem;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
  padding: 0;
  margin: 2.5rem 0 0;
  list-style: none;
  font-size: 0.88rem;
  font-weight: 800;
}

.benefit-list span {
  color: #196a3b;
}

.hero-image {
  min-height: 690px;
  position: relative;
  overflow: hidden;
  background: #20241f;
}

.hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 8.5rem;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #111;
  border-radius: 50%;
  background: var(--orange);
  color: #111;
  text-align: center;
  transform: rotate(6deg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
}

.hero-badge strong {
  font-size: 2.2rem;
  line-height: 1;
}

.hero-badge span {
  max-width: 5.5rem;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-data {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(16, 42, 32, 0.92);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
}

.hero-data > span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-data dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
}

.hero-data div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 0.55rem;
}

.hero-data dt {
  font-size: 0.74rem;
}

.hero-data dd {
  margin: 0;
  font-weight: 900;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: var(--white);
}

.proof-strip article {
  min-height: 7.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.3rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.proof-strip article:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--lime);
  font-size: 1.15rem;
}

.proof-strip span {
  margin-top: 0.15rem;
  color: #dce4df;
  font-size: 0.84rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 8.5rem) clamp(1.25rem, 7vw, 8rem);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  align-items: end;
  gap: 2rem 5rem;
  margin-bottom: 3.5rem;
}

.section-heading h2,
.configurator-copy h2,
.impact-intro h2,
.faq-section h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.75rem, 5.4vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.section-heading > p {
  max-width: 570px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.plans-section {
  background: var(--paper);
}

.plan-type-picker {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(24rem, 1.2fr);
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border: 2px solid var(--ink);
  background: var(--mint);
}

.plan-type-picker > label {
  display: grid;
  align-content: center;
  gap: 0.45rem;
}

.plan-type-picker > label > strong {
  font-size: 1.35rem;
  line-height: 1.15;
}

.plan-type-picker select {
  margin-top: 0.35rem;
  border-width: 2px;
  background-color: var(--paper);
  font-weight: 800;
}

.plan-type-description {
  display: grid;
  grid-template-columns: minmax(9.5rem, 0.45fr) minmax(14rem, 1fr);
  gap: 0.65rem 1.4rem;
  padding: 1.1rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--ink);
}

.plan-type-description > div {
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plan-type-description span,
.configured-type span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.plan-type-description strong {
  margin-top: 0.2rem;
  font-size: 1.35rem;
  line-height: 1.05;
}

.plan-type-description p {
  align-self: end;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.plan-type-description ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-self: start;
  padding: 0;
  margin: 0;
  list-style: none;
}

.plan-type-description li {
  padding: 0.28rem 0.5rem;
  background: var(--lime);
  border: 1px solid var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.plan-card {
  min-width: 0;
  padding: 1.5rem;
  position: relative;
  background: var(--cream);
  border: 2px solid var(--ink);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.plan-card.featured {
  background: var(--lime);
}

.plan-card.selected {
  transform: translate(-5px, -5px);
  box-shadow: var(--shadow);
}

.popular-label {
  position: absolute;
  top: 0;
  right: 1.25rem;
  padding: 0.45rem 0.7rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-top {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.plan-tag {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.plan-number {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.plan-card h3 {
  margin: 2rem 0 0.4rem;
  font-size: clamp(2rem, 3vw, 3.4rem);
  letter-spacing: -0.06em;
}

.plan-meals,
.plan-duration,
.plan-price,
.per-meal {
  margin: 0;
}

.plan-meals strong {
  font-size: 2.4rem;
}

.plan-duration {
  color: var(--ink-soft);
}

.plan-price {
  margin-top: 1.5rem;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
}

.plan-price strong {
  font: inherit;
}

.plan-price span {
  font-size: 1.3rem;
  vertical-align: top;
}

.per-meal {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.plan-card ul {
  min-height: 8.5rem;
  padding: 1.4rem 0 0 1.2rem;
  margin: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.plan-card li {
  margin: 0.45rem 0;
}

.plan-select {
  width: 100%;
  background: var(--paper);
}

.selected .plan-select {
  background: var(--ink);
  color: var(--white);
}

.individual-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--ink);
  background: var(--mint);
}

.individual-option .section-label {
  margin-bottom: 0.3rem;
}

.individual-option h3,
.individual-option p {
  margin: 0;
}

.individual-option h3 {
  font-size: 1.55rem;
}

.individual-option p {
  margin-top: 0.2rem;
  color: var(--ink-soft);
}

.configurator-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--forest);
  color: var(--white);
}

.configurator-copy {
  align-self: center;
}

.configurator-copy h2 {
  color: var(--lime);
}

.configurator-copy > p:not(.section-label) {
  max-width: 560px;
  color: #d6e3db;
}

.selection-progress {
  margin-top: 2.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.selection-progress > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.selection-progress span,
.selection-progress p {
  font-size: 0.83rem;
}

.selection-progress p {
  margin: 0.65rem 0 0;
  color: #d6e3db;
}

.progress-track {
  height: 0.55rem;
  margin-top: 0.7rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--lime);
  transition: width 200ms ease;
}

.plan-form {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--white);
  box-shadow: 12px 12px 0 var(--lime);
}

.order-summary {
  display: grid;
  gap: 0.1rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}

.order-summary > span:first-child {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.order-summary strong {
  font-size: 1.65rem;
}

.order-summary > span:last-child {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.configured-type {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--ink);
  background: var(--mint);
}

.configured-type > div {
  display: grid;
  gap: 0.15rem;
}

.configured-type strong {
  font-size: 1.2rem;
}

.configured-type p {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 500;
}

.configured-type button {
  min-height: 2.75rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.configured-type button:hover {
  background: var(--ink);
  color: var(--white);
}

.plan-form fieldset {
  padding: 0;
  margin: 1.5rem 0;
  border: 0;
}

.plan-form legend,
.plan-form label {
  font-weight: 800;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field-grid label {
  display: grid;
  gap: 0.45rem;
}

select {
  min-height: 3.2rem;
  width: 100%;
  padding: 0.7rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.checkbox-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  margin: 1.4rem 0;
  font-size: 0.86rem;
}

.checkbox-label input {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--forest);
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--ink);
  background: var(--mint);
  font-weight: 800;
}

.form-status.visible {
  display: block;
}

.menu-section {
  background: var(--cream);
}

.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.filter-button {
  min-height: 2.8rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.filter-button.active {
  background: var(--ink);
  color: var(--white);
}

.meal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.meal-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--ink);
}

.meal-card[hidden] {
  display: none;
}

.meal-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.meal-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.2rem;
}

.meal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.meal-tags span {
  padding: 0.25rem 0.45rem;
  border: 1px solid var(--ink);
  font-size: 0.67rem;
  font-weight: 900;
  text-transform: uppercase;
}

.meal-tags span:first-child {
  background: var(--lime);
}

.meal-card h3 {
  margin: 1rem 0 0.45rem;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.meal-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.macros {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 1.25rem 0;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.macros div {
  min-width: 0;
  padding: 0.6rem 0.45rem;
  background: var(--paper);
}

.macros dt {
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 800;
}

.macros dd {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  font-weight: 900;
}

.meal-add {
  min-height: 2.8rem;
  width: 100%;
  margin-top: auto;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.meal-card.is-selected .meal-add {
  background: var(--lime);
}

.nutrition-note {
  max-width: 760px;
  margin: 1.5rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.process-section {
  background: var(--forest);
  color: var(--white);
}

.section-heading.light > p {
  color: #d6e3db;
}

.section-heading.light h2 {
  color: var(--lime);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.process-list li {
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem;
  background: var(--forest);
}

.process-list li > span {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-weight: 900;
}

.process-list h3,
.process-list p {
  margin: 0;
}

.process-list h3 {
  font-size: 1.3rem;
}

.process-list p {
  margin-top: 0.3rem;
  color: #d6e3db;
  font-size: 0.9rem;
}

.impact-section {
  background: var(--paper);
}

.impact-intro {
  max-width: 980px;
}

.impact-intro > p:last-child {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.impact-grid article {
  min-height: 16rem;
  padding: 1.5rem;
  border: 1px solid var(--ink);
}

.impact-grid article:nth-child(1) { background: var(--mint); }
.impact-grid article:nth-child(2) { background: var(--cream); }
.impact-grid article:nth-child(3) { background: var(--rose); }

.impact-number {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.impact-grid h3 {
  margin: 3rem 0 0.5rem;
  font-size: 1.65rem;
}

.impact-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.impact-quote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.2rem;
  padding: 1.7rem;
  background: var(--ink);
  color: var(--white);
}

.impact-quote p {
  max-width: 820px;
  margin: 0;
  font: italic clamp(1.3rem, 2.4vw, 2.2rem) Georgia, "Times New Roman", serif;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--cream);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: 0;
  padding: 0 2rem 1.25rem 0;
  color: var(--ink-soft);
}

footer {
  padding: 3rem 4vw 1.5rem;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-main p {
  margin: 0;
  color: #d6dcd8;
}

.footer-main nav {
  display: flex;
  gap: 1rem;
}

.footer-main nav a {
  font-size: 0.84rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: #b8c0bb;
  font-size: 0.76rem;
}

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

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .accessibility-bar {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .accessibility-label {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-header nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 4vw 1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
  }

  .site-header nav.open {
    display: flex;
  }

  .site-header nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }

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

  .hero-copy {
    min-height: 72vh;
  }

  .hero-image {
    min-height: 65vh;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .plan-type-picker {
    grid-template-columns: 1fr;
  }

  .plan-card ul {
    min-height: 0;
  }

  .section-heading,
  .configurator-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .configurator-section {
    gap: 3rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pilot-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    text-align: left;
  }

  .pilot-banner span[aria-hidden="true"] {
    display: none;
  }

  .site-header {
    min-height: 4.35rem;
    padding: 0 1rem;
  }

  .hero-copy {
    padding: 4.5rem 1.2rem;
  }

  h1 {
    font-size: clamp(3.3rem, 16vw, 5rem);
  }

  .hero-image {
    min-height: 34rem;
  }

  .hero-badge {
    top: 1rem;
    right: 1rem;
    width: 7rem;
  }

  .hero-data {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .hero-data dl {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip article {
    min-height: 5.5rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .section {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .section-heading h2,
  .configurator-copy h2,
  .impact-intro h2,
  .faq-section h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .individual-option,
  .impact-quote {
    align-items: stretch;
    flex-direction: column;
  }

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

  .plan-type-picker {
    min-width: 0;
    padding: 1rem;
  }

  .plan-type-description,
  .configured-type {
    grid-template-columns: 1fr;
  }

  .plan-type-description > div {
    grid-row: auto;
  }

  .configured-type button {
    width: 100%;
  }

  .meal-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .macros {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main nav,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
