/* ─── Between the Frosts — Design System ────────────────────────────────
   Single source of truth for all color tokens, type scale, and component
   primitives. SPAs and EJS pages import only this file.
   Do NOT duplicate :root tokens in per-page <style> blocks.
   ──────────────────────────────────────────────────────────────────────── */

/* ─── Color Tokens ───────────────────────────────────── */
:root {
  /* Raw palette */
  --green-deep:        #2A4A1C; /* deep soil / headings / dark surfaces */
  --green-mid:         #4A7A2E; /* mid-tone green / interactive */
  --green-light:       #7AAD5A; /* success states / tags */
  --terracotta:        #C8703A; /* Brandywine red-orange / primary CTA */
  --terracotta-light:  #E8935A; /* hover / accent warm */
  --brown:             #2C1F12; /* body text / footer bg */
  --brown-muted:       #6B4F35; /* secondary text / muted labels */
  --cream:             #FDFAF4; /* card backgrounds / elevated surfaces */
  --cream-dark:        #E8DDD0; /* borders / dividers */
  --bg:                #F5EDE3; /* page background (parchment) */
  --bg-warm:           #EFE5D6; /* slightly warmer section background */

  /* Produce accents */
  --accent-brandywine: #B5312A; /* deep Brandywine tomato red */
  --accent-squash:     #D97706; /* hubbard squash orange */
  --accent-leaf:       #2E7D32; /* leaf green */
  --accent-frost:      #3B82F6; /* frost blue */

  /* Semantic tokens — use these in components */
  --color-bg:          var(--bg);
  --color-bg-warm:     var(--bg-warm);
  --color-text:        var(--brown);
  --color-text-muted:  var(--brown-muted);
  --color-accent:      var(--terracotta);
  --color-accent-warm: var(--terracotta-light);
  --color-border:      var(--cream-dark);
  --color-surface:     var(--cream);
  --color-success:     var(--green-mid);
  --color-warn:        var(--accent-squash);

  /* Typography scale */
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  --text-display: clamp(3rem, 6vw, 4.5rem);   /* hero headlines */
  --text-h1:      clamp(2.2rem, 4vw, 3rem);
  --text-h2:      clamp(1.6rem, 3vw, 2.25rem);
  --text-h3:      clamp(1.25rem, 2vw, 1.6rem);
  --text-body-lg: 1.125rem;                    /* intro paragraphs */
  --text-body:    1.0625rem;                   /* 17px — body minimum on desktop */
  --text-small:   0.875rem;                    /* captions, labels */
  --text-xs:      0.75rem;                     /* eyebrows, overlines */

  --leading-display: 1.1;
  --leading-heading: 1.2;
  --leading-body:    1.65;

  /* Spacing + radius */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-pill: 100px;

  --shadow-card: 0 2px 8px rgba(44, 31, 18, 0.08), 0 1px 2px rgba(44, 31, 18, 0.06);
  --shadow-soft: 0 4px 16px rgba(44, 31, 18, 0.10);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--text-body);   /* 17px on desktop */
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 480px) {
  /* Minimum 16px on mobile (spec requirement) */
  body { font-size: 1rem; }
}

h1, h2, h3, h4, h5, h6, blockquote {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: var(--leading-heading);
  letter-spacing: -0.01em;
  color: var(--green-deep);
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }

p { line-height: var(--leading-body); }

a { color: inherit; }

/* ─── Component Primitives ───────────────────────────── */

/* Section — max-width container with vertical rhythm */
.section {
  padding: 80px 40px;
}
.section--warm {
  background: var(--color-bg-warm);
}
.section--dark {
  background: var(--green-deep);
  color: var(--cream);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--cream);
}
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.section-inner--narrow {
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section { padding: 60px 24px; }
}

/* Eyebrow — small-caps label above headings */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

/* Card — warm border, soft shadow */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
}
.card--flat {
  box-shadow: none;
}
.card--warm {
  background: var(--color-bg-warm);
}
.card--bordered {
  border: 1.5px solid var(--color-border);
  box-shadow: none;
}

/* Button — primary (Brandywine), secondary (outline), ghost */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  font-family: var(--font-sans);
  font-size: var(--text-small);
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, opacity 0.15s;
  white-space: nowrap;
  -webkit-appearance: none;
}

/* Primary — Brandywine red (the main CTA color) */
.btn--primary {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}
.btn--primary:hover {
  background: var(--accent-brandywine);
  border-color: var(--accent-brandywine);
}

/* Secondary — outline */
.btn--secondary {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.btn--secondary:hover {
  background: var(--green-deep);
  color: var(--cream);
}

/* Ghost — text-only */
.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: transparent;
}
.btn--ghost:hover {
  background: var(--color-bg-warm);
  color: var(--color-text);
}

.btn--sm {
  padding: 7px 14px;
  font-size: var(--text-xs);
}
.btn--lg {
  padding: 14px 28px;
  font-size: var(--text-body);
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* Prose — long-form copy with right type + spacing */
.prose {
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-text-muted);
  max-width: 65ch;
}
.prose h2,
.prose h3 {
  margin-top: 2em;
  margin-bottom: 0.6em;
  color: var(--green-deep);
}
.prose p + p { margin-top: 1.2em; }
.prose ul,
.prose ol {
  padding-left: 1.5em;
  margin: 1em 0;
}
.prose li + li { margin-top: 0.4em; }
.prose strong { font-weight: 600; color: var(--color-text); }
.prose a { color: var(--green-mid); text-decoration: underline; }
.prose a:hover { color: var(--green-deep); }
.prose blockquote {
  border-left: 3px solid var(--terracotta);
  padding-left: 1.25em;
  font-style: italic;
  color: var(--green-deep);
  margin: 1.5em 0;
}

/* ─── Navigation ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-tagline {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: var(--text-small);
  font-weight: 400;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--green-deep); }
.nav-cta { font-weight: 500; color: var(--terracotta); }
.nav-cta:hover { color: var(--green-deep); }

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-field {
  position: absolute;
  bottom: -20%;
  left: -10%;
  right: -10%;
  height: 55%;
  background: linear-gradient(180deg, transparent 0%, var(--green-deep) 100%);
  opacity: 0.07;
  border-radius: 50% 50% 0 0 / 20%;
}
.hero-glow {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--terracotta) 0%, transparent 70%);
  opacity: 0.06;
  border-radius: 50%;
}
.hero-ripple {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--green-mid);
  opacity: 0.12;
}
.hero-ripple-1 {
  width: 300px; height: 300px;
  bottom: 15%; right: 8%;
  transform: translate(50%, 0);
}
.hero-ripple-2 {
  width: 200px; height: 200px;
  bottom: 18%; right: 12%;
  transform: translate(50%, 0);
  opacity: 0.08;
}
.hero-ripple-3 {
  width: 140px; height: 140px;
  bottom: 21%; right: 16%;
  transform: translate(50%, 0);
  opacity: 0.05;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: var(--text-display);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 28px;
  max-width: 18ch;
  line-height: var(--leading-display);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 52ch;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.75;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 6px 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* ─── Manifesto ──────────────────────────────────────── */
.manifesto {
  padding: 100px 40px;
  background: var(--cream);
}
.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
}
.manifesto-quote {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--green-deep);
  margin-bottom: 40px;
  padding-left: 32px;
  border-left: 3px solid var(--terracotta);
  line-height: 1.5;
}
.manifesto-body {
  font-size: var(--text-body-lg);
  color: var(--color-text-muted);
  max-width: 58ch;
  margin-left: auto;
}

/* ─── Cycle ──────────────────────────────────────────── */
.cycle {
  padding: 100px 40px;
  background: var(--color-bg);
}
.cycle-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--green-deep);
}
.cycle-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.phase {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 0 20px;
}
.phase-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phase h3 {
  font-size: var(--text-h3);
  color: var(--green-deep);
  margin-bottom: 12px;
}
.phase p {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.7;
}
.phase-connector {
  display: flex;
  align-items: center;
  padding-top: 28px;
  flex-shrink: 0;
}
.connector-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--cream-dark) 0%, var(--terracotta) 50%, var(--cream-dark) 100%);
}

/* ─── Features ───────────────────────────────────────── */
.features {
  padding: 100px 40px;
  background: var(--color-bg-warm);
}
.features-header {
  text-align: center;
  margin-bottom: 72px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature {
  padding: 48px 40px;
  background: var(--color-bg);
}
.feature-number {
  font-family: var(--font-serif);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  opacity: 0.7;
}
.feature h3 {
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 14px;
  font-weight: 600;
}
.feature p {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ─── Closing ─────────────────────────────────────────── */
.closing {
  padding: 120px 40px;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
}
.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--cream);
  font-style: italic;
  margin-bottom: 28px;
  font-weight: 400;
}
.closing-body {
  font-size: var(--text-body);
  color: rgba(253,250,244,0.6);
  max-width: 48ch;
  margin: 0 auto 60px;
  line-height: 1.8;
}
.closing-visual {
  display: flex;
  justify-content: center;
}
.closing-rings {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(253,250,244,0.15);
}
.ring-1 { width: 160px; height: 160px; }
.ring-2 { width: 110px; height: 110px; }
.ring-3 { width: 65px; height: 65px; border-color: rgba(253,250,244,0.25); }
.ring-center {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Newsletter Form ─────────────────────────────────── */
.newsletter-section {
  padding: 60px 40px;
  background: var(--color-bg-warm);
  border-top: 1px solid var(--color-border);
}
.newsletter-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-eyebrow {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.newsletter-headline {
  font-size: 1.6rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.newsletter-sub {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  max-width: 44ch;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 14px;
  align-items: center;
}
.newsletter-email-input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-small);
  font-family: inherit;
  background: var(--color-surface);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.15s;
}
.newsletter-email-input:focus { border-color: var(--green-mid); }
.newsletter-submit {
  padding: 12px 20px;
  background: var(--green-deep);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: var(--text-small);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.newsletter-submit:hover { opacity: 0.85; }
.newsletter-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.newsletter-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  max-width: 44ch;
  margin: 0 auto;
}
.newsletter-success {
  padding: 32px;
  text-align: center;
}
.newsletter-success-msg {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.newsletter-success-sub {
  font-size: var(--text-small);
  color: var(--color-text-muted);
}
.newsletter-error {
  font-size: 0.82rem;
  color: #D32F2F;
  margin-top: -8px;
  margin-bottom: 10px;
}
.newsletter-privacy {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  opacity: 0.8;
}

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  padding: 60px 40px;
  background: var(--brown);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--cream);
  display: block;
  margin-bottom: 10px;
}
.footer-mission {
  font-size: var(--text-small);
  color: rgba(253,250,244,0.4);
  max-width: 32ch;
}
.footer-copy {
  font-size: var(--text-xs);
  color: rgba(253,250,244,0.25);
}

/* ─── Shared SPA Topbar ──────────────────────────────── */
/* Used by app.html, preserve.html, settings.html, indoor.html */
.topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-surface);
  border-bottom: 1.5px solid var(--color-border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 60px;
  box-shadow: 0 1px 4px rgba(44,31,18,0.08);
}
.topbar-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.topbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.tab-btn {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}
.tab-btn:hover { background: var(--color-bg-warm); color: var(--color-text); }
.tab-btn.active { background: var(--green-deep); color: #fff; }
.topbar-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
}
.topbar-links a { color: var(--color-text-muted); text-decoration: none; }
.topbar-links a:hover { color: var(--green-deep); }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .hero { padding: 100px 24px 80px; }
  .features-grid { grid-template-columns: 1fr; gap: 2px; }
  .feature { padding: 36px 28px; }
  .cycle-track { flex-direction: column; align-items: center; gap: 48px; }
  .phase-connector { display: none; }
  .manifesto, .cycle, .features, .closing { padding: 72px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .newsletter-email-input { width: 100%; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-tags { gap: 8px; }
  .tag { font-size: var(--text-xs); }
  .card { padding: 20px 20px; }
  .topbar { padding: 0 16px; gap: 10px; }
}

/* ─── Nav Instagram Link ─────────────────────────────── */
.nav-instagram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--terracotta) !important;
  text-decoration: none;
  border: 1.5px solid var(--terracotta);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: var(--text-xs);
  transition: background 0.15s, color 0.15s;
}
.nav-instagram:hover {
  background: var(--terracotta);
  color: #fff !important;
}
.nav-ig-icon { flex-shrink: 0; }

/* ─── Hero v2 (Live between the frosts) ─────────────── */
.hero-v2 {
  min-height: 100vh;
  padding: 80px 40px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-v2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-v2-text { max-width: 560px; }
.hero-v2-headline {
  font-size: var(--text-display);
  font-weight: 700;
  color: var(--green-deep);
  line-height: var(--leading-display);
  margin-bottom: 24px;
  font-style: italic;
  letter-spacing: -0.03em;
}
.hero-v2-sub {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 50ch;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.75;
}
.hero-v2-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-ig-cta { gap: 8px; }
.hero-v2-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16/9;
}
.hero-v2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Harvest Spread (layout B) ──────────────────────── */
.harvest-spread { padding-top: 80px; padding-bottom: 80px; }
.harvest-spread-header { margin-bottom: 36px; }
.harvest-spread-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.harvest-spread-item { display: flex; flex-direction: column; gap: 12px; }
.harvest-spread-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.harvest-spread-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.harvest-spread-item:hover .harvest-spread-img { transform: scale(1.02); }
.harvest-spread-item--main .harvest-spread-img-wrap { aspect-ratio: 3/3.8; }
.harvest-spread-caption {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.6;
  padding: 0 4px;
}

/* ─── What We Actually Do (3-card row) ───────────────── */
.what-we-do-header {
  text-align: center;
  margin-bottom: 52px;
}
.what-we-do-header h2 {
  margin-top: 8px;
  color: var(--green-deep);
}
.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.what-we-do-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s, box-shadow 0.18s;
}
.what-we-do-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.what-we-do-icon { flex-shrink: 0; }
.what-we-do-title {
  font-size: var(--text-h3);
  color: var(--green-deep);
  margin: 0;
}
.what-we-do-body {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.75;
  flex: 1;
}
.what-we-do-link {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--terracotta);
  margin-top: auto;
}
.what-we-do-card:hover .what-we-do-link { color: var(--accent-brandywine); }

/* ─── Preservation Shelf (layout C) ─────────────────── */
.preserve-shelf { background: var(--green-deep); }
.preserve-shelf .eyebrow { color: var(--terracotta-light); }
.preserve-shelf-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.preserve-shelf-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--cream);
  font-style: italic;
  margin-bottom: 20px;
  font-weight: 400;
}
.preserve-shelf-body {
  font-size: var(--text-body);
  color: rgba(253,250,244,0.65);
  max-width: 48ch;
  line-height: 1.8;
  margin-bottom: 32px;
}
.preserve-shelf-cta {
  color: var(--cream);
  border-color: rgba(253,250,244,0.4);
}
.preserve-shelf-cta:hover {
  background: rgba(253,250,244,0.12);
  border-color: var(--cream);
}
/* Decorative pantry shelf */
.preserve-shelf-shelf {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.shelf-plank {
  width: 100%;
  height: 8px;
  background: rgba(253,250,244,0.15);
  border-radius: 2px;
  margin: 4px 0;
}
.shelf-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 16px 0 4px;
}
.shelf-jar {
  width: 44px;
  height: 56px;
  border-radius: 4px 4px 6px 6px;
  flex-shrink: 0;
  opacity: 0.85;
  position: relative;
}
.shelf-jar::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 8px;
  right: 8px;
  height: 8px;
  background: inherit;
  opacity: 0.7;
  border-radius: 3px 3px 0 0;
}
.shelf-jar--tall { height: 72px; }
.shelf-jar--wide { width: 58px; }

/* ─── Community Block ────────────────────────────────── */
.community-block { background: var(--cream); }
.community-inner { text-align: center; }
.community-headline {
  color: var(--green-deep);
  margin: 8px 0 20px;
}
.community-body {
  font-size: var(--text-body-lg);
  color: var(--color-text-muted);
  max-width: 56ch;
  margin: 0 auto 32px;
  line-height: 1.8;
}
.community-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--terracotta);
  text-decoration: none;
  border: 1.5px solid var(--terracotta);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  transition: background 0.15s, color 0.15s;
}
.community-ig-link:hover {
  background: var(--terracotta);
  color: #fff;
}
.community-ig-icon { display: flex; }

/* ─── Footer v2 ──────────────────────────────────────── */
.footer-v2 {
  background: var(--brown);
  padding: 60px 40px 0;
}
.footer-v2-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(253,250,244,0.1);
}
.footer-v2-brand .footer-logo { color: var(--cream); }
.footer-v2-brand .footer-mission {
  font-size: var(--text-small);
  color: rgba(253,250,244,0.4);
  max-width: 28ch;
  margin-top: 10px;
  line-height: 1.65;
}
.footer-v2-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-v2-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,250,244,0.3);
  margin-bottom: 4px;
}
.footer-link {
  font-size: var(--text-small);
  color: rgba(253,250,244,0.55);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--cream); }
.footer-ig-link { color: rgba(253,250,244,0.7); }
.footer-ig-link:hover { color: var(--cream); }
.footer-pro-link { color: var(--terracotta-light); }
.footer-pro-link:hover { color: var(--terracotta-light); opacity: 0.8; }
.footer-v2-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}
.footer-v2-bottom .footer-copy {
  font-size: var(--text-xs);
  color: rgba(253,250,244,0.2);
}

/* ─── Responsive: new sections ───────────────────────── */
@media (max-width: 900px) {
  .hero-v2-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-v2-image { display: none; }
  .harvest-spread-grid { grid-template-columns: 1fr 1fr; }
  .harvest-spread-item--main { grid-column: 1 / -1; }
  .harvest-spread-item--main .harvest-spread-img-wrap { aspect-ratio: 16/9; }
  .preserve-shelf-inner { grid-template-columns: 1fr; gap: 40px; }
  .preserve-shelf-shelf { display: none; }
  .footer-v2-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-v2-nav { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .what-we-do-grid { grid-template-columns: 1fr; gap: 16px; }
  .harvest-spread-grid { grid-template-columns: 1fr; }
  .harvest-spread-item--main { grid-column: auto; }
  .harvest-spread-item--main .harvest-spread-img-wrap { aspect-ratio: 3/4; }
  .footer-v2-nav { grid-template-columns: 1fr; }
  .footer-v2 { padding: 48px 24px 0; }
  .hero-v2 { padding: 100px 24px 64px; }
}
@media (max-width: 480px) {
  .nav-instagram span { display: none; }
  .nav-instagram { padding: 6px 10px; }
  .hero-v2-headline { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .hero-v2-ctas { flex-direction: column; align-items: flex-start; }
}
