/* ============================================================
   NATHEL & NATHEL — Website Stylesheet
   Brand: Navy #0F1E3D · Red #E2231A · Cream #FAF8F4
   Type: Times New Roman (serif) + Arial/Helvetica (sans)
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --bg:        #0b0b0b;
  --bg-2:      #0b0b0b;
  --bg-3:      #111111;
  --bg-card:   #141414;
  --navy:      #0F1E3D;
  --red:       #E2231A;
  --red-dark:  #c51d15;
  --white:     #ffffff;
  --cream:     #FAF8F4;
  --steel:     #8FA8CC;
  --ink:       #1C1E22;
  --muted:     rgba(255,255,255,0.58);
  --muted-2:   rgba(255,255,255,0.35);
  --border:    rgba(255,255,255,0.09);
  --border-2:  rgba(255,255,255,0.15);

  --font-serif: 'Times New Roman', Georgia, 'Times', serif;
  --font-sans:  Arial, Helvetica, sans-serif;

  --max-w:     1440px;
  --content-w: 1240px;
  --nav-h:     72px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
@keyframes nn-page-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  animation: nn-page-in 0.7s ease-out 0.05s both;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 48px;
}
.container--wide { max-width: var(--max-w); }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.12;
  font-weight: 700;
  color: var(--white);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 700; }

p { color: var(--muted); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow--light { color: rgba(255,255,255,0.5); }
.eyebrow--white { color: var(--white); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  transition: background 0.22s var(--ease), border-color 0.22s, color 0.22s;
  white-space: nowrap;
}
.btn:hover { background: var(--white); color: var(--bg); border-color: var(--white); }

.btn--red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }

.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.btn-link .arrow { transition: transform 0.2s; font-style: normal; }
.btn-link:hover { color: var(--red); }
.btn-link:hover .arrow { transform: translateX(5px); }

.btn-link--red { color: var(--red); }
.btn-link--red:hover { color: var(--white); }

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 11px 48px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ---- Navigation ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(11,11,11,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-h);
  padding: 0 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-discover {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-discover:hover { color: var(--red); }
.nav-discover .nav-arrow {
  font-size: 9px;
  transition: transform 0.25s var(--ease);
  display: inline-block;
}
.nav-discover.is-open .nav-arrow { transform: rotate(180deg); }

.nav-logo {
  justify-self: center;
}
.nav-logo img {
  height: 42px;
  width: auto;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), opacity 0.2s;
}
.nav-logo:hover img { transform: scale(1.04); opacity: 0.85; }

.nav-contact-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color 0.2s;
}
.nav-contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1);
}
.nav-contact-link:hover { color: var(--red); }
.nav-contact-link:hover::after { transform: scaleX(1); }

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-order-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 8px 18px;
  border-radius: 2px;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.nav-order-btn:hover { background: #c01e16; }

.nav-mobile-btn {
  display: none;
  justify-self: end;
  font-size: 22px;
  color: var(--white);
  padding: 4px;
}

/* Mega Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(11,11,11,0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.3s;
}
.nav-dropdown.is-open {
  max-height: 420px;
  padding: 52px 0 56px;
}

.nav-dropdown-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 200px;
  gap: 0 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

.nav-col-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: block;
}

.nav-col ul li { margin-bottom: 11px; }
.nav-col ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.18s, transform 0.22s cubic-bezier(0.22,1,0.36,1);
  line-height: 1.3;
  display: inline-block;
}
.nav-col ul li a:hover { color: var(--white); transform: translateX(5px); }

.nav-col--right {
  border-left: 1px solid var(--border);
  padding-left: 48px;
}
.nav-col--right ul li a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}
.nav-col--right ul li a:hover { color: var(--white); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 300;
  padding: 32px 24px;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav-close {
  align-self: flex-end;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 32px;
}
.mobile-nav-section { margin-bottom: 32px; }
.mobile-nav-section .nav-col-heading { margin-bottom: 14px; }
.mobile-nav-section ul li { margin-bottom: 12px; }
.mobile-nav-section ul li a { font-size: 16px; color: var(--muted); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero--short { min-height: 62vh; }
.hero--medium { min-height: 74vh; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* No side fades — image is crisp edge-to-edge */
  background: none;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Bottom-only fade — image stays crisp at top, dissolves into page background */
  background: linear-gradient(to bottom,
    transparent         0%,
    transparent         38%,
    rgba(11,11,11,0.50) 60%,
    rgba(11,11,11,0.85) 78%,
    #0b0b0b            92%,
    #0b0b0b            100%);
}

/* Gradient placeholders for different page types */
.hero-placeholder--grower   { background: linear-gradient(160deg, #0a1e0f 0%, #142814 45%, #0b0b0b 100%); }
.hero-placeholder--customer { background: linear-gradient(160deg, #0d0f1e 0%, #141828 45%, #0b0b0b 100%); }
.hero-placeholder--community{ background: linear-gradient(160deg, #1a0f00 0%, #2a1800 45%, #0b0b0b 100%); }
.hero-placeholder--family   { background: linear-gradient(160deg, #110d1e 0%, #1c1428 45%, #0b0b0b 100%); }
.hero-placeholder--produce  { background: linear-gradient(160deg, #1a1400 0%, #261c00 45%, #0b0b0b 100%); }
.hero-placeholder--roots    { background: linear-gradient(160deg, #070e07 0%, #0d160d 45%, #0b0b0b 100%); }
.hero-placeholder--contact  { background: linear-gradient(160deg, #0a0a14 0%, #141428 45%, #0b0b0b 100%); }
.hero-placeholder--home     { background: linear-gradient(160deg, #0a1810 0%, #182814 45%, #0b0b0b 100%); }
.hero-placeholder--story    { background: linear-gradient(160deg, #0d1a0d 0%, #162614 45%, #0b0b0b 100%); }

.hero-content {
  position: relative;
  z-index: 1;
  padding: 32px 40px 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-content .eyebrow { margin-bottom: 10px; }

.hero-content h1 {
  max-width: 820px;
  margin-bottom: 10px;
  font-size: clamp(52px, 7.5vw, 108px);
  letter-spacing: -0.025em;
  line-height: 1.06;
  text-shadow: 0 2px 20px rgba(0,0,0,0.55), 0 1px 6px rgba(0,0,0,0.4);
}
/* Red accent phrase inside hero headlines */
.hero-content h1 em,
.cc-hero-inner h1 em,
.oc-hero-inner h1 em {
  color: #e2231a;
  font-style: normal;
}

/* 1922 Established stamp — bottom-right of every hero */
.hero-stamp {
  position: absolute;
  bottom: 40px;
  right: 52px;
  z-index: 4;
  text-align: right;
  line-height: 1;
  pointer-events: none;
}
.hero-stamp-year {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(60px, 7.5vw, 100px);
  font-weight: 700;
  color: #e2231a;
  letter-spacing: -0.03em;
  line-height: 0.88;
}
.hero-stamp-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}
@media (max-width: 600px) {
  .hero-stamp { bottom: 80px; right: 24px; }
  .hero-stamp-year { font-size: 52px; }
}
.hero-content .hero-sub {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  margin-bottom: 28px;
  margin-top: 6px;
  line-height: 1.65;
  font-weight: 400;
}
.hero-content .hero-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  font-family: var(--font-sans);
}
.hero-content .hero-meta strong { color: rgba(255,255,255,0.85); }

/* Hero story nav tabs (homepage) */
.hero-stories-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hero-story-tab {
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.2s;
  background: rgba(0,0,0,0.4);
}
.hero-story-tab:last-child { border-right: none; }
.hero-story-tab:hover { background: rgba(255,255,255,0.04); }
.hero-story-tab p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
  margin-bottom: 10px;
}
.hero-story-tab .tab-cta {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---- Ticker / Banner ---- */
.ticker-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 16px 48px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---- Sections ---- */
.section { padding: 108px 0; }
.section--sm  { padding: 72px 0; }
.section--lg  { padding: 140px 0; }
.section--dark    { background: var(--bg); }
.section--darker  { background: var(--bg-2); }
.section--darkest { background: var(--bg-3); }
.section--navy    { background: var(--navy); }
.section--red     { background: var(--red); }

/* Background crossfade slideshow */
.bg-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.bg-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2.5s ease;
}
.bg-slideshow img.is-active { opacity: 0.18; }

.section-header { margin-bottom: 64px; }
.section-header h2 { margin-bottom: 20px; max-width: 680px; }
.section-header p  { max-width: 600px; font-size: 1.0625rem; }

.section-header--center { text-align: center; }
.section-header--center h2,
.section-header--center p { margin-left: auto; margin-right: auto; }

/* ---- Stats Row ---- */
.stats-row {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  margin-top: 48px;
}
.stat { flex: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ---- Cards Grid ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.card:hover .card-img img { transform: scale(1.05); }

/* Gradient placeholder images */
.ph { width: 100%; height: 100%; }
.ph--farm    { background: linear-gradient(145deg, #0d2014 0%, #162c18 100%); }
.ph--produce { background: linear-gradient(145deg, #1a1400 0%, #261e00 100%); }
.ph--city    { background: linear-gradient(145deg, #0d0f1e 0%, #161a30 100%); }
.ph--warm    { background: linear-gradient(145deg, #1a0e00 0%, #281600 100%); }
.ph--people  { background: linear-gradient(145deg, #0f0d1a 0%, #1c1430 100%); }
.ph--citrus  { background: linear-gradient(145deg, #1a1200 0%, #2a1c00 100%); }
.ph--veggie  { background: linear-gradient(145deg, #0a1a0a 0%, #142014 100%); }
.ph--neutral { background: linear-gradient(145deg, #111111 0%, #1c1c1c 100%); }

/* Photo label overlay */
.ph-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  border: 1px dashed rgba(255,255,255,0.08);
  margin: 12px;
}

.card-body { padding: 22px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.card-body .card-eyebrow { font-size: 10px; color: var(--muted-2); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.card-body .card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card-body .card-desc { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; flex: 1; }
.card-body .card-cta {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.card-body .card-cta:hover { color: var(--white); }

/* ---- Quote Carousel ---- */
.quote-wrap {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
.quote-slide {
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
.quote-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}
.quote-text::before { content: '\201C'; }
.quote-text::after  { content: '\201D'; }

.quote-attr {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.quote-attr strong { color: rgba(255,255,255,0.9); font-weight: 700; display: block; font-size: 1rem; letter-spacing: 0; }

.quote-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
}
.quote-btn { display: none; }
.quote-dots { display: flex; gap: 8px; }
.quote-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  transition: background 0.2s;
}
.quote-dot.is-active { background: var(--red); }

/* ---- Logo Wall ---- */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  align-items: center;
}
.logo-wall img {
  height: 36px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1) brightness(2);
  transition: opacity 0.25s, filter 0.25s;
  object-fit: contain;
}
.logo-wall img:hover { opacity: 1; filter: grayscale(0) brightness(1); }

.logo-wall--lg img { height: 46px; }

/* ---- Split Section ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.split--60-40 { grid-template-columns: 3fr 2fr; }
.split--40-60 { grid-template-columns: 2fr 3fr; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split-img {
  overflow: hidden;
  position: relative;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img .ph { min-height: 400px; }

.split-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-2);
}
.split-content h2,
.split-content h3 { margin-bottom: 20px; }
.split-content p { margin-bottom: 32px; }

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 80px 48px;
  background: var(--bg-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.cta-block {
  padding: 64px 72px;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
}
.cta-block h3 { margin-bottom: 16px; font-size: 1.6rem; }
.cta-block p  { margin-bottom: 30px; font-size: 0.95rem; }

/* ---- Full-width CTA ---- */
.cta-full {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 48px;
  text-align: center;
}
.cta-full h2 { margin-bottom: 16px; }
.cta-full p  { margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---- Split CTA (two-panel, red top border) ---- */
.cta-split {
  background: var(--bg);
  border-top: 2px solid var(--red);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cta-split-block {
  padding: 80px 80px 88px;
}
.cta-split-block:first-child {
  border-right: 1px solid rgba(255,255,255,0.08);
}
.cta-split-block .eyebrow { margin-bottom: 20px; display: block; }
.cta-split-block h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 20px;
}
.cta-split-block p {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 44px;
  max-width: 400px;
}
.cta-split-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 14px;
  width: 100%;
  transition: color 0.2s, border-color 0.2s;
}
.cta-split-link:hover { color: var(--red); border-color: var(--red); }
.cta-split-link .arrow { transition: transform 0.2s; font-style: normal; margin-left: auto; }
.cta-split-link:hover .arrow { transform: translateX(5px); }

/* ---- Map Section ---- */
.map-placeholder {
  width: 100%;
  aspect-ratio: 16/7;
  background: radial-gradient(ellipse at 30% 50%, #1a2814 0%, #0d1810 40%, #080808 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder::after {
  content: 'Interactive Map — Global Sourcing Network';
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  border: 1px dashed rgba(255,255,255,0.08);
  padding: 16px 32px;
}

/* ---- Produce Category Grid ---- */
.produce-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}

.produce-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}
.produce-item .ph { min-height: 120px; transition: transform 0.45s var(--ease); }
.produce-item:hover .ph { transform: scale(1.08); }
.produce-item > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  transition: transform 0.45s var(--ease);
}
.produce-item:hover > img { transform: scale(1.08); }

.produce-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 45%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  pointer-events: none;
}
.produce-name {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
}
.produce-tap {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.25s;
}
.produce-item:hover .produce-tap { opacity: 1; }
.produce-count { font-size: 10.5px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* ---- Timeline ---- */
.timeline-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, #0a1c0a 0%, #050d05 50%, #030303 100%);
}
.timeline-hero-bg::after { display: none; }

.timeline {
  position: relative;
  padding-left: 72px;
  max-width: 860px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 4px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--red) 0%, rgba(226,35,26,0.08) 100%);
}

.timeline-era { margin-bottom: 72px; }

.timeline-era-label {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 36px;
  position: relative;
}
.timeline-era-label::before {
  content: '';
  position: absolute;
  left: -76px;
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(226,35,26,0.2);
}
.timeline-era-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.timeline-item {
  margin-bottom: 40px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -76px; top: 7px;
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
}
.timeline-year {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.25;
}
.timeline-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ---- Story Article ---- */
.story-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.story-meta-item { }
.story-meta-item .meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.story-meta-item .meta-value {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.story-body {
  max-width: 740px;
}
.story-body h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  margin-top: 52px;
  color: var(--white);
}
.story-body h3:first-child { margin-top: 0; }
.story-body p {
  font-size: 1.0625rem;
  line-height: 1.82;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.72);
}

.story-quote-block {
  border-left: 3px solid var(--red);
  padding: 28px 36px;
  margin: 52px 0;
  background: var(--bg-2);
}
.story-quote-block .quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.6;
}
.story-quote-block .quote-text::before,
.story-quote-block .quote-text::after { content: none; }
.story-quote-block .quote-attr { font-size: 13px; color: var(--muted); }

/* ---- Story Meta Bar (sticky) ---- */
.story-meta-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 72px;
  height: 80px;
}
.story-meta-bar-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  padding-right: 56px;
  border-right: 1px solid rgba(255,255,255,0.07);
  margin-right: 56px;
}
.story-meta-bar-item:last-of-type {
  border-right: none;
}
.story-meta-bar-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.story-meta-bar-value {
  font-size: 1.05rem;
  font-weight: 400;
  font-family: var(--font-serif, Georgia, serif);
  color: rgba(255,255,255,0.90);
  white-space: nowrap;
}
.story-meta-bar-link {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.40);
  padding-bottom: 3px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.story-meta-bar-link:hover { color: var(--red); border-color: var(--red); }
@media (max-width: 860px) {
  .story-meta-bar { display: none; }
}

/* ---- Story "More Stories" carousel ---- */
.more-stories .cards-grid { gap: 20px; }
.more-stories .card-img { aspect-ratio: 4/3; }

/* ---- Partner Section ---- */
.partner-icons {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.partner-icon {
  width: 80px; height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-2);
  transition: border-color 0.2s, background 0.2s;
}
.partner-icon:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.03); }
.partner-icon img { width: 48px; opacity: 0.7; filter: grayscale(1) brightness(2); }

/* ---- Contact / Form ---- */
.form-wrap { max-width: 600px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group select {
  background-color: #111;
  color: #fff;
}
.form-group select option {
  background-color: #111;
  color: #fff;
}
/* Custom select dropdown */
.custom-select { position:relative; width:100%; }
.custom-select__trigger {
  display:flex; align-items:center; justify-content:space-between;
  background:#111; border:1px solid rgba(255,255,255,0.12); border-radius:2px;
  padding:14px 16px; cursor:pointer; transition:border-color 0.2s;
  font-size:14px; color:rgba(255,255,255,0.4);
}
.custom-select__trigger:hover,
.custom-select.is-open .custom-select__trigger { border-color:rgba(255,255,255,0.32); }
.custom-select__trigger svg { flex-shrink:0; transition:transform 0.2s; }
.custom-select.is-open .custom-select__trigger svg { transform:rotate(180deg); }
.custom-select__trigger .custom-select__value.has-value { color:#fff; }
.custom-select__dropdown {
  display:none; position:absolute; top:calc(100% + 4px); left:0; right:0; z-index:50;
  background:#111; border:1px solid rgba(255,255,255,0.12); border-radius:2px;
  overflow:hidden;
}
.custom-select.is-open .custom-select__dropdown { display:block; }
.custom-select__option {
  padding:13px 16px; font-size:14px; color:#fff; cursor:pointer;
  border-bottom:1px solid rgba(255,255,255,0.06); transition:color 0.15s;
}
.custom-select__option:last-child { border-bottom:none; }
.custom-select__option:hover { color:#e2231a; }
.custom-select__option.is-selected { color:#e2231a; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(255,255,255,0.32); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.22); font-size: 13px; }

/* ---- Newsletter Modal ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 24px;
}
.modal-overlay.is-open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  padding: 56px 56px 48px;
  max-width: 500px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s var(--ease);
}
.modal-overlay.is-open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 20px; right: 22px;
  font-size: 22px;
  color: var(--muted);
  transition: color 0.2s;
  line-height: 1;
}
.modal-close:hover { color: var(--white); }

.modal h3 { margin-bottom: 10px; font-size: 1.5rem; }
.modal p  { margin-bottom: 28px; font-size: 14px; }

/* ---- Footer ---- */
.site-footer {
  background: var(--red);
  color: var(--white);
  padding: 68px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 240px repeat(4, 1fr) 200px;
  gap: 0 40px;
  margin-bottom: 56px;
}

.footer-brand {}
.footer-brand-logo { height: 68px; width: auto; margin-bottom: 22px; }
.footer-address {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
}

.footer-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 18px;
}

.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-col--right ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}
.footer-col--right ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.22);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-legal {
  display: flex;
  gap: 24px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.62);
  flex-wrap: wrap;
}
.footer-legal a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.footer-social a:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ---- Dividers ---- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ---- Category pills ---- */
.pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--border-2);
  color: var(--muted);
  transition: all 0.2s;
  cursor: pointer;
}
.pill.is-active,
.pill:hover { border-color: var(--red); color: var(--white); background: rgba(226,35,26,0.08); }

/* ---- Customer type icons ---- */
.service-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-type {
  padding: 36px 28px;
  background: var(--bg-3);
  border-top: 2px solid var(--border-2);
  transition: border-color 0.2s;
}
.service-type:hover { border-top-color: var(--red); }
.service-type-icon {
  width: 48px; height: 48px;
  margin-bottom: 18px;
  opacity: 0.75;
}
.service-type h4 { margin-bottom: 10px; font-size: 0.95rem; letter-spacing: 0.04em; }
.service-type p { font-size: 13.5px; }

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 200px repeat(3, 1fr); }
  .footer-grid .footer-col--right { grid-column: 2; margin-top: 32px; }
  .produce-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 1024px) {
  :root { --content-w: 100%; }
  .container { padding: 0 32px; }
  .nav-dropdown-inner { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-img .ph { min-height: 340px; }
  .cta-banner { grid-template-columns: 1fr; padding: 0; }
  .cta-block { padding: 52px 48px; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-split-block { padding: 56px 40px; }
  .cta-split-block:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .produce-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-stories-bar { grid-template-columns: 1fr; }
  .hero-story-tab { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hero-story-tab:last-child { border-bottom: none; }
  .service-types { grid-template-columns: repeat(2, 1fr); }
  .stats-row { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }

  .announcement-bar { display: none; }
  .ticker-bar { padding: 14px 20px; font-size: 12px; }

  .nav-inner { padding: 0 20px; }
  .nav-discover,
  .nav-contact-link { display: none; }
  .nav-order-btn { display: none; }
  .nav-mobile-btn { display: flex; }
  .nav-logo img { height: 36px; }

  .hero { min-height: 72vh; }
  .hero--short { min-height: 55vh; }
  .hero-content { padding: 24px 20px 52px; }
  .hero-content h1 { font-size: clamp(32px, 9vw, 52px); margin-bottom: 8px; }
  .hero-stories-bar { display: none; }

  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .cards-grid--2 { grid-template-columns: 1fr; }
  .cta-split-block { padding: 48px 28px; }
  .produce-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-row { flex-direction: column; gap: 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col--right { grid-column: auto; margin-top: 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  .form-row { grid-template-columns: 1fr; }
  .service-types { grid-template-columns: 1fr; }
  .cta-block { padding: 40px 28px; }
  .split-content { padding: 48px 28px; }
  .timeline { padding-left: 40px; }
  .timeline-era-label::before { left: -44px; }
  .timeline-item::before { left: -44px; }

  .modal { padding: 40px 28px; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.35rem; }
}

@media (max-width: 480px) {
  .produce-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-wall { gap: 20px 24px; }
  .logo-wall img { height: 28px; }
}

/* ── Headshot cards ─────────────────────────────────────── */
.card-img--headshot {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.card-img--headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s var(--ease);
}
.card:hover .card-img--headshot img { transform: scale(1.05); }

/* Per-person zoom corrections for headshots shot at different distances */
.card-img--headshot--zoom-14 img {
  transform: scale(1.15);
  transform-origin: 50% 20%;
}
.card:hover .card-img--headshot--zoom-14 img { transform: scale(1.21); }

.card-img--headshot--lower img {
  transform: scale(1.1) translateY(4%);
  transform-origin: center center;
}
.card:hover .card-img--headshot--lower img { transform: scale(1.16) translateY(4%); }

/* ── Facility gallery ───────────────────────────────────── */
.facility-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 48px;
}
.facility-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.facility-img:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
  .facility-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .facility-gallery { grid-template-columns: 1fr; }
}

/* ── Commodity detail panel ─────────────────────────────── */
.commodity-detail {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4,0,0.2,1), padding 0.4s ease;
  background: #ffffff;
  border-top: 1px solid transparent;
}
.commodity-detail.is-open {
  max-height: 700px;
  padding: 52px 0 60px;
  border-top-color: rgba(0,0,0,0.08);
}
.commodity-detail .container {
  position: relative;
}
.cd-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}
.cd-title {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: #111111;
  margin: 4px 0 0;
  line-height: 1.1;
}
.cd-close {
  background: none;
  border: 1px solid rgba(0,0,0,0.2);
  color: rgba(0,0,0,0.5);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
}
.cd-close:hover { background: rgba(0,0,0,0.07); color: #111; }
.cd-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.cd-pill {
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.75);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cd-pill:hover {
  background: rgba(200,45,35,0.1);
  border-color: rgba(200,45,35,0.4);
  color: var(--red);
}
.produce-item.is-selected {
  outline: 3px solid var(--color-red);
  outline-offset: -3px;
  z-index: 1;
}
.produce-item { position: relative; }

/* ── Growers map section ────────────────────────────────── */
.growers-map-section {
  background: var(--bg);
  padding: 80px 0;
}
.map-wrap {
  width: 100%;
  margin: 0;
  position: relative;
}
#grower-map {
  width: 100%;
  height: clamp(600px, calc(100dvh - 140px), 900px);
  border-radius: 0;
  overflow: hidden;
  background: var(--bg);
  cursor: grab;
}
#grower-map:active { cursor: grabbing; }
.map-popup {
  position: absolute;
  background: #1a2420;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 16px 18px;
  min-width: 200px;
  max-width: 260px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.map-popup.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}
.map-popup-country {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.map-popup-grower {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}
.map-popup-detail {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  line-height: 1.4;
}
.map-popup-link {
  font-size: 12px;
  color: var(--color-red);
  text-decoration: none;
  font-weight: 600;
}
.map-popup-link:hover { text-decoration: underline; }
.map-reset-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(26,36,32,0.9);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.7);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  display: none;
  z-index: 5;
  transition: background 0.2s;
}
.map-reset-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.map-hint {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

/* ── History timeline roots ─────────────────────────────── */
.timeline-roots-wrap {
  position: relative;
}
.roots-canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.90;
}
.root-path {
  fill: none;
  stroke: #7a4828;
  stroke-width: 1.5;
  stroke-linecap: round;
}
.timeline-item {
  position: relative;
  z-index: 1;
}
.timeline-photo {
  margin-top: 16px;
  border-radius: 6px;
  overflow: hidden;
  max-width: 480px;
}
.timeline-photo img {
  width: 100%;
  display: block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.timeline-photo img.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-photo-caption {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  font-style: italic;
  letter-spacing: 0.03em;
}

/* ── Commodity label logos ─────────────────────────────────────── */
.cd-labels-wrap {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.cd-labels-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.cd-label-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}
.cd-label-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.cd-label-item img {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.cd-label-item img:hover { opacity: 1; }
.cd-label-item span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  text-align: center;
  line-height: 1.3;
}

/* ── Grower story editorial cards (growers.html) ──────────── */
.gr-story-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s, border-color 0.25s, transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
  cursor: pointer;
}
.gr-story-card:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.13);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.gr-story-card:hover .gr-story-thumb {
  transform: scale(1.05);
}
.gr-story-thumb {
  width: 88px;
  height: 88px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.gr-story-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.gr-story-meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1;
}
.gr-story-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
}
.gr-story-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gr-story-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 3px 9px;
  border-radius: 100px;
  line-height: 1.4;
  margin-top: 2px;
  align-self: flex-start;
}

@media (max-width: 1024px) {
  /* Two featured cards stack to single column */
  #gr-stories .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Bottom 4-card row drops to 2 columns */
  #gr-stories .container > div[style*="repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  #gr-stories .container > div[style*="repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  .gr-story-thumb { width: 72px; height: 72px; }
}

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS  (scroll-triggered + hero entrance)
   ═══════════════════════════════════════════════════════════ */

/* Hero entrance ------------------------------------------- */
.hero-eyebrow-reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-h1-reveal[data-no-split] {
  opacity: 0;
  transform: translateY(40px);
}
.hero-h1-reveal .word-clip {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
}
.hero-h1-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(52px);
  will-change: transform, opacity;
}
.hero-pills-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* Scroll-triggered word reveal ---------------------------- */
.reveal-text .word-clip {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
}
.reveal-text .word {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
  will-change: transform, opacity;
}
.reveal-text.in-view .word {
  transform: translateY(0);
  opacity: 1;
}

/* Eyebrow fade-up ----------------------------------------- */
.reveal-eyebrow {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease 0.05s, transform 0.55s ease 0.05s;
}
.reveal-eyebrow.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Film grain overlay — add class="grain" to <body> to enable */
.grain::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ── Card hover states ───────────────────────────────────────── */

/* Hero overflow clip needed for parallax */
.hero { overflow: hidden; }

/* Brand cards — organics / produce (3/4 aspect ratio <a> tags) */
.brand-card {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
}
.brand-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 28px 72px rgba(0,0,0,0.6);
  z-index: 2;
}
.brand-card > img {
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.brand-card:hover > img {
  transform: scale(1.07);
}

/* Homepage service offering cards (dark bg, icon, text) */
.hp-service-card {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}
.hp-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
  border-color: rgba(226,35,26,0.3) !important;
}
.hp-service-card:hover a {
  color: #e2231a !important;
}

/* Homepage content cards (grower / customer / community / family) */
.hp-content-card {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
}
.hp-content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.hp-content-card img {
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.hp-content-card:hover img {
  transform: scale(1.04);
}

/* Quote carousel word animation */
.q-clip { display: inline-block; overflow: hidden; vertical-align: bottom; line-height: inherit; }
.q-word { display: inline-block; opacity: 0; transform: translateY(24px); will-change: transform, opacity; }

/* Whole-element fade-up (for headlines that can't be word-split) */
.reveal-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE — page-specific inline grid overrides
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  /* organics.html */
  .org-split-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .org-brand-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .org-cert-grid  { grid-template-columns: repeat(2, 1fr) !important; }

  /* cold-chain.html */
  .cc-split-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .cc-feat-grid  { grid-template-columns: 1fr !important; }

  /* customers.html */
  .cust-hero-grid { grid-template-columns: 1fr !important; gap: 32px !important; margin-bottom: 40px !important; }

  /* growers.html */
  .gr-feat-grid  { grid-template-columns: 1fr !important; }
  .gr-logo-grid  { grid-template-columns: repeat(2, 1fr) !important; }

  /* community.html */
  .comm-feat-grid { grid-template-columns: 1fr !important; }
  .comm-logo-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .org-brand-grid { grid-template-columns: 1fr !important; }
  .org-cert-grid  { grid-template-columns: 1fr !important; }
  .gr-logo-grid   { grid-template-columns: repeat(2, 1fr) !important; }

  /* Tighten section padding on smallest screens */
  .section { padding: 48px 0; }
  .section--lg { padding: 60px 0; }

  /* Produce page SKU buttons — smaller tap targets are fine, keep font readable */
  .pe-sku-btn { font-size: 12px; padding: 8px 10px; }

  /* Footer tighten */
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-col--right { margin-top: 0; }
}

/* Mobile nav — ensure ORDER ONLINE link is styled correctly in drawer */
.mobile-nav-section ul li a[href*="pepr"] {
  color: #e2231a;
  font-weight: 700;
}

/* Fruit scrub section — disable on mobile, show static fallback */
@media (max-width: 768px) {
  #fruit-scrub-section { height: auto !important; }
  #fruit-scrub-section > div { position: relative !important; height: 420px !important; }
  #fruit-content { opacity: 1 !important; transform: none !important; }
  #fruit-start-overlay { display: none !important; }
  #fruit-end-overlay { display: none !important; }

  /* Quote section padding */
  .section.section--dark[style*="padding:100px 48px"] { padding: 64px 20px !important; }

  /* hp-section-inner padding on mobile */
  .hp-section-inner { padding: 0 20px !important; }

  /* Produce cat strip — show scroll hint */
  .pe-cat-strip-wrap::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    background: linear-gradient(to right, transparent, var(--bg));
    pointer-events: none;
  }
  .pe-cat-strip-wrap { position: relative; }
}
