:root {
  --green-950: #0c2c20;
  --green-900: #123f2c;
  --green-800: #19563b;
  --green-700: #24734a;
  --green-500: #5f9c45;
  --lime: #b8d75f;
  --cream: #fbf8ef;
  --cream-deep: #f2ecd9;
  --gold: #c79a25;
  --ink: #172019;
  --muted: #68736b;
  --line: #dde5dc;
  --white: #fff;
  --shadow: 0 18px 50px rgba(12, 44, 32, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.section-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 8px 20px;
  background: var(--green-950);
  color: #eaf3e9;
  font-size: 13px;
}
.announcement button {
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(18, 63, 44, 0.09);
  background: rgba(251, 248, 239, 0.9);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(18,63,44,.15); }
.brand span { display: grid; gap: 1px; }
.brand strong { font-family: Georgia, serif; font-size: 22px; color: var(--green-950); }
.brand small { text-transform: uppercase; letter-spacing: .13em; color: var(--muted); font-size: 10px; font-weight: 800; }
.desktop-nav { display: flex; gap: 34px; font-size: 14px; font-weight: 700; color: #354239; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--green-700); transition: .25s; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.icon-button, .menu-button, .cart-button {
  border: 1px solid rgba(18,63,44,.12);
  background: rgba(255,255,255,.64);
  color: var(--green-950);
  border-radius: 999px;
  min-height: 44px;
}
.icon-button { width: 44px; font-size: 23px; }
.cart-button { display: inline-flex; align-items: center; gap: 8px; padding: 0 15px; font-weight: 800; }
.cart-button b { display: grid; place-items: center; min-width: 23px; height: 23px; border-radius: 50%; color: white; background: var(--green-800); font-size: 12px; }
.menu-button { display: none; width: 44px; }
.mobile-nav { display: none; position: fixed; z-index: 35; top: 122px; left: 20px; right: 20px; padding: 18px; border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.mobile-nav.open { display: grid; }
.mobile-nav a { padding: 13px 10px; border-bottom: 1px solid var(--line); font-weight: 800; }
.mobile-nav a:last-child { border-bottom: 0; }

.hero { min-height: 690px; display: grid; grid-template-columns: 1.02fr .98fr; gap: 60px; align-items: center; padding-block: 72px 78px; }
.hero-copy { padding-right: 20px; }
.eyebrow { display: inline-block; margin-bottom: 12px; color: var(--green-700); text-transform: uppercase; letter-spacing: .15em; font-size: 12px; font-weight: 900; }
.eyebrow.light { color: #cde5bd; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; color: var(--green-950); line-height: 1.02; letter-spacing: -.035em; }
h1 { max-width: 700px; margin-bottom: 22px; font-size: clamp(48px, 6vw, 82px); }
h2 { margin-bottom: 14px; font-size: clamp(36px, 4.5vw, 56px); }
h3 { color: var(--green-950); }
.hero-copy > p { max-width: 630px; margin-bottom: 30px; color: #536057; font-size: 18px; line-height: 1.7; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border: 0; border-radius: 999px; font-weight: 900; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: #fff; background: var(--green-800); box-shadow: 0 12px 26px rgba(25,86,59,.2); }
.button.primary:hover { background: var(--green-950); }
.button.secondary { color: var(--green-900); background: #fff; border: 1px solid var(--line); }
.button.light { color: var(--green-950); background: #fff; }
.button.full { width: 100%; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: #4e5b52; font-size: 13px; font-weight: 800; }

.hero-visual { position: relative; min-height: 540px; display: grid; place-items: center; }
.hero-glow { position: absolute; width: 86%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #e7f2ca, #cbdca7 55%, #b2ca80); filter: blur(2px); }
.hero-card { position: relative; z-index: 2; width: min(430px, 78vw); padding: 18px; border: 1px solid rgba(255,255,255,.8); border-radius: 32px; background: rgba(255,255,255,.85); box-shadow: 0 30px 65px rgba(12,44,32,.2); transform: rotate(-3deg); backdrop-filter: blur(12px); }
.mini-label { display: inline-flex; padding: 7px 12px; border-radius: 999px; background: var(--cream-deep); color: var(--green-900); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.microgreen-bowl { position: relative; height: 330px; margin: 15px 0 14px; overflow: hidden; border-radius: 24px; background: linear-gradient(165deg, #eaf4d4 0 43%, #d4c1a3 44% 49%, #7a5337 50% 65%, #e8dfcf 66%); }
.microgreen-bowl::after { content: ""; position: absolute; left: 12%; right: 12%; bottom: 14px; height: 55px; border-radius: 0 0 50% 50%; background: linear-gradient(#fff, #e9e3d9); box-shadow: inset 0 4px 0 rgba(18,63,44,.12); }
.sprout-field { position: absolute; left: 8%; right: 8%; bottom: 76px; height: 220px; z-index: 2; background:
 radial-gradient(ellipse 15px 9px at 4% 16%, #548f2f 0 65%, transparent 68%),
 radial-gradient(ellipse 17px 10px at 9% 12%, #6aa53c 0 65%, transparent 68%),
 radial-gradient(ellipse 15px 9px at 15% 24%, #4e872d 0 65%, transparent 68%),
 radial-gradient(ellipse 18px 10px at 21% 10%, #76ad42 0 65%, transparent 68%),
 radial-gradient(ellipse 16px 9px at 28% 21%, #4c832d 0 65%, transparent 68%),
 radial-gradient(ellipse 16px 9px at 35% 8%, #659d39 0 65%, transparent 68%),
 radial-gradient(ellipse 18px 10px at 42% 24%, #4c852d 0 65%, transparent 68%),
 radial-gradient(ellipse 16px 9px at 49% 10%, #78ae44 0 65%, transparent 68%),
 radial-gradient(ellipse 16px 9px at 57% 22%, #51882f 0 65%, transparent 68%),
 radial-gradient(ellipse 18px 10px at 64% 8%, #6da23f 0 65%, transparent 68%),
 radial-gradient(ellipse 16px 9px at 71% 24%, #4a832d 0 65%, transparent 68%),
 radial-gradient(ellipse 18px 10px at 78% 12%, #76ad42 0 65%, transparent 68%),
 radial-gradient(ellipse 16px 9px at 85% 24%, #4d862e 0 65%, transparent 68%),
 radial-gradient(ellipse 18px 10px at 92% 10%, #689f3a 0 65%, transparent 68%),
 repeating-linear-gradient(88deg, transparent 0 10px, rgba(89,139,46,.96) 11px 13px, transparent 14px 19px);
}
.hero-card-bottom { display: flex; justify-content: space-between; align-items: end; gap: 15px; }
.hero-card-bottom div { display: grid; gap: 4px; }
.hero-card-bottom strong { color: var(--green-950); font-family: Georgia, serif; font-size: 24px; }
.hero-card-bottom small { color: var(--muted); }
.hero-card-bottom > span { color: var(--green-800); font-weight: 900; }
.floating-card { position: absolute; z-index: 4; padding: 13px 16px; border-radius: 15px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); color: var(--green-950); font-size: 13px; font-weight: 900; }
.card-top { top: 58px; right: 0; transform: rotate(3deg); }
.card-bottom { bottom: 56px; left: 0; transform: rotate(-3deg); }

.benefit-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #d7dfd6; border-block: 1px solid #d7dfd6; }
.benefit-strip div { display: grid; gap: 5px; padding: 24px 28px; background: #fff; text-align: center; }
.benefit-strip strong { color: var(--green-950); }
.benefit-strip span { color: var(--muted); font-size: 13px; }

.shop-section, .steps-section, .story-section { padding-block: 100px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 30px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading.centered { justify-content: center; text-align: center; }
.section-heading.centered p { max-width: 620px; margin: 0 auto; color: var(--muted); line-height: 1.7; }
.search-box { display: flex; align-items: center; gap: 9px; min-width: 280px; height: 48px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); }
.category-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.chip { min-height: 40px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.65); color: #4b574f; font-weight: 800; }
.chip.active { color: white; border-color: var(--green-800); background: var(--green-800); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(18,63,44,.1); border-radius: 23px; background: #fff; box-shadow: 0 8px 26px rgba(12,44,32,.05); transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-image { position: relative; height: 230px; overflow: hidden; background: linear-gradient(145deg, #edf4dc, #cfdfad); }
.product-badge { position: absolute; z-index: 2; top: 13px; left: 13px; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--green-900); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.product-visual { position: absolute; inset: 0; display: grid; place-items: center; }
.tray { position: relative; width: 76%; height: 46%; margin-top: 65px; border-radius: 12px 12px 34px 34px; background: linear-gradient(#f8f5ed, #ded7c8); box-shadow: 0 18px 28px rgba(12,44,32,.18), inset 0 5px 0 rgba(255,255,255,.8); }
.tray::before { content: ""; position: absolute; left: 7%; right: 7%; top: -18px; height: 44px; border-radius: 50%; background: #6f4c32; box-shadow: inset 0 4px 0 rgba(0,0,0,.13); }
.tray::after { content: ""; position: absolute; left: 7%; right: 7%; top: -110px; height: 120px; background:
 radial-gradient(ellipse 12px 7px at 4% 20%, var(--leaf-1) 0 65%, transparent 68%),
 radial-gradient(ellipse 12px 7px at 10% 8%, var(--leaf-2) 0 65%, transparent 68%),
 radial-gradient(ellipse 13px 7px at 18% 24%, var(--leaf-1) 0 65%, transparent 68%),
 radial-gradient(ellipse 13px 7px at 25% 10%, var(--leaf-2) 0 65%, transparent 68%),
 radial-gradient(ellipse 12px 7px at 32% 22%, var(--leaf-1) 0 65%, transparent 68%),
 radial-gradient(ellipse 13px 7px at 40% 7%, var(--leaf-2) 0 65%, transparent 68%),
 radial-gradient(ellipse 12px 7px at 48% 24%, var(--leaf-1) 0 65%, transparent 68%),
 radial-gradient(ellipse 13px 7px at 56% 9%, var(--leaf-2) 0 65%, transparent 68%),
 radial-gradient(ellipse 12px 7px at 64% 23%, var(--leaf-1) 0 65%, transparent 68%),
 radial-gradient(ellipse 13px 7px at 72% 8%, var(--leaf-2) 0 65%, transparent 68%),
 radial-gradient(ellipse 12px 7px at 80% 22%, var(--leaf-1) 0 65%, transparent 68%),
 radial-gradient(ellipse 13px 7px at 89% 9%, var(--leaf-2) 0 65%, transparent 68%),
 repeating-linear-gradient(88deg, transparent 0 9px, var(--stem) 10px 12px, transparent 13px 18px);
}
.product-body { display: flex; flex: 1; flex-direction: column; padding: 18px; }
.product-topline { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.product-title { margin-bottom: 6px; font-family: Georgia, serif; font-size: 21px; }
.product-weight { flex: 0 0 auto; padding: 5px 8px; border-radius: 8px; background: var(--cream); color: var(--muted); font-size: 11px; font-weight: 800; }
.product-desc { min-height: 42px; margin-bottom: 16px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.product-footer { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: auto; }
.price { display: grid; gap: 1px; color: var(--green-950); font-weight: 900; }
.price small { color: var(--muted); font-weight: 600; font-size: 10px; }
.add-button { min-width: 96px; min-height: 42px; border: 0; border-radius: 999px; color: white; background: var(--green-800); font-weight: 900; }
.empty-results { grid-column: 1 / -1; padding: 50px; border: 1px dashed #bfcbbf; border-radius: 20px; text-align: center; color: var(--muted); }

.subscription-section { padding-block: 18px 100px; }
.subscription-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; padding: 58px; border-radius: 34px; color: #fff; background: radial-gradient(circle at 90% 10%, rgba(184,215,95,.22), transparent 32%), linear-gradient(135deg, var(--green-950), var(--green-800)); box-shadow: 0 24px 55px rgba(12,44,32,.18); }
.subscription-copy h2 { color: white; }
.subscription-copy p { max-width: 520px; color: #d4e2d7; line-height: 1.7; }
.subscription-copy ul { display: grid; gap: 12px; padding-left: 18px; color: #ecf5ed; }
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.plan-card { position: relative; display: flex; flex-direction: column; min-height: 340px; padding: 28px; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; background: rgba(255,255,255,.1); backdrop-filter: blur(8px); }
.plan-card.featured { background: rgba(255,255,255,.17); }
.plan-card > span { color: #dcebd4; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 900; }
.plan-card h3 { margin: 12px 0 10px; color: white; font-family: Georgia, serif; font-size: 27px; }
.plan-card p { color: #dbe7dd; line-height: 1.55; }
.plan-card strong { display: block; margin-top: auto; margin-bottom: 18px; font-size: 28px; }
.plan-card strong small { font-size: 12px; color: #dbe7dd; }
.popular { position: absolute; top: 16px; right: 16px; padding: 6px 9px; border-radius: 999px; color: var(--green-950); background: var(--lime); font-size: 10px; font-weight: 900; text-transform: uppercase; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.steps-grid article { position: relative; min-height: 260px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.steps-grid article > span { position: absolute; top: 18px; right: 18px; color: #c8d0c9; font-size: 12px; font-weight: 900; }
.food-icon { display: grid; place-items: center; width: 70px; height: 70px; margin-bottom: 28px; border-radius: 20px; background: var(--cream-deep); font-size: 34px; }
.steps-grid h3 { margin-bottom: 8px; }
.steps-grid p { color: var(--muted); line-height: 1.6; }

.story-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.story-visual { padding: 38px; border-radius: 32px; background: linear-gradient(145deg, #eff4df, #d8e2bd); }
.story-visual img { width: 100%; border-radius: 50%; border: 10px solid rgba(255,255,255,.72); box-shadow: 0 20px 50px rgba(12,44,32,.14); }
.story-copy > p { max-width: 660px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.story-points { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; }
.story-points div { display: grid; gap: 7px; padding: 19px; border-radius: 17px; background: #fff; border: 1px solid var(--line); }
.story-points span { color: var(--muted); font-size: 13px; line-height: 1.5; }

.business-section { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-bottom: 100px; padding: 45px 50px; border-radius: 28px; color: white; background: var(--green-800); }
.business-section h2 { max-width: 760px; color: white; font-size: clamp(32px, 4vw, 48px); }
.business-section p { margin-bottom: 0; color: #dbe9dd; }
.business-section .button { flex: 0 0 auto; }

footer { padding-top: 62px; color: #d9e6dc; background: var(--green-950); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1fr; gap: 42px; padding-bottom: 50px; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { width: 70px; height: 70px; object-fit: cover; border-radius: 50%; }
.footer-brand div { display: grid; gap: 5px; }
.footer-brand strong { font-family: Georgia, serif; font-size: 24px; color: #fff; }
.footer-brand span { color: #a8bbad; font-size: 13px; }
footer h3 { margin-bottom: 17px; color: white; font-size: 14px; }
footer a, footer p { display: block; margin: 0 0 11px; color: #a8bbad; font-size: 13px; line-height: 1.55; }
footer a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.11); color: #8da192; font-size: 12px; }

.overlay { position: fixed; inset: 0; z-index: 70; opacity: 0; visibility: hidden; background: rgba(6,20,14,.58); backdrop-filter: blur(3px); transition: .25s; }
.overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; z-index: 80; top: 0; right: 0; bottom: 0; width: min(440px, 100%); display: flex; flex-direction: column; transform: translateX(100%); background: #fff; box-shadow: -20px 0 60px rgba(6,20,14,.18); transition: transform .32s ease; }
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: start; padding: 24px; border-bottom: 1px solid var(--line); }
.cart-header h2 { margin: 0; font-size: 36px; }
.close-button { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--green-950); background: #fff; font-size: 26px; }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 22px; }
.cart-item { display: grid; grid-template-columns: 68px 1fr auto; gap: 13px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item-visual { display: grid; place-items: center; width: 68px; height: 68px; border-radius: 15px; background: #edf4dc; font-size: 31px; }
.cart-item-info { display: grid; gap: 5px; }
.cart-item-info strong { color: var(--green-950); }
.cart-item-info small { color: var(--muted); }
.qty-control { display: inline-flex; align-items: center; width: fit-content; overflow: hidden; border: 1px solid var(--line); border-radius: 999px; }
.qty-control button { width: 30px; height: 28px; border: 0; background: #fff; color: var(--green-950); font-weight: 900; }
.qty-control span { min-width: 28px; text-align: center; font-size: 12px; font-weight: 800; }
.cart-item-price { display: grid; justify-items: end; gap: 10px; font-size: 13px; }
.remove-item { padding: 0; border: 0; background: transparent; color: #9a5c50; font-size: 11px; }
.cart-empty { flex: 1; display: grid; place-content: center; justify-items: center; padding: 30px; text-align: center; }
.cart-empty div { font-size: 45px; }
.cart-empty h3 { margin: 10px 0 7px; }
.cart-empty p { color: var(--muted); }
.cart-footer { padding: 20px 22px 24px; border-top: 1px solid var(--line); background: #fff; }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 8px; }
.cart-total strong { color: var(--green-950); font-size: 22px; }
.cart-footer > small { display: block; margin-bottom: 16px; color: var(--muted); line-height: 1.45; }

.modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; background: rgba(6,20,14,.64); backdrop-filter: blur(4px); transition: .22s; }
.modal.open { opacity: 1; visibility: visible; }
.modal-card { position: relative; width: min(680px, 100%); max-height: 92vh; overflow-y: auto; padding: 34px; border-radius: 26px; background: #fff; box-shadow: 0 30px 80px rgba(6,20,14,.3); }
.modal-card .close-button { position: absolute; top: 20px; right: 20px; }
.modal-card h2 { font-size: 44px; }
.modal-intro { color: var(--muted); line-height: 1.6; }
form { display: grid; gap: 15px; margin-top: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
form label { display: grid; gap: 7px; color: var(--green-950); font-size: 12px; font-weight: 900; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 13px 14px; outline: none; background: #fff; color: var(--ink); }
input:focus, select:focus, textarea:focus { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(95,156,69,.12); }
.owner-note { margin: 15px 0 0; color: #926f2a; font-size: 11px; line-height: 1.5; }
.owner-note code { padding: 2px 5px; border-radius: 4px; background: var(--cream-deep); }
.toast { position: fixed; z-index: 100; left: 50%; bottom: 28px; transform: translate(-50%, 30px); opacity: 0; min-width: 230px; padding: 13px 18px; border-radius: 999px; color: white; background: var(--green-950); box-shadow: var(--shadow); text-align: center; font-size: 13px; font-weight: 800; transition: .25s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-button { display: block; }
  .hero { grid-template-columns: 1fr; gap: 15px; padding-top: 58px; }
  .hero-copy { max-width: 800px; }
  .hero-visual { min-height: 520px; }
  .benefit-strip { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .subscription-panel { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .story-section { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 720px) {
  .section-shell { width: min(100% - 28px, 1180px); }
  .announcement { justify-content: space-between; gap: 10px; font-size: 11px; }
  .site-header { min-height: 72px; padding-inline: 14px; }
  .brand img { width: 46px; height: 46px; }
  .brand strong { font-size: 19px; }
  .brand small { display: none; }
  .search-trigger, .cart-button > span:nth-child(2) { display: none; }
  .cart-button { padding: 0 10px; }
  .mobile-nav { top: 118px; left: 14px; right: 14px; }
  .hero { min-height: auto; padding-block: 50px 60px; }
  h1 { font-size: clamp(45px, 14vw, 65px); }
  .hero-copy > p { font-size: 16px; }
  .hero-cta .button { width: 100%; }
  .trust-row { display: grid; gap: 10px; }
  .hero-visual { min-height: 410px; }
  .hero-card { width: min(340px, 84vw); padding: 14px; border-radius: 25px; }
  .microgreen-bowl { height: 250px; }
  .sprout-field { height: 165px; bottom: 66px; }
  .card-top { top: 24px; right: -2px; }
  .card-bottom { bottom: 25px; left: -4px; }
  .benefit-strip { grid-template-columns: 1fr 1fr; }
  .benefit-strip div { padding: 20px 12px; }
  .shop-section, .steps-section, .story-section { padding-block: 72px; }
  .section-heading { display: grid; align-items: stretch; }
  .search-box { min-width: 0; width: 100%; }
  .category-chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
  .chip { white-space: nowrap; }
  .product-grid { grid-template-columns: 1fr; }
  .product-image { height: 260px; }
  .subscription-section { padding-bottom: 72px; }
  .subscription-panel { gap: 36px; padding: 34px 22px; border-radius: 25px; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 300px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { min-height: auto; }
  .story-section { grid-template-columns: 1fr; }
  .story-visual { padding: 25px; }
  .story-points { grid-template-columns: 1fr; }
  .business-section { display: grid; padding: 34px 24px; margin-bottom: 70px; }
  .business-section .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .modal-card { padding: 30px 20px 22px; }
  .modal-card h2 { font-size: 38px; }
}
