/* River & Root Farm — editorial design system */

:root {
  /* Core palette */
  --bg: #F5F1E8;
  --bg-warm: #EDE6D0;
  --surface: #EEE7D5;
  --surface-warm: #E9DEC2;
  --surface-sage: #D8D7BD;

  --text: #2D2A24;
  --text-soft: #5A5246;
  --text-muted: #847865;
  --ink-dark: #1C1A15;
  --ink-night: #0F1210;

  --sage: #556B47;
  --sage-light: #8AA074;
  --sage-deep: #3C4E32;
  --sage-night: #22332A;

  --earth: #8B6F47;
  --earth-deep: #5F4A2A;

  --berry: #4B5D5E;
  --berry-deep: #2E4147;
  --berry-bright: #4A6B78;

  --honey: #C89B5C;
  --honey-deep: #A77B3D;
  --honey-hover: #B5873F;

  --hairline: #E6DECB;
  --hairline-deep: #B8AE94;

  /* Type */
  --serif-display: "Fraunces", "Playfair Display", Georgia, serif;
  --serif-body: "Newsreader", "EB Garamond", Georgia, serif;
  --script: "Caveat", "Kalam", cursive;

  --max-prose: 640px;
  --max-content: 1180px;
  --max-wide: 1440px;

  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 22px;

  --ease: cubic-bezier(.2,.8,.2,1);
  --ease-swoop: cubic-bezier(.7,0,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: var(--honey); color: var(--ink-dark); }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif-body);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.16 0 0 0 0 0.14 0 0 0 0.035 0'/></filter><rect width='400' height='400' filter='url(%23n)'/></svg>");
  background-size: 400px 400px;
  overflow-x: hidden;
}

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

a { color: var(--sage-deep); text-decoration: none; border-bottom: 1px solid rgba(60, 78, 50, 0.3); transition: all .25s var(--ease); }
a:hover { color: var(--honey-deep); border-bottom-color: var(--honey-deep); }

/* ========== TYPOGRAPHY ========== */

h1, h2, h3, h4, h5 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 80, "opsz" 144;
  letter-spacing: -0.012em;
  line-height: 1.08;
  color: var(--text);
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 320;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 350;
  margin-bottom: 0.5em;
}
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); font-weight: 420; letter-spacing: -0.008em; }
h4 { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--earth); }

.display-huge {
  font-family: var(--serif-display);
  font-size: clamp(4rem, 14vw, 13rem);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 300;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.display-italic {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 350;
}

p { margin-bottom: 1.2em; max-width: var(--max-prose); }
p + p { margin-top: -0.2em; }

.eyebrow {
  font-family: var(--serif-body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--earth);
  font-weight: 500;
  display: inline-block;
  position: relative;
  padding-left: 38px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--earth);
}

.script {
  font-family: var(--script);
  font-size: 1.65rem;
  color: var(--earth);
  line-height: 1.2;
  font-weight: 500;
}

.prose p { max-width: var(--max-prose); }
.prose li { max-width: var(--max-prose); }

/* Drop cap for editorial opener paragraphs */
.dropcap::first-letter {
  font-family: var(--serif-display);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-weight: 350;
  font-size: 5.5rem;
  line-height: 0.82;
  float: left;
  margin: 10px 14px 0 -4px;
  color: var(--sage-deep);
}

/* ========== LAYOUT ========== */

.container { width: 100%; max-width: var(--max-content); margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: var(--max-wide); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: var(--max-prose); margin-left: auto; margin-right: auto; }

section { padding: 7rem 0; position: relative; }
section.tight { padding: 4.5rem 0; }
section.loose { padding: 10rem 0; }
section.cream-warm { background: var(--surface); }
section.cream-sage { background: var(--surface-sage); }

section.sage-dark {
  background: var(--sage-deep);
  color: var(--bg);
}
section.sage-dark h1, section.sage-dark h2, section.sage-dark h3 { color: var(--bg); }
section.sage-dark a { color: var(--bg); border-bottom-color: rgba(245,241,232,0.4); }
section.sage-dark .eyebrow { color: rgba(245,241,232,0.85); }
section.sage-dark .eyebrow::before { background: rgba(245,241,232,0.6); }

section.night {
  background: var(--ink-night);
  color: var(--bg);
}
section.night h1, section.night h2, section.night h3 { color: var(--bg); font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 320; }
section.night .eyebrow { color: rgba(200,155,92,0.9); }
section.night .eyebrow::before { background: var(--honey); }
section.night p { color: rgba(245,241,232,0.82); }

/* ========== NAV ========== */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border-bottom: 1px solid var(--hairline);
}
.site-nav-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-nav-brand {
  font-family: var(--serif-display);
  font-variation-settings: "SOFT" 100, "opsz" 120;
  font-size: 1.45rem;
  font-weight: 420;
  color: var(--text);
  border: none;
  letter-spacing: -0.01em;
}
.site-nav-brand .amp { color: var(--honey); font-style: italic; font-weight: 400; }

.site-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  background: rgba(200, 155, 92, 0.12);
  border: 1px solid rgba(200, 155, 92, 0.4);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--honey-deep);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.site-nav-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--honey-deep);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.site-nav-links { display: flex; gap: 2rem; align-items: center; }
.site-nav-links a {
  color: var(--text);
  font-family: var(--serif-body);
  font-size: 0.95rem;
  border: none;
  transition: color .2s var(--ease);
}
.site-nav-links a:hover { color: var(--sage-deep); }
.site-nav-links a.cta {
  background: var(--honey);
  color: var(--ink-dark);
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  transition: all .25s var(--ease);
  font-weight: 500;
}
.site-nav-links a.cta:hover { background: var(--honey-deep); transform: translateY(-1px); color: var(--bg); }

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

/* ========== HERO — magazine-cover editorial ========== */

/* scroll-scrub wrapper: gives scroll room so the sticky hero can scrub the video */
.hero-scrub-wrapper {
  position: relative;
  height: 350vh;
}

.hero-scrub-wrapper .hero {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: unset;
  justify-content: space-between;
}

/* tighter, fits-100vh content layout for the sticky scrub hero */
.hero-scrub-wrapper .hero-content {
  padding: 5rem 1.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: 0;
}
.hero-scrub-wrapper .hero-meta { margin-bottom: 0; }
.hero-scrub-wrapper .hero h1 {
  font-size: clamp(2.5rem, 7.2vw, 6.5rem);
  margin: 1.5rem 0;
}
.hero-scrub-wrapper .hero-footer {
  margin-top: 0;
  padding-top: 1.5rem;
}
.hero-scrub-wrapper .hero-subhead { font-size: clamp(0.95rem, 1.3vw, 1.05rem); }

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ink-night);
}

/* video background (replaces hero-image on homepage) */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, transparent 0%, rgba(15, 18, 16, 0.3) 60%, rgba(15, 18, 16, 0.75) 100%),
    linear-gradient(180deg, rgba(15, 18, 16, 0.10) 0%, rgba(15, 18, 16, 0.58) 100%);
  z-index: 1;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06);
}

/* static image fallback (used on inner pages) */
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, transparent 0%, rgba(15, 18, 16, 0.3) 60%, rgba(15, 18, 16, 0.75) 100%),
    linear-gradient(180deg, rgba(15, 18, 16, 0.15) 0%, rgba(15, 18, 16, 0.55) 100%);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

/* ---- scroll-triggered hero reveal ---- */
.hero-scrub-wrapper .hero-meta,
.hero-scrub-wrapper .hero-footer {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-scrub-wrapper .hero-footer { transition-delay: 0.18s; }

.hero-scrub-wrapper .hero-content.is-revealed .hero-meta,
.hero-scrub-wrapper .hero-content.is-revealed .hero-footer {
  opacity: 1;
  transform: translateY(0);
}

/* scroll hint: visible at start, fades out as user scrolls */
.hero-scrub-wrapper .hero-scroll {
  transition: opacity 0.5s ease;
}
.hero-scrub-wrapper .hero-scroll.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* letter-by-letter h1: chars hidden until parent .is-revealed */
.hero h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.22em);
  filter: blur(4px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--char-delay, 0ms);
}
.hero-content.is-revealed h1 .char {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 1.5rem 5rem;
  max-width: var(--max-wide);
  margin: 0 auto;
  width: 100%;
  color: var(--bg);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.hero-meta .meta-label {
  font-family: var(--serif-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.75);
  display: block;
  margin-bottom: 6px;
}
.hero-meta .meta-value {
  font-family: var(--serif-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--bg);
}

.hero h1 {
  color: var(--bg);
  font-size: clamp(3.5rem, 10vw, 9.5rem);
  font-weight: 280;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 300;
  line-height: 0.92;
  letter-spacing: -0.032em;
  margin-bottom: 2rem;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.2);
}
.hero h1 em {
  font-style: italic;
  color: var(--honey);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 350;
}
.hero h1 .line-indent { display: inline-block; padding-left: 2.5em; }

.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 241, 232, 0.22);
}
.hero-subhead {
  font-family: var(--serif-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 38ch;
  color: rgba(245, 241, 232, 0.92);
  line-height: 1.5;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif-body);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.6);
  animation: scroll-hint 2.5s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(245, 241, 232, 0.6));
}
@keyframes scroll-hint {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.4; }
  50% { transform: translate(-50%, 6px); opacity: 1; }
}

/* ========== BUTTONS ========== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-family: var(--serif-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  text-decoration: none;
  line-height: 1.2;
}
.btn-primary { background: var(--honey); color: var(--ink-dark); border-color: var(--honey); }
.btn-primary:hover { background: var(--honey-deep); border-color: var(--honey-deep); color: var(--bg); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--bg); border-color: rgba(245,241,232,0.55); }
.btn-ghost:hover { background: rgba(245,241,232,0.12); border-color: var(--bg); transform: translateY(-1px); color: var(--bg); }
.btn-sage { background: var(--sage-deep); color: var(--bg); border-color: var(--sage-deep); }
.btn-sage:hover { background: var(--ink-dark); border-color: var(--ink-dark); transform: translateY(-1px); color: var(--bg); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--earth); }
.btn-outline:hover { background: var(--earth); color: var(--bg); border-color: var(--earth); transform: translateY(-1px); }

/* ========== MARQUEE ========== */

.marquee {
  background: var(--ink-dark);
  color: var(--bg);
  padding: 1.25rem 0;
  overflow: hidden;
  border-top: 1px solid var(--earth-deep);
  border-bottom: 1px solid var(--earth-deep);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 42s linear infinite;
  font-family: var(--serif-display);
  font-variation-settings: "SOFT" 80, "opsz" 144;
  font-size: 1.25rem;
  font-weight: 350;
  letter-spacing: 0.01em;
}
.marquee-track > span { display: flex; align-items: center; gap: 3rem; white-space: nowrap; }
.marquee-track > span::after {
  content: "✦";
  color: var(--honey);
  font-size: 1.1rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ========== DIVIDER ========== */

.divider {
  display: flex;
  justify-content: center;
  padding: 0 0 3rem;
}
.divider svg { width: 100px; height: 48px; color: var(--sage); opacity: 0.55; }

.hand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 0;
  color: var(--earth);
}
.hand-divider::before, .hand-divider::after {
  content: "";
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
}
.hand-divider svg { width: 28px; height: 28px; opacity: 0.85; }

/* ========== SECTION COMPONENTS ========== */

.section-intro { max-width: 780px; margin-bottom: 4rem; }
.section-intro .eyebrow { margin-bottom: 1.5rem; }

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-column.wider-left { grid-template-columns: 1.3fr 1fr; gap: 6rem; }
.two-column.wider-right { grid-template-columns: 1fr 1.3fr; gap: 6rem; }
.two-column .image-card img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(0.96);
}
.two-column figure.portrait img { aspect-ratio: 3/4; }
.two-column figure.landscape img { aspect-ratio: 4/3; }

.image-stack {
  position: relative;
}
.image-stack img.primary {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.image-stack img.accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 45%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: -12px 12px 30px rgba(45, 42, 36, 0.18);
}

figure.wide-image img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 16/9; object-fit: cover; }
figure figcaption { font-family: var(--script); color: var(--earth); font-size: 1.3rem; margin-top: 1rem; text-align: center; }

/* Floating pull-quote */
.pullquote {
  font-family: var(--serif-display);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 350;
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.35;
  color: var(--sage-deep);
  padding: 1.5rem 2rem;
  border-left: 2px solid var(--honey);
  background: rgba(200, 155, 92, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  max-width: 540px;
}
.pullquote cite {
  display: block;
  font-family: var(--script);
  font-style: normal;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--earth);
  margin-top: 0.75rem;
}

/* ========== STATS ========== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding: 2rem 0;
}
.stat {
  border-left: 1px solid var(--hairline-deep);
  padding-left: 1.5rem;
}
.stat-number {
  font-family: var(--serif-display);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 320;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1;
  color: var(--sage-deep);
  letter-spacing: -0.02em;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--serif-body);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  line-height: 1.4;
  max-width: 26ch;
}

/* ========== VALUES — asymmetric + richer icons ========== */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
  margin-top: 3rem;
}
.value-item {
  position: relative;
  padding-top: 0;
}
.value-item .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--surface-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--sage-deep);
  transition: transform .4s var(--ease);
}
.value-item:hover .icon-wrap { transform: rotate(-4deg) scale(1.05); }
.value-item .icon-wrap svg { width: 32px; height: 32px; }
.value-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-family: var(--serif-display);
  font-weight: 420;
  letter-spacing: -0.008em;
}
.value-item p {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: none;
  line-height: 1.55;
}

/* ========== SEASONS TIMELINE ========== */

.seasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  position: relative;
}
.seasons::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  left: 7%;
  right: 7%;
  height: 1px;
  background: var(--hairline-deep);
  z-index: 0;
}
.season {
  position: relative;
  padding-top: 4.5rem;
  z-index: 1;
}
.season::before {
  content: "";
  position: absolute;
  top: 1.8rem;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sage-deep);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--hairline-deep);
}
.season .month {
  font-family: var(--serif-display);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 320;
  font-style: italic;
  font-size: 2rem;
  color: var(--sage-deep);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.season .label {
  font-family: var(--serif-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--earth);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}
.season p { font-size: 0.98rem; color: var(--text-soft); max-width: none; }

/* ========== PHOTO ESSAY MOSAIC ========== */

.photo-essay {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 1.5rem;
  margin-top: 3rem;
}
.photo-essay > * {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform .5s var(--ease);
}
.photo-essay > *:hover { transform: translateY(-4px); }
.photo-essay > * img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-essay .big { grid-row: span 2; }
.photo-essay .tall { grid-row: span 2; }

.photo-essay figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  right: 1.25rem;
  color: var(--bg);
  font-family: var(--script);
  font-size: 1.2rem;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(8px);
  transition: all .4s var(--ease);
}
.photo-essay > *:hover figcaption { opacity: 1; transform: translateY(0); }

/* ========== CARDS ========== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.info-card {
  background: var(--surface);
  padding: 2.25rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  transition: all .4s var(--ease);
}
.info-card:hover {
  border-color: var(--sage);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(45, 42, 36, 0.15);
}
.info-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; font-weight: 450; }
.info-card p { font-size: 0.98rem; color: var(--text-soft); margin-bottom: 0; max-width: none; }

/* ========== NEWSLETTER ========== */

.newsletter {
  background:
    linear-gradient(135deg, rgba(200, 155, 92, 0.1) 0%, rgba(76, 85, 64, 0.08) 100%),
    var(--surface-warm);
  padding: 5rem 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.newsletter::before, .newsletter::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.07;
}
.newsletter::before { top: -60px; left: -60px; background: var(--sage); }
.newsletter::after { bottom: -80px; right: -60px; background: var(--honey); }
.newsletter > * { position: relative; z-index: 1; }
.newsletter .eyebrow { padding-left: 0; margin-bottom: 1rem; }
.newsletter .eyebrow::before { display: none; }
.newsletter h2 { margin-bottom: 0.75rem; }
.newsletter p { max-width: 50ch; margin: 0 auto 2.25rem; color: var(--text-soft); font-size: 1.05rem; }
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 1.05rem 1.3rem;
  border: 1px solid var(--hairline-deep);
  border-radius: 999px;
  background: var(--bg);
  font-family: var(--serif-body);
  font-size: 1rem;
  color: var(--text);
  transition: all .25s var(--ease);
}
.newsletter-form input:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(85, 107, 71, 0.1); }
.newsletter-form button {
  padding: 1.05rem 1.8rem;
  border-radius: 999px;
  background: var(--sage-deep);
  color: var(--bg);
  border: none;
  font-family: var(--serif-body);
  font-weight: 500;
  cursor: pointer;
  transition: all .25s var(--ease);
  font-size: 0.98rem;
}
.newsletter-form button:hover { background: var(--ink-dark); }

/* ========== FOOTER ========== */

.site-footer {
  background: var(--sage-deep);
  color: var(--bg);
  padding: 6rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "R & R";
  position: absolute;
  bottom: -2rem;
  right: 2rem;
  font-family: var(--serif-display);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 320;
  font-style: italic;
  font-size: 14rem;
  color: rgba(245, 241, 232, 0.05);
  line-height: 1;
  pointer-events: none;
}
.site-footer a { color: var(--bg); border-bottom-color: rgba(245,241,232,0.3); }
.site-footer a:hover { border-bottom-color: var(--bg); color: var(--honey); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
  position: relative;
}
.footer-brand .brand-mark {
  font-family: var(--serif-display);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 400;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.footer-brand .brand-mark .amp { color: var(--honey); font-style: italic; font-weight: 350; }
.footer-brand p { color: rgba(245,241,232,0.72); font-size: 0.98rem; line-height: 1.65; max-width: 38ch; }
.footer-col h4 { color: var(--bg); font-family: var(--serif-body); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.25rem; opacity: 0.7; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; font-size: 0.98rem; }

.footer-bottom {
  border-top: 1px solid rgba(245,241,232,0.13);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(245,241,232,0.55);
  flex-wrap: wrap;
  gap: 1rem;
}
.social-icons { display: flex; gap: 0.75rem; }
.social-icons a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(245,241,232,0.08); border: none; transition: all .25s var(--ease); }
.social-icons a:hover { background: var(--honey); transform: translateY(-2px); }
.social-icons svg { width: 18px; height: 18px; color: var(--bg); }

/* ========== REVEAL ========== */

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ========== FARM VIDEO EMBED ========== */
.farm-video-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink-night);
  margin-top: 3rem;
}
.farm-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========== MOBILE ========== */

@media (max-width: 960px) {
  section { padding: 5rem 0; }
  section.loose { padding: 6rem 0; }
  .hero { min-height: 88vh; }
  /* mobile: drop the scroll-scrub zone, hero behaves like a normal section */
  .hero-scrub-wrapper { height: auto; }
  .hero-scrub-wrapper .hero {
    position: relative;
    height: auto;
    min-height: 100svh;
  }
  .hero-scrub-wrapper .hero-content { padding: 4rem 1.25rem 2.5rem; }
  .hero-scrub-wrapper .hero h1 { font-size: clamp(2.25rem, 11vw, 4rem); margin: 1rem 0; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 5rem); max-width: none; }
  .hero-meta { margin-bottom: 2rem; }
  .hero-footer { flex-direction: column; align-items: flex-start; }
  .site-nav-pill { display: none; }
  .site-nav-links { display: none; }
  .site-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1.75rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--hairline);
  }
  .nav-toggle { display: block; }
  .two-column, .two-column.wider-left, .two-column.wider-right { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr; gap: 2.75rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .seasons { grid-template-columns: 1fr 1fr; }
  .seasons::before { display: none; }
  .photo-essay {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .photo-essay .big { grid-row: span 2; grid-column: span 2; }
  .photo-essay .tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .image-stack img.accent { bottom: -20px; right: -20px; width: 40%; }
  body { font-size: 17px; }
  .marquee-track { font-size: 1rem; gap: 2rem; }
  .marquee-track > span { gap: 2rem; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .seasons { grid-template-columns: 1fr; }
  .photo-essay { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .photo-essay .big, .photo-essay .tall { grid-row: auto; grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .site-nav-pill::before { animation: none; }
}
