/* ============================================
   TracedTable — Styles
   Farm-to-consumer meat delivery
   Minneapolis-St. Paul, Minnesota

   Color palette matched to logo:
   Rustic watercolor farm scene — red barn,
   rolling hills, cattle, sunset, trees.
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  /* Logo-matched palette */
  --brown-dark: #3B2F2F;       /* "Traced" text, primary headers */
  --brown-warm: #5C4033;       /* Secondary brown */
  --brown-light: #D4B896;      /* Cream/gold — logo border, accents */
  --green-dark: #2D5016;       /* Deep green */
  --green-forest: #4A7C2E;     /* "Table" text — primary green */
  --green-light: #7BAE4E;      /* Light sage accent */
  --cream: #FAF3E0;            /* Main background */
  --cream-dark: #E8DFD0;       /* Alternating section bg */
  --cream-mid: #E8DFD0;        /* Mid cream (alias) */
  --accent-red: #8B3A2F;       /* Barn red — CTAs, highlights */
  --accent-red-hover: #6E2E25; /* Darker barn red for hover */
  --accent-orange: #E8854A;    /* Sunset orange, subtle accents */
  --white: #FFFFFF;
  --black: #1A1A1A;
  --gray-700: #3D3D3D;
  --gray-500: #6B6B6B;
  --gray-300: #B0B0B0;
  --gray-100: #E8E8E8;
  --text-dark: #2C2C2C;
  --text-light: #6B6B6B;

  /* Typography — premium font pairing */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sizing */
  --container-max: 1200px;
  --container-narrow: 900px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(59, 47, 47, 0.06);
  --shadow-md: 0 4px 20px rgba(59, 47, 47, 0.08);
  --shadow-lg: 0 8px 40px rgba(59, 47, 47, 0.12);
  --shadow-hover: 0 12px 36px rgba(59, 47, 47, 0.16);

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-red);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brown-dark);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

small, .text-sm { font-size: 0.875rem; }

p {
  margin-bottom: 1rem;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Section Spacing --- */
section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-forest);
  margin-bottom: 12px;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  background: var(--accent-red);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

/* ============================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================ */

/* Fade-in-up on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children animation */
.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.fade-in-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }

.fade-in-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle hero gradient animation */
@keyframes heroGradientShift {
  0%   { filter: hue-rotate(0deg) saturate(1); }
  25%  { filter: hue-rotate(3deg) saturate(1.05); }
  50%  { filter: hue-rotate(0deg) saturate(1.02); }
  75%  { filter: hue-rotate(-3deg) saturate(1.05); }
  100% { filter: hue-rotate(0deg) saturate(1); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--brown-light);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(59, 47, 47, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 72px;
}

/* Logo — image version with text fallback */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brown-dark);
  letter-spacing: -0.5px;
  transition: opacity var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar__logo:hover {
  opacity: 0.85;
}

.navbar__logo img,
.navbar__logo-img {
  height: 45px;
  width: auto;
  margin-right: 4px;
}

.navbar__logo-text {
  color: var(--brown-dark);
}

.navbar__logo-text span {
  color: var(--green-forest);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-forest);
  transition: width var(--transition);
}

.navbar__links a:hover {
  color: var(--green-forest);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__links .btn--nav {
  padding: 10px 22px;
  background: var(--accent-red);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
}

.navbar__links .btn--nav::after {
  display: none;
}

.navbar__links .btn--nav:hover {
  background: var(--accent-red-hover);
  color: var(--white);
}

/* Mobile hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
  position: relative;
}

.navbar__toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Hamburger morph into X when menu open */
.navbar__toggle.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: var(--brown-dark);
}
.navbar__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--brown-dark);
}

/* Backdrop behind mobile menu */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(59, 47, 47, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-backdrop.is-open {
  display: block;
  opacity: 1;
}

/* Drawer-only UI — hidden on desktop, shown inside mobile media query */
.nav-drawer-close-wrap,
.nav-mobile-footer {
  display: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn--primary {
  background: var(--accent-red);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent-red-hover);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(139, 58, 47, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--green-forest);
  border: 2px solid var(--green-forest);
}

.btn--secondary:hover {
  background: var(--green-forest);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
}

.btn--white {
  background: var(--white);
  color: var(--accent-red);
}

.btn--white:hover {
  background: var(--cream);
  color: var(--accent-red-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ============================================
   HERO SECTION — Editorial / Kinfolk-inspired
   Cream canvas, hand-drawn horizon, oversized
   seal watermark. No more brown slab.
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
  background: var(--cream);
}

/* Layered hills SVG — flat cream canvas with analog grain.
   Gradient removed: flat cream matches the patch's cream interior exactly,
   eliminating the "card on a surface" illusion created by a background color shift. */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    /* Subtle grain for analog paper feel */
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"),
    /* Flat cream — matches --cream / .hero fallback / patch interior */
    #FAF3E0;
}

/* Hand-drawn farm hills silhouette across the bottom */
.hero__bg::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 420' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%234A7C2E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.22'%3E%3Cpath d='M0 320 Q 180 240 360 280 T 720 250 T 1080 290 T 1440 260 L 1440 420 L 0 420 Z' fill='%234A7C2E' fill-opacity='0.08'/%3E%3Cpath d='M0 360 Q 220 300 440 340 T 880 310 T 1280 350 T 1440 330 L 1440 420 L 0 420 Z' fill='%234A7C2E' fill-opacity='0.10'/%3E%3Cpath d='M0 390 Q 240 360 520 380 T 1000 370 T 1440 385 L 1440 420 L 0 420 Z' fill='%233B2F2F' fill-opacity='0.06'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

/* ============================================
   HERO MERCH COLLAGE — desktop only
   Editorial product composition: long sleeve hero piece, hat accent.
   True-transparent PNGs — no blend modes or sepia filters needed.
   Drop shadow follows the transparent edges for realistic contact weight.
   Hidden entirely on mobile.
   ============================================ */
.hero__scene {
  /* Pure positioning container. No background, no padding, no card styling —
     the transparent PNG must float seamlessly over .hero__bg. */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48%;
  z-index: 1;
  pointer-events: none;
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__patch {
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-right: 3%;
  background: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  /* Drop-shadow removed — was creating a "card lifted off a surface" illusion.
     The embroidered oval reads as pressed-into-paper without it. */
  filter: none;
}

/* ============================================
   PAGE HERO SIDE ART — inner pages
   Shared decorative right-side element for
   our-farmers, how-it-works, products, contact.
   Absolute-right so it doesn't push hero text.
   Hidden on mobile; scaled on tablet.
   ============================================ */
.page-hero-art {
  /* Pure positioning container. No background, no padding, no card styling. */
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: 38%;
  max-width: 500px;
  z-index: 1;
  pointer-events: none;
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-art img {
  width: 100%;
  height: auto;
  max-width: 100%;
  background: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  filter: drop-shadow(0 14px 28px rgba(59, 47, 47, 0.16));
}

/* Variant: Double T monogram — retained rule (no active usage; our-farmers / contact / how-it-works now render hero art-less) */
.page-hero-art--double-t img {
  mix-blend-mode: multiply;
  max-width: 440px;
}

/* Variant: patch — transparent PNG, sits straight */
.page-hero-art--patch img {
  max-width: 480px;
}

/* Variant: merch — transparent hat PNG, no card, no blend */
.page-hero-art--merch {
  width: 34%;
  max-width: 420px;
}

.page-hero-art--merch img {
  max-width: 400px;
}

/* Short hero (contact) — smaller art */
.page-hero-art--compact img {
  max-width: 360px;
}

/* Ensure page-hero content stays above art on narrow desktops */
.hero--page .hero__content {
  position: relative;
  z-index: 2;
}

.hero__content h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  color: var(--brown-dark);
  margin-bottom: 24px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  max-width: 14ch;
  text-wrap: balance;
}

/* Subtle red underscore on the tagline for editorial feel */
.hero__content h1::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  background: var(--accent-red);
  margin-top: 20px;
  border-radius: 2px;
}

.hero__content p {
  font-size: 1.25rem;
  color: var(--gray-700);
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 560px;
  font-weight: 400;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero ghost button — restyled for cream background */
.hero__buttons .btn--secondary {
  background: transparent;
  color: var(--brown-dark) !important;
  border: 2px solid var(--brown-dark) !important;
}

.hero__buttons .btn--secondary:hover {
  background: var(--brown-dark);
  color: var(--white) !important;
  border-color: var(--brown-dark) !important;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 28px;
  border: 1px solid rgba(139, 58, 47, 0.18);
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(59, 47, 47, 0.05);
}

.hero__badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green-forest);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(74, 124, 46, 0.2);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* Page Hero (smaller, for inner pages) */
.hero--page {
  min-height: 50vh;
  padding-top: 72px;
}

.hero--page h1 {
  font-size: 3rem;
}

.hero--page p {
  font-size: 1.15rem;
}

/* ============================================
   TRUST CARDS
   ============================================ */
.trust {
  background: var(--white);
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: -140px;
  position: relative;
  z-index: 3;
}

.trust__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
  border: 1px solid var(--brown-light);
}

.trust__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-orange);
}

.trust__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.trust__card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.trust__card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--cream);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step-counter;
}

.step {
  text-align: center;
  position: relative;
  counter-increment: step-counter;
}

.step__number {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--green-forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(to right, var(--green-forest), var(--green-light));
  opacity: 0.3;
}

.step h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   FOUNDERS
   ============================================ */
.founders {
  background: var(--white);
}

.founders__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: start;
}

.founder-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--brown-light);
}

.founder-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.founder-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
  background: var(--cream-dark);
  display: block;
}

.founder-card__body {
  padding: 32px;
}

.founder-card__name {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.founder-card__role {
  font-size: 0.9rem;
  color: var(--green-forest);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.founder-card__bio {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.founder-card__bio p:last-child {
  margin-bottom: 0;
}

.founders__link {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   FARMERS (with placeholder state)
   ============================================ */
.farmers {
  background: var(--cream-dark);
}

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

.farmer-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
  border: 1px solid var(--brown-light);
}

.farmer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.farmer-card__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.farmer-card__body {
  padding: 24px;
}

.farmer-card__name {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.farmer-card__farm {
  font-size: 0.85rem;
  color: var(--green-forest);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.farmer-card__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Placeholder farmer cards */
.farmer-card--placeholder {
  position: relative;
}

.farmer-card--placeholder .farmer-card__image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: linear-gradient(
    135deg,
    var(--cream-mid) 0%,
    var(--cream-dark) 50%,
    var(--cream-mid) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.farmer-card--placeholder .farmer-card__image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(212, 184, 150, 0.08) 10px,
    rgba(212, 184, 150, 0.08) 20px
  );
}

.farmer-card__placeholder-icon {
  font-size: 3rem;
  opacity: 0.3;
}

.farmer-card__coming-soon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 50px;
}

.farmer-card--placeholder .farmer-card__name,
.farmer-card--placeholder .farmer-card__farm,
.farmer-card--placeholder .farmer-card__desc {
  background: var(--cream-mid);
  color: transparent;
  border-radius: 4px;
  user-select: none;
}

.farmer-card--placeholder .farmer-card__name {
  width: 60%;
  height: 20px;
  margin-bottom: 10px;
}

.farmer-card--placeholder .farmer-card__farm {
  width: 75%;
  height: 14px;
  margin-bottom: 16px;
}

.farmer-card--placeholder .farmer-card__desc {
  width: 100%;
  height: 48px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--white);
}

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

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  border: 1px solid var(--brown-light);
}

.testimonial-card__quote {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-top: 20px;
}

.testimonial-card__quote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 4rem;
  color: var(--green-forest);
  opacity: 0.25;
  font-style: normal;
  line-height: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gray-300);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown-dark);
}

.testimonial-card__location {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.testimonial-card__placeholder-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-300);
  background: var(--cream-dark);
  padding: 4px 10px;
  border-radius: 50px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-warm) 40%, var(--accent-red) 100%);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 60%);
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 32px;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__logo img,
.footer__logo .navbar__logo-img {
  height: 40px;
  width: auto;
}

.footer__logo span {
  color: var(--green-light);
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(250, 243, 224, 0.7);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(250, 243, 224, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 243, 224, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__col h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul li a {
  color: rgba(250, 243, 224, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__col ul li a:hover {
  color: var(--cream);
}

.footer__bottom {
  border-top: 1px solid rgba(250, 243, 224, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(250, 243, 224, 0.5);
}

.footer__bottom a {
  color: rgba(250, 243, 224, 0.5);
}

.footer__bottom a:hover {
  color: var(--cream);
}

/* ============================================
   OUR STORY PAGE
   ============================================ */
.story-section {
  background: var(--white);
}

.story__content {
  max-width: 760px;
  margin: 0 auto;
}

.story__content p {
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  color: var(--gray-700);
}

/* Opening paragraph — deliberate article lead-in */
.story__content p:first-child {
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--brown-dark);
  font-weight: 400;
  border-top: 3px solid var(--accent-red);
  padding-top: 24px;
  margin-top: 8px;
}

.story__highlight {
  background: var(--cream);
  border-left: 4px solid var(--green-forest);
  padding: 24px 32px;
  margin: 36px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.05rem;
  color: var(--brown-dark);
  font-weight: 500;
}

/* Founders detail cards on Our Story page */
.founders-detail {
  background: var(--cream);
}

.founders-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.founder-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--brown-light);
}

.founder-detail-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
  background: var(--cream-dark);
  display: block;
}

.founder-detail-card__body {
  padding: 36px;
}

.founder-detail-card__name {
  font-size: 1.75rem;
  margin-bottom: 4px;
}

.founder-detail-card__role {
  font-size: 0.9rem;
  color: var(--green-forest);
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

.founder-detail-card__bio {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.founder-detail-card__bio p:last-child {
  margin-bottom: 0;
}

.founder-detail-card__credentials {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.founder-detail-card__credentials li {
  font-size: 0.85rem;
  color: var(--gray-500);
  padding: 4px 0 4px 20px;
  position: relative;
}

.founder-detail-card__credentials li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green-forest);
  font-weight: 700;
}

/* Values section */
.values {
  background: var(--white);
}

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

.value-card {
  text-align: center;
  padding: 32px 20px;
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.value-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   LIFESTYLE STRIP (editorial break)
   ============================================ */
.lifestyle-strip {
  background: var(--cream);
  padding: 80px 0;
}

.lifestyle-strip__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.lifestyle-strip__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream-dark);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--brown-light);
}

.lifestyle-strip__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lifestyle-strip__body h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.lifestyle-strip__body p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ============================================
   MERCH TEASER (homepage)
   ============================================ */
.merch-teaser {
  background: var(--cream-dark);
}

.merch-teaser__header {
  text-align: center;
  margin-bottom: 48px;
}

.merch-teaser__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.merch-tile {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--brown-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.merch-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.merch-tile img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.merch-teaser__footer {
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--brown-warm);
  font-size: 1.05rem;
}

.merch-teaser__footer strong {
  color: var(--accent-red);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-family: var(--font-body);
  display: block;
  margin-bottom: 6px;
}

/* ============================================
   PRODUCTS PAGE — MERCH COLORWAY GRID
   ============================================ */
.merch-colorways {
  background: var(--white);
  padding: 64px 20px 80px;
}

.merch-colorways__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.merch-colorways__intro {
  text-align: center;
  margin-bottom: 48px;
}

.merch-colorways__intro h2 {
  font-size: 2rem;
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.merch-colorways__intro p {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.merch-colorways__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.merch-colorway {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--brown-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.merch-colorway:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.merch-colorway__image {
  aspect-ratio: 1 / 1;
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
}

.merch-colorway__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.merch-colorway__label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--brown-dark);
  font-weight: 600;
  margin-bottom: 4px;
}

.merch-colorway__sub {
  font-size: 0.82rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Merch category section on products page */
.merch-category {
  margin-bottom: 56px;
}

.merch-category:last-child {
  margin-bottom: 0;
}

.merch-category__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--brown-dark);
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}

.merch-category__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 2px;
  background: var(--accent-red);
  border-radius: 2px;
}

/* Four-across default; three-across and one variants */
.merch-category .merch-colorways__grid {
  grid-template-columns: repeat(4, 1fr);
}

.merch-category .merch-colorways__grid--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 820px;
  margin: 0 auto;
}

.merch-category .merch-colorways__grid--one {
  grid-template-columns: 1fr;
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================
   RESPONSIVE — Tablet (768px)
   ============================================ */
@media (max-width: 1024px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }

  .hero__content h1 { font-size: 3.25rem; }
  .hero--page h1 { font-size: 2.5rem; }

  /* Scale scene down on narrower desktops so it doesn't crowd text */
  .hero__scene { width: 44%; }
  .hero__patch { max-width: 440px; }

  /* Inner-page side art — tablet scaling */
  .page-hero-art {
    width: 36%;
    max-width: 380px;
    right: 3%;
  }
  .page-hero-art--double-t img,
  .page-hero-art--patch img,
  .page-hero-art--merch img { max-width: 360px; }
  .page-hero-art--compact img { max-width: 300px; }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .step:not(:last-child)::after {
    display: none;
  }

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

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html { font-size: 15px; }

  section { padding: 72px 0; }

  .container { padding: 0 22px; }

  /* Navbar — slightly shorter + tighter on mobile */
  .navbar .container { height: 64px; }

  /* Logo: image only on mobile, hide text */
  .navbar__logo-img {
    height: 36px !important;
  }

  .navbar__logo-text {
    font-size: 1.25rem;
  }

  /* ============================================
     MOBILE NAV — Premium slide-in drawer
     ============================================ */
  .navbar__toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(88vw, 360px);
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 24px 28px 32px;
    gap: 0;
    margin: 0;
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -12px 0 40px rgba(59, 47, 47, 0.18);
    border-left: 3px solid var(--accent-red);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 1099;
  }

  .navbar__links.active {
    transform: translateX(0);
  }

  .navbar__links li {
    display: block;
    width: 100%;
    list-style: none;
    border-bottom: 1px solid rgba(139, 58, 47, 0.10);
  }

  /* Strip borders from structural / non-link wrappers */
  .navbar__links li.nav-drawer-close-wrap,
  .navbar__links li.nav-cta-wrap,
  .navbar__links li.nav-mobile-footer,
  .navbar__links li:last-child {
    border-bottom: none;
  }

  /* In-drawer close button */
  .nav-drawer-close-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
  }

  .nav-drawer-close {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    line-height: 1;
    color: var(--brown-dark);
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    padding: 0;
  }

  .nav-drawer-close:hover,
  .nav-drawer-close:active {
    background: rgba(139, 58, 47, 0.08);
    color: var(--accent-red);
    transform: rotate(90deg);
  }

  .navbar__links a {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--brown-dark);
    padding: 16px 4px;
    min-height: 52px;
    letter-spacing: -0.01em;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  .navbar__links a::after {
    display: none;
  }

  .navbar__links a:hover,
  .navbar__links a:active {
    color: var(--accent-red);
    padding-left: 8px;
  }

  /* "Shop" CTA pill inside mobile menu */
  .nav-cta-wrap {
    margin-top: 16px;
    margin-bottom: 4px;
  }

  .navbar__links .btn--nav {
    display: block;
    background: var(--accent-red);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px 22px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.02em;
    min-height: 52px;
    box-shadow: 0 6px 16px rgba(139, 58, 47, 0.22);
  }

  .navbar__links .btn--nav:hover,
  .navbar__links .btn--nav:active {
    background: var(--accent-red-hover);
    color: var(--white);
    padding-left: 22px;
  }

  /* Menu footer — brand mark + tagline, pushed to drawer bottom */
  .nav-mobile-footer {
    display: block;
    margin-top: auto;
    padding-top: 28px;
    padding-bottom: 4px;
    text-align: center;
    border-top: 1px solid rgba(139, 58, 47, 0.12);
  }

  .nav-mobile-footer .brand-mark {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brown-dark);
    letter-spacing: -0.01em;
    margin-bottom: 4px;
    margin-top: 18px;
  }

  .nav-mobile-footer .brand-mark span {
    color: var(--green-forest);
  }

  .nav-mobile-footer .tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--green-forest);
    letter-spacing: 0.01em;
  }

  /* Prevent body scroll when menu open.
     JS sets inline top:-scrollY to preserve position on iOS Safari. */
  body.nav-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
  }

  /* ============================================
     TYPOGRAPHY — Mobile scale
     ============================================ */
  h1 { font-size: 2.25rem; letter-spacing: -0.025em; line-height: 1.08; }
  h2 { font-size: 1.85rem; letter-spacing: -0.02em; line-height: 1.15; }
  h3 { font-size: 1.2rem; }

  .section-title {
    font-size: 1.95rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }

  .section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto 36px;
    padding: 0 4px;
  }

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
  }

  /* ============================================
     HERO — Mobile editorial
     ============================================ */
  .hero {
    min-height: 72vh;
    padding-top: 112px;
    padding-bottom: 56px;
  }

  /* Hide desktop hero scene on mobile — keep cream + grain + hills clean */
  .hero__scene,
  .page-hero-art {
    display: none;
  }

  /* Soften fade-in distance on mobile to prevent scroll jank */
  .fade-in {
    transform: translateY(16px);
    transition-duration: 0.6s;
  }
  .fade-in-stagger > * {
    transform: translateY(12px);
    transition-duration: 0.5s;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__content h1 {
    font-size: 2.75rem;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
  }

  .hero__content h1::after {
    width: 52px;
    height: 3px;
    margin-top: 18px;
    border-radius: 2px;
  }

  .hero__content p {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .hero__badge {
    font-size: 0.72rem;
    padding: 7px 14px;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
  }

  /* Mobile hero background — flat cream to match desktop (gradient removed). */
  .hero__bg {
    background:
      url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"),
      #FAF3E0;
    background-size: 180px 180px, 100% 100%;
  }

  .hero__bg::before {
    height: 26%;
    background-size: 100% 100%;
    background-position: bottom center;
    opacity: 0.9;
  }

  /* Hero buttons — full width stack, confident tap targets */
  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .hero__buttons .btn {
    width: 100%;
    min-height: 52px;
    padding: 16px 24px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero__buttons .btn--large {
    padding: 17px 28px;
    font-size: 1.05rem;
  }

  /* Page heroes (inner pages) */
  .hero--page {
    min-height: 42vh;
    padding-top: 112px;
  }

  .hero--page h1 {
    font-size: 2.25rem;
  }

  /* ============================================
     TRUST CARDS — editorial, generous
     ============================================ */
  .trust {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .trust__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 0;
  }

  .trust__card {
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: left;
  }

  .trust__icon {
    width: 56px;
    height: 56px;
    margin: 0 0 16px;
    font-size: 1.6rem;
  }

  .trust__card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  .trust__card p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  /* ============================================
     HOW IT WORKS — numbered steps, editorial
     ============================================ */
  .how-it-works {
    padding: 72px 0;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 440px;
    margin: 0 auto;
  }

  .step {
    text-align: left;
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    column-gap: 20px;
    row-gap: 4px;
    align-items: start;
  }

  .step__number {
    width: 52px;
    height: 52px;
    margin: 0;
    font-size: 1.2rem;
    box-shadow: 0 4px 14px rgba(74, 124, 46, 0.25);
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .step h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    margin-top: 10px;
    grid-column: 2;
    min-width: 0;
  }

  .step p {
    font-size: 0.95rem;
    line-height: 1.6;
    grid-column: 2;
    min-width: 0;
  }

  /* ============================================
     FOUNDERS — premium stacked portraits
     ============================================ */
  .founders__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 460px;
    margin: 0 auto;
  }

  .founder-card {
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(59, 47, 47, 0.08);
  }

  .founder-card__image {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
  }

  .founder-card__body {
    padding: 24px 22px 26px;
  }

  .founder-card__name {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }

  .founder-card__role {
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
  }

  .founder-card__bio {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* ============================================
     LIFESTYLE STRIP — stacked, editorial
     ============================================ */
  .lifestyle-strip {
    padding: 64px 0;
  }

  .lifestyle-strip__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lifestyle-strip__image {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
  }

  .lifestyle-strip__body {
    text-align: left;
  }

  .lifestyle-strip__body h2 {
    font-size: 1.9rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .lifestyle-strip__body p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .lifestyle-strip__body .btn {
    display: inline-block;
    min-height: 48px;
    padding: 14px 26px;
  }

  /* ============================================
     FARMERS GRID — stacked placeholders
     ============================================ */
  .farmers {
    padding: 64px 0 72px;
  }

  .farmers__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 440px;
    margin: 0 auto;
  }

  .farmer-card {
    border-radius: var(--radius-md);
  }

  .farmer-card__body {
    padding: 20px;
  }

  .farmer-card__coming-soon {
    top: 14px;
    right: 14px;
    font-size: 0.65rem;
    padding: 5px 12px;
  }

  /* ============================================
     TESTIMONIALS — stacked
     ============================================ */
  .testimonials {
    padding: 64px 0;
  }

  .testimonials__grid,
  .founders-detail__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonial-card {
    padding: 30px 24px 26px;
    border-radius: var(--radius-md);
  }

  .testimonial-card__quote {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  /* ============================================
     MERCH TEASER — 2x2 tight grid
     ============================================ */
  .merch-teaser {
    padding: 64px 0;
  }

  .merch-teaser__header {
    margin-bottom: 32px;
  }

  .merch-teaser__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
  }

  .merch-tile {
    border-radius: var(--radius-md);
    padding: 10px;
  }

  .merch-teaser__footer {
    font-size: 0.98rem;
  }

  .merch-colorways__grid,
  .merch-category .merch-colorways__grid,
  .merch-category .merch-colorways__grid--three {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 100%;
    margin: 0 auto;
  }

  .merch-category .merch-colorways__grid--one {
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .merch-category {
    margin-bottom: 44px;
  }

  .merch-category__title {
    font-size: 1.25rem;
    margin-bottom: 18px;
  }

  .merch-colorway {
    padding: 14px;
  }

  .merch-colorway__label {
    font-size: 0.95rem;
  }

  .merch-colorway__sub {
    font-size: 0.72rem;
  }

  /* ============================================
     CTA BANNER — mobile punch
     ============================================ */
  .cta-banner {
    padding: 64px 0 68px;
  }

  .cta-banner h2 {
    font-size: 1.85rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }

  .cta-banner p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 26px;
    padding: 0 8px;
  }

  .cta-banner .btn {
    width: 100%;
    max-width: 320px;
    min-height: 52px;
    padding: 16px 24px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* ============================================
     FOOTER — mobile rhythm
     ============================================ */
  .footer {
    padding: 52px 0 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 36px;
  }

  .footer__brand {
    max-width: 100%;
  }

  .footer__logo {
    font-size: 1.35rem;
  }

  .footer__col h4 {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    margin-bottom: 16px;
  }

  .footer__col ul li {
    margin-bottom: 12px;
  }

  .footer__col ul li a {
    font-size: 0.95rem;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
  }

  .footer__social {
    gap: 14px;
  }

  .footer__social a {
    width: 44px;
    height: 44px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-top: 22px;
  }

  /* Misc pages */
  .values__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .story__content p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* ============================================
   EXTRA SMALL — 375px iPhone baseline
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 18px; }

  .hero {
    padding-top: 104px;
    padding-bottom: 64px;
  }

  .hero__content h1 {
    font-size: 2.45rem;
    line-height: 1.03;
  }

  .hero__content h1::after {
    width: 44px;
    margin-top: 16px;
  }

  .hero__content p {
    font-size: 1rem;
  }

  .hero__badge {
    font-size: 0.7rem;
    padding: 6px 13px;
  }

  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.98rem;
    margin-bottom: 30px;
  }

  .trust__grid {
    margin-top: 0;
  }

  .trust__card {
    padding: 28px 22px;
  }

  .founder-card__body {
    padding: 22px 20px 24px;
  }

  .founder-card__name {
    font-size: 1.3rem;
  }

  .lifestyle-strip__body h2,
  .cta-banner h2 {
    font-size: 1.7rem;
  }

  .merch-teaser__grid {
    gap: 10px;
  }

  .navbar__links {
    width: min(92vw, 340px);
    padding: 22px 24px 28px;
  }

  .navbar__links a {
    font-size: 1.3rem;
    padding: 14px 4px;
  }
}

/* Tablet merch grid */
@media (max-width: 1024px) and (min-width: 769px) {
  .merch-teaser__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .merch-colorways__grid,
  .merch-category .merch-colorways__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .merch-category .merch-colorways__grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .navbar,
  .cta-banner,
  .footer__social,
  .btn {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero__bg {
    display: none;
  }

  .hero__content h1 {
    color: #000;
  }

  .hero__content p {
    color: #333;
  }

  section {
    padding: 20px 0;
    break-inside: avoid;
  }

  .trust__grid,
  .founders__grid,
  .farmers__grid {
    gap: 16px;
  }

  .trust__card,
  .founder-card,
  .farmer-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* ============================================
   ALTERNATING SECTION BACKGROUNDS
   ============================================ */
.bg-white { background-color: var(--white); }
.bg-cream { background-color: var(--cream); }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }

/* Selection color */
::selection {
  background-color: rgba(74, 124, 46, 0.15);
  color: var(--brown-dark);
}

/* Smooth focus outlines for accessibility */
:focus-visible {
  outline: 2px solid var(--green-forest);
  outline-offset: 2px;
}
