/* Longworth Seeds — fourth-generation seed grading · 1935 → today */

:root {
  /* palette (overridden by tweaks at runtime) */
  --navy: #102243;
  --navy-deep: #07112a;
  --navy-soft: #2a3b62;
  --leaf: #3c8a3c;
  --leaf-dark: #1f5a25;
  --leaf-light: #8ec449;
  --wheat: #c9a76e;
  --wheat-deep: #9a7d49;
  --stone: #f1eadb;
  --stone-warm: #e6ddc6;
  --paper: #faf6ec;
  --ink: #0e1a30;
  --ink-soft: #3b4862;
  --line: rgba(20, 36, 71, 0.14);
  --line-strong: rgba(20, 36, 71, 0.32);

  --accent: var(--leaf-dark);
  --accent-deep: #143f1a;
  --on-accent: #ffffff;

  --serif: 'Newsreader', 'Times New Roman', serif;
  --sans: 'Hanken Grotesk', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1480px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Type system ---------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.no-rule::before { display: none; }
.eyebrow.on-dark { color: rgba(255,255,255,0.7); }

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 7.6vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--leaf-dark);
}
.display.on-dark { color: #fff; }
.display.on-dark em { color: var(--wheat); }

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.h2 em { font-style: italic; color: var(--leaf-dark); font-weight: 300; }
.h2.on-dark { color: #fff; }
.h2.on-dark em { color: var(--wheat); }

.h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}

.lede {
  font-family: var(--sans);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
  text-wrap: pretty;
}

.label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.label.on-dark { color: rgba(255,255,255,0.65); }

/* ---------- Layout primitives ---------- */

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding: clamp(80px, 9vw, 144px) 0; }
.section.tight { padding: clamp(48px, 6vw, 88px) 0; }
.section.dark { background: var(--navy); color: #fff; }
.section.stone { background: var(--stone); }
.section.paper { background: var(--paper); }
.section.dark .lede { color: rgba(255,255,255,0.72); }
.section.dark .label { color: rgba(255,255,255,0.6); }

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-deep); }

.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: rgba(0,0,0,0.04); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-ghost.on-dark:hover { background: rgba(255,255,255,0.08); }

.btn-icon { width: 18px; height: 18px; display: inline-block; }

/* ---------- Header ---------- */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(250, 246, 236, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, color 250ms ease;
}
.header.scrolled {
  background: rgba(250, 246, 236, 0.94);
  border-bottom-color: var(--line);
}
.header.transparent {
  background: linear-gradient(180deg, rgba(7,17,42,0.55) 0%, rgba(7,17,42,0) 100%);
  color: #fff;
}
.header.transparent.scrolled {
  background: rgba(7, 17, 42, 0.82);
  border-bottom-color: rgba(255,255,255,0.08);
  color: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text .wordmark {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: inherit;
}
.brand-text .submark {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  margin-top: 5px;
  opacity: 0.7;
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  position: relative;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  opacity: 0.78;
  transition: opacity 180ms ease, background 180ms ease;
}
.nav a:hover { opacity: 1; }
.nav a.active {
  opacity: 1;
  background: rgba(20, 36, 71, 0.06);
}
.header.transparent .nav a.active { background: rgba(255,255,255,0.14); }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: background 180ms ease, transform 180ms ease;
}
.header-phone:hover { background: var(--accent-deep); transform: translateY(-1px); }
.header-phone svg { width: 16px; height: 16px; }

/* ---------- Footer ---------- */

.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 96px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1.1fr 1.2fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer a { color: #fff; font-size: 15px; opacity: 0.78; transition: opacity 180ms; }
.footer a:hover { opacity: 1; }
.footer-tagline {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
  color: #fff;
  max-width: 22ch;
  margin: 18px 0 24px;
  letter-spacing: -0.01em;
}
.footer-tagline em { font-style: italic; color: var(--wheat); font-weight: 300; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

/* ---------- Page transitions ---------- */

.route { animation: routeIn 520ms cubic-bezier(0.2, 0.7, 0.2, 1) both; }
@keyframes routeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Photo system ---------- */

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  isolation: isolate;
  background: var(--stone-warm);
}
.photo-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame .photo-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.photo-stripes {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(20,36,71,0.05) 0 14px,
      rgba(20,36,71,0.10) 14px 28px
    ),
    var(--stone-warm);
}
.photo-label {
  position: absolute;
  bottom: 14px; left: 14px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  background: rgba(250, 246, 236, 0.92);
  padding: 6px 10px;
  border-radius: 3px;
  text-transform: uppercase;
}
.photo-coord {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(250,246,236,0.85);
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Ken Burns drift */
@keyframes kenburns {
  0%   { transform: scale(1.04) translate(-0.5%, -0.5%); }
  50%  { transform: scale(1.10) translate(0.8%, 0.4%); }
  100% { transform: scale(1.04) translate(-0.5%, -0.5%); }
}
.photo-frame .kenburns {
  animation: kenburns 32s ease-in-out infinite;
  transform-origin: center;
}

/* Heritage / B&W feel */
.photo-frame.heritage > img {
  filter: contrast(1.05);
}
.photo-frame.heritage {
  background: #d6cab2;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo .kb {
  animation: kenburns 38s ease-in-out infinite;
  transform-origin: 50% 60%;
}
.hero-tint {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(7,17,42,0.55) 0%, transparent 55%),
    linear-gradient(180deg,
      rgba(7,17,42,0.50) 0%,
      rgba(7,17,42,0.15) 38%,
      rgba(7,17,42,0.30) 70%,
      rgba(7,17,42,0.92) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04) 0, transparent 1px),
    radial-gradient(circle at 30% 70%, rgba(0,0,0,0.04) 0, transparent 1px);
  background-size: 3px 3px, 5px 5px;
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 220px 40px rgba(0,0,0,0.55);
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: calc((100vw - 2 * var(--gutter)) / 12) 100%;
  background-position: var(--gutter) 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 72px;
}

.hero-corner {
  position: absolute;
  z-index: 5;
  top: 96px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.hero-corner.right { right: var(--gutter); flex-direction: row-reverse; text-align: right; }
.hero-corner.left  { left: var(--gutter); }
.hero-corner::after {
  content: '';
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.4);
}

.hero-eyebrows {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.chip {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
}
.chip-solid {
  background: var(--wheat);
  border-color: transparent;
  color: var(--navy-deep);
  font-weight: 600;
}

.hero-headline-row {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-aside {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 36ch;
  padding-bottom: 8px;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta-item .label { color: rgba(255,255,255,0.55); }
.hero-meta-item .value {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.01em;
  color: #fff;
}
.hero-meta-item .value em { font-style: italic; color: var(--wheat); font-weight: 300; }

/* ---------- Full-bleed cinematic break ---------- */

.bleed {
  position: relative;
  width: 100%;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}
.bleed-photo {
  position: absolute; inset: 0;
  z-index: 0;
}
.bleed-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.bleed-tint {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(7,17,42,0.35) 0%, rgba(7,17,42,0.55) 100%);
}
.bleed-inner {
  position: relative;
  z-index: 2;
  padding: clamp(120px, 18vw, 240px) 0;
}
.bleed-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 54px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 22ch;
  color: #fff;
  margin: 0 0 24px;
}
.bleed-quote em { color: var(--wheat); font-style: italic; }

/* ---------- Capability cards ---------- */

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.cap-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cap-card .photo-frame {
  aspect-ratio: 4/5;
}
.cap-card .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}
.cap-card .h3 { letter-spacing: -0.01em; }
.cap-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.cap-card .more {
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf-dark);
  display: inline-flex;
  gap: 8px;
}

/* ---------- Stats strip ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  background: var(--paper);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(52px, 5.2vw, 80px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-num em { font-style: italic; color: var(--leaf-dark); font-weight: 300; }
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Why list ---------- */

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.why-item {
  background: var(--navy);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-item .ix {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.18em;
}
.why-item h4 {
  font-family: var(--serif);
  font-size: 28px;
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: #fff;
}
.why-item h4 em { font-style: italic; color: var(--wheat); font-weight: 300; }
.why-item p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- Forms ---------- */

.form { display: flex; flex-direction: column; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--sans);
  font-size: 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 0;
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-bottom-color: var(--accent); }
.form-field textarea { resize: vertical; min-height: 96px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.form-success {
  background: var(--leaf-dark);
  color: #fff;
  padding: 28px 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-success h4 {
  font-family: var(--serif);
  font-size: 28px;
  margin: 0;
  font-weight: 400;
}

/* ---------- Misc ---------- */

.divider-mono {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.divider-mono::before, .divider-mono::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--line-strong);
}

.kicker-line {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--ink-soft);
}
.kicker-line.on-dark { color: rgba(255,255,255,0.6); }

.archive-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.archive-strip .photo-frame { border-radius: 0; aspect-ratio: 4/5; }

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
}
.timeline-step {
  padding: 32px 28px 32px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.timeline-step:not(:last-child) {
  border-right: 1px solid var(--line);
  padding-right: 28px;
}
.timeline-step::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 0;
  width: 13px; height: 13px;
  border-radius: 999px;
  background: var(--leaf-dark);
  box-shadow: 0 0 0 4px var(--paper);
}
.timeline-year {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.timeline-year em { font-style: italic; color: var(--leaf-dark); font-weight: 300; }
.timeline-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 14px 0 12px;
}
.timeline-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* dark timeline variant */
.timeline.on-dark .timeline-step { border-top-color: rgba(255,255,255,0.14); border-right-color: rgba(255,255,255,0.14); }
.timeline.on-dark .timeline-step::before { background: var(--wheat); box-shadow: 0 0 0 4px var(--navy); }
.timeline.on-dark .timeline-year { color: #fff; }
.timeline.on-dark .timeline-year em { color: var(--wheat); }
.timeline.on-dark .timeline-label { color: rgba(255,255,255,0.55); }
.timeline.on-dark .timeline-body { color: rgba(255,255,255,0.7); }

/* Variety card grid */
.varieties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.variety {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--paper);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.variety .photo-frame { aspect-ratio: 1/1; border-radius: 2px; }
.variety h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
}
.variety h3 em { font-style: italic; color: var(--leaf-dark); font-weight: 300; }
.variety .latin {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: -8px;
}
.variety p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.variety .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.variety .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--stone);
  color: var(--ink-soft);
  border-radius: 999px;
}

/* spacer */
.h-page-top { height: 78px; }

/* responsive */
@media (max-width: 1100px) {
  .grid-12 { gap: 24px; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .why-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-headline-row { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .archive-strip { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .varieties { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .header-phone span { display: none; }
  .header-phone { padding: 10px 14px; }
  .cap-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { flex-wrap: wrap; gap: 24px; }
  .archive-strip { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .varieties { grid-template-columns: 1fr; }
  .hero-corner { display: none; }
}

/* ---------- Quieter home page ---------- */

.hero-quiet { min-height: 78vh; }
.hero-quiet .hero-inner { padding-top: 120px; padding-bottom: 88px; }
.hero-quiet-title {
  max-width: 18ch;
  margin: 0 0 32px;
}
.hero-quiet-aside {
  max-width: 52ch;
  padding-bottom: 0;
  font-size: 17px;
}

.home-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}
.home-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: inherit;
}
.home-card .photo-frame { aspect-ratio: 4/5; }
.home-card .h3 {
  margin: 0;
  letter-spacing: -0.01em;
}
.home-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.home-card .more {
  margin-top: auto;
  padding-top: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.home-card:hover .more { color: var(--accent-deep); }

@media (max-width: 1100px) {
  .home-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .home-cards { grid-template-columns: 1fr; }
  .hero-quiet { min-height: 70vh; }
}
