:root {
  --white: #ffffff;
  --black: #080808;
  --ink: #131313;
  --muted: #555555;
  --line: #e6e6e6;
  --accent: #2c8b57;
  --accent-soft: #ebf7ef;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
  color: var(--black);
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 0.98;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  text-transform: uppercase;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 4.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: 215px;
  max-width: 52vw;
  height: auto;
  display: block;
  position: relative;
  top: 4px;
}

.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.4rem;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 0.5rem;
  padding: 0.45rem;
}

.menu-toggle span {
  display: block;
  width: 1.45rem;
  height: 2px;
  background: var(--black);
  margin: 0.23rem 0;
}

.hero {
  padding: 6rem 0 4.2rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 24px auto auto 56%;
  width: min(58vw, 760px);
  height: 460px;
  background-image:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.58) 42%, rgba(255, 255, 255, 0.88) 100%),
    url("images/microgreens-sign.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 1.1rem;
  opacity: 0.41;
  filter: saturate(0.65) contrast(1.08);
  z-index: -2;
  animation: heroFadeIn 1.1s ease-out both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.94) 74%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.2rem;
  align-items: stretch;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 0.41;
    transform: translateY(0);
  }
}

.kicker {
  display: inline-block;
  padding: 0.3rem 0.55rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.intro {
  max-width: 55ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.hero .kicker {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.hero-card {
  border: 2px solid var(--black);
  border-radius: 1rem;
  padding: 1.2rem;
  background: linear-gradient(145deg, #fff, #f7f7f7);
}

.hero-card h2 {
  font-size: clamp(0.95rem, 2.15vw, 1.4rem);
  line-height: 1.1;
  white-space: nowrap;
  margin-bottom: 0.85rem;
}

.hero-photo {
  margin: 0 0 0.9rem;
  border-radius: 0.8rem;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.hero-card ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--ink);
  column-count: 2;
  column-gap: 1.6rem;
}

.hero-card ul li {
  break-inside: avoid;
}

.section {
  padding: 4.6rem 0;
}

#faq.section {
  padding-bottom: 2rem;
}

#contact.section {
  padding-top: 2rem;
}

.tone {
  background: linear-gradient(180deg, var(--accent-soft), #fff);
  border-top: 1px solid #d7ecd8;
  border-bottom: 1px solid #d7ecd8;
}

.micro-why {
  background: linear-gradient(180deg, #f5fbf7 0%, #ffffff 82%);
  border-top: 1px solid #deede2;
  border-bottom: 1px solid #deede2;
}

.micro-why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.micro-why-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  margin-bottom: 0.75rem;
}

.micro-why-copy .intro {
  max-width: 58ch;
}

.micro-why-stats {
  margin-top: 0.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.micro-why-stats span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
  border-radius: 0.62rem;
  padding: 0.78rem 0.72rem 0.8rem;
  font-size: 1.45rem;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  min-height: 112px;
}

.micro-why-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.micro-why-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.15rem 0 0.45rem;
  border-bottom: 1px solid #d8e8dc;
}

.micro-why-list li:last-child {
  border-bottom: 0;
}

.micro-why-list span {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  color: #2c8b57;
  min-width: 1.8rem;
}

.micro-why-list p {
  margin: 0;
  color: #232323;
}

.micro-why-photo {
  margin: 0;
  grid-column: 1 / -1;
  border-radius: 0.95rem;
  overflow: hidden;
  border: 1px solid #d8e8dc;
}

.micro-why-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1020px) {
  .micro-why-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .micro-why-stats {
    grid-template-columns: 1fr;
  }

  .micro-why-photo img {
    height: 220px;
  }
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--white);
  padding: 1rem;
}

.media-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 1rem;
}

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

.photo-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  overflow: hidden;
  background: #f7f7f7;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
}

.photo-card.wide img {
  min-height: 320px;
}

.inline-photo {
  margin: 1rem 0 0;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid var(--line);
}

.inline-photo img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.steps {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.steps li {
  margin: 0.4rem 0;
  color: var(--ink);
}

.market-snapshot {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: #fff;
  padding: 0.7rem;
}

.story-origin {
  padding-top: 0;
}

.story-origin-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: 1.25rem;
  align-items: stretch;
}

.story-origin-intro,
.story-origin-copy {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.4rem;
}

.story-origin-intro {
  background: linear-gradient(180deg, #f4fbf2 0%, #ffffff 100%);
}

.story-origin-intro h2 {
  margin-bottom: 0.8rem;
}

.story-origin-intro > p {
  margin-bottom: 1.15rem;
}

.story-origin-dates {
  display: grid;
  gap: 0.8rem;
}

.story-origin-dates div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(41, 78, 42, 0.14);
}

.story-origin-dates span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.2rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-origin-dates p,
.story-origin-copy p {
  margin: 0;
}

.story-origin-copy {
  background: #fff;
  display: grid;
  gap: 1rem;
}

.story-origin-close {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
}

.snapshot-photo {
  margin: 0 0 0.65rem;
  border-radius: 0.7rem;
  overflow: hidden;
}

.snapshot-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.market-snapshot h3 {
  margin-bottom: 0.4rem;
}

.market-snapshot ul {
  margin: 0;
  padding-left: 1.05rem;
}

.market-snapshot li {
  margin: 0.35rem 0;
  color: var(--ink);
}

.small {
  font-size: 0.95rem;
}

.form {
  display: grid;
  gap: 0.5rem;
}

.form label {
  font-weight: 700;
  font-size: 0.87rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form input,
.form textarea {
  font: inherit;
  border: 1px solid #cfcfcf;
  border-radius: 0.55rem;
  padding: 0.65rem 0.7rem;
}

.form .qty-title {
  margin: 0.35rem 0 0.2rem;
  font-weight: 700;
  color: var(--ink);
}

.qty-grid {
  display: grid;
  grid-template-columns: 1fr 100px;
  gap: 0.45rem 0.6rem;
  align-items: center;
}

.qty-grid label {
  margin: 0;
  text-transform: none;
  font-size: 0.95rem;
  letter-spacing: 0;
}

.qty-input {
  text-align: center;
}

.checkline {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
}

.checkline input {
  margin-top: 0.2rem;
}

.form-feedback {
  margin: 0;
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: #b00020;
}

.date-help {
  margin: -0.1rem 0 0.3rem;
  font-size: 0.82rem;
  color: #5e5e5e;
}

.market-calendar {
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 0.75rem;
  background: #fff;
}

.calendar-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
}

.calendar-head p {
  margin: 0;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
}

.cal-nav {
  border: 1px solid #bfbfbf;
  background: #fff;
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.cal-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.calendar-weekdays {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.3rem;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b6b6b;
  text-transform: uppercase;
}

.calendar-grid {
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.3rem;
}

.cal-day {
  min-height: 2rem;
  border-radius: 0.45rem;
  border: 1px solid #d4d4d4;
  background: #f7f7f7;
  color: #7b7b7b;
  font: inherit;
  font-size: 0.85rem;
}

.cal-day.open {
  background: #f3fbf7;
  border-color: #8cc9a9;
  color: #0f5132;
  cursor: pointer;
}

.cal-day.open:hover,
.cal-day.open:focus-visible {
  background: #e5f6ec;
}

.cal-day.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 700;
}

.cal-day.empty {
  border: 1px dashed #ececec;
  background: #fff;
}

.calendar-legend {
  margin: 0.45rem 0 0;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: #5e5e5e;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.legend-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  display: inline-block;
}

.legend-open {
  background: #cbeedc;
  border: 1px solid #7cbf9b;
}

.legend-closed {
  background: #f0f0f0;
  border: 1px solid #d4d4d4;
}

.selected-date {
  margin: 0.45rem 0 0;
  font-size: 0.84rem;
  color: #1f1f1f;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 0.45rem;
  max-width: 1120px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: #fff;
  padding: 0.58rem 0.7rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  font-size: 0.98rem;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

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

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

.form input:focus,
.form textarea:focus {
  outline: 2px solid rgba(44, 139, 87, 0.25);
  border-color: var(--accent);
}

.social-links {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-block;
  border: 1px solid var(--black);
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.68rem 1rem;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.site-footer {
  background: #0d1210;
  color: rgba(255, 255, 255, 0.75);
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.2rem;
  padding: 3.6rem 0 2.4rem;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-meta-link {
  margin: 0 0 0.6rem;
}

.footer-meta-link a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.footer-meta-link a:hover {
  color: var(--accent);
}

.footer-logo {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin: 0 0 1rem;
}

.footer-contact {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 1rem;
  line-height: 1.7;
}

.footer-contact a {
  color: var(--accent);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-legal-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.footer-legal-links a:hover {
  color: var(--accent);
}

.footer-col-head {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.38);
  margin: 0 0 0.7rem;
}

.footer-dropdown {
  margin: 0;
}

.footer-dropdown > summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 1.2rem;
}

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

.footer-dropdown > summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-dropdown[open] > summary::after {
  content: "-";
}

.footer-dropdown .footer-links {
  margin-top: 0.35rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  line-height: 1.42;
  display: inline-block;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 3.4rem;
}

.footer-bottom-wrap p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-wrap a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-bottom-wrap a:hover {
  color: var(--accent);
}

/* keep old .footer-wrap for any legacy use */
.footer-wrap {
  min-height: 4.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-wrap p {
  margin: 0;
}

/* ── Follow section ─────────────────────────────────────────────────────── */

.follow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.follow-header h2 {
  margin: 0;
}

.follow-header .intro {
  max-width: 72ch;
  margin: 0.5rem auto 0;
}

.follow-body {
  display: grid;
  gap: 0.9rem;
  align-items: start;
}

.follow-gallery-head {
  display: flex;
  justify-content: center;
}

.follow-gallery-head .intro {
  margin: 0;
  text-align: center;
  max-width: 72ch;
}

.follow-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.follow-gallery .photo-card img {
  height: 250px;
  min-height: 250px;
  object-fit: cover;
  object-position: center;
}

.follow-gallery .photo-card img.focus-face-high {
  object-position: center 22%;
}

.follow-gallery .photo-card img.focus-face-mid {
  object-position: center 34%;
}

/* ── Guide section ───────────────────────────────────────────────────────── */

.guide-section {
  background: #0a1f14;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.guide-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/microgreens-dew.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
}

.guide-section h2,
.guide-section h3 {
  color: #fff;
}

.guide-section p {
  color: rgba(255, 255, 255, 0.7);
}

.guide-section .kicker {
  border-color: var(--accent);
  color: var(--accent);
}

.guide-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.8rem;
}

.guide-header h2 {
  white-space: nowrap;
}

.guide-header .intro {
  max-width: 52ch;
  margin: 0.5rem auto 0;
}

.guide-offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.guide-offer {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  padding: 1.6rem;
}

.guide-offer-paid {
  background: rgba(201, 220, 176, 0.09);
}

.guide-offer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr) minmax(240px, 300px);
  gap: 1.5rem;
  align-items: start;
}

.guide-book-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.guide-contents {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-contents li {
  padding: 0.4rem 0 0.4rem 1.2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  line-height: 1.35;
}

.guide-contents li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.guide-book {
  background: linear-gradient(145deg, #1e5c36, #2c8b57);
  border-radius: 0.9rem;
  padding: 1.8rem 1.6rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 280px;
  box-shadow: 8px 12px 40px rgba(0, 0, 0, 0.55);
}

.guide-book-paid {
  background: linear-gradient(145deg, #b9862e, #d9b25b);
}

.guide-book::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.025) 0px,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 8px
  );
  pointer-events: none;
}

.book-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.book-title {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 0.95;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1.4rem;
}

.book-subtitle {
  margin: -0.4rem 0 1rem;
  max-width: 15ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.book-brand {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.book-lines {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.book-lines span {
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.book-lines span:nth-child(1) { width: 100%; }
.book-lines span:nth-child(2) { width: 72%; }
.book-lines span:nth-child(3) { width: 48%; }

.guide-summary {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}

.guide-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.guide-price {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(201, 220, 176, 0.18);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.guide-signup-card {
  padding: 1.25rem;
  max-width: 300px;
  color: var(--ink);
  width: 100%;
  justify-self: end;
}

.guide-signup-card h3,
.guide-signup-card p,
.guide-signup-card label {
  color: var(--ink);
}

.guide-signup-card h3 {
  margin-bottom: 0.4rem;
}

.guide-signup-card p {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.guide-signup-card .kicker {
  padding: 0.4rem 1.1rem;
  font-size: 0.92rem;
}

.guide-signup-card .form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.guide-signup-card .form label {
  width: 100%;
  margin-bottom: 0;
}

.guide-signup-card #guide-email {
  width: 100%;
  max-width: 100%;
}

.guide-signup-card .btn-accent,
.guide-signup-card .btn-dark {
  width: auto;
  min-width: 180px;
  min-height: 2.85rem;
  font-size: 0.93rem;
}

.btn-guide-soon {
  background: #d9b25b;
  color: #2f2413;
  border: 1px solid #d9b25b;
}

.guide-note {
  font-size: 0.8rem;
  color: var(--muted) !important;
  margin: 0.5rem 0 0;
  text-align: center;
}

.btn-disabled,
.btn[aria-disabled="true"] {
  opacity: 0.65;
  pointer-events: none;
}

/* ── Consult section ─────────────────────────────────────────────────────── */

.consult-section {
  background: #f4efe9;
  border-top: 1px solid #e8dfd4;
  border-bottom: 1px solid #e8dfd4;
}

.consult-photo {
  margin: 1.4rem 0 0;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid #e0d7ce;
}

.consult-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Nav preorder button ───────────────────────────────────────────────── */

.main-nav .btn-nav {
  background: var(--accent);
  color: var(--white);
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav .btn-nav:hover,
.main-nav .btn-nav:focus-visible {
  background: #237548;
  color: var(--white);
  filter: none;
}

/* ── Preorder page hero ─────────────────────────────────────────────────── */

.page-hero {
  padding: 5.2rem 0 3.6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.96) 100%),
    url("images/microgreens-dew.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  filter: saturate(0.6);
  z-index: -1;
}

.page-hero .kicker {
  margin-bottom: 0.85rem;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.page-hero .intro {
  max-width: 54ch;
  margin: 0.65rem auto 0;
}

.page-hero .hero-actions {
  justify-content: center;
}

.guide-download-hero {
  padding: 5.6rem 0 3rem;
}

.guide-download-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 380px);
  gap: 1.4rem;
  align-items: center;
}

.guide-download-copy {
  text-align: left;
}

.guide-download-copy .intro {
  margin: 0.8rem 0 0;
}

.guide-download-copy .hero-actions {
  justify-content: flex-start;
}

.guide-download-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: #6a6a6a;
}

.guide-download-card {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #d9dfd8;
  box-shadow: 0 18px 45px rgba(18, 36, 24, 0.08);
}

.guide-book-download {
  max-width: 100%;
  margin: 0 auto;
}

.guide-download-meta {
  border-top: 1px solid #e7ece6;
  padding-top: 0.95rem;
}

.guide-download-meta .kicker {
  margin-bottom: 0.55rem;
}

.guide-download-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink);
}

.guide-download-list li {
  margin: 0.25rem 0;
}

.guide-next-section {
  padding-top: 0;
}

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

.guide-next-grid .path-card {
  min-height: 100%;
  padding: 1.4rem;
}

/* ── Path cards ─────────────────────────────────────────────────────────── */

.path-section {
  padding: 0 0 3.2rem;
}

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

.path-card {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.path-card .kicker {
  margin-bottom: 0;
}

.path-card p {
  flex: 1;
  margin: 0;
}

.path-card .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.accent-border {
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* ── Restaurant section ─────────────────────────────────────────────────── */

.restaurant-dark {
  background: #0d1210;
  color: #fff;
}

.restaurant-dark h2,
.restaurant-dark h3 {
  color: #fff;
}

.restaurant-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.restaurant-dark .kicker {
  border-color: var(--accent);
  color: var(--accent);
}

.restaurant-dark ul {
  color: rgba(255, 255, 255, 0.82);
  padding-left: 1.1rem;
  margin: 0.5rem 0 1rem;
}

.restaurant-dark ul li {
  margin: 0.4rem 0;
}

/* Keep form card readable on the dark background */
.restaurant-dark .card {
  background: var(--white);
}

.restaurant-dark .card h3,
.restaurant-dark .card label,
.restaurant-dark .card .form-section-head,
.restaurant-dark .card .qty-title {
  color: var(--black);
}

.restaurant-dark .card p {
  color: var(--muted);
}

.restaurant-dark .card .minimum-note {
  color: var(--accent);
}

.restaurant-feature {
  margin: 1.4rem 0 0;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.restaurant-feature img {
  width: 100%;
  height: auto;
  display: block;
}

.dishes-row {
  margin-top: 1rem;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dishes-row img {
  width: 100%;
  height: auto;
  display: block;
}

.restaurant-divider {
  margin: 1.4rem 0 0.5rem;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.consult-callout {
  background: rgba(44, 139, 87, 0.15);
  border: 1px solid rgba(44, 139, 87, 0.35);
  border-radius: 0.8rem;
  padding: 1rem 1.1rem;
  margin-bottom: 1.2rem;
}

.consult-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
}

.consult-callout strong {
  color: #7fd4a4;
}

/* ── Shared form extras ──────────────────────────────────────────────────── */

.form-section-head {
  margin: 1rem 0 0.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
  color: var(--black);
}

.form-section-head:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.form-row > div {
  display: grid;
  gap: 0.3rem;
}

.address-feedback {
  margin: -0.2rem 0 0.2rem;
  min-height: 1.2rem;
  font-size: 0.85rem;
}

.address-feedback.ok {
  color: var(--accent);
}

.address-feedback.err {
  color: #b00020;
}

.delivery-options {
  display: grid;
  gap: 0.5rem;
}

.delivery-options .checkline {
  border: 1px solid #cfcfcf;
  border-radius: 0.55rem;
  padding: 0.65rem 0.75rem;
  cursor: pointer;
}

.delivery-options .checkline:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.minimum-note {
  margin: 0.15rem 0 0.5rem;
  font-size: 0.84rem;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 920px) {
  .hero-grid,
  .card-grid.three,
  .split,
  .gallery-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .photo-card.wide img,
  .photo-card img,
  .inline-photo img {
    min-height: 210px;
    height: 210px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 4.3rem;
    right: 4vw;
    width: min(300px, 92vw);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    padding: 0.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 0.55rem;
  }

  .card-grid.two,
  .form-row,
  .follow-body,
  .story-origin-grid {
    grid-template-columns: 1fr;
  }

  .follow-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 1.4rem;
  }

  .story-origin-dates div {
    grid-template-columns: 1fr;
    justify-items: start;
  }

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

  .guide-download-stage,
  .guide-next-grid {
    grid-template-columns: 1fr;
  }

  .guide-download-copy {
    text-align: center;
  }

  .guide-download-copy .hero-actions {
    justify-content: center;
  }

  .guide-offers {
    grid-template-columns: 1fr;
  }

  .guide-offer-grid {
    grid-template-columns: 1fr;
  }

  .guide-book {
    max-width: 100%;
  }

  .guide-price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .guide-signup-card {
    max-width: 100%;
    justify-self: stretch;
  }

  .photo-card.wide img,
  .photo-card img,
  .inline-photo img {
    min-height: 210px;
    height: 210px;
  }

  .hero {
    padding-top: 4.8rem;
  }

  .hero::before {
    width: 88vw;
    height: 280px;
    inset: 24px auto auto 18%;
    opacity: 0.26;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.4rem 0 1.6rem;
  }
}
