/* =============================================
   tomatovarieties.com — main.css
   Design: Fraunces (headlines) + DM Sans (body)
   ============================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:wght@400;500;600&display=swap');

/* ── Custom Properties ── */
:root {
  --color-bg:       #FAF7F2;
  --color-text:     #3D2B1F;
  --color-accent:   #C0392B;
  --color-green:    #4A7C59;
  --color-card:     #FFFFFF;
  --color-border:   #E8E0D5;
  --color-muted:    #7A6558;
  --color-tag-bg:   #F0EAE2;

  --font-headline:  'Fraunces', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;

  --radius-card:    8px;
  --radius-badge:   4px;
  --radius-pill:    20px;

  --shadow-card:    0 1px 4px rgba(61,43,31,0.08), 0 4px 16px rgba(61,43,31,0.06);
  --shadow-hover:   0 4px 12px rgba(61,43,31,0.14), 0 8px 24px rgba(61,43,31,0.08);

  --max-width:      1200px;
  --sidebar-width:  260px;
  --gap:            1.5rem;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout Utilities ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.site-logo img {
  width: 32px;
  height: 32px;
}

.site-logo__name {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.site-logo__name span {
  color: var(--color-accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-badge);
  transition: background 0.15s, color 0.15s;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--color-tag-bg);
  color: var(--color-accent);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--color-text);
}

/* ── Footer ── */
.site-footer {
  background: var(--color-text);
  color: #C8B9B0;
  padding: 2.5rem 0 1.5rem;
  margin-top: 4rem;
}

.site-footer .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand__name {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  color: #FAF7F2;
  margin-bottom: 0.4rem;
}

.footer-brand p {
  font-size: 0.85rem;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: right;
}

.footer-links a {
  font-size: 0.875rem;
  color: #C8B9B0;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #FAF7F2;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
  color: #8A7A72;
}

/* ── Hero ── */
.hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 1rem;
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-badge);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: #A93226;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(192,57,43,0.3);
}

.btn-secondary {
  background: var(--color-card);
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-secondary:hover {
  background: var(--color-tag-bg);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-ghost:hover {
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
}

.btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
}

/* ── Badges / Pills ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-badge);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.badge-type {
  background: var(--color-tag-bg);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.badge-type--heirloom  { background: #F5EDD6; border-color: #D4B86A; color: #7A5C00; }
.badge-type--hybrid    { background: #E8F0E8; border-color: #8AAE8A; color: #2D5A3D; }
.badge-type--cherry    { background: #FAE8E8; border-color: #D4807A; color: #7A2020; }
.badge-type--beefsteak { background: #EDE8F5; border-color: #9A8ABE; color: #3D2B6A; }
.badge-type--paste     { background: #E8EEF5; border-color: #7A9ABE; color: #1F3A5A; }

.badge-days {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--color-tag-bg);
  color: var(--color-muted);
  border: 1px solid var(--color-border);
  white-space: nowrap;
}

.pill--flavor { background: #F5EDD6; border-color: #D4C48A; color: #6A4E00; }
.pill--use    { background: #E8EEF5; border-color: #8AAABE; color: #1F3A5A; }
.pill--dr     { background: #E8F0E8; border-color: #8AAE8A; color: #2D5A3D; }

/* ── Color Swatch ── */
.color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.12);
  flex-shrink: 0;
  display: inline-block;
}

.color-swatch--lg {
  width: 28px;
  height: 28px;
}

/* ── Card Grid ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--gap);
}

/* ── Variety Card ── */
.variety-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.variety-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  text-decoration: none;
}

.variety-card__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.variety-card__name {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  flex: 1;
  line-height: 1.25;
}

.variety-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.variety-card__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.5;
  flex: 1;
}

.variety-card__flavors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.variety-card__cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: auto;
}

/* ── Varieties Page Layout ── */
.varieties-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
}

/* ── Filter Sidebar ── */
.filter-sidebar {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  position: sticky;
  top: 80px;
}

.filter-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.filter-sidebar__title {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
}

.filter-reset {
  font-size: 0.78rem;
  color: var(--color-muted);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  padding: 0;
  text-decoration: underline;
}
.filter-reset:hover { color: var(--color-accent); }

.filter-section {
  border-top: 1px solid var(--color-border);
  padding: 0.875rem 0;
}

.filter-section__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin-bottom: 0.6rem;
  display: block;
}

/* Search */
.filter-search {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-badge);
  font-family: var(--font-body);
  font-size: 0.875rem;
  background: var(--color-bg);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.15s;
}
.filter-search:focus { border-color: var(--color-accent); }

/* Color swatch filter buttons */
.color-filter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.color-filter-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  cursor: pointer;
  position: relative;
  transition: transform 0.15s, border-color 0.15s;
  background: none;
  padding: 0;
}

.color-filter-btn:hover { transform: scale(1.15); }

.color-filter-btn.active {
  border-color: var(--color-text);
  box-shadow: 0 0 0 2px var(--color-bg), 0 0 0 4px var(--color-text);
}

.color-filter-btn[title]::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-text);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
.color-filter-btn:hover::after { opacity: 1; }

/* Checkbox filters */
.filter-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
}

.filter-checkbox input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--color-accent);
  cursor: pointer;
  flex-shrink: 0;
}

.filter-checkbox span { line-height: 1.3; }

/* Range sliders */
.range-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.range-row label {
  font-size: 0.78rem;
  color: var(--color-muted);
  width: 30px;
  flex-shrink: 0;
}

.range-value {
  font-size: 0.78rem;
  color: var(--color-text);
  font-weight: 600;
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(192,57,43,0.4);
  transition: transform 0.15s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(192,57,43,0.4);
}

/* Result count */
.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.results-count {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.results-count strong { color: var(--color-text); }

/* ── Guide Card ── */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap);
}

.guide-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  text-decoration: none;
}

.guide-card__img {
  height: 160px;
  background: var(--color-tag-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.guide-card__body {
  padding: 1.125rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.guide-card__category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-green);
}

.guide-card__title {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.guide-card__excerpt {
  font-size: 0.855rem;
  color: var(--color-muted);
  line-height: 1.5;
  flex: 1;
}

.guide-card__meta {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: auto;
}

/* ── Category Cards ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.category-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.category-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  text-decoration: none;
}

.category-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.category-card__name {
  font-family: var(--font-headline);
  font-size: 0.95rem;
  font-weight: 700;
}

.category-card__count {
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* ── Quiz ── */
.quiz-wrapper {
  max-width: 680px;
  margin: 2rem auto;
  padding: 2rem 0;
}

.quiz-progress {
  margin-bottom: 2rem;
}

.quiz-progress__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.quiz-progress__bar {
  height: 6px;
  background: var(--color-border);
  border-radius: 3px;
  overflow: hidden;
}

.quiz-progress__fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.quiz-question {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: none;
}

.quiz-question.active { display: block; }

.quiz-question__text {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-badge);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-size: 0.9rem;
  background: var(--color-bg);
}

.quiz-option:hover {
  border-color: var(--color-accent);
  background: var(--color-card);
}

.quiz-option.selected {
  border-color: var(--color-accent);
  background: #FFF5F4;
}

.quiz-option input[type="radio"] {
  accent-color: var(--color-accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

/* Quiz Results */
.quiz-results {
  display: none;
}

.quiz-results.active { display: block; }

.quiz-results__title {
  font-family: var(--font-headline);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.quiz-results__subtitle {
  color: var(--color-muted);
  text-align: center;
  margin-bottom: 2rem;
}

.quiz-results__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.quiz-result-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.quiz-result-card--top {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(192,57,43,0.12), var(--shadow-card);
}

.quiz-result-card__rank {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-border);
  line-height: 1;
  min-width: 36px;
  text-align: center;
}

.quiz-result-card--top .quiz-result-card__rank {
  color: var(--color-accent);
}

.quiz-result-card__body { flex: 1; }

.quiz-result-card__name {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quiz-result-card__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 0.6rem;
}

.quiz-result-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.quiz-restart {
  text-align: center;
}

/* ── AdSense Slots ── */
.ad-slot {
  min-height: 90px;
  background: var(--color-tag-bg);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-badge);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 0.75rem;
  margin: 1.5rem 0;
}

.ad-slot--leaderboard { min-height: 90px; }
.ad-slot--rectangle   { min-height: 250px; max-width: 336px; }
.ad-slot--sidebar     { min-height: 600px; }

/* ── Section Utilities ── */
.section { padding: 3rem 0; }
.section--alt { background: var(--color-card); }
.section__header { margin-bottom: 2rem; }
.section__header h2 { margin-bottom: 0.5rem; }
.section__header p  { color: var(--color-muted); }

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }

/* ── No Results ── */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--color-muted);
  grid-column: 1 / -1;
}

.no-results__icon { font-size: 3rem; margin-bottom: 1rem; }
.no-results h3 { font-family: var(--font-headline); margin-bottom: 0.5rem; }

/* ── Responsive: 1024px ── */
@media (max-width: 1024px) {
  .varieties-layout {
    grid-template-columns: 220px 1fr;
  }
}

/* ── Responsive: 768px ── */
@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 0.75rem 1.25rem;
    gap: 0.1rem;
  }

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

  .site-nav a {
    width: 100%;
    padding: 0.6rem 0.75rem;
  }

  .nav-toggle { display: flex; }

  .site-header .container { position: relative; }

  .varieties-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: static;
  }

  .filter-sidebar--collapsed .filter-section {
    display: none;
  }

  .site-footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    text-align: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero { padding: 2.5rem 0 2rem; }

  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .quiz-question { padding: 1.25rem; }

  .quiz-result-card {
    flex-direction: column;
    gap: 0.5rem;
  }

  .quiz-result-card__rank { font-size: 1.25rem; min-width: auto; }

  .ad-slot--sidebar { min-height: 250px; }
}

@media (max-width: 480px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .hero__actions { flex-direction: column; align-items: center; }
}

/* ── Enrichment field styles ─────────────────────────── */
.badge--difficulty { background: #f0f0f0; color: #444; }
.badge--zone { background: #e8f5e9; color: #2e7d32; font-size: 0.72rem; }
.tag--health { background: #e3f2fd; color: #1565c0; border: 1px solid #90caf9; }
.variety-section--highlight {
  background: #fffde7;
  border-left: 4px solid #f9a825;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.variety-section--highlight h2 { margin-top: 0; font-size: 1.1rem; }

/* ── Compat aliases ── */
.site-brand { font-size: 1.4rem; font-weight: 700; color: var(--color-accent); text-decoration: none; font-family: var(--font-headline); }
.hero-actions { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.feature { background: var(--color-card); border-radius: var(--radius-card); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-card); }
.feature h3 { margin: 0.75rem 0 0.5rem; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1rem; }
.footer-nav a { color: var(--color-muted); text-decoration: none; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--color-accent); }
