:root {
  --green-950: #062f1e;
  --green-900: #0b452d;
  --green-800: #145b39;
  --green-700: #1f7247;
  --green-600: #2f8754;
  --green-300: #a9d6a7;
  --green-100: #e7f3e5;
  --cream: #fbfaf4;
  --paper: #f4f1e8;
  --white: #fffef9;
  --ink: #17251d;
  --muted: #5a675d;
  --line: #c9d6c1;
  --gold: #d6af3f;
  --lemon: #f4d85a;
  --terracotta: #b0693f;
  --shadow: 0 18px 48px rgba(12, 43, 26, .16);
  --soft-shadow: 0 10px 28px rgba(12, 43, 26, .1);
  --max: 1180px;
  --header-height: 72px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(135deg, rgba(233, 245, 226, .8), transparent 30%),
    linear-gradient(315deg, rgba(244, 216, 90, .13), transparent 38%),
    var(--cream);
}

body.no-scroll {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--white);
  background: var(--green-700);
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 8px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 254, 249, .92);
  border-bottom: 1px solid rgba(20, 91, 57, .16);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 254, 249, .97);
  box-shadow: 0 8px 24px rgba(16, 42, 27, .08);
}

.nav-shell {
  min-height: var(--header-height);
  width: min(100%, 1460px);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-900);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 1.9vw, 1.85rem);
  line-height: 1;
  white-space: nowrap;
}

.brand-mark {
  width: 46px;
  height: 36px;
  color: var(--green-700);
  stroke: currentColor;
  fill: rgba(47, 135, 84, .18);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 42px);
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  padding: 12px 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links span {
  width: 1px;
  height: 18px;
  background: var(--line);
}

.menu-toggle,
.recipe-tab {
  border: 0;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px 9px;
  background: transparent;
  border-radius: 50%;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--green-900);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: clamp(470px, 64svh, 690px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 51% 40%, rgba(2, 22, 13, .08), rgba(2, 22, 13, .47) 62%, rgba(2, 22, 13, .68)),
    linear-gradient(90deg, rgba(5, 31, 19, .28), rgba(5, 31, 19, .1), rgba(5, 31, 19, .34));
}

.hero-content {
  width: min(860px, calc(100% - 36px));
  margin-top: 12px;
  text-align: center;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .45);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--green-700);
  font-size: .76rem;
}

.hero .eyebrow {
  color: rgba(255, 254, 249, .86);
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(4rem, 11vw, 8.4rem);
  line-height: .92;
  letter-spacing: 0;
}

.leaf-divider {
  width: min(360px, 80vw);
  margin: 26px auto 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  color: var(--green-300);
}

.leaf-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor 22%, currentColor 78%, transparent);
}

.leaf-divider svg {
  width: 70px;
  height: 36px;
  fill: rgba(169, 214, 167, .38);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-copy {
  width: min(660px, 100%);
  margin: 0 auto 34px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.scroll-cue {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 254, 249, .8);
  border-radius: 50%;
  background: rgba(0, 0, 0, .05);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  transform: translateY(4px);
  background: rgba(255, 254, 249, .14);
}

.scroll-cue svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pathways {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr minmax(320px, 1.45fr);
  min-height: 270px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.path-card {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
  border-right: 1px solid var(--line);
}

.path-card::before {
  content: "";
  position: absolute;
  inset: 18px 0 auto auto;
  width: 1px;
  height: calc(100% - 36px);
  background: var(--line);
}

.path-card:last-child,
.path-card:last-child::before {
  border-right: 0;
  background: none;
}

.path-icon {
  color: var(--green-700);
}

.path-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.path-card h2,
.section-heading h2,
.feature-copy h2,
.history-copy h2,
.recipes-hero h2,
.closing-section h2 {
  margin: 10px 0 14px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.path-card h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.path-card p {
  max-width: 290px;
  margin: 0 0 16px;
  color: var(--muted);
}

.path-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-700);
  text-decoration: none;
  font-weight: 600;
}

.path-card a::after {
  content: "->";
  color: var(--gold);
}

.path-card-image {
  min-height: 270px;
  padding: 0;
  overflow: hidden;
}

.path-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.path-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 254, 249, .93), rgba(255, 254, 249, .6) 45%, rgba(255, 254, 249, .18));
}

.path-card-image-content {
  position: relative;
  z-index: 1;
  width: min(320px, 100%);
  margin-right: auto;
  padding: clamp(28px, 5vw, 54px);
}

.feature-band,
.history-section {
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(60px, 9vw, 110px) auto;
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
}

.feature-media,
.history-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--green-100);
}

.feature-media img,
.history-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.feature-copy h2,
.history-copy h2,
.recipes-hero h2,
.closing-section h2,
.section-heading h2 {
  font-size: clamp(2.25rem, 5vw, 4.1rem);
}

.feature-copy > p:not(.section-kicker),
.history-copy > p,
.recipes-hero p,
.closing-section p {
  color: var(--muted);
  font-size: 1.04rem;
}

.tip-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tip-grid article,
.note-strip article,
.flavor-grid article,
.recipe-card {
  border: 1px solid rgba(20, 91, 57, .14);
  border-radius: 8px;
  background: rgba(255, 254, 249, .78);
  box-shadow: var(--soft-shadow);
}

.tip-grid article {
  padding: 18px;
}

.tip-grid span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--terracotta);
  font-weight: 800;
  font-size: .78rem;
}

.tip-grid h3,
.note-strip h3,
.flavor-grid h3,
.recipe-card h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.15;
}

.tip-grid p,
.note-strip p,
.flavor-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.garden-notes,
.flavor-section,
.recipes-section {
  padding: clamp(58px, 9vw, 104px) clamp(18px, 4vw, 48px);
}

.garden-notes {
  background:
    linear-gradient(90deg, rgba(231, 243, 229, .82), rgba(255, 254, 249, .92)),
    var(--green-100);
  border-block: 1px solid rgba(20, 91, 57, .12);
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 30px;
}

.section-heading h2 {
  max-width: 770px;
}

.note-strip,
.flavor-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.note-strip article,
.flavor-grid article {
  padding: 22px;
}

.history-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
}

.history-image {
  order: 2;
}

.history-copy {
  order: 1;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  border-left: 1px solid var(--line);
}

.timeline li {
  position: relative;
  padding: 0 0 22px 28px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: .42em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--green-700);
}

.timeline span {
  display: block;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.timeline p {
  margin: 4px 0 0;
  color: var(--muted);
}

.flavor-section {
  background:
    linear-gradient(180deg, rgba(255, 254, 249, .78), rgba(244, 241, 232, .9)),
    var(--paper);
}

.flavor-grid article {
  min-height: 170px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(150deg, rgba(169, 214, 167, .22), transparent 52%),
    rgba(255, 254, 249, .86);
}

.flavor-grid article:nth-child(2) {
  background:
    linear-gradient(150deg, rgba(244, 216, 90, .24), transparent 52%),
    rgba(255, 254, 249, .86);
}

.flavor-grid article:nth-child(3) {
  background:
    linear-gradient(150deg, rgba(176, 105, 63, .15), transparent 52%),
    rgba(255, 254, 249, .86);
}

.flavor-grid article:nth-child(4) {
  background:
    linear-gradient(150deg, rgba(83, 50, 34, .13), transparent 52%),
    rgba(255, 254, 249, .86);
}

.recipes-section {
  width: min(1460px, 100%);
  margin: 0 auto;
}

.page-hero {
  position: relative;
  min-height: clamp(360px, 46svh, 520px);
  display: grid;
  align-items: end;
  padding: clamp(70px, 11vw, 120px) clamp(18px, 4vw, 48px) clamp(44px, 7vw, 74px);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 47, 30, .82), rgba(6, 47, 30, .42) 54%, rgba(6, 47, 30, .28)),
    linear-gradient(0deg, rgba(6, 47, 30, .48), rgba(6, 47, 30, 0) 42%);
}

.page-hero-content {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.page-hero .section-kicker,
.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: 0;
}

.page-hero p:not(.section-kicker) {
  max-width: 690px;
  margin: 18px 0 0;
  font-size: clamp(1rem, 2vw, 1.22rem);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .28);
}

.breadcrumb {
  width: min(var(--max), calc(100% - 36px));
  margin: 24px auto 0;
  color: var(--muted);
  font-size: .95rem;
}

.breadcrumb a {
  color: var(--green-800);
  text-decoration: none;
  font-weight: 700;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  text-decoration: underline;
}

.recipe-directory,
.category-page,
.recipe-detail {
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(48px, 8vw, 84px) auto;
}

.directory-intro,
.category-intro {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: end;
  margin-bottom: 28px;
}

.directory-intro h2,
.category-intro h2,
.recipe-detail h2,
.recipe-detail h3 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.directory-intro h2,
.category-intro h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.directory-intro p,
.category-intro p,
.recipe-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.recipe-category-card {
  position: relative;
  min-height: 410px;
  display: grid;
  align-content: end;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.recipe-category-card img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.recipe-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(0deg, rgba(6, 47, 30, .88), rgba(6, 47, 30, .16) 64%),
    linear-gradient(135deg, var(--category-accent, rgba(47, 135, 84, .42)), transparent 46%);
}

.recipe-category-card > span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(6, 47, 30, .72);
  border: 1px solid rgba(255, 254, 249, .22);
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.recipe-category-card div {
  padding: 24px;
}

.recipe-category-card h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.recipe-category-card p {
  margin: 0;
  color: rgba(255, 254, 249, .88);
}

.recipe-category-card:hover img,
.recipe-category-card:focus-visible img {
  transform: scale(1.05);
}

.recipe-category-card.dinners {
  --category-accent: rgba(176, 105, 63, .62);
}

.recipe-category-card.appetizers {
  --category-accent: rgba(244, 216, 90, .56);
}

.recipe-category-card.desserts {
  --category-accent: rgba(108, 61, 86, .56);
}

.recipe-category-card.drinks {
  --category-accent: rgba(33, 126, 139, .56);
}

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

.recipe-list-card {
  display: grid;
  min-height: 250px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(20, 91, 57, .14);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(169, 214, 167, .2), transparent 58%),
    rgba(255, 254, 249, .88);
  box-shadow: var(--soft-shadow);
  transition: transform .2s ease, border-color .2s ease;
}

.recipe-list-card:hover,
.recipe-list-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(31, 114, 71, .42);
}

.recipe-list-card span,
.recipe-meta span {
  color: var(--terracotta);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.recipe-list-card h3 {
  margin: 12px 0 10px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
}

.recipe-list-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.recipe-list-card strong {
  align-self: end;
  color: var(--green-800);
}

.recipe-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--green-800);
  font-weight: 800;
  text-decoration: none;
}

.recipe-link::after,
.recipe-list-card strong::after {
  content: "->";
  margin-left: 8px;
  color: var(--gold);
}

.recipe-link:hover,
.recipe-link:focus-visible {
  text-decoration: underline;
}

.recipe-detail {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.recipe-aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 24px;
  border: 1px solid rgba(20, 91, 57, .14);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(244, 216, 90, .18), transparent 58%),
    rgba(255, 254, 249, .88);
  box-shadow: var(--soft-shadow);
}

.recipe-aside h2 {
  font-size: 1.8rem;
}

.recipe-meta {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.recipe-meta li {
  display: grid;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(20, 91, 57, .12);
}

.recipe-aside p {
  color: var(--ink);
}

.recipe-content {
  display: grid;
  gap: 28px;
}

.recipe-panel {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(20, 91, 57, .14);
  border-radius: 8px;
  background: rgba(255, 254, 249, .86);
  box-shadow: var(--soft-shadow);
}

.recipe-panel h2,
.recipe-panel h3 {
  margin-bottom: 16px;
}

.recipe-panel h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.recipe-panel h3 {
  font-size: 1.35rem;
}

.recipe-panel ul,
.recipe-panel ol {
  margin: 0;
  padding-left: 22px;
}

.recipe-panel li + li {
  margin-top: 10px;
}

.recipe-callout {
  border-left: 5px solid var(--gold);
}

.grow-page-hero img {
  object-position: center 48%;
}

.grow-page-hero {
  min-height: 560px;
}

.grow-page-hero::after {
  background:
    linear-gradient(90deg, rgba(6, 47, 30, .9), rgba(6, 47, 30, .58) 48%, rgba(6, 47, 30, .18)),
    linear-gradient(0deg, rgba(6, 47, 30, .58), rgba(6, 47, 30, .08) 54%),
    radial-gradient(circle at 72% 28%, rgba(214, 175, 63, .24), transparent 32%);
}

.grow-page-hero .page-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  gap: 28px;
  align-items: end;
}

.grow-page-hero .section-kicker,
.grow-page-hero h1,
.grow-page-hero p:not(.section-kicker) {
  grid-column: 1;
}

.grow-page-hero h1 {
  max-width: 900px;
  text-wrap: balance;
}

.grow-hero-points {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  display: grid;
  gap: 10px;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 254, 249, .13);
  border: 1px solid rgba(255, 254, 249, .28);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(3, 26, 16, .22);
  backdrop-filter: blur(12px);
}

.grow-hero-points span {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 254, 249, .22);
  color: rgba(255, 254, 249, .88);
}

.grow-hero-points span:last-child {
  border-bottom: 0;
}

.grow-hero-points strong {
  color: var(--lemon);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 400;
  white-space: nowrap;
}

.grow-overview,
.grow-guide-layout,
.grow-action-plan {
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(48px, 8vw, 84px) auto;
}

.grow-overview .directory-intro {
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(20, 91, 57, .14);
}

.grow-stats,
.climate-grid,
.method-grid,
.calendar-grid,
.harvest-steps {
  display: grid;
  gap: 16px;
}

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

.grow-stats article,
.guide-panel,
.grow-toc,
.climate-grid article,
.method-grid article,
.calendar-grid article,
.harvest-steps article,
.watering-card {
  border: 1px solid rgba(20, 91, 57, .14);
  border-radius: 8px;
  background: rgba(255, 254, 249, .86);
  box-shadow: var(--soft-shadow);
}

.grow-stats article {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background:
    linear-gradient(150deg, rgba(169, 214, 167, .22), transparent 58%),
    rgba(255, 254, 249, .88);
}

.grow-stats article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--gold);
}

.grow-stats article:nth-child(2)::before {
  background: var(--green-600);
}

.grow-stats article:nth-child(3)::before {
  background: var(--terracotta);
}

.grow-stats article:nth-child(4)::before {
  background: var(--green-900);
}

.grow-stats span,
.calendar-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.grow-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.1;
}

.grow-stats p,
.guide-panel p,
.guide-panel li,
.trouble-table td,
.grow-photo-band figcaption {
  color: var(--muted);
}

.grow-stats p {
  margin: 0;
  font-size: .95rem;
}

.grow-action-plan {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: clamp(26px, 5vw, 44px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 47, 30, .98), rgba(31, 114, 71, .9)),
    var(--green-900);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.grow-action-plan .section-kicker,
.grow-action-plan h2 {
  color: var(--white);
}

.grow-action-plan h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.9rem;
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

.grow-action-plan ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: grow-action;
}

.grow-action-plan li {
  counter-increment: grow-action;
  min-height: 190px;
  padding: 18px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  background: rgba(255, 254, 249, .1);
  border: 1px solid rgba(255, 254, 249, .2);
  border-radius: 8px;
}

.grow-action-plan li::before {
  content: "0" counter(grow-action);
  color: var(--lemon);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.grow-action-plan strong,
.grow-action-plan span {
  display: block;
}

.grow-action-plan strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.12;
}

.grow-action-plan span {
  color: rgba(255, 254, 249, .84);
  font-size: .96rem;
}

.grow-photo-band {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: 16px;
  width: min(1460px, calc(100% - 36px));
  margin: 0 auto clamp(52px, 8vw, 86px);
}

.grow-photo-band figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.grow-photo-band figure:nth-child(2) {
  margin-top: 42px;
}

.grow-photo-band img {
  width: 100%;
  height: clamp(280px, 34vw, 460px);
  object-fit: cover;
}

.grow-photo-band figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  color: var(--green-950);
  background: rgba(255, 254, 249, .9);
  border: 1px solid rgba(255, 254, 249, .64);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(6, 47, 30, .18);
  backdrop-filter: blur(10px);
  font-size: .95rem;
}

.grow-guide-layout {
  display: grid;
  grid-template-columns: minmax(220px, .28fr) minmax(0, .72fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.grow-toc {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(231, 243, 229, .52), rgba(255, 254, 249, .92)),
    rgba(255, 254, 249, .92);
}

.grow-toc h2,
.guide-panel h2,
.guide-panel h3,
.watering-card h3,
.calendar-grid h3,
.harvest-steps h3 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.grow-toc h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.grow-toc a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  color: var(--green-800);
  border-top: 1px solid rgba(20, 91, 57, .12);
  text-decoration: none;
  font-weight: 700;
}

.grow-toc a::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.grow-toc a:hover,
.grow-toc a:focus-visible {
  text-decoration: underline;
}

.grow-guide-content {
  display: grid;
  gap: 24px;
  counter-reset: guide-panel;
}

.guide-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.guide-panel > * {
  position: relative;
  z-index: 1;
}

.guide-panel::before {
  counter-increment: guide-panel;
  content: "0" counter(guide-panel);
  position: absolute;
  top: 22px;
  right: 26px;
  color: rgba(31, 114, 71, .12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.1rem;
  line-height: 1;
  pointer-events: none;
}

.guide-panel::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold), rgba(169, 214, 167, .2));
}

.guide-panel h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  text-wrap: balance;
}

.guide-panel h3,
.watering-card h3,
.calendar-grid h3,
.harvest-steps h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.guide-panel > p:not(.section-kicker),
.guide-panel > div > p:not(.section-kicker) {
  margin: 0 0 18px;
  font-size: 1.03rem;
}

.climate-grid,
.method-grid,
.harvest-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.climate-grid article,
.method-grid article,
.calendar-grid article,
.harvest-steps article {
  padding: 20px;
  background:
    linear-gradient(150deg, rgba(244, 216, 90, .13), transparent 58%),
    rgba(255, 254, 249, .9);
}

.climate-grid p,
.method-grid p,
.calendar-grid p,
.harvest-steps p,
.watering-card p {
  margin: 0;
}

.guide-list,
.instruction-list {
  margin: 18px 0 0;
  padding-left: 22px;
}

.guide-list li + li,
.instruction-list li + li {
  margin-top: 12px;
}

.guide-list strong,
.instruction-list strong {
  color: var(--green-900);
}

.guide-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .38fr);
  gap: 24px;
  align-items: center;
}

.watering-card {
  padding: 22px;
  background:
    linear-gradient(150deg, rgba(169, 214, 167, .25), transparent 60%),
    rgba(255, 254, 249, .92);
}

.watering-card strong {
  display: block;
  margin-top: 12px;
  color: var(--green-900);
}

.preserve-page-hero {
  min-height: clamp(560px, 70svh, 720px);
}

.preserve-page-hero img {
  object-position: center 42%;
}

.preserve-page-hero::after {
  background:
    linear-gradient(90deg, rgba(6, 47, 30, .9), rgba(6, 47, 30, .52) 52%, rgba(6, 47, 30, .22)),
    linear-gradient(0deg, rgba(6, 47, 30, .62), rgba(6, 47, 30, .04) 58%),
    radial-gradient(circle at 82% 20%, rgba(244, 216, 90, .22), transparent 30%);
}

.preserve-page-hero .page-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .38fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: end;
}

.preserve-page-hero .page-hero-content > .section-kicker,
.preserve-page-hero .page-hero-content > h1,
.preserve-page-hero .page-hero-content > p {
  grid-column: 1;
}

.preserve-hero-points {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  display: grid;
  padding: 20px 22px;
  background: rgba(6, 47, 30, .42);
  border: 1px solid rgba(255, 254, 249, .22);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px);
}

.preserve-stats article:nth-child(1)::before {
  background: var(--terracotta);
}

.preserve-stats article:nth-child(2)::before {
  background: var(--gold);
}

.preserve-stats article:nth-child(3)::before {
  background: var(--green-700);
}

.preserve-stats article:nth-child(4)::before {
  background: #217e8b;
}

.preserve-decision-band {
  width: min(1460px, calc(100% - 36px));
  margin: 0 auto clamp(52px, 8vw, 86px);
  display: grid;
  grid-template-columns: minmax(280px, .36fr) minmax(0, .64fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: stretch;
  padding: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(244, 241, 232, .96), rgba(255, 254, 249, .88)),
    var(--paper);
  border-block: 1px solid rgba(20, 91, 57, .12);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.preserve-decision-band h2,
.preserve-method-cards h3,
.preserve-storage-card h3,
.preserve-timeline h3,
.preserve-blend-grid h3 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.preserve-decision-band h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-wrap: balance;
}

.preserve-decision-band p {
  margin: 0;
  color: var(--muted);
}

.preserve-method-cards,
.preserve-timeline,
.preserve-blend-grid {
  display: grid;
  gap: 16px;
}

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

.preserve-method-cards article,
.preserve-storage-card,
.preserve-timeline article,
.preserve-blend-grid article {
  border: 1px solid rgba(20, 91, 57, .14);
  border-radius: 8px;
  background: rgba(255, 254, 249, .9);
  box-shadow: var(--soft-shadow);
}

.preserve-method-cards article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: grid;
  align-content: end;
  padding: 22px;
  background:
    linear-gradient(150deg, rgba(169, 214, 167, .2), transparent 58%),
    rgba(255, 254, 249, .9);
}

.preserve-method-cards article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--gold);
}

.preserve-method-cards article:nth-child(2)::before {
  background: var(--green-700);
}

.preserve-method-cards article:nth-child(3)::before {
  background: #217e8b;
}

.preserve-method-cards article:nth-child(4)::before {
  background: var(--terracotta);
}

.preserve-method-cards span,
.preserve-timeline span {
  display: block;
  margin-bottom: 10px;
  color: var(--terracotta);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.preserve-method-cards h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.preserve-action-plan {
  background:
    linear-gradient(135deg, rgba(6, 47, 30, .98), rgba(176, 105, 63, .86)),
    var(--green-900);
}

.preserve-photo-band figure:first-child img {
  object-position: center 36%;
}

.preserve-guide-layout .guide-panel::after {
  background: linear-gradient(180deg, var(--terracotta), rgba(244, 216, 90, .2));
}

.preserve-storage-card {
  padding: 22px;
  background:
    linear-gradient(150deg, rgba(244, 216, 90, .18), transparent 60%),
    rgba(255, 254, 249, .92);
}

.preserve-storage-card h3,
.preserve-timeline h3,
.preserve-blend-grid h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.preserve-storage-card dl {
  display: grid;
  gap: 14px;
  margin: 14px 0 0;
}

.preserve-storage-card div {
  padding-top: 12px;
  border-top: 1px solid rgba(20, 91, 57, .12);
}

.preserve-storage-card dt {
  color: var(--green-900);
  font-weight: 800;
}

.preserve-storage-card dd {
  margin: 3px 0 0;
  color: var(--muted);
}

.freezer-card {
  background:
    linear-gradient(150deg, rgba(33, 126, 139, .16), transparent 60%),
    rgba(255, 254, 249, .92);
}

.preserve-timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 26px 0 0;
}

.preserve-timeline article {
  position: relative;
  padding: 22px;
  background:
    linear-gradient(150deg, rgba(169, 214, 167, .18), transparent 58%),
    rgba(255, 254, 249, .9);
}

.preserve-timeline article:nth-child(even),
.preserve-blend-grid article:nth-child(even) {
  background:
    linear-gradient(150deg, rgba(244, 216, 90, .15), transparent 58%),
    rgba(255, 254, 249, .9);
}

.preserve-timeline span {
  color: var(--green-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
}

.preserve-timeline p,
.preserve-blend-grid p,
.preserve-storage-card p {
  margin: 0;
  color: var(--muted);
}

.preserve-savory-grid {
  margin-top: 24px;
}

.preserve-blend-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.preserve-blend-grid article {
  padding: 20px;
}

.preserve-safety-table {
  margin-top: 26px;
}

.preserve-closing {
  background:
    linear-gradient(130deg, rgba(6, 47, 30, .96), rgba(33, 126, 139, .78), rgba(176, 105, 63, .82)),
    var(--green-900);
}

.calendar-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.trouble-table {
  width: 100%;
  margin-top: 24px;
  border: 1px solid rgba(20, 91, 57, .16);
  border-radius: 8px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.trouble-table th,
.trouble-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  background: rgba(255, 254, 249, .72);
}

.trouble-table th {
  width: 32%;
  min-width: 180px;
  font-weight: 800;
}

.trouble-table tr:nth-child(even) th,
.trouble-table tr:nth-child(even) td {
  background: rgba(231, 243, 229, .42);
}

.trouble-table tr + tr th,
.trouble-table tr + tr td {
  border-top: 1px solid rgba(20, 91, 57, .12);
}

.trouble-table th {
  color: var(--green-900);
}

.varieties-page-hero {
  min-height: clamp(600px, 74svh, 760px);
}

.varieties-page-hero img {
  object-position: center 44%;
}

.varieties-page-hero::after {
  background:
    linear-gradient(90deg, rgba(6, 47, 30, .9), rgba(6, 47, 30, .54) 48%, rgba(6, 47, 30, .2)),
    linear-gradient(0deg, rgba(6, 47, 30, .62), rgba(6, 47, 30, .04) 58%),
    radial-gradient(circle at 76% 24%, rgba(244, 216, 90, .24), transparent 30%);
}

.varieties-page-hero .page-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 390px);
  gap: clamp(24px, 5vw, 58px);
  align-items: end;
}

.varieties-page-hero .section-kicker,
.varieties-page-hero h1,
.varieties-page-hero p:not(.section-kicker) {
  grid-column: 1;
}

.varieties-page-hero h1 {
  max-width: 960px;
  font-size: clamp(2.9rem, 6.2vw, 5.7rem);
  line-height: 1;
  text-wrap: balance;
}

.variety-hero-card {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  display: grid;
  gap: 12px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 254, 249, .14);
  border: 1px solid rgba(255, 254, 249, .28);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(3, 26, 16, .24);
  backdrop-filter: blur(12px);
}

.variety-hero-card span {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  color: rgba(255, 254, 249, .84);
  border-bottom: 1px solid rgba(255, 254, 249, .22);
}

.variety-hero-card span:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.variety-hero-card strong {
  color: var(--lemon);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  font-weight: 400;
}

.variety-overview,
.variety-feature-band {
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(48px, 8vw, 84px) auto;
}

.variety-overview .directory-intro {
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(20, 91, 57, .14);
}

.variety-selector-grid,
.variety-card-grid {
  display: grid;
  gap: 16px;
}

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

.variety-selector-grid article,
.variety-card-grid article,
.variety-note-card,
.safety-callout {
  border: 1px solid rgba(20, 91, 57, .14);
  border-radius: 8px;
  background: rgba(255, 254, 249, .86);
  box-shadow: var(--soft-shadow);
}

.variety-selector-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 22px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(150deg, rgba(169, 214, 167, .26), transparent 56%),
    rgba(255, 254, 249, .9);
}

.variety-selector-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--gold);
}

.variety-selector-grid article:nth-child(2)::before {
  background: var(--green-600);
}

.variety-selector-grid article:nth-child(3)::before {
  background: var(--terracotta);
}

.variety-selector-grid article:nth-child(4)::before {
  background: var(--green-900);
}

.variety-selector-grid span,
.variety-card-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--terracotta);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.variety-selector-grid h3,
.variety-card-grid h3,
.variety-note-card h3,
.safety-callout h3 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.variety-selector-grid p,
.variety-card-grid p,
.variety-note-card p,
.safety-callout p,
.variety-comparison-table td {
  color: var(--muted);
}

.variety-selector-grid p,
.variety-card-grid p,
.variety-note-card p,
.safety-callout p {
  margin: 0;
}

.variety-feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 47, 30, .98), rgba(31, 114, 71, .9)),
    var(--green-900);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.variety-feature-band .section-kicker,
.variety-feature-band h2,
.variety-feature-band p {
  color: var(--white);
}

.variety-feature-band h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.variety-feature-band p:not(.section-kicker) {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 254, 249, .88);
}

.variety-flavor-wheel {
  position: relative;
  aspect-ratio: 1;
  min-height: 270px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 254, 249, .26);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(244, 216, 90, .2), transparent 34%),
    rgba(255, 254, 249, .1);
}

.variety-flavor-wheel::before,
.variety-flavor-wheel::after {
  content: "";
  position: absolute;
  inset: 50% 12%;
  height: 1px;
  background: rgba(255, 254, 249, .25);
}

.variety-flavor-wheel::after {
  transform: rotate(90deg);
}

.variety-flavor-wheel span {
  position: absolute;
  width: 96px;
  min-height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  background: rgba(255, 254, 249, .12);
  border: 1px solid rgba(255, 254, 249, .22);
  border-radius: 8px;
}

.variety-flavor-wheel .wheel-center {
  position: static;
  z-index: 1;
  width: 112px;
  min-height: 72px;
  color: var(--green-950);
  background: var(--lemon);
  border-color: rgba(255, 254, 249, .5);
  box-shadow: 0 14px 32px rgba(3, 26, 16, .2);
}

.variety-flavor-wheel span:nth-child(2) {
  top: 22px;
}

.variety-flavor-wheel span:nth-child(3) {
  right: 14px;
}

.variety-flavor-wheel span:nth-child(4) {
  bottom: 22px;
}

.variety-flavor-wheel span:nth-child(5) {
  left: 14px;
}

.variety-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

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

.variety-card-grid article {
  padding: 22px;
  background:
    linear-gradient(150deg, rgba(169, 214, 167, .18), transparent 58%),
    rgba(255, 254, 249, .9);
}

.variety-card-grid article:nth-child(3n + 2) {
  background:
    linear-gradient(150deg, rgba(244, 216, 90, .17), transparent 58%),
    rgba(255, 254, 249, .9);
}

.variety-card-grid article:nth-child(3n) {
  background:
    linear-gradient(150deg, rgba(176, 105, 63, .12), transparent 58%),
    rgba(255, 254, 249, .9);
}

.variety-card-grid dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.variety-card-grid div {
  padding-top: 12px;
  border-top: 1px solid rgba(20, 91, 57, .12);
}

.variety-card-grid dt {
  color: var(--green-900);
  font-weight: 800;
}

.variety-card-grid dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .95rem;
}

.variety-comparison-table {
  width: 100%;
  margin-top: 24px;
  border: 1px solid rgba(20, 91, 57, .16);
  border-radius: 8px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.variety-comparison-table th,
.variety-comparison-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  background: rgba(255, 254, 249, .72);
}

.variety-comparison-table th {
  width: 28%;
  min-width: 180px;
  font-weight: 800;
}

.variety-comparison-table tr:nth-child(even) th,
.variety-comparison-table tr:nth-child(even) td {
  background: rgba(231, 243, 229, .42);
}

.variety-comparison-table tr + tr th,
.variety-comparison-table tr + tr td {
  border-top: 1px solid rgba(20, 91, 57, .12);
}

.variety-comparison-table th {
  color: var(--green-900);
}

.variety-comparison-table.pairing th {
  color: var(--terracotta);
}

.variety-note-card,
.safety-callout {
  padding: 22px;
  background:
    linear-gradient(150deg, rgba(244, 216, 90, .18), transparent 58%),
    rgba(255, 254, 249, .92);
}

.safety-callout {
  margin: 24px 0 0;
  background:
    linear-gradient(150deg, rgba(176, 105, 63, .18), transparent 58%),
    rgba(255, 254, 249, .92);
}

.history-page-hero {
  min-height: clamp(620px, 76svh, 780px);
}

.history-page-hero img {
  object-position: center 46%;
}

.history-page-hero::after {
  background:
    linear-gradient(90deg, rgba(6, 47, 30, .92), rgba(6, 47, 30, .62) 48%, rgba(6, 47, 30, .18)),
    linear-gradient(0deg, rgba(6, 47, 30, .7), rgba(6, 47, 30, .08) 56%),
    radial-gradient(circle at 74% 25%, rgba(214, 175, 63, .28), transparent 32%);
}

.history-page-hero .page-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 390px);
  gap: clamp(24px, 5vw, 58px);
  align-items: end;
}

.history-page-hero .section-kicker,
.history-page-hero h1,
.history-page-hero p:not(.section-kicker) {
  grid-column: 1;
}

.history-page-hero h1 {
  max-width: 940px;
  font-size: clamp(2.9rem, 6.2vw, 5.5rem);
  line-height: 1;
  text-wrap: balance;
}

.history-hero-facts {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  display: grid;
  gap: 12px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 254, 249, .14);
  border: 1px solid rgba(255, 254, 249, .28);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(3, 26, 16, .24);
  backdrop-filter: blur(12px);
}

.history-hero-facts span {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  color: rgba(255, 254, 249, .84);
  border-bottom: 1px solid rgba(255, 254, 249, .22);
}

.history-hero-facts span:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.history-hero-facts strong {
  color: var(--lemon);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 400;
}

.history-intro,
.history-guide-layout {
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(48px, 8vw, 84px) auto;
}

.history-intro .directory-intro {
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(20, 91, 57, .14);
}

.history-theme-grid,
.culture-grid,
.foodway-list,
.modern-grid {
  display: grid;
  gap: 16px;
}

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

.history-theme-grid article,
.history-toc,
.history-panel,
.culture-grid article,
.foodway-list article,
.modern-grid article,
.symbol-card,
.apothecary-card {
  border: 1px solid rgba(20, 91, 57, .14);
  border-radius: 8px;
  background: rgba(255, 254, 249, .86);
  box-shadow: var(--soft-shadow);
}

.history-theme-grid article {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background:
    linear-gradient(150deg, rgba(169, 214, 167, .22), transparent 58%),
    rgba(255, 254, 249, .9);
}

.history-theme-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--gold);
}

.history-theme-grid article:nth-child(2)::before {
  background: var(--green-600);
}

.history-theme-grid article:nth-child(3)::before {
  background: var(--terracotta);
}

.history-theme-grid article:nth-child(4)::before {
  background: var(--green-900);
}

.history-theme-grid span,
.culture-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.history-theme-grid h3,
.culture-grid h3,
.foodway-list h3,
.modern-grid h3,
.symbol-card h3,
.apothecary-card h3,
.history-toc h2,
.history-panel h2 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.history-theme-grid h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.history-theme-grid p,
.history-panel p,
.history-panel li,
.culture-grid p,
.foodway-list p,
.modern-grid p,
.species-table td,
.apothecary-card dd {
  color: var(--muted);
}

.history-theme-grid p,
.culture-grid p,
.foodway-list p,
.modern-grid p {
  margin: 0;
}

.history-feature-strip {
  width: min(1460px, calc(100% - 36px));
  margin: 0 auto clamp(52px, 8vw, 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}

.history-feature-strip figure {
  position: relative;
  min-height: clamp(340px, 38vw, 540px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.history-feature-strip img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.history-feature-strip figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  color: var(--green-950);
  background: rgba(255, 254, 249, .9);
  border: 1px solid rgba(255, 254, 249, .64);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(6, 47, 30, .18);
  backdrop-filter: blur(10px);
  font-size: .95rem;
}

.history-feature-strip h2 {
  margin: 0 0 16px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.history-feature-strip p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.history-guide-layout {
  display: grid;
  grid-template-columns: minmax(220px, .28fr) minmax(0, .72fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.history-toc {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(231, 243, 229, .52), rgba(255, 254, 249, .92)),
    rgba(255, 254, 249, .92);
}

.history-toc h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.history-toc a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  color: var(--green-800);
  border-top: 1px solid rgba(20, 91, 57, .12);
  text-decoration: none;
  font-weight: 700;
}

.history-toc a::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.history-toc a:hover,
.history-toc a:focus-visible {
  text-decoration: underline;
}

.history-guide-content {
  display: grid;
  gap: 24px;
  counter-reset: history-panel;
}

.history-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 40px);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.history-panel > * {
  position: relative;
  z-index: 1;
}

.history-panel::before {
  counter-increment: history-panel;
  content: "0" counter(history-panel);
  position: absolute;
  top: 22px;
  right: 26px;
  color: rgba(31, 114, 71, .1);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.1rem;
  line-height: 1;
  pointer-events: none;
}

.history-panel::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--terracotta), rgba(214, 175, 63, .22));
}

.history-panel h2 {
  max-width: 840px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  text-wrap: balance;
}

.history-panel > p:not(.section-kicker),
.history-panel > div > p:not(.section-kicker) {
  margin: 0 0 18px;
  font-size: 1.03rem;
}

.history-era-list {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: history-era;
}

.history-era-list li {
  position: relative;
  counter-increment: history-era;
  padding: 20px 20px 20px 76px;
  background:
    linear-gradient(150deg, rgba(244, 216, 90, .13), transparent 58%),
    rgba(255, 254, 249, .9);
  border: 1px solid rgba(20, 91, 57, .12);
  border-radius: 8px;
}

.history-era-list li::before {
  content: counter(history-era, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 22px;
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1;
}

.history-era-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.history-era-list p {
  margin: 0;
}

.history-split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .38fr);
  gap: 24px;
  align-items: start;
}

.symbol-card,
.apothecary-card {
  padding: 22px;
  background:
    linear-gradient(150deg, rgba(169, 214, 167, .24), transparent 60%),
    rgba(255, 254, 249, .92);
}

.symbol-card h3,
.apothecary-card h3,
.culture-grid h3,
.foodway-list h3,
.modern-grid h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.symbol-card ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.symbol-card li + li {
  margin-top: 8px;
}

.culture-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.culture-grid article,
.foodway-list article,
.modern-grid article {
  padding: 20px;
  background:
    linear-gradient(150deg, rgba(169, 214, 167, .15), transparent 58%),
    rgba(255, 254, 249, .9);
}

.culture-grid article:nth-child(3n + 2),
.foodway-list article:nth-child(3n + 2),
.modern-grid article:nth-child(3n + 2) {
  background:
    linear-gradient(150deg, rgba(244, 216, 90, .16), transparent 58%),
    rgba(255, 254, 249, .9);
}

.culture-grid article:nth-child(3n),
.foodway-list article:nth-child(3n),
.modern-grid article:nth-child(3n) {
  background:
    linear-gradient(150deg, rgba(176, 105, 63, .12), transparent 58%),
    rgba(255, 254, 249, .9);
}

.foodway-list,
.modern-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.apothecary-card dl {
  display: grid;
  gap: 14px;
  margin: 14px 0 0;
}

.apothecary-card div {
  padding-top: 12px;
  border-top: 1px solid rgba(20, 91, 57, .12);
}

.apothecary-card dt {
  color: var(--green-900);
  font-weight: 800;
}

.apothecary-card dd {
  margin: 3px 0 0;
}

.species-table {
  width: 100%;
  margin-top: 24px;
  border: 1px solid rgba(20, 91, 57, .16);
  border-radius: 8px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.species-table th,
.species-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  background: rgba(255, 254, 249, .74);
}

.species-table th {
  width: 34%;
  min-width: 220px;
  font-weight: 800;
}

.species-table tr:nth-child(even) th,
.species-table tr:nth-child(even) td {
  background: rgba(231, 243, 229, .42);
}

.species-table tr + tr th,
.species-table tr + tr td {
  border-top: 1px solid rgba(20, 91, 57, .12);
}

.species-table th {
  color: var(--green-900);
}

.source-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 22px;
}

.source-list a {
  color: var(--green-800);
  font-weight: 700;
  text-decoration: none;
}

.source-list a:hover,
.source-list a:focus-visible {
  text-decoration: underline;
}

.recipes-hero {
  width: min(var(--max), 100%);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.recipes-hero p {
  max-width: 720px;
}

.recipe-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.recipe-tab {
  min-height: 42px;
  padding: 10px 16px;
  color: var(--green-900);
  background: rgba(255, 254, 249, .85);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.recipe-tab:hover,
.recipe-tab:focus-visible,
.recipe-tab.is-active {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
}

.category-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
}

.category-tile {
  position: relative;
  min-height: 218px;
  overflow: hidden;
  color: var(--green-900);
  text-decoration: none;
  border-right: 1px solid var(--line);
}

.category-tile:last-child {
  border-right: 0;
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 254, 249, .92), rgba(255, 254, 249, .18) 54%, rgba(255, 254, 249, 0));
}

.category-tile span {
  position: absolute;
  z-index: 1;
  left: 24px;
  top: 24px;
  max-width: calc(100% - 48px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
}

.category-tile:hover img,
.category-tile:focus-visible img {
  transform: scale(1.05);
}

.recipe-grid {
  width: min(var(--max), 100%);
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.recipe-card {
  padding: 22px;
  transition: transform .2s ease, opacity .2s ease;
}

.recipe-card.is-hidden {
  display: none;
}

.recipe-card:hover {
  transform: translateY(-3px);
}

.recipe-card > p:first-child {
  margin: 0 0 10px;
  color: var(--terracotta);
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.recipe-card h3 {
  font-size: 1.35rem;
}

.recipe-card > p:not(:first-child) {
  margin: 0 0 16px;
  color: var(--muted);
}

.recipe-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
}

.recipe-card li + li {
  margin-top: 6px;
}

.closing-section {
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(50px, 8vw, 90px) auto;
  padding: clamp(30px, 5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(130deg, rgba(6, 47, 30, .96), rgba(20, 91, 57, .92)),
    var(--green-900);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.closing-section .section-kicker,
.closing-section h2,
.closing-section p {
  color: var(--white);
}

.closing-section p {
  margin: 0;
  opacity: .9;
}

.site-footer {
  padding: 34px clamp(18px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: rgba(255, 254, 249, .86);
  background: var(--green-950);
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 540px;
  margin: 0;
  text-align: right;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  font-size: .9rem;
}

.footer-links a {
  color: rgba(255, 254, 249, .74);
  text-decoration: none;
}

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

.privacy-content {
  width: min(100% - 36px, 980px);
  margin: 0 auto 78px;
  display: grid;
  gap: 22px;
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(255, 254, 249, .98);
    border: 1px solid rgba(20, 91, 57, .18);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px;
  }

  .nav-links span {
    width: 100%;
    height: 1px;
  }

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

  .path-card {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .path-card::before {
    display: none;
  }

  .feature-band,
  .history-section {
    grid-template-columns: 1fr;
  }

  .history-image,
  .history-copy {
    order: initial;
  }

  .feature-media img,
  .history-image img {
    min-height: 340px;
  }

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

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

  .directory-intro,
  .category-intro,
  .recipe-detail {
    grid-template-columns: 1fr;
  }

  .recipe-category-grid,
  .recipe-list,
  .grow-stats,
  .calendar-grid,
  .variety-selector-grid,
  .variety-card-grid,
  .variety-card-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grow-page-hero .page-hero-content,
  .history-page-hero .page-hero-content,
  .varieties-page-hero .page-hero-content,
  .preserve-page-hero .page-hero-content,
  .grow-action-plan,
  .preserve-decision-band,
  .variety-feature-band {
    grid-template-columns: 1fr;
  }

  .grow-hero-points {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .history-hero-facts,
  .preserve-hero-points,
  .variety-hero-card {
    grid-column: 1;
    grid-row: auto;
  }

  .grow-hero-points span {
    grid-template-columns: 1fr;
    align-content: start;
    border-right: 1px solid rgba(255, 254, 249, .22);
    border-bottom: 0;
  }

  .grow-hero-points span:last-child {
    border-right: 0;
  }

  .recipe-aside {
    position: static;
  }

  .grow-guide-layout,
  .history-guide-layout,
  .guide-split,
  .history-split-panel,
  .variety-guide-layout {
    grid-template-columns: 1fr;
  }

  .grow-toc,
  .history-toc,
  .variety-toc {
    position: static;
  }

  .history-feature-strip,
  .history-theme-grid,
  .culture-grid,
  .preserve-timeline,
  .preserve-blend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recipe-tabs {
    justify-content: flex-start;
  }

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

  .category-tile:nth-child(2) {
    border-right: 0;
  }

  .category-tile:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 680px) {
  :root {
    --header-height: 64px;
  }

  .nav-shell {
    padding: 0 14px;
    gap: 8px;
  }

  .brand {
    gap: 8px;
    font-size: 1.15rem;
  }

  .brand-mark {
    width: 38px;
    height: 30px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    width: min(100% - 28px, 640px);
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.2rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .leaf-divider {
    margin-top: 18px;
  }

  .path-card,
  .path-card-image-content {
    padding: 30px 18px;
  }

  .feature-band,
  .history-section,
  .closing-section {
    width: min(100% - 28px, var(--max));
  }

  .tip-grid,
  .note-strip,
  .flavor-grid,
  .recipe-category-grid,
  .recipe-list,
  .category-tiles,
  .recipe-grid,
  .grow-photo-band,
  .grow-stats,
  .variety-selector-grid,
  .variety-card-grid,
  .variety-card-grid.compact,
  .history-feature-strip,
  .history-theme-grid,
  .culture-grid,
  .foodway-list,
  .modern-grid,
  .climate-grid,
  .method-grid,
  .calendar-grid,
  .harvest-steps,
  .closing-section {
    grid-template-columns: 1fr;
  }

  .grow-page-hero {
    min-height: 540px;
  }

  .varieties-page-hero {
    min-height: 620px;
  }

  .history-page-hero {
    min-height: 600px;
  }

  .preserve-page-hero {
    min-height: 640px;
  }

  .grow-page-hero .page-hero-content,
  .history-page-hero .page-hero-content,
  .varieties-page-hero .page-hero-content {
    gap: 22px;
  }

  .grow-hero-points,
  .history-hero-facts,
  .preserve-hero-points,
  .variety-hero-card,
  .grow-action-plan ol {
    grid-template-columns: 1fr;
  }

  .grow-hero-points span {
    grid-template-columns: auto 1fr;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 254, 249, .22);
  }

  .grow-action-plan {
    width: min(100% - 28px, var(--max));
    padding: 24px 18px;
  }

  .preserve-decision-band {
    width: min(100% - 28px, var(--max));
    padding: 24px 18px;
  }

  .preserve-method-cards,
  .preserve-timeline,
  .preserve-blend-grid {
    grid-template-columns: 1fr;
  }

  .preserve-method-cards article {
    min-height: 0;
  }

  .grow-action-plan h2 {
    font-size: 2.2rem;
  }

  .grow-action-plan li {
    min-height: 0;
  }

  .grow-photo-band figure:nth-child(2) {
    margin-top: 0;
  }

  .grow-photo-band figcaption {
    position: static;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .page-hero {
    min-height: 420px;
    padding-inline: 14px;
  }

  .recipe-category-card {
    min-height: 300px;
  }

  .feature-media img,
  .history-image img {
    min-height: 260px;
  }

  .grow-photo-band img {
    height: 260px;
  }

  .trouble-table,
  .trouble-table tbody,
  .trouble-table tr,
  .trouble-table th,
  .trouble-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .trouble-table th {
    padding-bottom: 4px;
  }

  .trouble-table td {
    padding-top: 0;
  }

  .variety-feature-band {
    width: min(100% - 28px, var(--max));
    padding: 24px 18px;
  }

  .variety-feature-band h2 {
    font-size: 2.2rem;
  }

  .variety-flavor-wheel {
    min-height: 240px;
  }

  .variety-flavor-wheel span {
    width: 82px;
    min-height: 52px;
    font-size: .95rem;
  }

  .variety-flavor-wheel .wheel-center {
    width: 96px;
    min-height: 64px;
  }

  .variety-comparison-table,
  .variety-comparison-table tbody,
  .variety-comparison-table tr,
  .variety-comparison-table th,
  .variety-comparison-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .variety-comparison-table th {
    padding-bottom: 4px;
  }

  .variety-comparison-table td {
    padding-top: 0;
  }

  .history-era-list li {
    padding: 18px 18px 18px 62px;
  }

  .history-era-list li::before {
    left: 18px;
    font-size: 1.35rem;
  }

  .history-panel::before {
    top: 18px;
    right: 18px;
    font-size: 3rem;
  }

  .species-table,
  .species-table tbody,
  .species-table tr,
  .species-table th,
  .species-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .species-table th {
    padding-bottom: 4px;
  }

  .species-table td {
    padding-top: 0;
  }

  .guide-panel::before {
    top: 18px;
    right: 18px;
    font-size: 3rem;
  }

  .category-tile,
  .category-tile:nth-child(2),
  .category-tile:nth-child(-n + 2) {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .category-tile:last-child {
    border-bottom: 0;
  }

  .site-footer {
    display: grid;
  }

  .site-footer p {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
