/* =========================================================
   FreezeDriedFruit.com — design tokens + layout
   Inspired by editorial industry-media wordmark layouts.
   ========================================================= */

:root {
  /* Navy editorial palette inspired by the user's reference */
  --bg: #FFFFFF;
  --bg-soft: #F6F4EE;
  --bg-deep: #EFEBDF;
  --bg-tint: #F2F7F6;
  --ink: #0A2540;
  --ink-2: #142E4D;
  --muted: #5A6B7B;
  --line: #E2E6EA;
  --line-2: #C9D2DA;

  /* Accents — keep the green-mint accent of the reference, plus warm secondary */
  --mint: #3CCFA1;
  --mint-deep: #2BA180;
  --green: #0A2540;       /* primary CTA = navy, like reference */
  --green-deep: #061A30;
  --peach: #F2C28A;
  --berry: #B95F72;

  --titles: "Larken", "Larken Bold", "DM Serif Display", "Source Serif 4", "Charter", Georgia, serif;
  --serif: "Source Serif 4", "Lora", "Charter", Georgia, serif;
  --sans: "Source Sans 3", "Helvetica Neue", Helvetica, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

  --container: 1280px;
  --container-narrow: 800px;
  --radius: 4px;
  --radius-lg: 6px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.serif { font-family: var(--serif); font-optical-sizing: auto; }
.mono { font-family: var(--mono); }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.muted { color: var(--muted); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 72px 0; }

/* ---------- Masthead (logo block above nav) ---------- */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--ink);
}
.site-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 14px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.site-header__top-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.utility-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  font-weight: 500;
}
.utility-btn:hover { background: var(--ink); color: #fff; }
.utility-btn[aria-expanded="true"] { background: var(--ink); color: #fff; }
.utility-btn--search { padding-right: 64px; min-width: 280px; }
.utility-btn--search svg { margin-left: auto; position: relative; right: -48px; }

.site-header__top-right {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 500;
}
.site-header__top-right a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-header__top-right a:hover { color: var(--mint-deep); }
.lang-switch {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.15s ease;
}
.lang-switch:hover {
  border-bottom-color: var(--mint-deep);
}

.site-menu {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.site-menu[hidden] { display: none; }
.site-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.site-menu__grid a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
}
.site-menu__grid a:hover {
  border-color: var(--ink);
  background: var(--bg-tint);
  color: var(--mint-deep);
}

.site-search {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.site-search[hidden] { display: none; }
.site-search__label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}
.site-search__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.site-search input {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 2px;
  min-height: 46px;
  padding: 0 14px;
  font: 500 16px var(--sans);
  color: var(--ink);
  background: #fff;
}
.site-search input:focus {
  outline: 3px solid rgba(60, 207, 161, 0.28);
  outline-offset: 1px;
}
.site-search__hint {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.search-panel {
  border: 1px solid var(--ink);
  background: var(--bg-soft);
  padding: 24px;
  margin-bottom: 32px;
}
.search-panel__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.search-panel input {
  width: 100%;
  border: 1px solid var(--ink);
  min-height: 50px;
  padding: 0 14px;
  font: 500 17px var(--sans);
  color: var(--ink);
  background: #fff;
}
.search-panel input:focus {
  outline: 3px solid rgba(60, 207, 161, 0.28);
  outline-offset: 1px;
}
.search-results {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.search-result {
  display: block;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.search-result__cat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
  font-weight: 700;
}
.search-result h2 {
  margin: 6px 0 8px;
  font-family: var(--titles);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.search-result p {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
}
.search-empty {
  padding: 24px 0;
  color: var(--muted);
}

.masthead {
  padding: 32px 0 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.wordmark {
  font-family: var(--titles);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
  hyphens: manual;
  word-break: keep-all;
}
.wordmark__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--mint);
  display: inline-block;
  margin-bottom: 0.6em;
}
.wordmark__suffix {
  color: var(--mint-deep);
  font-style: italic;
  font-weight: 400;
}
.masthead__tag {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  font-style: italic;
  line-height: 1.25;
  color: var(--ink);
  max-width: 28ch;
  text-align: right;
}

/* nav strip */
.nav-strip {
  border-top: 1px solid var(--ink);
  padding: 18px 0;
}
.nav {
  display: flex;
  gap: 36px;
  align-items: center;
  font-weight: 600;
}
.nav a {
  font-size: 16px;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--mint-deep); }
.nav a.active {
  color: var(--mint-deep);
}
.nav a.active::before {
  content: "";
  position: absolute;
  left: -10px; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mint);
}
.nav__quick {
  font-weight: 700;
  color: var(--ink);
  margin-right: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all .15s ease;
  border: 1px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: var(--mint-deep); }
.btn-mint {
  background: var(--mint);
  color: var(--ink);
}
.btn-mint:hover { background: var(--mint-deep); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn-arrow:hover { color: var(--mint-deep); gap: 12px; }

/* ---------- Section heads (with mint dot prefix) ---------- */
.fi-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.fi-head__icon {
  width: 36px; height: 36px;
  background: rgba(60, 207, 161, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.fi-head__title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.fi-rule {
  height: 1px;
  background: var(--ink);
  margin-bottom: 32px;
  position: relative;
}
.fi-rule::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 80px; height: 3px;
  background: var(--mint);
}

/* ---------- Hero (featured top story + sidebar) ---------- */
.home-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding: 40px 0 80px;
  align-items: start;
}
.home-hero__main { display: flex; flex-direction: column; gap: 32px; }
.home-hero__article { display: flex; flex-direction: column; cursor: pointer; }
.home-hero__media {
  background: var(--bg-soft);
  border-radius: 4px;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.home-hero__main:hover .home-hero__media,
.home-hero__article:hover .home-hero__media { transform: translateY(-4px); box-shadow: 0 14px 30px -18px rgba(10,37,64,0.25); }

/* ---------- Dark Field Guide card ---------- */
.guide-card {
  display: block;
  text-decoration: none;
  background: var(--ink);
  color: #f5efe2;
  border-radius: 6px;
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  flex: 1;
}
.guide-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px rgba(10,37,64,0.55); }
.guide-card::after {
  content: "";
  position: absolute;
  right: -120px; bottom: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60,207,161,0.18), rgba(60,207,161,0) 70%);
  pointer-events: none;
}
.guide-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 18px;
}
.guide-card__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); display: inline-block; }
.guide-card__title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 14px;
  max-width: 22ch;
}
.guide-card__sum {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245,239,226,0.78);
  margin: 0 0 24px;
  max-width: 56ch;
}
.guide-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.guide-card__list li {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245,239,226,0.92);
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-top: 1px solid rgba(245,239,226,0.14);
  padding-top: 12px;
}
.guide-card__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--mint);
  letter-spacing: 0.1em;
}
.guide-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--mint);
  border-bottom: 1px solid var(--mint);
  padding-bottom: 4px;
  position: relative;
  z-index: 1;
}
@media (max-width: 700px) {
  .guide-card { padding: 28px 24px; }
  .guide-card__title { font-size: 26px; }
  .guide-card__list { grid-template-columns: 1fr; }
}
.home-hero__cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-tint);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 16px;
  align-self: flex-start;
}
.home-hero__title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
  max-width: 18ch;
}
.home-hero__title:hover { color: var(--mint-deep); cursor: pointer; }
.home-hero__sum {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 16px;
  max-width: 56ch;
}
.home-hero__byline {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 12px 0 18px;
}
.home-hero__sidebar { display: flex; flex-direction: column; }

/* sidebar featured (one with image) */
.feat-side__img {
  background: var(--bg-soft);
  border-radius: 4px;
  aspect-ratio: 16 / 9;
  margin: 0 0 14px;
  overflow: hidden;
  position: relative;
  transition: transform .3s ease;
}
.feat-side__item:hover .feat-side__img { transform: translateY(-3px); }
.feat-side__divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}
.feat-side__item + .feat-side__item { margin-top: 0; }
.feat-side__title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px;
  cursor: pointer;
}
.feat-side__title:hover { color: var(--mint-deep); }
.feat-side__sum {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 12px;
}
.feat-side__byline {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.more-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 16px 0 0;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.more-link:hover { color: var(--mint-deep); }

/* ---------- Latest news (FI list style) ---------- */
.latest {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}
.latest__item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  align-items: start;
}
.latest__item:hover .latest__title { color: var(--mint-deep); }
.latest__img {
  background: var(--bg-soft);
  border-radius: 4px;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}
.latest__item:hover .latest__img { transform: translateY(-2px); }
.latest__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: 8px;
}
.latest__title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.latest__sum {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest__date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Industry exchange band ---------- */
.exchange {
  background: var(--ink);
  color: #fff;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.exchange::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 4px;
  background: var(--mint);
}
.exchange__title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 12px 0 0 0;
  color: #fff;
}
.exchange__eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 700;
}
.exchange__body p { color: rgba(255, 255, 255, 0.78); margin: 0 0 16px; }
.exchange__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.btn-on-dark {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-on-dark:hover {
  background: var(--mint);
  color: var(--ink);
  border-color: var(--mint);
}
.btn-on-dark-primary {
  background: var(--mint);
  color: var(--ink);
  border: 1px solid var(--mint);
}
.btn-on-dark-primary:hover { background: #fff; border-color: #fff; }

/* ---------- Newsletter ---------- */
.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter h3 {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.newsletter p { color: var(--muted); margin: 0; max-width: 50ch; font-size: 15px; }
.newsletter__form {
  display: flex;
  border: 1px solid var(--ink);
  padding: 6px 6px 6px 18px;
  background: #fff;
  gap: 12px;
  align-items: center;
}
.newsletter__form input {
  flex: 1;
  border: 0;
  outline: 0;
  font-family: inherit;
  font-size: 15px;
  background: transparent;
  color: var(--ink);
  padding: 8px 0;
}
.newsletter__form input::placeholder { color: var(--muted); }

/* ---------- Footer ---------- */
.footer {
  padding: 64px 0 32px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  margin-top: 80px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer h5 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
  font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 6px 0; font-size: 14px; }
.footer a:hover { color: var(--mint); }
.footer__brand {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.footer__brand .dot { color: var(--mint); }
.footer__tag { color: rgba(255,255,255,0.6); font-size: 14px; max-width: 36ch; line-height: 1.5; }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Page heads ---------- */
.page-head {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
}
.page-head h1 {
  font-family: var(--titles);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 12px 0 16px;
  max-width: 22ch;
  color: var(--ink);
}
.page-head p {
  font-size: 18px;
  color: var(--muted);
  max-width: 60ch;
  margin: 0;
  line-height: 1.55;
}

/* ---------- Fruit report series tabs ---------- */
.report-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 22px 0 0;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.report-tabs::-webkit-scrollbar { display: none; }
.report-tab {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.66);
  color: var(--ink);
  border-radius: 999px;
  min-height: 42px;
  padding: 0 14px 0 16px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  font: inherit;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.report-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(30,87,70,.28);
}
.report-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.report-tab span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}
.report-tab strong {
  min-width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.report-tab.is-active strong {
  background: rgba(255,255,255,.18);
  color: #fff;
}

/* ---------- Article listing — list rows w/ image ---------- */
.list {
  display: flex;
  flex-direction: column;
  padding: 16px 0 80px;
}
.list__row {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 36px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  cursor: pointer;
}
.list__row.is-filtered-out {
  display: none;
}
.list__row:hover .list__title { color: var(--mint-deep); }
.list__img {
  background: var(--bg-soft);
  border-radius: 4px;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}
.list__row:hover .list__img { transform: translateY(-2px); }
.list__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: 10px;
}
.list__title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--ink);
}
.list__sum {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  max-width: 60ch;
  line-height: 1.55;
}
.list__meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ---------- Article (single) ---------- */
/* Use padding-top/bottom (not the 4-side shorthand) so the horizontal padding
   from .container-narrow on the same element is preserved on small viewports. */
.article-head {
  padding-top: 56px;
  padding-bottom: 24px;
}
.article-head__meta {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.article-head__meta .accent { color: var(--mint-deep); }

/* Inline "UPDATED" badge inside the meta strip. Inherits the strip's
   uppercase + letter-spacing so it flows with the rest of the masthead,
   and gains a small mint dot prefix so the freshness cue is unmistakable
   without disrupting the editorial line. */
.meta-updated {
  color: var(--mint-deep);
  position: relative;
  padding-left: 14px;
}
.meta-updated::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(60, 207, 161, 0.18);
}

/* Sub-line below the meta strip: small serif italic note carrying the
   original publication date. Sits visually adjacent to the meta line
   so the eye reads it as supplementary context, not a second headline. */
.article-head__original {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  margin: -16px 0 28px;
}
.article-head__original time { color: inherit; }

/* Editorial byline link. Inherits surrounding type (italic in the article
   masthead, regular weight in the home hero byline). Subtle on the page,
   turns mint-deep on hover to invite the click through to /editorial/. */
.byline-link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s ease, border-bottom-color 0.15s ease;
}
.byline-link:hover {
  color: var(--mint-deep);
  border-bottom-color: var(--mint-deep);
}
.article-head__original .byline-link {
  color: inherit;
  border-bottom-color: rgba(10, 37, 64, 0.18);
}
.article-head__original .byline-link:hover {
  color: var(--mint-deep);
  border-bottom-color: var(--mint-deep);
}

.article-head h1 {
  font-family: var(--titles);
  font-weight: 700;
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0 0 24px;
  max-width: 22ch;
  color: var(--ink);
}
.article-head__intro {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 32ch;
  margin: 0;
  font-style: italic;
}

.article-cover {
  background: var(--bg-soft);
  aspect-ratio: 16 / 9;
  margin: 32px 0 48px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.article-cover__caption {
  position: absolute;
  left: 24px; bottom: 20px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  background: rgba(10, 37, 64, 0.7);
  padding: 6px 12px;
}
.article-body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-2);
}
.article-body h2 {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 48px 0 16px;
  color: var(--ink);
}
.article-body h3 {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 22px;
  margin: 32px 0 8px;
  color: var(--ink);
}
.article-body p { margin: 0 0 20px; }
.article-body p > b, .article-body strong { color: var(--ink); }

.takeaways {
  background: var(--bg-tint);
  border-left: 4px solid var(--mint);
  padding: 28px 32px;
  margin: 40px 0;
}
.takeaways__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 14px;
}
.takeaways ul {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.takeaways li {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  padding-left: 24px;
  position: relative;
}
.takeaways li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 1px;
  background: var(--mint);
}

.faq {
  margin: 56px 0 16px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.faq > h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 24px;
}
.faq__item { margin: 0 0 28px; }
.faq__item:last-child { margin-bottom: 0; }
.faq__q {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
}
.faq__a p { margin: 0 0 12px; }
.faq__a p:last-child { margin-bottom: 0; }
.faq__a ul, .faq__a ol { margin: 0 0 12px 22px; }

.glossary-toc {
  background: var(--bg-tint);
  border-left: 4px solid var(--mint);
  padding: 24px 28px;
  margin: 0 0 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.glossary-toc__group h3 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 10px;
}
.glossary-toc__group ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.glossary-toc__group a {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.glossary-toc__group a:hover { border-bottom-color: var(--mint); }

.glossary-section {
  margin: 0 0 48px;
}
.glossary-section__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.glossary-list { margin: 0; padding: 0; }
.glossary-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}
.glossary-item:last-child { border-bottom: none; }
.glossary-item__term {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 6px;
}
.glossary-item__def {
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft, var(--ink));
}
.glossary-item:target .glossary-item__term { color: var(--mint-deep); }

/* Hub-list term link + "read full definition" arrow */
.glossary-item__link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.15s ease, color 0.15s ease;
}
.glossary-item__link:hover {
  color: var(--mint-deep);
  border-bottom-color: var(--mint);
}
.glossary-item__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.glossary-item__more:hover { opacity: 1; }

/* ---------- Per-term glossary page ---------- */
/* Each of the 36 glossary terms lives at /glossary/<slug>/. The page is a
   standalone reference document: full definition, related siblings,
   articles that mention the term, and a back-link to the hub. Styling
   matches the per-category pillar pattern. */
.glossary-term__head .eyebrow-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.15s ease;
}
.glossary-term__head .eyebrow-link:hover { border-bottom-color: var(--mint); }

.glossary-term {
  padding: 8px 0 48px;
}
.glossary-term__definition {
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 56px;
  max-width: 64ch;
}
.glossary-term__definition em {
  color: var(--ink);
  font-style: italic;
}
.glossary-term__definition strong { color: var(--ink); font-weight: 600; }

.glossary-term__h2 {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.glossary-term__related { margin: 0 0 56px; }
.glossary-term__related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.glossary-term__related-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.glossary-term__related-card:hover {
  border-color: var(--mint);
  transform: translateY(-1px);
}
.glossary-term__related-name {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.glossary-term__related-summary {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.glossary-term__mentions { margin: 0 0 48px; }
.glossary-term__mentions--empty .muted a { color: var(--mint-deep); }
.glossary-term__mentions-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.glossary-term__mention {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "cat date"
    "title title";
  align-items: baseline;
  gap: 4px 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding-left 0.15s ease;
}
.glossary-term__mentions-list li:last-child .glossary-term__mention { border-bottom: none; }
.glossary-term__mention:hover { padding-left: 8px; }
.glossary-term__mention-cat {
  grid-area: cat;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
}
.glossary-term__mention-date {
  grid-area: date;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.glossary-term__mention-title {
  grid-area: title;
  font-family: var(--titles);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.glossary-term__mention:hover .glossary-term__mention-title { color: var(--mint-deep); }

.glossary-term__back {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.glossary-term__back-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.15s ease;
}
.glossary-term__back-link:hover { border-bottom-color: var(--mint-deep); }
.glossary-term__inline-link { color: var(--mint-deep); }

/* ---------- Pillar pages (category hubs) ---------- */
.pillar {
  padding-top: 8px;
  padding-bottom: 24px;
}

/* "On this page" navigation: mint accent eyebrow + numbered list, matches the
   takeaways block visually so it reads as a peer affordance, not a sidebar. */
.pillar-toc {
  background: var(--bg-tint);
  border-left: 4px solid var(--mint);
  padding: 24px 32px;
  margin: 24px 0 56px;
}
.pillar-toc__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 14px;
}
.pillar-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: pillar-toc-counter;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px 32px;
}
.pillar-toc__list li {
  counter-increment: pillar-toc-counter;
  position: relative;
  padding-left: 36px;
  font-family: var(--titles);
  font-size: 17px;
  line-height: 1.4;
}
.pillar-toc__list li::before {
  content: counter(pillar-toc-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2px;
  font-family: var(--mono, "JetBrains Mono", "Menlo", monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--mint-deep);
}
.pillar-toc__list a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.15s ease, color 0.15s ease;
}
.pillar-toc__list a:hover {
  border-bottom-color: var(--mint);
  color: var(--mint-deep);
}

/* Pillar prose: mirrors .article-body so the editorial typography is
   consistent across long-form content. */
.pillar-body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-2);
}
.pillar-body h2 {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 56px 0 16px;
  color: var(--ink);
  scroll-margin-top: 96px;
}
.pillar-body h3 {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 22px;
  margin: 32px 0 8px;
  color: var(--ink);
}
.pillar-body p { margin: 0 0 20px; }
.pillar-body p > b, .pillar-body strong { color: var(--ink); }
.pillar-body ul, .pillar-body ol { margin: 0 0 20px 1.4em; padding: 0; }
.pillar-body li { margin-bottom: 6px; }
.pillar-body blockquote {
  margin: 32px 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--mint);
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.5;
}

/* Inline related-article grid (rendered from `:::related` blocks).
   Light borders, no shadow, mint hover treatment — matches the
   restrained field-guide visual language. */
.pillar-related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 16px 0 40px;
}
.pillar-card {
  border: 1px solid var(--line);
  padding: 22px 24px;
  background: #fff;
  transition: border-color 0.15s ease, transform 0.15s ease;
  text-decoration: none;
}
.pillar-card:hover {
  border-color: var(--mint);
  transform: translateY(-1px);
}
.pillar-card__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 10px;
}
.pillar-card__title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 8px;
}
.pillar-card__sum {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 14px;
  /* clamp to 3 lines so cards stay aligned in the grid */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pillar-card__cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Category-level FAQ sits inside the narrow column; the .faq base style
   already handles the visual treatment — this is mostly spacing. */
.pillar-faq {
  margin-top: 64px;
}

/* The full archive band that follows the pillar — a thin separator with
   an eyebrow label so readers know they have moved from editorial to index. */
.archive-head {
  border-top: 1px solid var(--line);
  padding: 48px 0 16px;
  margin-top: 24px;
}
.archive-head .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
}

/* ---------- Cross-fruit comparison table ---------- */
/* Lives inside the article body just before the conclusion. Renders as a
   restrained reference card — light borders, mono numerics, mint accents
   on the self row — so it reads as a field-guide artifact, not a visual
   intrusion into the prose. */
.fruit-compare {
  margin: 56px 0 32px;
  padding: 28px 32px;
  background: var(--bg-tint);
  border-left: 4px solid var(--mint);
}
.fruit-compare__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 10px;
}
.fruit-compare__title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px;
}
.fruit-compare__intro {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 22px;
  max-width: 60ch;
}
.fruit-compare__intro strong {
  color: var(--ink);
  font-weight: 600;
}
.fruit-compare__scroll {
  overflow-x: auto;
  margin: 0 -32px;        /* bleed the scroll edges to the section padding */
  padding: 0 32px;
}
.fruit-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.45;
  background: #fff;
  border: 1px solid var(--line);
}
.fruit-compare__table thead th {
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 14px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.fruit-compare__table tbody td,
.fruit-compare__table tbody th {
  padding: 14px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--ink-2);
  font-weight: 400;
  text-align: left;
}
.fruit-compare__table tbody tr:last-child td,
.fruit-compare__table tbody tr:last-child th {
  border-bottom: none;
}
.fruit-compare__name {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  white-space: nowrap;
}
.fruit-compare__badge {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  border-radius: 2px;
  background: var(--mint);
  color: #0A2540;
  font-family: var(--mono, "JetBrains Mono", "Menlo", monospace);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  vertical-align: middle;
}
.fruit-compare__num {
  font-family: var(--mono, "JetBrains Mono", "Menlo", monospace);
  font-size: 13px;
  color: var(--ink);
  white-space: nowrap;
}
.fruit-compare__format {
  font-size: 13px;
  color: var(--muted);
  min-width: 200px;
}
.fruit-compare__table tr.is-self {
  background: linear-gradient(90deg, rgba(60, 207, 161, 0.10), rgba(60, 207, 161, 0.02));
}
.fruit-compare__table tr.is-self .fruit-compare__name {
  color: var(--mint-deep);
}
.fruit-compare__table tr.is-self td,
.fruit-compare__table tr.is-self th {
  color: var(--ink);
}
.fruit-compare__caption {
  font-size: 12px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  margin: 20px 0 0;
  letter-spacing: 0;
}

@media (max-width: 720px) {
  .fruit-compare {
    padding: 24px 20px;
  }
  .fruit-compare__scroll {
    margin: 0 -20px;
    padding: 0 20px;
  }
  .fruit-compare__title {
    font-size: 22px;
  }
}

/* ---------- Pairwise comparison page ---------- */
.compare-page {
  padding-top: 8px;
  padding-bottom: 48px;
}
.compare-page__table {
  margin-top: 24px;
}
.compare-page__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}
.compare-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}
.compare-card__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 12px;
}
.compare-card__name {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 14px;
}
.compare-card__one-line {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 20px;
  font-style: italic;
}
.compare-card__attrs {
  margin: 0 0 20px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.compare-card__attrs div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.compare-card__attrs dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.compare-card__attrs dd {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.compare-card__attrs dd.is-mono {
  font-family: var(--mono, "JetBrains Mono", "Menlo", monospace);
  font-size: 13px;
}
.compare-card__origins {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  margin-bottom: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.compare-card__origins-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.compare-card__origins-value {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}

.compare-card__link {
  margin-top: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 8px;
}
.compare-card__link:hover { color: var(--ink); }

.compare-page__diffs {
  margin: 48px 0 0;
}
.compare-page__diffs h2,
.compare-page__choice h2,
.compare-page__faq h2 {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.compare-page__diffs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-page__diffs li {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
}
.compare-page__diffs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 1px;
  background: var(--mint);
}
.compare-page__diffs strong { color: var(--ink); font-weight: 600; }

.compare-page__choice {
  margin: 48px 0 0;
}
.compare-page__choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-page__choice-card {
  background: var(--bg-tint);
  border-left: 4px solid var(--mint);
  padding: 24px 28px;
}
.compare-page__choice-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 14px;
}
.compare-page__choice-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compare-page__choice-card li {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}
.compare-page__choice-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mint-deep);
  font-weight: 700;
}

.compare-page__faq {
  margin: 56px 0 0;
}

.compare-page__more {
  margin: 64px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.compare-page__more-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 18px;
}
.compare-page__more-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.compare-page__more-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  transition: border-color 0.15s ease;
}
.compare-page__more-link:hover { border-color: var(--mint); }
.compare-page__more-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
}
.compare-page__more-title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}

@media (max-width: 720px) {
  .compare-page__cards,
  .compare-page__choice-grid,
  .compare-page__more-links {
    grid-template-columns: 1fr;
  }
}

/* ---------- /articles/ meta-pillar ---------- */
/* Reuses .pillar-toc, .pillar-related, .pillar-card from the per-category
   pillar pattern. Only the per-section header and the "See all" link need
   bespoke styling because the meta-pillar surfaces 5 sections in sequence
   rather than one long-form pillar body. */
.meta-pillar {
  padding-top: 8px;
  padding-bottom: 24px;
}
.meta-pillar__sections {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-bottom: 64px;
}
.meta-pillar__section {
  scroll-margin-top: 96px;
}
.meta-pillar__section-head {
  margin-bottom: 24px;
}
.meta-pillar__section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 10px;
}
.meta-pillar__section-title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.meta-pillar__section-lead {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 24px;
  max-width: 64ch;
}
.meta-pillar__see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.15s ease;
}
.meta-pillar__see-all:hover {
  border-bottom-color: var(--mint-deep);
}
.meta-pillar__faq {
  margin-top: 64px;
}

/* ---------- "Compare with..." strip on fruit reports ---------- */
/* Lives at the bottom of fruit-report articles, after the FAQ. Surfaces the
   top 3–4 pairwise comparison pages for this fruit's natural siblings. Uses
   the same restrained card pattern as `.pillar-related` so it reads as a
   field-guide artifact rather than a marketing block. */
.compare-with {
  margin: 64px 0 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.compare-with__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 10px;
}
.compare-with__heading {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 22px;
}
.compare-with__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}
.compare-with__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
  min-height: 96px;
}
.compare-with__card:hover {
  border-color: var(--mint);
  transform: translateY(-1px);
}
.compare-with__pair {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  font-family: var(--titles);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.compare-with__vs {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--mint-deep);
}
.compare-with__self,
.compare-with__other { color: var(--ink); }
.compare-with__cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.compare-with__all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.15s ease;
}
.compare-with__all:hover {
  border-bottom-color: var(--mint-deep);
}

/* ---------- Calculators (backlink-bait interactive tools) ---------- */
/* Two on-site tools at /calculators/fruit-equivalency/ and
   /calculators/pouch-barrier/. The hub at /calculators/ surfaces both.
   Visual language: same restrained card pattern as the rest of the site,
   slightly heavier form elements so the tool feels deliberate. */
.calculators-hub {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.calculators-hub__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 28px 24px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.calculators-hub__card:hover {
  border-color: var(--mint);
  transform: translateY(-1px);
}
.calculators-hub__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
}
.calculators-hub__title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.calculators-hub__desc {
  font-family: var(--serif);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.calculators-hub__cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.calc {
  margin: 0 0 40px;
  padding: 28px;
  background: var(--bg-tint);
  border: 1px solid var(--line);
}
.calc__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 24px;
}
.calc__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.calc__row--split > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
}
.calc__input {
  font-family: var(--serif);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color 0.15s ease;
}
.calc__input:focus {
  outline: none;
  border-color: var(--mint-deep);
}
.calc__result {
  margin: 0;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--mint-deep);
}
.calc-result__title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 14px;
}
.calc-result__list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc-result__row {
  display: grid;
  grid-template-columns: minmax(160px, 38%) 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.calc-result__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.calc-result__row dt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.calc-result__row dd {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  margin: 0;
  line-height: 1.5;
}
.calc-result__note {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.calc__assumptions {
  margin: 22px 0 0;
  padding: 0;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--muted);
}
.calc__assumptions summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--mint-deep);
  padding: 6px 0;
}
.calc__assumptions ul {
  margin: 8px 0 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc-context {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}
.calc-context h2 {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.calc-context p {
  margin: 0 0 14px;
}
.calc-context a {
  color: var(--ink);
  border-bottom: 1px solid var(--mint);
  text-decoration: none;
  transition: border-bottom-color 0.15s ease;
}
.calc-context a:hover {
  color: var(--mint-deep);
  border-bottom-color: var(--mint-deep);
}

/* ---------- Flagship annual report template ---------- */
/* Used by long-form industry reports (e.g. /state-of-freeze-dried-fruit-2026/).
   Distinct from the article template: a covered hero with edition banner,
   numbered TOC, generous prose width, and a heavier reference apparatus at
   the bottom. The visual language matches the rest of the field guide —
   mint-deep eyebrows, Larken titles, restrained borders — but every block
   is larger and more deliberate. This is the "stop, sit down, read" format. */
.report {
  padding-bottom: 80px;
}
.report-cover {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  margin-bottom: 0;
}
.report-cover__edition {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 18px;
}
.report-cover__title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: clamp(36px, 5.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 18px;
}
.report-cover__subtitle {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 62ch;
}
.report-cover__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.report-cover__meta a {
  color: var(--muted);
}
.report-cover__meta a:hover {
  color: var(--mint-deep);
}
.report-cover__updated {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13.5px;
  color: var(--muted);
}
.report-intro {
  padding: 48px 0 16px;
}
.report-intro__lede {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  max-width: 62ch;
}
.report-body {
  padding-top: 16px;
}
.report-toc {
  margin: 0 0 40px;
  padding: 24px 28px;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-left: 3px solid var(--mint-deep);
}
.report-toc__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 14px;
}
.report-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.report-toc__item {
  margin: 0;
}
.report-toc__link {
  display: flex;
  align-items: baseline;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  padding: 4px 0;
  transition: color 0.15s ease;
}
.report-toc__link:hover {
  color: var(--mint-deep);
}
.report-toc__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mint-deep);
  font-weight: 700;
  min-width: 28px;
}
.report-toc__title {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.4;
}
.report-takeaways {
  margin: 0 0 40px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--mint);
}
.report-takeaways__title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 14px;
}
.report-takeaways ul {
  margin: 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.report-takeaways li {
  font-family: var(--serif);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
}
.report-prose {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
}
.report-prose h2 {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 56px 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 80px;
}
.report-prose h3 {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 32px 0 14px;
}
.report-prose p {
  margin: 0 0 18px;
}
.report-prose a {
  color: var(--ink);
  border-bottom: 1px solid var(--mint);
  text-decoration: none;
  transition: border-bottom-color 0.15s ease;
}
.report-prose a:hover {
  color: var(--mint-deep);
  border-bottom-color: var(--mint-deep);
}
.report-prose ul,
.report-prose ol {
  margin: 0 0 22px;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.report-prose strong {
  font-weight: 600;
  color: var(--ink);
}
.report-prose hr {
  margin: 40px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

/* ---------- "Continue reading in [Category]" strip ---------- */
/* The pillar-aware next-stop strip. Lives between the article's Sources
   block and the Compare-with strip (on fruit reports). Distinguished from
   the compare-with cards by including the publication date inline — the
   visual reads as "an editorial reading path" rather than "a comparison
   index." Uses bg-tint to subtly separate from the surrounding white. */
.continue-reading {
  margin: 56px 0 16px;
  padding: 28px 24px 32px;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.continue-reading__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 10px;
}
.continue-reading__heading {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 20px;
}
.continue-reading__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 0 0 22px;
}
.continue-reading__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
  min-height: 112px;
}
.continue-reading__card:hover {
  border-color: var(--mint);
  transform: translateY(-1px);
}
.continue-reading__date {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.continue-reading__title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  flex: 1;
}
.continue-reading__cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.continue-reading__all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.15s ease;
}
.continue-reading__all:hover {
  border-bottom-color: var(--mint-deep);
}

/* ---------- Primary sources & further reading ---------- */
/* Outbound citations to authoritative publishers (FDA, USDA, IFT, ASTM, ISO).
   Lives below the FAQ on technical articles. Visually quieter than the
   compare-with strip — this is a reference apparatus, not a navigation block.
   Numbered list (academic convention), mint-deep eyebrow + heading scale that
   matches the rest of the field-guide chrome. */
.sources {
  margin: 56px 0 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.sources__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 10px;
}
.sources__heading {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 20px;
}
.sources__list {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 24px;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--ink);
}
.sources__item {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  padding-left: 4px;
}
.sources__item::marker {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 13px;
  color: var(--mint-deep);
}
.sources__link {
  text-decoration: none;
  color: inherit;
  display: inline;
  border-bottom: 1px solid var(--mint);
  transition: border-bottom-color 0.15s ease, color 0.15s ease;
}
.sources__link:hover {
  color: var(--mint-deep);
  border-bottom-color: var(--mint-deep);
}
.sources__title {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
}
.sources__link:hover .sources__title {
  color: var(--mint-deep);
}
.sources__publisher {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  margin-left: 6px;
}
.sources__note {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.sources__disclosure {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- 404 / Not Found page ---------- */
/* Field-guide-aesthetic 404. Mint-deep eyebrow, serif lede, restrained card
   grid that re-uses the same border-and-hover language as the rest of the
   site. The visitor should feel like they landed in a quiet directory, not
   on an error screen. */
.not-found {
  padding: 56px 0 88px;
}
.not-found__head {
  text-align: left;
  margin: 0 0 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.not-found__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 14px;
}
.not-found__h1 {
  font-family: var(--titles);
  font-weight: 700;
  font-size: clamp(34px, 4.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
.not-found__intro {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  max-width: 60ch;
}

/* Inline site search — visually a sibling of the masthead search panel, but
   posts to /search/ so the visitor lands in the full search experience. */
.not-found__search {
  margin: 0 0 56px;
  padding: 24px;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.not-found__search-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 10px;
}
.not-found__search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.not-found__search-row input {
  font-family: var(--serif);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color 0.15s ease;
}
.not-found__search-row input:focus {
  outline: none;
  border-color: var(--mint-deep);
}

/* Section dividers (categories + recent reports). Lighter than the masthead
   divider, more like the field-guide section breaks throughout the site. */
.not-found__section {
  margin: 0 0 48px;
}
.not-found__section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin: 0 0 10px;
}
.not-found__section-h2 {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 20px;
}

/* Category cards — five categories, same border-and-hover language as the
   compare-with strip cards on fruit reports. */
.not-found__cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.not-found__cat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
  min-height: 64px;
}
.not-found__cat-card:hover {
  border-color: var(--mint);
  transform: translateY(-1px);
}
.not-found__cat-name {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.not-found__cat-cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Recent fruit-report cards — slightly taller than category cards so the
   long titles wrap cleanly. */
.not-found__report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}
.not-found__report-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
  min-height: 96px;
}
.not-found__report-card:hover {
  border-color: var(--mint);
  transform: translateY(-1px);
}
.not-found__report-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
}
.not-found__report-title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.not-found__see-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.15s ease;
}
.not-found__see-all:hover {
  border-bottom-color: var(--mint-deep);
}

/* Broken-link reporter — sits at the bottom in a quiet, italic serif line.
   Not a CTA; just an invitation if something is genuinely wrong. */
.not-found__report-link {
  margin: 40px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--muted);
}
.not-found__report-link a {
  color: var(--mint-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--mint);
  transition: border-bottom-color 0.15s ease;
}
.not-found__report-link a:hover {
  border-bottom-color: var(--mint-deep);
}

@media (max-width: 640px) {
  .not-found__search-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Compare hub ---------- */
.compare-hub {
  padding: 16px 0 48px;
}
.compare-hub__section {
  margin: 0 0 48px;
}
.compare-hub__h2 {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.compare-hub__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 8px 24px;
}
.compare-hub__item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding-left 0.15s ease;
}
.compare-hub__item:hover {
  padding-left: 8px;
}
.compare-hub__pair {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.compare-hub__vs {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--mint-deep);
  margin: 0 4px;
}
.compare-hub__item:hover .compare-hub__pair {
  color: var(--mint-deep);
}

.glossary-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted var(--mint);
  transition: border-bottom-color 0.15s ease, color 0.15s ease;
}
.glossary-link:hover {
  color: var(--mint-deep);
  border-bottom-color: var(--mint-deep);
  border-bottom-style: solid;
}

.pullquote {
  border-top: 2px solid var(--mint);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  margin: 48px 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pullquote { font-family: var(--titles); }
.pullquote::before {
  content: "“";
  font-size: 56px;
  color: var(--mint);
  line-height: 0.5;
  vertical-align: -0.3em;
  margin-right: 8px;
}

.note-box {
  background: var(--bg-soft);
  padding: 22px 26px;
  margin: 32px 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  border-left: 3px solid var(--ink);
}
.note-box__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}

.exchange-cta {
  border: 1px solid var(--ink);
  padding: 28px 32px;
  margin: 56px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  position: relative;
}
.exchange-cta::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: var(--mint);
}
.exchange-cta strong { font-family: var(--serif); font-size: 20px; font-weight: 600; }

.related {
  border-top: 1px solid var(--ink);
  padding-top: 48px;
  margin-top: 80px;
  position: relative;
}
.related::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 80px; height: 3px;
  background: var(--mint);
}
.related h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 32px;
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.related__card { cursor: pointer; }
.related__card:hover .related__title { color: var(--mint-deep); }
.related__img {
  background: var(--bg-soft);
  border-radius: 4px;
  aspect-ratio: 16 / 9;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease;
}
.related__card:hover .related__img { transform: translateY(-2px); }
.related__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: 8px;
}
.related__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

/* ---------- Industry exchange page ---------- */
.exch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}
.exch-card {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 36px 36px 32px;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.exch-card__num {
  font-size: 11px;
  font-weight: 700;
  color: var(--mint-deep);
  letter-spacing: 0.16em;
  margin-bottom: 24px;
}
.exch-card__title {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink);
}
.exch-card__body { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 0 0 24px; flex: 1; }

.who-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.who-list li {
  padding: 14px 16px 14px 0;
  font-size: 15px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.who-list li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--mint);
  flex: none;
}

/* ---------- About / Contact ---------- */
.prose {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-2);
}
.prose p { margin: 0 0 24px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  padding: 48px 0;
}
.contact-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-line__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-line a {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 24px;
  color: var(--mint-deep);
  letter-spacing: -0.01em;
}
.contact-line a:hover { text-decoration: underline; }

.contact-side {
  background: var(--bg-soft);
  padding: 32px;
  border-top: 3px solid var(--mint);
}
.contact-side h4 {
  font-family: var(--titles);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--ink);
}
.contact-side .btn { width: 100%; justify-content: space-between; margin-top: 8px; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  margin: 48px 0;
}
.stats__cell {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.stats__cell:last-child { border-right: 0; }
.stats__num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 42px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--ink);
}
.stats__num em { font-style: normal; color: var(--mint-deep); }
.stats__lab {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Article hero illustrations ---------- */
.illust { width: 100%; height: 100%; display: block; }

/* Real-photo cover variant — fills the same wrappers as .illust */
.cover-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .home-hero { grid-template-columns: 1fr; }
  .latest { grid-template-columns: 1fr; }
  .nav { gap: 24px; flex-wrap: wrap; }
  .utility-btn--search { min-width: 200px; }
}
@media (max-width: 880px) {
  .container { padding: 0 20px; }
  .site-header__top {
    display: flex;
    align-items: stretch;
    gap: 10px;
    padding: 12px 0;
  }
  .site-header__top-left {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .utility-btn {
    width: 100%;
    justify-content: center;
    min-height: 42px;
    padding: 8px 12px;
  }
  .utility-btn--search {
    min-width: 0;
    padding-right: 12px;
  }
  .utility-btn--search svg {
    margin-left: 0;
    right: auto;
  }
  .site-header__top-right { display: none; }
  .site-menu { padding: 12px 0 16px; }
  .site-menu__grid { grid-template-columns: 1fr 1fr; }
  .site-search { padding: 12px 0 16px; }
  .site-search__row { grid-template-columns: 1fr; }
  .search-panel__row { grid-template-columns: 1fr; }
  .masthead { flex-direction: column; align-items: flex-start; gap: 12px; }
  .masthead__tag { text-align: left; }
  .nav-strip { padding: 12px 0; }
  .exchange { grid-template-columns: 1fr; padding: 48px 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .newsletter { grid-template-columns: 1fr; }
  .list__row { grid-template-columns: 1fr; gap: 16px; }
  .related__grid { grid-template-columns: 1fr; }
  .exch-grid { grid-template-columns: 1fr; }
  .who-list { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .latest__item { grid-template-columns: 120px 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .nav-strip {
    padding: 13px 0;
    overflow: hidden;
  }
  .nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 2px 0 4px;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav__quick { display: none; }
  .nav a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
    border-top: 0;
  }
  .nav a.active::before { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .who-list { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .nav { font-size: 14px; }
  .site-menu__grid { grid-template-columns: 1fr; }
  .wordmark { font-size: clamp(24px, 8vw, 34px); }
  .wordmark__dot { width: 8px; height: 8px; }
}

/* ---------- News wire (auto-updated) ---------- */
.news-wire { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 48px; }
.news-wire__item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.news-wire__src {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mint-deep); font-weight: 700;
}
.news-wire__title {
  font-family: var(--titles); font-weight: 700;
  font-size: 18px; line-height: 1.25; letter-spacing: -0.005em;
  color: var(--ink); margin: 0;
}
.news-wire__title a:hover { color: var(--mint-deep); }
.news-wire__meta {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.news-wire__empty {
  padding: 32px 0; color: var(--muted); font-size: 14px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .news-wire { grid-template-columns: 1fr; } }

/* Markdown-rendered article body extras */
.article-body ul, .article-body ol { margin: 0 0 20px 1.4em; padding: 0; }
.article-body li { margin-bottom: 6px; }
.article-body blockquote { margin: 0; padding: 0; border: 0; }
.article-body blockquote > p {
  border-top: 2px solid var(--mint);
  border-bottom: 1px solid var(--line);
  padding: 32px 0; margin: 48px 0;
  font-family: var(--titles);
  font-weight: 700; font-size: 28px; line-height: 1.3; letter-spacing: -0.01em;
  color: var(--ink);
}
.article-body blockquote > p::before {
  content: "“";
  font-size: 56px; color: var(--mint);
  line-height: 0.5; vertical-align: -0.3em; margin-right: 8px;
}
.article-body a { color: var(--mint-deep); border-bottom: 1px solid currentColor; }
.article-body a:hover { color: var(--ink); }
.article-body code { font-family: var(--mono); font-size: 0.92em; background: var(--bg-soft); padding: 2px 6px; border-radius: 2px; }

/* Anchor offset so in-page links don't tuck under the masthead */
:target { scroll-margin-top: 24px; }
