/* ============================================================
   Little Bend Flower Farm — Components
   Reusable patterns. Each component groups: layout + decoration
   + type + responsive tweaks. Sections are ordered roughly by
   where they appear on a typical page top → bottom.
   ============================================================ */


/* ── Latest Field Note strip ─────────────────────────────
   Thin paper-2 band above the main nav (or above the hero on
   home). Three zones on a grid: season meta left · latest-note
   link center · primary nav right. The center zone and the right
   zone are both clickable; the left meta is a plain label. Paper-2
   on ink keeps the band quiet and editorial — no color pop. */
.nav__latest {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  gap: 16px;
  padding: 10px var(--gutter);
  background: var(--paper-2);
  color: var(--ink);
  border-bottom: 1px solid rgba(28, 26, 21, .10);
}
/* Left meta — static label, small-caps mono. */
.nav__latest-meta {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .82;
  white-space: nowrap;
}
.nav__latest-meta--left  { justify-self: start; }
.nav__latest-meta--right { justify-self: end; }

/* Center link — Field Note teaser, the one dated clickable zone. */
.nav__latest-link {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: opacity var(--dur-fast);
}
.nav__latest-link:hover { opacity: .72; }

/* Right slot — primary nav items. Same mono small-caps treatment as
   the meta label so the band reads as one line of quiet labels rather
   than a loud menu bar. Underline on hover keeps the link affordance. */
.nav__latest-links {
  justify-self: end;
  display: flex;
  gap: 24px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav__latest-links a {
  color: var(--ink);
  opacity: .82;
  padding-bottom: 1px;
  border-bottom: 1px solid transparent;
  transition: opacity var(--dur-fast), border-color var(--dur-fast);
}
.nav__latest-links a:hover,
.nav__latest-links a[aria-current="page"] {
  opacity: 1;
  border-bottom-color: currentColor;
}

.nav__latest-label,
.nav__latest-date {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .82;
}
.nav__latest-sep { opacity: .45; font-family: var(--mono); font-weight: 500; font-size: 12.5px; }
.nav__latest-title {
  font-family: var(--serif);
  font-size: 14.5px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -.003em;
}
.nav__latest-arrow {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13.5px;
  opacity: .7;
  padding-left: 2px;
}
/* ≤1200px: hide the center Latest Field Note link so it doesn't get
   squeezed between the left meta label and the right nav links (which
   together run ~800px+). The Latest note still lives in the hamburger
   overlay and on the Field Notes page, so nothing is lost. */
/* ≤1500px: drop both the left "Season 01 • Cultivating Beauty" meta
   and the center Latest Field Note teaser together, and center
   the primary nav links in the strip. The Field Note still lives
   in the full nav; the season tagline still appears in the footer,
   so nothing is lost — the band just stays tidy as the window
   narrows. */
@media (max-width: 1500px) {
  .nav__latest { grid-template-columns: 1fr; }
  .nav__latest-meta--left { display: none; }
  .nav__latest-link { display: none; }
  .nav__latest-links { justify-self: center; }
}
/* ≤720px: the whole .nav__latest strip hides on mobile. All of its
   content (Season label, Field Note teaser, primary nav) moves into
   the hamburger-triggered overlay menu below. */
@media (max-width: 720px) {
  .nav__latest { display: none; }
}


/* ── Mobile menu (hamburger + overlay) ───────────────────
   Hidden on desktop. On mobile (≤720px) a circular paper-
   chip hamburger button sits fixed top-right at all times;
   clicking it toggles body.nav-open, which slides down a
   full-viewport paper overlay with all nav items + the
   Latest Field Note teaser. */
.nav__hamburger {
  display: none;
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 40;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(28, 26, 21, .35);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
  transition: background var(--dur-fast);
}
.nav__hamburger span {
  display: block;
  width: 20px;
  height: 1.6px;
  background: var(--ink);
  margin: 4px auto;
  border-radius: 2px;
  transition: transform var(--dur-mid) var(--ease-out),
              opacity var(--dur-fast) var(--ease-out),
              background var(--dur-fast);
}
/* When the menu is open, the button sits over the ink overlay — flip
   the chip to ink + paper bars so the × reads on dark. */
body.nav-open .nav__hamburger {
  background: var(--ink);
  border-color: rgba(244, 239, 226, .5);
}
body.nav-open .nav__hamburger span { background: var(--paper); }
/* Hamburger → X when menu is open */
body.nav-open .nav__hamburger span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
body.nav-open .nav__hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .nav__hamburger span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

/* Overlay: full-screen ink sheet that slides down from the top. Paper
   text on ink matches the nav + footer treatment. */
.nav__menu {
  display: none;                  /* desktop default */
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 35;
  background: var(--ink);
  color: var(--paper);
  padding: 88px 32px 40px;         /* top padding clears the hamburger */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  transform: translateY(-100%);
  transition: transform var(--dur-mid) var(--ease-out);
  overflow-y: auto;
}
body.nav-open .nav__menu {
  transform: translateY(0);
}

/* Stacked wordmark at the top of the menu — same asset as the footer,
   same paper-invert filter treatment. */
.nav__menu-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  margin-bottom: 4px;
}
.nav__menu-brand img {
  display: block;
  height: 56px;                   /* ~196px wide at this height (3.5:1) */
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.nav__menu-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}
.nav__menu-links a {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--paper);
  letter-spacing: -.01em;
  text-decoration: none;
  padding: 6px 0;
  opacity: .92;
  transition: opacity var(--dur-fast);
}
.nav__menu-links a:hover { opacity: 1; }
.nav__menu-links a[aria-current="page"] {
  opacity: 1;
  border-bottom: 1px solid var(--paper);
}

/* Latest Field Note teaser — sits below the main nav list. */
.nav__menu-latest {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 239, 226, .18);
  text-align: center;
  text-decoration: none;
  color: var(--paper);
  max-width: 320px;
}
.nav__menu-latest-label {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: .7;
}
.nav__menu-latest-title {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.3;
  color: var(--paper);
}

@media (max-width: 720px) {
  .nav__hamburger { display: block; }
  .nav__menu { display: flex; }

  /* Lock body scroll while the menu is open. */
  body.nav-open { overflow: hidden; }
}

/* ── Home hero · full-viewport on load ────────────────────
   The hero photo always fills the viewport height on initial
   load (at every screen width). Sun-flower mark, lede, and
   squiggle all sit together as one vertically-centered group
   inside the topbar (which flex:1's into the available space),
   so the tagline reads right beneath the logo instead of
   getting lost at the bottom of the frame.
   Mark scales responsively: tight on phones, airy on desktop. */
body[data-route="home"] .hero.hero--photo {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
body[data-route="home"] .hero__topbar {
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 32px var(--gutter);
}
body[data-route="home"] .hero__topbar .wrap {
  padding: 0;
  text-align: center;
  width: 100%;
}
body[data-route="home"] .hero--photo .hero__lede { margin-bottom: 0; }
body[data-route="home"] .hero--photo .hero__wiggle { margin-top: 20px; }
body[data-route="home"] .hero--photo .hero__mark {
  width: clamp(240px, 34vw, 460px);
}
@media (max-width: 720px) {
  /* Tight top padding lets the logo breathe into the top of the viewport;
     64px bottom keeps the tagline clear of the scroll pill. The logo
     sizes up a notch — still tuned so total content + padding fits inside
     100dvh on short phones, so the scroll pill stays above the fold. */
  body[data-route="home"] .hero__topbar { padding: 12px var(--gutter) 64px; gap: 16px; }
  body[data-route="home"] .hero--photo .hero__mark {
    width: clamp(260px, 66vw, 420px);
  }
}
@media (max-width: 640px) {
  .nav__latest-label,
  .nav__latest-sep { display: none; }
  .nav__latest-title { font-size: 13.5px; }
}


/* ── Nav ──────────────────────────────────────────────────
   Colored banner (ink) with the written wordmark centered
   and two nav links on each side. Wordmark inverts to white;
   nav links use marigold for a warm editorial accent.
   Below 720px: logo centers on top, links wrap below in a row.
   Above the nav, a thin .nav__latest marigold band announces
   the most recent Field Note. */
.nav {
  background: var(--ink);
  color: var(--paper);
  padding: 26px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .25);
}
/* Primary nav now lives in the .nav__latest strip above, so the ink
   header contains only the centered wordmark. Simple flex centering. */
.nav__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.nav__brand img {
  display: block;
  height: 60px;       /* stacked wordmark · ~212px wide at this height (3.5:1) */
  width: auto;
  max-width: 100%;
  /* Black SVG paths → pure paper/white */
  filter: brightness(0) invert(1);
  opacity: .98;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
/* Items pack against the centered wordmark so the gap between the
   wordmark and the inner-most nav item is equal on both sides (the
   grid gap, 28px). flex-end on the left column pushes items right,
   flex-start on the right column pushes items left — both toward
   the centerpiece. */
.nav__links--left  { justify-content: flex-end; }
.nav__links--right { justify-content: flex-start; }
.nav__links a {
  color: #fff;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  opacity: .92;
  transition: opacity var(--dur-fast), border-color var(--dur-fast);
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  opacity: 1;
  border-bottom-color: currentColor;
}
@media (max-width: 860px) {
  .nav { padding: 20px 0; }
  .nav__brand img { height: 46px; }
}


/* ── Buttons ──────────────────────────────────────────────
   Pill mono caps. .is-hot = filled brick, default = paper + ink border. */
.btn {
  font-family: var(--mono);
  font-weight: 500;
  font-size: var(--fs-sm);
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: background var(--dur-mid), color var(--dur-mid),
              border-color var(--dur-mid);
  text-align: center;
  white-space: nowrap;
  display: inline-block;
}
/* Hover lifts to a warmer, softer shade of ink (--ink-2) rather than
   snapping to full ink — a gentler transition that still gives plenty
   of contrast against the paper text. Used consistently across every
   ink-pill button on the site. */
.btn:hover {
  background: var(--ink-2);
  border-color: var(--ink-2);
  color: var(--paper);
}
.btn.is-hot {
  background: var(--brick);
  border-color: var(--brick);
  color: var(--paper);
}
/* Hot (filled) variant deepens to full ink on hover — a clear step
   down from the warmer --brick resting state. */
.btn.is-hot:hover { background: var(--ink); border-color: var(--ink); }


/* ── Hero ─────────────────────────────────────────────────
   Centered column with the sun-flower-seed illustration as the
   mark (no wordmark — the nav carries the brand), then dateline
   rule, then serif lede with one handwritten pop, then supporting
   copy, then CTAs, then folk zigzag ornament. */
.hero { padding: 36px 0 70px; text-align: center; position: relative; }
.hero__mark {
  width: clamp(200px, 28vw, 320px);
  margin: 4px auto 18px;
  display: block;
}
.hero__season {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.hero__season .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--brick);
  display: inline-block;
}
.hero__rule { width: 52px; height: 1px; background: var(--hair); display: inline-block; }
.hero__lede {
  font-family: var(--serif);
  font-size: var(--fs-h1);
  line-height: 1.22;
  font-weight: 400;
  max-width: 760px;
  margin: 0 auto 14px;
  letter-spacing: -.005em;
}
.hero__lede em {
  font-family: var(--hand);
  font-style: normal;
  font-weight: 600;
  font-size: 1.18em;
  color: var(--brick-d);
}
.hero__lede .script {
  font-family: var(--hand);
  font-weight: 600;
  font-style: normal;
  font-size: 1.15em;
  color: var(--brick-d);
  padding: 0 4px;
}
.hero__note {
  max-width: 560px;
  margin: 16px auto 28px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.55;
}
.hero__cta { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero__wiggle { margin: 36px auto 0; display: block; width: 120px; opacity: .7; }


/* ── Hero · photo variant ────────────────────────────────
   Adds .hero--photo to the hero section to swap the cream
   backdrop for the field-wide-golden-hour photo, and inverts
   the mark + copy to stand out over the darkened scrim. */
.hero.hero--photo {
  position: relative;
  background-image:
    linear-gradient(rgba(16, 14, 10, .58), rgba(16, 14, 10, .58)),
    url('/assets/photography/field-wide-golden-hour.jpg');
  background-size: cover;
  background-position: center 60%;
  padding: 0 0 60px;
  color: var(--paper);
}
/* The translucent ink band previously sat behind the nav to help the
   menu items read against the field photo. Removed per design review
   — nav items now sit directly on the photo. Keep .hero__topbar /
   .wrap on z-index 1 so nothing else can overlay them. */
.hero.hero--photo .hero__topbar,
.hero.hero--photo .wrap { position: relative; z-index: 1; }
/* Hero top band — primary nav has moved up into the .nav__latest
   strip, so the topbar now contains only the centered sun-flower
   mark. Simple flex centering. */
.hero__topbar {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 32px var(--gutter) 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero--photo .hero__mark {
  width: clamp(220px, 26vw, 300px);
  display: block;
  filter: brightness(0) invert(1);
  opacity: .95;
}
/* Nav links flanking the mark — marigold mono caps on the photo scrim.
   Spacing/letter-spacing mirrors .nav__links on secondary pages so the two
   navs read as the same element in two contexts.
   Items align to the top of the grid row (align-items: start on the
   parent), so nav text baselines sit at the same y as the top of the
   sun-flower mark. */
.hero__overlay-nav {
  display: flex;
  gap: 28px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
/* Items pack against the centered sun-flower mark so the gap between
   the mark and the inner-most nav item is equal on both sides (the
   grid gap, 28px). flex-end on the left column pushes items right,
   flex-start on the right column pushes items left — both toward
   the centerpiece. */
.hero__overlay-nav--left  { justify-content: flex-end; }
.hero__overlay-nav--right { justify-content: flex-start; }
.hero__overlay-nav a {
  color: #fff;
  opacity: .92;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: opacity var(--dur-fast), border-color var(--dur-fast);
  white-space: nowrap;
}
.hero__overlay-nav a:hover,
.hero__overlay-nav a[aria-current="page"] {
  opacity: 1;
  border-bottom-color: currentColor;
}
@media (max-width: 860px) {
  .hero__topbar { padding: 24px var(--gutter) 20px; }
  .hero--photo .hero__mark { width: clamp(140px, 30vw, 180px); }
}
/* Dateline */
.hero--photo .hero__season { color: var(--paper); opacity: .92; }
.hero--photo .hero__season .dot { background: var(--marigold); }
.hero--photo .hero__rule { background: rgba(244, 239, 226, .42); }
/* Lede on the photo hero — deliberately set in DM Sans (body font)
   rather than the display serif, so the copy sits quietly below the
   sun-flower lockup as a caption-like subtitle rather than a heavy
   display h1. This is the one h-tag on the site that doesn't use
   the display serif. */
.hero--photo .hero__lede {
  font-family: var(--body);
  font-weight: 400;
  color: var(--paper);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.45;
  max-width: 620px;
  margin-bottom: 28px;
  letter-spacing: 0;
}
/* Mobile: bump up so the tagline reads clearly under the sun-flower
   mark rather than fading into the photo. */
@media (max-width: 720px) {
  .hero--photo .hero__lede { font-size: 20px; line-height: 1.45; }
}
.hero--photo .hero__lede em,
.hero--photo .hero__lede .script { color: var(--marigold); }
/* Italic script pop — a subtle size bump on the italic serif phrase. */
.hero--photo .hero__lede .script {
  font-size: 1.15em;
  line-height: 1;
}
.hero--photo .hero__note { color: rgba(244, 239, 226, .86); }
/* Buttons: outline reverses to paper on dark.
   .is-hot keeps its brick fill — it already reads on dark. */
.hero--photo .btn {
  background: rgba(250, 247, 236, .94);
  border-color: rgba(250, 247, 236, .94);
  color: var(--ink);
  font-weight: 500;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .12), 0 8px 24px rgba(0, 0, 0, .18);
  transition: background var(--dur-mid), color var(--dur-mid),
              border-color var(--dur-mid), transform var(--dur-mid),
              box-shadow var(--dur-mid);
}
.hero--photo .btn:hover {
  /* Hover uses the same --ink-2 shade as the base .btn — softer than
     hard ink, and now consistent across every ink-pill button. */
  background: var(--ink-2);
  border-color: var(--ink-2);
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, .18), 0 14px 30px rgba(0, 0, 0, .28);
}
/* Home hero primary CTA — marigold at rest, inverts to ink on hover. */
.hero--photo .btn.is-hot {
  background: var(--marigold);
  border-color: var(--marigold);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .12), 0 8px 24px rgba(0, 0, 0, .18);
}
.hero--photo .btn.is-hot:hover {
  /* Matches the --ink-2 hover shade used by every other ink-pill
     button, so the whole button system lifts to the same warm ink
     on interaction. */
  background: var(--ink-2);
  border-color: var(--ink-2);
  color: var(--paper);
}
/* Wiggle ornament: override inline stroke/fill/opacity with full paper */
.hero--photo .hero__wiggle { opacity: 1; }
.hero--photo .hero__wiggle path,
.hero--photo .hero__wiggle circle { opacity: 1; }
.hero--photo .hero__wiggle path { stroke: var(--paper); }
.hero--photo .hero__wiggle circle { fill: var(--paper); }

/* ── Hero scroll indicator ──────────────────────────────
   Prominent anchored nudge at the bottom of the full-viewport
   hero. Marigold-accented pill on a semi-transparent ink
   scrim so it reads cleanly over any part of the photo.
   Smooth-scrolls to the #offer section on click.
   Bottom offset sits above the Safari/iOS URL bar chrome. */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  text-decoration: none;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .55);
  transition: transform var(--dur-fast);
  z-index: 2;
}
.hero__scroll-label {
  display: block;
  line-height: 1;
  color: var(--paper);
  font-weight: 500;
}
.hero__scroll-chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--paper);
  border-radius: 50%;
  background: rgba(16, 14, 10, .35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
  animation: heroScrollBob 2s ease-in-out infinite;
  transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
}
.hero__scroll-chev svg {
  width: 22px;
  height: 22px;
  display: block;
  color: var(--paper);
}
.hero__scroll:hover .hero__scroll-chev {
  /* Hover fills the pill with --ink-2 (same shade used by the ink
     pill buttons) while keeping the paper border ring, so it reads
     as the scrim deepening rather than a color pop. */
  background: var(--ink-2);
  border-color: var(--paper);
  animation-play-state: paused;
  transform: translateY(2px);
}
.hero__scroll:hover .hero__scroll-chev svg { color: var(--paper); }
@keyframes heroScrollBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
@media (max-width: 560px) {
  .hero__scroll { bottom: 28px; gap: 8px; font-size: 12px; }
  .hero__scroll-chev { width: 42px; height: 42px; }
  .hero__scroll-chev svg { width: 20px; height: 20px; }
}


/* ── Tulip crop ───────────────────────────────────────────
   Square container for the folk-tulip illustration. Set width
   on the outer div; the 1:1 SVG fills it cleanly. Kept as a
   utility (name preserved) for use anywhere the stamp appears. */
.tulip-crop {
  display: block;
  overflow: hidden;
}
.tulip-crop > img { display: block; width: 100%; height: auto; }


/* ── Letter from the farmer ───────────────────────────────
   Stamp column (cropped folk-tulip + mono caption) + body column
   (serif italic headline, 2-3 paragraphs, handwritten signature). */
.letter {
  /* Blends with the paper body — letter is part of the warm opening
     band that runs from the page head through this narrative before
     the paper-2 "how we grow" band kicks in. */
  padding: 64px 0 80px;
  position: relative;
}
.letter__body {
  max-width: 680px;
  margin: 0 auto;
}
.letter__body h2 {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -.005em;
}
.letter__body h2 .hand {
  color: var(--brick-d);
  font-weight: 600;
  font-size: 1.15em;
  padding: 0 2px;
}
.letter__body p {
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.7;
  margin: 0 0 14px;
  color: var(--ink);
}
/* Dashed divider between the two chapters of the combined letter. */
.letter__divider {
  border: 0;
  border-top: 1px dashed var(--hair);
  margin: 40px 0 36px;
}
/* Season date callout — inline dashed-border pill above the signature. */
.letter__dates {
  display: inline-block;
  margin: 20px 0 0;
  padding: 10px 16px;
  border: 1px dashed var(--hair);
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brick-d);
}
/* Letter signature — Caveat is hard-coded here (not var(--hand)) so
   the handwritten look is preserved on the `— Abby & AJ` line even
   though the rest of the site has retired the script font. */
.letter__sig {
  margin-top: 28px;
  font-family: 'Caveat', 'Bradley Hand', cursive;
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.letter__sigcap {
  margin-top: 4px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--taupe);
}
@media (max-width: 720px) {
  .letter { padding: 56px 0 64px; }
  .letter__divider { margin: 32px 0 28px; }
}


/* ── How-we-grow band ──────────────────────────────────────
   Two-column banded section sitting on the deeper paper-2
   surface with dashed top/bottom rules:
     · left:  tilted polaroid of the seedling rows
     · right: eyebrow + headline + body + pill CTA
   Stacks to a single centered column below 900px — stacking
   earlier ensures the one-line headline "Low-till, seasonal,
   and close to home." always has enough room. Replaces the
   old three-badge band. */
.badges {
  background: var(--paper-2);
  border-top: 1px dashed var(--hair);
  border-bottom: 1px dashed var(--hair);
  padding: 80px 0;
}
.badges__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 56px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
.badges__head { text-align: center; }
.badges__head .eyebrow { display: inline-block; margin-bottom: 8px; }
/* Headline is kept on a single line on desktop (nowrap + trimmed
   clamp max). It resets to natural wrapping at the mobile stack. */
.badges__head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.005em;
  white-space: nowrap;
}
.badges__body {
  margin: 18px auto 0;
  max-width: 520px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
}
.badges__cta { margin-top: 28px; }

/* Polaroid-style photo tile: ink-bordered paper with bottom
   caption space, slight rotation, layered soft shadow. */
.badges__polaroid {
  margin: 0 auto;
  width: 100%;
  max-width: 340px;
  padding: 12px 12px 34px;
  background: #FFFDF6;
  border: 1px solid var(--ink);
  box-shadow:
    2px 4px 0 rgba(28, 26, 21, .08),
    6px 12px 28px -8px rgba(28, 26, 21, .22);
  transform: rotate(-2.5deg);
  transform-origin: 50% 100%;
}
.badges__polaroid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
/* Handwritten caption sits in the bottom paper margin of the
   polaroid, pulled slightly off-center for a felt-pen feel. */
.badges__polaroid figcaption {
  margin-top: 12px;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
}

@media (max-width: 900px) {
  .badges { padding: 56px 0; }
  .badges__grid { grid-template-columns: 1fr; gap: 48px; }
  .badges__head { text-align: center; }
  /* Allow natural wrapping at narrow widths so the headline
     doesn't overflow the screen. */
  .badges__head h2 { white-space: normal; }
  .badges__body {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }
  .badges__polaroid { max-width: 280px; transform: rotate(-2deg); }
}


/* ── Notes from the field ──────────────────────────────────
   Two-column section: taped photo (rotated) left, numbered
   serif list with dashed dividers right. Step numbers as
   mono brick-rose zero-padded counters. */
.notes {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 72px 0;
}
.notes__head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 36px;
}
.notes__head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h2);
  margin: 0;
  letter-spacing: -.005em;
}
.notes__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.notes__photo {
  position: relative;
  border: 1px solid var(--ink);
  background: var(--ink);
  padding: 8px 8px 44px;
  transform: rotate(-1deg);
}
.notes__photo img {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
}
.notes__photo .tape {
  position: absolute;
  top: -12px; left: 40%;
  width: 80px; height: 22px;
  background: rgba(212, 148, 74, .55);
  border: 1px solid rgba(28,26,21,.15);
  transform: rotate(-6deg);
}
.notes__photo .cap {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  color: var(--paper);
  font-family: var(--hand);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 500;
}
.notes__list {
  counter-reset: step;
  list-style: none;
  margin: 0; padding: 0;
}
.notes__list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--hair);
}
.notes__list li:last-child { border-bottom: 0; }
.notes__list li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: .1em;
  color: var(--brick-d);
  padding-top: 5px;
}
.notes__list h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-lg);
  margin: 0 0 4px;
  letter-spacing: -.005em;
}
.notes__list h4 .hand {
  font-family: var(--hand);
  font-weight: 600;
  color: var(--brick-d);
  padding: 0 2px;
  font-size: 1.1em;
}
.notes__list p {
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.55;
}
@media (max-width: 820px) {
  .notes__grid { grid-template-columns: 1fr; gap: 32px; }
  .notes__photo { transform: rotate(0deg); max-width: 420px; }
}


/* ── Index cards (products) ───────────────────────────────
   Recipe-card style with faint ruled lines inside. Featured
   card (.card--feature) is filled brick. Hover: translateY + tilt
   + hard drop shadow. Head: serif product name (one word in Caveat)
   + mono price. Body: dl with mono labels + serif values. */
.cards { padding: 80px 0 60px; }
@media (max-width: 780px) {
  /* Trim the hero-to-cards gap on mobile so the fox mark lifts up
     closer to the top of the viewport as the section enters. */
  .cards { padding: 44px 0 48px; }
}
/* Bouquet gallery — row of 3 large polaroids above the head.
   Grid tracks match the .cards__grid below, so the row shares
   the same total width and alignment. Real photos where we have
   them, paper-2 slots where we don't yet. Per-tile --tilt inline
   for varied lean. */
.cards__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin: 64px 0 0;
}
.cards__photo {
  position: relative;
  border: 1px solid var(--hair);
  background: var(--paper);
  padding: 12px 12px 54px;
  transform: rotate(var(--tilt, -1.5deg));
  box-shadow: 0 18px 34px rgba(0, 0, 0, .12);
}
.cards__photo img,
.cards__photo__slot {
  aspect-ratio: 4/5;
  width: 100%;
  display: block;
  object-fit: cover;
}
.cards__photo__slot {
  background: var(--paper-2);
  color: var(--taupe);
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .55;
}
.cards__photo .tape {
  position: absolute;
  top: -14px; left: 40%;
  width: 86px; height: 22px;
  background: rgba(212, 148, 74, .55);
  border: 1px solid rgba(28, 26, 21, .15);
  transform: rotate(-4deg);
}
.cards__photo figcaption {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  color: var(--ink);
  /* Caveat is deliberately hard-coded here (not var(--hand)) — the
     polaroid caption is the ONE place the handwritten font lives. */
  font-family: 'Caveat', 'Bradley Hand', cursive;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 500;
  text-align: left;
}
@media (max-width: 720px) {
  .cards__gallery { grid-template-columns: 1fr; gap: 32px; max-width: 320px; margin: 0 auto 40px; }
  .cards__photo { padding: 10px 10px 44px; }
  .cards__photo figcaption { font-size: 20px; }
}
.cards__head { text-align: center; margin-bottom: 44px; }
.cards__mark {
  display: block;
  width: clamp(110px, 13vw, 150px);
  height: auto;
  margin: 0 auto 14px;
  opacity: .88;
}
.badges__mark {
  display: block;
  width: clamp(96px, 11vw, 132px);
  height: auto;
  margin: 0 auto 14px;
  opacity: .88;
}
.cards__head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h2);
  margin: 6px 0 10px;
  letter-spacing: -.005em;
}
.cards__head p {
  color: var(--ink-2);
  margin: 0 auto;
  max-width: 560px;
}
@media (max-width: 780px) {
  .cards__head { margin-bottom: 32px; }
  /* Collapse the hard line break in the lede — on narrow viewports the
     copy wraps naturally and the forced break leaves "or someone you're
     thinking of" marooned on its own line. */
  .cards__head p br { display: none; }
}
.cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}
.card {
  background: #FBF7EA;
  border: 1px solid var(--ink);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out);
}
.card:hover {
  transform: translateY(-3px) rotate(-.25deg);
  box-shadow: 4px 5px 0 var(--ink);
}
/* Product photo — bleeds to the card border on all sides, separated
   from the recipe-card body by an ink hairline. Aspect ratio 4/3 keeps
   the two cards visually even regardless of the source photo. */
.card__photo {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-2);
  border-bottom: 1px solid var(--ink);
}
.card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-mid) var(--ease-out);
}
.card:hover .card__photo img { transform: scale(1.02); }

/* Card body carries the original recipe-card padding + ruled lines.
   Moved from .card so the photo stays flush to the border. */
.card__body {
  padding: 24px 26px 26px;
  position: relative;
}
.card__body::before {
  content: "";
  position: absolute;
  left: 24px; right: 24px; top: 56px; bottom: 24px;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0, transparent 25px,
    rgba(28,26,21,.07) 25px, rgba(28,26,21,.07) 26px
  );
  pointer-events: none;
}
.card__head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.card__head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  /* Tighter leading for display-scale serif — default body line-height
     of 1.55 leaves a big gap when the title wraps (e.g. "The Season"
     over "Package" on narrow viewports). */
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.01em;
}
.card__head h3 em {
  font-family: var(--hand);
  font-weight: 600;
  color: var(--brick-d);
  font-style: normal;
  font-size: 1.05em;
  padding-right: 3px;
}
.card__head .price {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: .06em;
}
.card__head .price b { font-size: 16px; font-weight: 500; }
.card dl {
  margin: 0;
  display: grid;
  grid-template-columns: 96px 1fr;
  row-gap: 8px;
  column-gap: 14px;
  position: relative;
}
.card dt {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--taupe);
  padding-top: 2px;
}
.card dd {
  margin: 0;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.45;
}
.card__foot {
  margin-top: 22px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
/* Pill CTA — outline-only on the card surface. Hover fills with a light
   transparent ink (≈6% black) so the resting state stays quiet and the
   hover reads as a gentle darken instead of a loud ink swap. The arrow
   lives inside the pill and nudges right on hover for a small motion cue. */
.card__foot .cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  white-space: nowrap;
  transition: background var(--dur-mid);
}
.card__foot .cta:hover {
  background: rgba(28, 26, 21, .08);
}
.card__foot .cta .arrow {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  transition: transform var(--dur-mid);
}
.card__foot .cta:hover .arrow { transform: translateX(2px); }

/* Season Package feature card — sand fill, ink text. Quieter than
   marigold; still distinguishes the featured card from the default
   cream sibling without a loud color pop. */
.card--feature {
  background: var(--sand);
  color: var(--ink);
  border-color: var(--ink);
}
.card--feature .card__body::before {
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0, transparent 25px,
    rgba(28, 26, 21, .12) 25px, rgba(28, 26, 21, .12) 26px
  );
}
.card--feature .card__head { border-color: rgba(28, 26, 21, .35); }
.card--feature .card__head h3 em { color: var(--ink); }
.card--feature dt { color: rgba(28, 26, 21, .65); }
.card--feature dd { color: var(--ink); }
.card--feature .cta { border-color: var(--ink); color: var(--ink); }


/* ── Also at the market (FYI tile) ────────────────────────
   Third, quieter tile that sits below the two product cards.
   Spans both grid tracks, sits at a shorter height, and is
   NOT a clickable card — it's a note. One outbound link
   (Harvest Market's Instagram) lives inside the right-hand
   meta column. Styling cues (ink border, paper-2 wash) echo
   the product cards without competing with them for weight. */
.card-note {
  grid-column: 1 / -1;
  background: var(--paper-2);
  border: 1px solid var(--ink);
  padding: 0;
  overflow: hidden;
}
.card-note__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 28px;
}
/* Harvest Market logo — flush panel on the left of the tile.
   Image fills the full card height edge-to-edge, touching the card's
   left, top, and bottom borders. A right-side hairline separates it
   from the text column. */
.card-note__mark {
  flex: 0 0 auto;
  width: 160px;
  align-self: stretch;
  margin: 0;
  border-right: 1px solid var(--ink);
}
.card-note__mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.card-note__lead { min-width: 0; flex: 1 1 auto; padding: 22px 0; }
.card-note__lead .eyebrow { display: block; margin-bottom: 6px; }
.card-note__lead h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 26px);
  line-height: 1.2;
  letter-spacing: -.005em;
  margin: 0 0 6px;
}
.card-note__lead h3 em {
  font-style: italic;
  color: var(--ink);
}
.card-note__lead p {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  max-width: 56ch;
}
.card-note__meta {
  flex: 0 0 auto;
  text-align: right;
  line-height: 1.5;
  padding: 22px 28px 22px 0;
}
.card-note__meta address {
  font-style: normal;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink-2);
  margin: 0 0 10px;
}
.card-note__ig {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--brick);
  text-underline-offset: 4px;
}
.card-note__ig:hover { color: var(--brick-d); }

/* Stack at the same breakpoint as the product cards.
   The mark becomes a short banner at the top, still flush to the
   card's left/right/top borders. Text containers pick up padding. */
@media (max-width: 780px) {
  .card-note__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .card-note__mark {
    width: 100%;
    height: 160px;
    border-right: none;
    border-bottom: 1px solid var(--ink);
  }
  .card-note__lead {
    padding: 20px 22px 10px;
  }
  .card-note__meta {
    text-align: left;
    padding: 0 22px 20px;
  }
}

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


/* ── FAQ accordion ────────────────────────────────────────
   <details> blocks with dashed dividers, plus-mark that rotates
   to × when open. Serif summaries, serif body answers. */
.faq {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 72px 0;
}
.faq h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h2);
  margin: 0 0 30px;
  letter-spacing: -.005em;
}
.faq details {
  border-top: 1px dashed var(--hair);
  padding: 16px 0;
}
.faq details:last-of-type { border-bottom: 1px dashed var(--hair); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px;
  font-family: var(--serif);
  font-size: var(--fs-lg);
  letter-spacing: -.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .mk {
  font-family: var(--mono); font-weight: 500; font-size: 16px; color: var(--brick-d);
  transition: transform .2s;
}
.faq details[open] summary .mk { transform: rotate(45deg); }
.faq p {
  margin: 10px 0 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
  max-width: 780px;
}


/* ── Journal-page teaser card (latest Field Note) ─────────
   Styled like a page from a composition book: cream paper with
   faint blue horizontal rules, a red left margin line, handwritten
   date + signature. Slight rotation + soft shadow for an on-desk
   feel. Whole card is a link. Has an optional photo variant
   (.journal-card--photo) that tapes a tilted polaroid-style snap
   onto the top-right of the page. */
.journal-card {
  position: relative;
  display: block;
  max-width: 620px;
  margin: 0 auto;
  padding: 44px 44px 36px 76px;
  text-align: left;
  color: var(--ink);
  text-decoration: none;
  background-color: #FBF7E6;
  /* Solid ink hairline to match the product cards on the home page. */
  border: 1px solid var(--ink);
  box-shadow:
    1px 1px 0 var(--hair),
    6px 8px 0 rgba(28, 26, 21, .08),
    14px 18px 34px -14px rgba(28, 26, 21, .18);
  transform: rotate(.6deg);
  transform-origin: 50% 100%;
  transition:
    transform var(--dur-mid) var(--ease-out),
    box-shadow var(--dur-mid) var(--ease-out);

  /* Ruled paper lines — faint blue, every 30px */
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 29px,
    rgba(58, 92, 140, .22) 29px,
    rgba(58, 92, 140, .22) 30px
  );
  background-position: 0 14px;
}
.journal-card:hover {
  transform: rotate(.3deg) translateY(-3px);
  box-shadow:
    1px 1px 0 var(--hair),
    8px 11px 0 rgba(28, 26, 21, .12),
    16px 22px 40px -14px rgba(28, 26, 21, .22);
}

/* Red left-margin line — classic composition-book detail */
.journal-card::before {
  content: "";
  position: absolute;
  left: 56px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: var(--brick);
  opacity: .55;
}

/* Top row: handwritten date on the left, quiet meta on the right */
.journal-card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin: 0 0 16px;
  line-height: 30px;
}
.journal-card__date {
  font-family: var(--hand);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0;
}
.journal-card__num {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--taupe);
  white-space: nowrap;
}

/* Headline — sits on the ruled cadence */
.journal-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 30px;
  letter-spacing: -.005em;
  margin: 0 0 30px;
  color: var(--ink);
}

/* Excerpt — body copy spaced to the ruled cadence */
.journal-card__body {
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 30px;
  color: var(--ink);
  margin: 0 0 30px;
}

.journal-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  line-height: 30px;
}
/* Signature is hard-coded to Caveat (the one remaining handwriting
   font on the site) rather than var(--hand) — the token now resolves
   to italic serif, which loses the signed-by-hand feel. */
.journal-card__sig {
  font-family: 'Caveat', cursive;
  font-size: 30px;
  color: var(--brick-d);
  line-height: 1;
}
.journal-card__arrow {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--brick);
  text-underline-offset: 4px;
}
.journal-card:hover .journal-card__arrow,
.journal-card:hover .journal-card__title {
  color: var(--brick-d);
}

@media (max-width: 640px) {
  .latest-note { padding: 56px 0 72px; }
  .journal-card {
    padding: 32px 26px 28px 56px;
    transform: rotate(.4deg);
  }
  .journal-card::before { left: 40px; }
  .journal-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 10px;
  }
  .journal-card__title { margin-bottom: 24px; }
  .journal-card__body { margin-bottom: 24px; }
}

/* ── Photo variant (top-of-card) ─────────────────────────
   Image sits flush at the top of the card (like the product
   cards) with an ink hairline separating it from the body.
   The composition-book feel — ruled lines, red margin line,
   handwritten date + sig — moves inside a .journal-card__page
   wrapper that holds everything below the photo. */
.journal-card--photo {
  padding: 0;
  overflow: hidden;
  background-image: none; /* ruled lines move to .journal-card__page */
}
.journal-card--photo::before { display: none; } /* red margin moves to page */

.journal-card__photo {
  position: static;
  margin: 0;
  padding: 0;
  width: auto;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink);
  box-shadow: none;
  transform: none;
}
.journal-card__photo::before { display: none; } /* no washi tape */
.journal-card__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  transition: transform var(--dur-mid) var(--ease-out);
}
.journal-card--photo:hover .journal-card__photo img { transform: scale(1.02); }

/* Inner page: carries the ruled-paper background + red margin
   line so the journal feel is preserved below the photo. */
.journal-card__page {
  position: relative;
  padding: 30px 44px 32px 60px;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 29px,
    rgba(58, 92, 140, .22) 29px,
    rgba(58, 92, 140, .22) 30px
  );
  background-position: 0 14px;
}
.journal-card__page::before {
  content: "";
  position: absolute;
  left: 42px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: var(--brick);
  opacity: .55;
}

@media (max-width: 640px) {
  .journal-card--photo .journal-card__page {
    padding: 26px 26px 26px 56px;
  }
  .journal-card--photo .journal-card__page::before { left: 40px; }
}

/* ── Signup strip ─────────────────────────────────────────
   Sand-colored band. Italic serif headline with one Caveat pop.
   Email input (paper bg, ink border, rounded pill) + hot CTA. */
.signup {
  background: var(--sand);
  padding: 72px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.signup h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 0 0 10px;
  letter-spacing: -.005em;
}
.signup h2 .hand {
  font-family: var(--hand);
  font-style: normal;
  font-weight: 700;
  color: var(--brick-d);
  font-size: 1.15em;
  padding: 0 2px;
}
.signup p {
  margin: 0 auto 22px;
  max-width: 520px;
  color: var(--ink-2);
  font-size: 16.5px;
}
.signup form {
  display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.signup input {
  font-family: var(--body);
  font-size: 15px;
  padding: 13px 16px;
  border: 1px solid var(--ink);
  background: #FBF7EA;
  color: var(--ink);
  min-width: 280px;
  border-radius: 999px;
}
.signup input:focus { outline: 2px solid var(--brick); outline-offset: 1px; }

/* ── Split variant: two-column (signup | latest note card) ──────
   Adds .signup--split modifier with a two-column grid inside:
     · left:  form column (Get our Field Notes + description + form)
     · right: journal-card teaser for the latest Field Note
   Stacks to a single column below 860px. */
.signup--split { text-align: left; }
.signup__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.signup--split .signup__col--form {
  max-width: 460px;
}
.signup--split .signup__col--form h2 {
  text-align: left;
}
.signup--split .signup__col--form p {
  margin: 0 0 22px;
  max-width: 440px;
}
.signup--split .signup__col--form form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 440px;
}
.signup--split .signup__col--form input {
  flex: 1 1 220px;
  min-width: 0;
}
.signup--split .signup__col--latest {
  /* Let the journal card keep its own max-width + auto margins */
  min-width: 0;
}
/* Tighten the page padding + type in the split layout so the card
   sits comfortably in the narrower column width and reads as a
   compact preview rather than a full-size page. */
.signup--split .journal-card--photo .journal-card__page {
  padding: 22px 28px 24px 48px;
}
.signup--split .journal-card--photo .journal-card__page::before {
  left: 32px;
}
.signup--split .journal-card--photo .journal-card__photo img {
  /* Shorter photo than the full-size page variant — tightens overall
     card height in the two-column layout. */
  aspect-ratio: 3 / 2;
}
.signup--split .journal-card__header { margin-bottom: 12px; line-height: 26px; }
.signup--split .journal-card__date { font-size: 20px; }
.signup--split .journal-card__title {
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 28px;
  margin-bottom: 22px;
}
.signup--split .journal-card__body {
  font-size: 14.5px;
  line-height: 26px;
  margin-bottom: 22px;
}
.signup--split .journal-card__foot { line-height: 26px; }
.signup--split .journal-card__sig { font-size: 26px; }
.signup--split .journal-card__arrow { font-size: 11.5px; }

@media (max-width: 860px) {
  .signup--split { text-align: center; }
  .signup__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .signup--split .signup__col--form {
    max-width: 520px;
    margin: 0 auto;
  }
  .signup--split .signup__col--form h2 { text-align: center; }
  .signup--split .signup__col--form p { margin: 0 auto 22px; }
  .signup--split .signup__col--form form {
    justify-content: center;
    margin: 0 auto;
  }
}

/* Newsletter feedback messages (success + error) */
.newsletter-ok {
  font-family: var(--body);
  font-style: italic;
  font-size: 20px;
  color: var(--brick-d);
  margin: 8px 0 0;
}
.newsletter-err {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: .08em;
  color: var(--brick-d);
  margin: 10px 0 0;
}


/* ── Footer ───────────────────────────────────────────────
   Ink banner matching the nav: stacked wordmark inverted white,
   h5 column labels in paper (white), body text in paper.
   4-column grid: brand (wordmark + blurb), Shop, Farm, Elsewhere.
   Meta row at bottom: copyright + handwritten tagline. */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0 48px;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  border-bottom: 1px solid rgba(244, 239, 226, .18);
  padding-bottom: 36px;
}
.foot h5 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: var(--fs-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--paper);
}
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { padding: 4px 0; font-size: 15px; }
.foot li a {
  color: var(--paper);
  opacity: .88;
  border-bottom: 1px solid transparent;
  transition: opacity var(--dur-fast), border-color var(--dur-fast);
}
.foot li a:hover {
  opacity: 1;
  border-bottom-color: currentColor;
}
.foot__brand .foot__wordmark {
  margin: 0;
  line-height: 0;
}
.foot__brand .foot__wordmark img {
  display: block;
  height: 50px;       /* stacked wordmark · ~175px wide at this height (3.5:1) */
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .98;
}
.foot__brand p {
  margin: 14px 0 0;
  max-width: 340px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--paper);
  opacity: .85;
}
.foot__meta {
  display: flex; justify-content: space-between; gap: 20px;
  padding-top: 22px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: .7;
  flex-wrap: wrap;
}
@media (max-width: 820px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
/* ≤520px: keep a 2-col layout so the short lists (Shop + Farm) sit side
   by side — but span the brand block and the longer Elsewhere list full
   width so their content doesn't get crushed. */
@media (max-width: 520px) {
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .foot__brand { grid-column: 1 / -1; }
  .foot__grid > div:last-child { grid-column: 1 / -1; }
  /* Collapse the vertical gap when the copyright + season lines wrap to
     two rows on narrow viewports — the default 20px gap reads as too
     airy for two lines of the same meta block. */
  .foot__meta { row-gap: 6px; padding-top: 18px; }
}


/* ── Journal: index of posts ─────────────────────────────
   Used on /field-notes/. Single-column list. Each entry is a big
   clickable block with a date chip on the left. */
.journal-index { padding: 40px 0 96px; }
.journal-index__head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 700px;
}
.journal-index__head .eyebrow { display: inline-block; margin-bottom: 10px; }
.journal-index__head h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 52px);
  margin: 0 0 12px;
  letter-spacing: -.01em;
}
.journal-index__head h1 .hand {
  font-family: var(--hand);
  font-style: normal;
  font-weight: 600;
  color: var(--brick-d);
  font-size: 1.1em;
  padding: 0 2px;
}
.journal-index__head p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
}

.journal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 780px;
  margin-inline: auto;
}
.journal-list li {
  border-top: 1px dashed var(--hair);
  padding: 32px 0;
}
.journal-list li:last-child { border-bottom: 1px dashed var(--hair); }

.journal-entry {
  display: grid;
  grid-template-columns: 110px 220px 1fr;
  gap: 28px;
  align-items: start;
  text-decoration: none;
  color: var(--ink);
}
.journal-entry:hover .journal-entry__title { text-decoration: underline; text-decoration-color: var(--brick); text-underline-offset: 4px; }

.journal-entry__photo {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.journal-entry__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.journal-entry:hover .journal-entry__photo img { transform: scale(1.03); }

.journal-entry__meta {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--taupe);
  padding-top: 6px;
}
.journal-entry__meta .m { display: block; margin-bottom: 2px; }
.journal-entry__meta .d {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  line-height: 1;
}
.journal-entry__meta .y {
  display: block;
  margin-top: 2px;
  color: var(--ink-2);
}

.journal-entry__body .tag {
  display: inline-block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brick-d);
  margin-bottom: 8px;
}
.journal-entry__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--ink);
}
.journal-entry__title em {
  font-family: var(--hand);
  font-style: normal;
  font-weight: 600;
  color: var(--brick-d);
}
.journal-entry__excerpt {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

@media (max-width: 820px) {
  .journal-entry {
    grid-template-columns: 110px 1fr;
    gap: 24px;
  }
  .journal-entry__photo {
    grid-column: 1 / -1;
    order: 2;
    aspect-ratio: 16 / 9;
  }
  .journal-entry__body { order: 3; }
}

@media (max-width: 560px) {
  .journal-entry { grid-template-columns: 1fr; gap: 12px; }
  .journal-entry__meta { display: flex; gap: 10px; align-items: baseline; padding-top: 0; }
  .journal-entry__meta .d { font-size: 20px; }
  .journal-entry__photo { aspect-ratio: 4 / 3; }
}


/* ── Journal: single post ────────────────────────────────
   Long-form reading column. 680px for comfortable measure. */
.post {
  padding: 40px 0 96px;
}
.post__inner {
  max-width: 680px;
  margin-inline: auto;
}
.post__back {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--taupe);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 32px;
}
.post__back:hover { color: var(--brick-d); }

/* Optional illustration mark above a post's title (folk tulip, fox, etc.). */
.post__mark {
  display: block;
  width: clamp(80px, 7vw, 104px);
  height: auto;
  margin: 0 0 20px;
  opacity: .9;
}

.post__meta {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 12px;
}
.post__meta span + span::before {
  content: "·";
  margin: 0 10px;
  color: var(--hair);
}
.post__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -.01em;
  line-height: 1.15;
  margin: 0 0 20px;
}
.post__title .hand {
  font-family: var(--hand);
  font-style: normal;
  font-weight: 600;
  color: var(--brick-d);
  font-size: 1.1em;
}
.post__lede {
  font-family: var(--body);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 36px;
  padding-bottom: 28px;
  border-bottom: 1px dashed var(--hair);
}

.post__body p,
.post__body ul,
.post__body ol,
.post__body blockquote {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 20px;
}
.post__body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  margin: 40px 0 16px;
}
.post__body h2 .hand {
  font-family: var(--hand);
  font-weight: 600;
  color: var(--brick-d);
  font-size: 1.08em;
}
.post__body h3 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 32px 0 12px;
}
.post__body a {
  color: var(--brick-d);
  text-decoration: underline;
  text-decoration-color: var(--brick);
  text-underline-offset: 3px;
}
.post__body blockquote {
  border-left: 3px solid var(--brick);
  padding: 2px 0 2px 20px;
  font-style: italic;
  color: var(--ink-2);
}
.post__body figure {
  margin: 32px 0;
}
.post__body figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
}
.post__body figure figcaption {
  margin-top: 10px;
  font-family: var(--body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  text-align: center;
}
.post__body ul, .post__body ol { padding-left: 22px; }
.post__body li { margin-bottom: 8px; }

.post__sig {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px dashed var(--hair);
  font-family: var(--hand);
  font-size: 32px;
  color: var(--brick-d);
}
.post__sigcap {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 4px;
}


/* ============================================================
   Our Story page — sections specific to /about.html
   ============================================================ */


/* ── Story hero — full-bleed photograph ──────────────────── */
.story-hero {
  margin: 0 auto;
  width: 100%;
  max-width: 820px;
  border: 1px solid var(--ink);
  overflow: hidden;
  background: var(--paper);
}
.story-hero img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
@media (max-width: 720px) {
  .story-hero img { aspect-ratio: 4 / 5; }
}


/* ── How we grow (story page) ────────────────────────────
   Centered narrative head + three-paragraph prose column,
   followed by a two-up photo pair to break up the page
   before the promises grid. */
.grow {
  background: var(--paper-2);
  border-top: 1px dashed var(--hair);
  padding: 88px 0 32px;
}
.grow__head {
  text-align: center;
  /* Wide enough to hold "Regenerative, seasonal, and close to home."
     on a single line at desktop widths. */
  max-width: 860px;
  margin: 0 auto 32px;
}
.grow__mark {
  display: block;
  /* Quieter scale on the story page — sized at ~50% of the home-page
     .cards__mark so the hand-flowers mark reads as a small stamp above
     the eyebrow rather than a hero illustration. Pairs with
     .prodhead__mark on this page. */
  width: clamp(57px, 6.8vw, 78px);
  height: auto;
  margin: 0 auto 14px;
  opacity: .88;
}
.grow__head .eyebrow { display: inline-block; margin-bottom: 10px; }
.grow__head h2 {
  font-family: var(--serif);
  font-weight: 400;
  /* Tuned so the full headline fits on one line inside .grow__head's
     860px cap from ~880px viewport up. */
  font-size: clamp(26px, 3.1vw, 36px);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.005em;
}
/* Keep the "How we grow" headline on a single line at desktop widths. */
@media (min-width: 880px) {
  .grow__head h2 { white-space: nowrap; }
}
.grow__prose {
  max-width: 680px;
  margin: 0 auto;
}
.grow__prose p {
  font-family: var(--body);
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.grow__prose p:last-child { margin-bottom: 0; }

.grow__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 56px 0 0;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.grow__photo {
  margin: 0;
  border: 1px solid var(--ink);
  overflow: hidden;
  background: var(--paper);
}
.grow__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
@media (max-width: 720px) {
  .grow { padding: 64px 0 24px; }
  .grow__photos { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
}


/* ── Promises — 2×2 editorial callouts ───────────────────
   Four bold serif headlines paired with a short body. The
   contrast phrase ("not forever", etc.) is set in italic
   body serif for a quiet typographic counterpoint. Dashed
   dividers between cells give it a printed-page feel. */
.promises {
  background: var(--paper-2);
  border-bottom: 1px dashed var(--hair);
  padding: 40px 0 88px;
}
.promises__grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px dashed var(--hair);
  border-left: 1px dashed var(--hair);
}
.promises__grid > li {
  padding: 36px 36px 40px;
  border-right: 1px dashed var(--hair);
  border-bottom: 1px dashed var(--hair);
}
.promises__grid h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.2;
  letter-spacing: -.005em;
  margin: 0 0 10px;
  color: var(--ink);
}
.promises__grid h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--taupe);
}
.promises__grid p {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
  max-width: 42ch;
}
@media (max-width: 720px) {
  .promises { padding: 24px 0 64px; }
  .promises__grid { grid-template-columns: 1fr; }
  .promises__grid > li { padding: 28px 24px 30px; }
}


/* ── First season — banded acknowledgement ───────────────
   Quiet paper-2 band, two-column layout: small polaroid
   of the field on the left, narrative + date-line on the
   right. Stacks at 900px. */
.first-season {
  background: var(--paper-2);
  border-top: 1px dashed var(--hair);
  border-bottom: 1px dashed var(--hair);
  padding: 88px 0;
}
.first-season__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 72px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
.first-season__photo {
  margin: 0 auto;
  width: 100%;
  max-width: 340px;
  padding: 12px 12px 34px;
  background: #FFFDF6;
  border: 1px solid var(--ink);
  box-shadow:
    2px 4px 0 rgba(28, 26, 21, .08),
    6px 12px 28px -8px rgba(28, 26, 21, .22);
  transform: rotate(2deg);
  transform-origin: 50% 100%;
}
.first-season__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.first-season__body .eyebrow { display: inline-block; margin-bottom: 8px; }
.first-season__body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -.005em;
}
.first-season__body p {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 16px;
}
.first-season__dates {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px dashed var(--hair);
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
}
@media (max-width: 900px) {
  .first-season { padding: 64px 0; }
  .first-season__grid { grid-template-columns: 1fr; gap: 48px; }
  .first-season__photo { max-width: 280px; transform: rotate(1.5deg); }
  .first-season__body { text-align: center; }
  .first-season__dates { display: inline-block; margin-top: 24px; }
}


/* ── Story CTA — dual-button variant of the signup band ───
   Overrides the form-oriented layout of .signup so the story
   page can end on a pair of pill CTAs instead of a newsletter
   form. The band background + band borders inherit from .signup. */
.signup--cta .signup__ctas {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
@media (max-width: 520px) {
  .signup--cta .signup__ctas { flex-direction: column; align-items: stretch; }
}
