:root {
  --leaf: #33a853;
  --leaf-dark: #062714;
  --emerald: #0d3b22;
  --emerald-soft: #174d2e;
  --mint: #def7d5;
  --sprout: #a7e65a;
  --gold: #d9a441;
  --gold-light: #f7d884;
  --gold-dark: #936b1e;
  --radish: #c93f67;
  --pea: #74bd45;
  --ink: #10170f;
  --muted: #64705e;
  --cream: #fff8e8;
  --cream-deep: #f2e2bd;
  --paper: #ffffff;
  --line: #e6d4a3;
  --shadow: 0 20px 60px rgba(6, 39, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(6, 39, 20, 0.04), transparent 320px),
    var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(6, 39, 20, 0.94);
  border-bottom: 1px solid rgba(217, 164, 65, 0.38);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 5px 14px rgba(12, 37, 21, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--gold-light);
}

.brand small {
  color: #f2e2bd;
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #fff3cf;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--leaf-dark);
  background: var(--gold-light);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(217, 164, 65, 0.62);
  border-radius: 8px;
  background: rgba(255, 248, 232, 0.08);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gold-light);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  min-height: min(780px, calc(100vh - 78px));
  padding: clamp(34px, 5vw, 70px) clamp(18px, 4vw, 58px);
  background:
    radial-gradient(circle at 16% 16%, rgba(217, 164, 65, 0.42), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(51, 168, 83, 0.18), transparent 30%),
    linear-gradient(135deg, #fff8e8 0%, #f6edcf 48%, #e8d197 100%);
}

.hero-media {
  min-height: clamp(360px, 42vw, 560px);
  overflow: hidden;
  border: 10px solid rgba(247, 216, 132, 0.62);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.05), transparent),
    #1f5f34;
  box-shadow: var(--shadow);
}

.brand-showcase {
  display: grid;
  place-items: center;
  padding: clamp(10px, 1.8vw, 22px);
  background:
    radial-gradient(circle at 35% 18%, rgba(247, 216, 132, 0.26), transparent 30%),
    linear-gradient(135deg, #03150c, #12341e 54%, #061f12);
}

.brand-showcase img {
  display: block;
  width: min(100%, 1120px);
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

.microgreen-bed {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  height: 100%;
  min-height: 460px;
  padding: 32px;
  background:
    linear-gradient(0deg, rgba(31, 95, 52, 0.35), rgba(31, 95, 52, 0.05)),
    repeating-linear-gradient(90deg, #543622 0 18px, #614025 18px 36px);
}

.microgreen-bed span {
  display: block;
  min-height: 86px;
  border-radius: 60% 40% 70% 30% / 60% 50% 50% 40%;
  background:
    radial-gradient(circle at 35% 32%, #f2ffe8 0 8%, transparent 9%),
    linear-gradient(135deg, #b8ec55, #287d42 56%, #15572e);
  transform: rotate(var(--turn, -8deg));
  filter: drop-shadow(0 14px 12px rgba(11, 47, 23, 0.35));
}

.microgreen-bed span:nth-child(2n) { --turn: 12deg; background: linear-gradient(135deg, #fff06b, #58a63c 58%, #266334); }
.microgreen-bed span:nth-child(3n) { --turn: -16deg; background: linear-gradient(135deg, #ffd1dc, #d83f6f 42%, #325f37 77%); }
.microgreen-bed span:nth-child(5n) { --turn: 6deg; background: linear-gradient(135deg, #d7ffc4, #6aa84f 55%, #174f2d); }

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 4.8vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-content p {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
  color: var(--leaf-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 26px rgba(147, 107, 30, 0.22);
}

.button.secondary {
  color: var(--leaf-dark);
  background: rgba(255, 248, 232, 0.55);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 76px);
}

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

.section-heading > p:not(.eyebrow),
.section-copy > p:not(.eyebrow),
.intro-text p,
.contact-section p {
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-band,
.markets,
.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro-band {
  background: #fffdf6;
  border-top: 1px solid rgba(217, 164, 65, 0.3);
  border-bottom: 1px solid rgba(217, 164, 65, 0.3);
}

.intro-text {
  display: grid;
  gap: 16px;
}

.benefit-grid,
.product-grid,
.idea-list {
  display: grid;
  gap: 18px;
}

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

.benefit-grid article,
.idea-list div,
.contact-card,
.market-panel,
.harvest-grid article,
.order-steps article,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fffaf0);
  box-shadow: 0 12px 38px rgba(6, 39, 20, 0.1);
}

.benefit-grid article,
.product-card,
.idea-list div,
.harvest-grid article,
.order-steps article,
.faq-grid article,
.market-panel {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.benefit-grid article:hover,
.product-card:hover,
.idea-list div:hover,
.harvest-grid article:hover,
.order-steps article:hover,
.faq-grid article:hover,
.market-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 164, 65, 0.72);
  box-shadow: 0 18px 48px rgba(6, 39, 20, 0.16);
}

.benefit-grid article,
.idea-list div {
  padding: 24px;
}

.idea-list div {
  overflow: hidden;
  padding: 0;
}

.idea-list h3,
.idea-list p {
  margin-right: 22px;
  margin-left: 22px;
}

.idea-list h3 {
  margin-top: 20px;
}

.idea-list p {
  margin-bottom: 22px;
}

.meal-photo {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(217, 164, 65, 0.34);
}

.benefit-grid p,
.idea-list p,
.market-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--leaf-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--sprout));
  font-weight: 800;
}

.harvest-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(167, 230, 90, 0.18), transparent 26%),
    linear-gradient(180deg, #fffdf6, #fff8e8);
}

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

.harvest-grid article {
  padding: 22px;
}

.status {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status.available {
  background: linear-gradient(135deg, var(--mint), var(--sprout));
}

.status.limited {
  background: linear-gradient(135deg, #fff2bf, var(--gold-light));
}

.status.growing {
  background: linear-gradient(135deg, #f4d8e1, #d68aa0);
}

.harvest-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-section {
  background:
    radial-gradient(circle at 92% 10%, rgba(247, 216, 132, 0.25), transparent 25%),
    linear-gradient(180deg, #0d3b22 0%, #062714 100%);
  color: #fff8e8;
}

.product-section .eyebrow {
  color: var(--gold-light);
}

.product-section .section-heading > p:not(.eyebrow) {
  color: #e9dfc7;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(247, 216, 132, 0.38);
  border-radius: 8px;
  background: #fffaf0;
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.product-photo {
  display: block;
  width: 100%;
  height: 230px;
  min-height: 170px;
  object-fit: cover;
  object-position: center;
}

.pea .product-photo,
.sunflower .product-photo {
  object-position: center bottom;
}

.product-body {
  padding: 20px;
}

.product-body p {
  margin-bottom: 12px;
  color: var(--muted);
}

.product-body span {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.flavor-list {
  display: grid;
  gap: 4px;
  margin: 0 0 14px;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  list-style: none;
}

.flavor-list strong {
  color: var(--emerald);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(217, 164, 65, 0.42);
  border-top: 1px solid rgba(217, 164, 65, 0.44);
  border-bottom: 1px solid rgba(217, 164, 65, 0.44);
}

.trust-strip div {
  display: grid;
  gap: 4px;
  padding: 26px clamp(18px, 3vw, 34px);
  background:
    radial-gradient(circle at 92% 14%, rgba(247, 216, 132, 0.15), transparent 28%),
    var(--emerald);
  color: #fff8e8;
}

.trust-strip strong {
  color: var(--gold-light);
  font-size: 1rem;
}

.trust-strip span {
  color: #f2e2bd;
  font-size: 0.92rem;
}

.meal-section {
  background: #fffdf6;
}

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

.order-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(217, 164, 65, 0.18), transparent 26%),
    linear-gradient(135deg, #fff8e8, #fffdf6);
}

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

.order-steps article {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.order-steps article::after {
  position: absolute;
  right: -24px;
  bottom: -42px;
  color: rgba(217, 164, 65, 0.12);
  content: attr(data-step);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
}

.order-steps span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--leaf-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 900;
}

.order-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.markets {
  background:
    radial-gradient(circle at 10% 20%, rgba(51, 168, 83, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(217, 164, 65, 0.2), rgba(255, 248, 232, 0.74)),
    var(--cream);
}

.market-panel {
  padding: 28px;
}

.market-map-card {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(217, 164, 65, 0.42);
  border-radius: 8px;
  color: #fff8e8;
  background:
    linear-gradient(90deg, rgba(247, 216, 132, 0.25) 0 2px, transparent 2px 33%),
    radial-gradient(circle at 20% 50%, rgba(167, 230, 90, 0.22), transparent 22%),
    linear-gradient(135deg, #03150c, #0d3b22);
}

.market-map-card span {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.market-map-card strong {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1;
}

.market-map-card small {
  color: #f2e2bd;
  font-weight: 800;
}

.market-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.date-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  color: var(--leaf-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 800;
}

.availability {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.market-details {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.market-details div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(217, 164, 65, 0.34);
  border-radius: 8px;
  background: #fffdf6;
}

.market-details strong {
  color: var(--leaf-dark);
}

.market-details span {
  color: var(--muted);
}

.availability strong {
  width: 100%;
}

.availability span {
  padding: 7px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), #fff2bf);
  color: var(--leaf-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.faq-section {
  background:
    radial-gradient(circle at 85% 12%, rgba(217, 164, 65, 0.16), transparent 24%),
    #fffdf6;
}

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

.faq-grid article {
  padding: 24px;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  background:
    radial-gradient(circle at 78% 20%, rgba(217, 164, 65, 0.16), transparent 28%),
    linear-gradient(135deg, #03150c, var(--leaf-dark) 56%, #0f3d24);
  color: white;
}

.contact-section .eyebrow,
.contact-section p {
  color: #f2e2bd;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  color: var(--ink);
}

.contact-card a {
  color: var(--emerald);
  font-size: 1.2rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card strong {
  display: block;
  color: var(--gold-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-form-link {
  width: fit-content;
  margin-top: 4px;
}

.contact-card .contact-form-link {
  color: var(--leaf-dark);
  font-size: 1rem;
}

.contact-card small {
  color: var(--muted);
}

.message-section {
  background: #fffdf6;
}

.notify-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(167, 230, 90, 0.22), transparent 26%),
    linear-gradient(180deg, #fff8e8, #f7edcf);
  border-top: 1px solid rgba(217, 164, 65, 0.3);
}

.message-form,
.notify-form,
.feedback-form {
  display: grid;
  gap: 18px;
  max-width: 760px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(217, 164, 65, 0.42);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fff8e8);
  box-shadow: 0 18px 48px rgba(6, 39, 20, 0.12);
}

.form-row {
  display: grid;
  gap: 8px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row label {
  color: var(--emerald);
  font-weight: 800;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(147, 107, 30, 0.42);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(217, 164, 65, 0.22);
}

.form-row textarea {
  resize: vertical;
}

.message-form .button,
.notify-form .button,
.feedback-form .button {
  justify-self: start;
  cursor: pointer;
  font: inherit;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.feedback-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(167, 230, 90, 0.18), transparent 24%),
    linear-gradient(180deg, #fffdf6, #fff8e8);
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 700;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.testimonial-preview {
  padding: 28px;
  border: 1px solid rgba(217, 164, 65, 0.42);
  border-radius: 8px;
  color: #fff8e8;
  background:
    radial-gradient(circle at 84% 12%, rgba(247, 216, 132, 0.18), transparent 28%),
    linear-gradient(135deg, #03150c, #0d3b22);
  box-shadow: 0 18px 48px rgba(6, 39, 20, 0.14);
}

.testimonial-preview .eyebrow {
  color: var(--gold-light);
}

.testimonial-preview p:not(.eyebrow) {
  margin-bottom: 0;
  color: #f2e2bd;
}

.instagram-section {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 76px);
  color: #fff8e8;
  background:
    radial-gradient(circle at 88% 20%, rgba(247, 216, 132, 0.18), transparent 28%),
    linear-gradient(135deg, #03150c, #0d3b22 58%, #174d2e);
  border-top: 1px solid rgba(217, 164, 65, 0.32);
}

.instagram-section .eyebrow {
  color: var(--gold-light);
}

.instagram-section p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: #f2e2bd;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 18px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  color: var(--leaf-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.social-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  transform: translateY(-1px);
  outline: 3px solid rgba(247, 216, 132, 0.28);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 76px);
  color: #fff3cf;
  background: #03150c;
  border-top: 1px solid rgba(217, 164, 65, 0.32);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

.success-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 18%, rgba(247, 216, 132, 0.24), transparent 32%),
    linear-gradient(135deg, #03150c, #0d3b22 58%, #174d2e);
}

.success-shell {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 100vh;
  padding: clamp(28px, 6vw, 76px);
  color: #fff8e8;
  text-align: center;
}

.success-shell img {
  width: min(210px, 48vw);
  margin-bottom: 24px;
}

.success-shell .eyebrow {
  color: var(--gold-light);
}

.success-shell h1 {
  max-width: 760px;
}

.success-shell p:not(.eyebrow) {
  max-width: 620px;
  color: #f2e2bd;
  font-size: 1.08rem;
}

.success-shell .button {
  margin-top: 20px;
}

@media (max-width: 980px) {
  .hero,
  .intro-band,
  .markets,
  .contact-section,
  .instagram-section,
  .feedback-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 330px;
  }

  .microgreen-bed {
    min-height: 330px;
  }

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

  .benefit-grid,
  .idea-list,
  .harvest-grid,
  .trust-strip,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(217, 164, 65, 0.5);
    border-radius: 8px;
    background: var(--leaf-dark);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 8px;
  }

  .hero {
    padding-top: 34px;
  }

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

  .idea-list,
  .harvest-grid,
  .trust-strip,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand small {
    display: none;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-media,
  .microgreen-bed {
    min-height: 260px;
  }

  .microgreen-bed {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 18px;
  }

  .button {
    width: 100%;
  }
}
