:root {
  --ink: #18211c;
  --muted: #647066;
  --green: #0c6b45;
  --green-dark: #12372a;
  --lime: #d7f75b;
  --cream: #f4f1e4;
  --paper: #fbfaf3;
  --line: #e2decc;
  --orange: #ff7a3d;
  --shadow: 0 24px 70px rgba(18, 55, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.promo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 42px;
  padding: 8px 18px;
  color: #fff;
  background: var(--orange);
  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
}

.promo-bar a {
  padding: 5px 10px;
  color: var(--green-dark);
  background: var(--lime);
  border-radius: 999px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(255, 253, 246, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.2rem;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--lime);
  background: var(--green-dark);
  border-radius: 8px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--green-dark);
}

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  background: var(--green-dark);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.button.secondary {
  color: var(--green-dark);
  background: var(--lime);
}

.button.danger {
  color: #fff;
  background: #9d2f22;
}

.button.full {
  width: 100%;
}

.section-band,
.section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 64px);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 69px);
  padding-top: clamp(84px, 11vw, 150px);
  padding-bottom: clamp(80px, 10vw, 140px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 22, 16, 0.84) 0%, rgba(8, 22, 16, 0.58) 47%, rgba(8, 22, 16, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 22, 16, 0.35), rgba(8, 22, 16, 0.06)),
    var(--hero-image) center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.hero::after {
  content: "";
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6.4vw, 5.9rem);
  font-weight: 900;
}

.hero h1 {
  color: #fff;
  line-height: 1.04;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 900;
}

.hero-text,
.section-heading p,
.split-section p,
.checkout-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.hero .hero-text {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 22px;
  padding: 0 13px;
  color: var(--green-dark);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-offer-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  color: var(--green-dark);
  background: var(--lime);
  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
}

.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 800;
}

.hero-rating strong {
  color: var(--orange);
  letter-spacing: 0.08em;
}

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

.trust-row span {
  padding: 10px 14px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.hero-card {
  position: static;
  display: grid;
  gap: 4px;
  max-width: 360px;
  margin-top: 26px;
  padding: 16px 18px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.hero-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--green-dark);
}

.proof-strip div {
  display: grid;
  gap: 6px;
  padding: 24px clamp(18px, 4vw, 44px);
  color: #fff;
  background: var(--green-dark);
}

.proof-strip strong {
  font-size: 1.25rem;
}

.proof-strip span {
  color: #d9e7d2;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.how-strip {
  color: #fff;
  background: var(--green-dark);
}

.how-strip .eyebrow {
  color: var(--lime);
}

.how-strip .how-grid article {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.16);
  text-align: center;
}

.how-strip .how-grid p {
  color: var(--muted);
}

.how-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.how-grid article,
.review-grid article {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(18, 55, 42, 0.08);
}

.how-graphic {
  display: grid;
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  place-items: center;
  color: var(--green-dark);
  background: var(--lime);
  border-radius: 999px;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.45);
}

.step-graphic {
  position: relative;
  font-size: 2.15rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.step-graphic::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 2px solid rgba(18, 55, 42, 0.18);
  border-radius: inherit;
}

.how-grid h3,
.review-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.how-grid p,
.review-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.meal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.meal-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(21, 38, 31, 0.08);
}

.meal-card img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
}

.meal-info {
  padding: 20px 20px 8px;
}

.meal-info h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.meal-info p {
  color: var(--muted);
  line-height: 1.45;
}

.meal-info span {
  display: block;
  color: var(--green);
  font-weight: 900;
}

.meal-card button {
  width: calc(100% - 40px);
  margin: 18px 20px 20px;
  min-height: 44px;
  color: var(--green-dark);
  background: var(--lime);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.meal-card button.added {
  color: #fff;
  background: var(--green);
}

.menu-directory {
  position: relative;
  background: #fffdf7;
}

.menu-directory .eyebrow {
  color: var(--green);
}

.category-nav {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 26px;
}

.category-nav a {
  padding: 10px 13px;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  transition: 0.18s ease;
}

.category-nav a.active {
  color: #fff;
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 12px 26px rgba(18, 55, 42, 0.18);
}

.menu-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.menu-section-group {
  display: grid;
  gap: 14px;
  scroll-margin-top: 110px;
}

.menu-section-heading {
  display: grid;
  gap: 8px;
  padding: 22px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 8px;
}

.menu-section-heading span {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
}

.menu-section-heading p {
  max-width: 780px;
  margin: 0;
  color: #cfe0d7;
  line-height: 1.5;
}

.menu-category {
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(21, 38, 31, 0.06);
}

.menu-category.wide {
  grid-column: span 1;
}

.menu-category h3 {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 1.3rem;
}

.menu-dropdown summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  background: linear-gradient(135deg, #fff, var(--cream));
}

.menu-dropdown summary::-webkit-details-marker {
  display: none;
}

.menu-dropdown summary span {
  color: var(--green-dark);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 900;
}

.menu-dropdown summary small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 900;
}

.menu-dropdown summary small::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: var(--green-dark);
  border-radius: 999px;
}

.menu-dropdown[open] summary small::after {
  content: "-";
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  background: #fffdf7;
}

.menu-list button {
  min-height: 42px;
  padding: 8px 10px;
  color: var(--green-dark);
  background: var(--lime);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
}

.menu-list button.added {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.menu-photo-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(21, 38, 31, 0.08);
}

.menu-photo-card img,
.no-image-placeholder {
  width: 100%;
  aspect-ratio: 1.18;
}

.menu-photo-card img {
  object-fit: cover;
  background: #f4f1e4;
}

.no-image-placeholder {
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--muted);
  background: linear-gradient(135deg, #f4f1e4, #fbfaf3);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.menu-card-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.menu-card-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.menu-price {
  color: var(--green);
  font-weight: 900;
}

.menu-meta {
  min-height: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.3;
}

.menu-empty {
  padding: 28px;
  color: var(--muted);
  background: #fffdf7;
  font-weight: 900;
}

.menu-card-controls {
  display: grid;
  grid-template-columns: minmax(86px, 1fr) 38px 34px 38px;
  gap: 8px;
  align-items: center;
}

.menu-card-controls .add-meal {
  width: 100%;
}

.qty-button {
  display: grid;
  min-height: 38px;
  place-items: center;
  color: #fff;
  background: var(--green-dark);
}

.quantity-count {
  display: grid;
  min-height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 42px;
  background: var(--green-dark);
  color: #fff;
}

.split-section p {
  color: #cfe0d7;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.steps span {
  color: var(--lime);
  font-weight: 900;
}

.steps strong {
  font-size: 1.2rem;
}

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

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  position: relative;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.plan-card.featured {
  color: #fff;
  background: var(--green-dark);
  transform: translateY(-10px);
}

.plan-card h3 {
  font-size: 1.5rem;
}

.plan-card p,
.plan-card span {
  color: inherit;
  opacity: 0.75;
}

.plan-card strong {
  display: block;
  margin: 22px 0 4px;
  font-size: 2.5rem;
}

.badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 10px;
  color: var(--green-dark);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  opacity: 1;
}

.reviews-section {
  background: #fff;
}

.review-grid article {
  background: #fbfaf3;
}

.review-grid span {
  color: var(--orange);
  font-weight: 900;
}

.checkout-section {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  gap: 28px;
  align-items: start;
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 247, 91, 0.22), transparent 24%),
    linear-gradient(135deg, #eff8df 0%, #fbfaf3 58%, #f4f1e4 100%);
  border-top: 1px solid #d8e8b5;
  border-bottom: 1px solid #d8e8b5;
}

.checkout-copy {
  position: static;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.checkout-copy .eyebrow {
  color: var(--green);
}

.checkout-copy p {
  margin-left: auto;
  margin-right: auto;
}

.checkout-panel {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 30px);
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(18, 55, 42, 0.18);
}

.checkout-mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 5px;
  margin-bottom: 4px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-mode button {
  min-height: 48px;
  padding: 0 14px;
  color: var(--green-dark);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.checkout-mode button.selected {
  color: #fff;
  background: var(--green-dark);
}

.is-hidden {
  display: none !important;
}

.amend-box {
  padding: 18px;
  background: #f4f1e4;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.amend-box h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.amend-box p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.5;
}

.amend-form {
  display: grid;
  gap: 12px;
}

.amend-submit {
  display: grid;
  gap: 12px;
}

.amend-price-compare {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #eff8df;
  border: 1px solid #d8e8b5;
  border-radius: 8px;
}

.amend-price-compare h3 {
  margin: 0;
  font-size: 1rem;
}

.amend-price-compare div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.amend-price-compare strong {
  color: var(--green-dark);
}

.amend-price-compare .new-price {
  padding-top: 10px;
  color: var(--ink);
  border-top: 1px solid #d8e8b5;
  font-weight: 900;
}

.amend-price-compare p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.plan-picker,
.service-note {
  display: grid;
  gap: 8px;
}

.plan-picker {
  grid-template-columns: repeat(3, 1fr);
}

.plan-picker button {
  min-height: 62px;
  padding: 10px;
  color: var(--green-dark);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-weight: 900;
}

.checkout-step span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: var(--green-dark);
  border-radius: 999px;
  font-size: 0.78rem;
}

.step-note {
  margin: -6px 0 0;
  line-height: 1.5;
}

.plan-picker button.selected {
  color: #fff;
  background: var(--green-dark);
}

.service-note {
  padding: 14px;
  color: var(--green-dark);
  background: #eff8df;
  border: 1px solid #d8e8b5;
  border-radius: 8px;
}

.service-note span {
  color: var(--muted);
}

.basket {
  padding: 18px;
  background: #f4f1e4;
  border-radius: 8px;
}

.basket > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

#basket-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

#basket-list li {
  padding: 8px 10px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

#basket-empty {
  margin: 0;
  color: var(--muted);
}

.payment-form {
  display: grid;
  gap: 14px;
  padding-top: 4px;
  margin-top: 0;
}

.payment-form label,
.amend-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.payment-form input,
.amend-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.payment-form input:focus,
.amend-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(12, 107, 69, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-totals {
  display: grid;
  gap: 9px;
  padding: 14px;
  background: #fbfaf3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.checkout-totals strong {
  color: var(--green-dark);
}

.checkout-totals .total {
  padding-top: 9px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 1.06rem;
  font-weight: 900;
}

.payment-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.subscription-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.success-message {
  display: none;
  margin-top: 14px;
  padding: 14px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.success-message.visible {
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(18px, 5vw, 64px);
  color: #fff;
  background: var(--green-dark);
}

.site-footer span {
  color: #cfe0d7;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(18, 55, 42, 0.92), rgba(12, 107, 69, 0.82)),
    var(--green-dark);
}

.success-panel {
  max-width: 720px;
}

.success-panel h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.plan-code-card {
  margin: 28px 0 18px;
  padding: 22px;
  color: var(--green-dark);
  background: var(--lime);
  border-radius: 8px;
}

.plan-code-card span,
.order-summary-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-code-card strong {
  display: block;
  font-size: clamp(2rem, 7vw, 3.7rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.plan-code-card p {
  margin: 8px 0 0;
  color: var(--green-dark);
  font-weight: 800;
}

.order-summary-card {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  background: #fbfaf3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.order-summary-card strong,
.order-summary-card p {
  margin: 0;
  color: var(--ink);
}

.order-summary-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink);
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .checkout-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
  }

  .meal-grid,
  .how-grid,
  .review-grid,
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  .site-header {
    align-items: center;
    flex-direction: row;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  h1 {
    font-size: 2.9rem;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .meal-grid,
  .how-grid,
  .review-grid,
  .plan-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

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

  .plan-card.featured {
    transform: none;
  }

  .plan-picker,
  .drop-picker,
  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .menu-list {
    grid-template-columns: 1fr;
  }
}
