/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
/* Full-width hero — farmer image is the background */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-image-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  position: absolute;
  inset: 0;
}

/* White fade left → transparent right */
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.80) 28%,
    rgba(255, 255, 255, 0.40) 52%,
    rgba(255, 255, 255, 0.08) 72%,
    transparent 88%
  );
}

/* Logo emblem hidden — it was covering the farmer's face */
.hero-logo-emblem { display: none; }
.hero-emblem-ring { display: none; }

.hero-content-panel {
  position: relative;
  z-index: 2;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) clamp(32px, 8vw, 120px) 80px;
  max-width: 620px;
}

.hero-content-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-content-inner .eyebrow {
  margin-bottom: 20px;
  color: var(--honey-dark);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--honey-dark);
}

.hero-sub {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 380px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 0;
  padding-top: 36px;
  border-top: 1px solid rgba(14, 15, 13, 0.18);
}

.hero-stat {
  flex: 1;
  padding: 0 20px;
  border-left: 1px solid rgba(14, 15, 13, 0.18);
}

.hero-stat:first-child {
  border-left: none;
  padding-left: 0;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-stat-label {
  display: block;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────
   VIDEO SECTION
───────────────────────────────────────── */
.video-section {
  background: var(--steel-deep);
  padding: clamp(56px, 7vw, 88px) var(--pad);
}

.video-header {
  max-width: 640px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}

.video-header .eyebrow {
  margin-bottom: 14px;
}

.video-header .section-headline {
  margin-bottom: 16px;
}

/* Facade container */
.video-facade {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(212, 202, 112, 0.25),
    0 24px 80px rgba(0, 0, 0, 0.4),
    0 0 0 8px rgba(255, 255, 255, 0.04);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.video-facade:hover,
.video-facade:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(212, 202, 112, 0.6),
    0 32px 100px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(212, 202, 112, 0.12),
    0 0 0 8px rgba(255, 255, 255, 0.05);
  outline: none;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease), filter 0.35s var(--ease);
}

.video-facade:hover .video-thumbnail {
  transform: scale(1.03);
  filter: brightness(0.75);
}

/* Dark gradient overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 27, 24, 0.5) 0%,
    rgba(30, 27, 24, 0.25) 50%,
    rgba(30, 27, 24, 0.5) 100%
  );
  transition: background 0.35s var(--ease);
}

.video-facade:hover .video-overlay {
  background: linear-gradient(
    135deg,
    rgba(30, 27, 24, 0.62) 0%,
    rgba(30, 27, 24, 0.38) 50%,
    rgba(30, 27, 24, 0.62) 100%
  );
}

/* Play button */
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease);
}

.video-play-btn svg {
  width: clamp(60px, 9vw, 88px);
  height: clamp(60px, 9vw, 88px);
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5));
  transition: transform 0.35s var(--ease-out);
}

.video-play-ring {
  transition: stroke 0.35s var(--ease);
}

.video-facade:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-facade:hover .video-play-ring {
  stroke: rgba(212, 202, 112, 0.9);
}

.video-play-label {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.35s var(--ease);
}

.video-facade:hover .video-play-label {
  color: var(--accent-amber);
}

/* "48-Hour Process" badge — bottom-left */
.video-duration-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(21, 18, 16, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: opacity 0.35s var(--ease);
}

.video-facade:hover .video-duration-badge {
  opacity: 0;
}

/* Live iframe (after click) */
.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .video-header {
    text-align: left;
  }

  .video-facade {
    border-radius: 4px;
  }
}

/* ─────────────────────────────────────────
   PRODUCTS SECTION
───────────────────────────────────────── */
.products-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
}

.products-header .section-sub {
  grid-column: 2;
}

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

/* ─────────────────────────────────────────
   WHY SECTION
───────────────────────────────────────── */
.why-section {
  background: var(--bg-warm);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

.why-right .process-eyebrow {
  margin-bottom: 24px;
}

/* ─────────────────────────────────────────
   WHO WE SERVE
───────────────────────────────────────── */
.who-section {
  background: var(--steel-xlight);
  padding: clamp(64px, 8vw, 96px) var(--pad);
  border-top: 1px solid var(--rule);
}

.who-section .eyebrow {
  margin-bottom: 16px;
}

.who-section .section-headline {
  margin-bottom: 56px;
}

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

.who-col-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.who-col-desc {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.who-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.who-list li {
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.who-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--honey);
  opacity: 0.8;
}

.who-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   LOCATION STRIP
───────────────────────────────────────── */
.location-strip {
  background: var(--honey);
  padding: 20px var(--pad);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.location-strip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(26, 46, 56, 0.7);
}

.location-item svg {
  flex-shrink: 0;
  color: var(--steel-deep);
}

.location-link {
  font-size: var(--text-sm);
  color: rgba(26, 46, 56, 0.7);
  transition: color var(--duration) var(--ease);
}

.location-link:hover {
  color: var(--steel-deep);
}

.location-divider {
  width: 1px;
  height: 20px;
  background: rgba(26, 46, 56, 0.2);
  flex-shrink: 0;
}

.location-social {
  margin-left: auto;
  display: flex;
  gap: 16px;
  align-items: center;
}

.location-social a {
  color: rgba(26, 46, 56, 0.55);
  transition: color var(--duration) var(--ease);
  display: flex;
  align-items: center;
}

.location-social a:hover {
  color: var(--steel-deep);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content-panel {
    max-width: 540px;
  }

  .products-header {
    grid-template-columns: 1fr;
  }

  .products-header .section-sub {
    grid-column: 1;
    max-width: 100%;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  /* Stacked mobile layout: image on top, content below */
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-top: var(--nav-h);
  }

  /* Image takes its natural landscape shape — no portrait zoom */
  .hero-image-panel {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
  }

  .hero-bg-img {
    object-position: 58% 55%;
  }

  /* Fade bottom edge into white content below */
  .hero-image-overlay {
    background: linear-gradient(
      to bottom,
      transparent 40%,
      rgba(255, 255, 255, 0.55) 75%,
      rgba(255, 255, 255, 1) 100%
    );
  }

  .hero-content-panel {
    position: static;
    max-width: 100%;
    padding: 20px var(--pad) max(52px, env(safe-area-inset-bottom));
    background: #FFFFFF;
  }

  .hero-sub {
    max-width: 100%;
    font-size: var(--text-base);
  }

  .hero-ctas {
    margin-bottom: 32px;
  }

  .hero-stats {
    padding-top: 24px;
  }

  .hero-stat {
    padding: 0 12px;
  }

  .hero-stat-num {
    font-size: var(--text-xl);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .who-section .section-headline {
    margin-bottom: 32px;
  }

  .who-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .location-social {
    margin-left: 0;
  }

  .location-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .who-ctas {
    flex-direction: column;
  }

  .who-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Extra-small screens (320px) */
@media (max-width: 360px) {
  .hero-stats {
    gap: 0;
  }

  .hero-stat {
    padding: 0 8px;
  }

  .hero-stat-num {
    font-size: var(--text-lg);
  }

  .hero-stat-label {
    font-size: 9px;
    letter-spacing: 0.1em;
  }
}

/* ─────────────────────────────────────────
   SPLIT SECTION — B2B vs CONSUMER
───────────────────────────────────────── */
.split-section {
  background: var(--bg);
}

.split-intro {
  text-align: center;
  padding: clamp(56px, 7vw, 84px) var(--pad) clamp(28px, 4vw, 44px);
  background: var(--bg);
}

.split-intro-headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin: 12px 0 24px;
}

/* Two-panel grid */
.split-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: auto;
  position: relative;
}

/* Shared panel */
.split-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.split-panel.is-visible {
  opacity: 1;
  transform: none !important;
}

/* ── B2B panel — stainless steel + honey ── */
.split-b2b {
  background: var(--steel-xlight);
  border-right: 1px solid var(--rule);
}

.split-b2b::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.6) 0%,
    transparent 55%,
    rgba(200,216,223,0.3) 100%
  );
  pointer-events: none;
}

/* ── Consumer panel — honey-warm white + nature accents ── */
.split-consumer {
  background: var(--honey-wash);
}

.split-consumer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.5) 0%,
    transparent 55%,
    rgba(212,202,112,0.06) 100%
  );
  pointer-events: none;
}

/* Inner content */
.split-panel-inner {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 6vw, 80px) clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.split-panel-track {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Honey unifies both tracks */
.split-b2b .split-panel-track,
.split-consumer .split-panel-track { color: var(--honey-dark); }

.split-panel-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.split-panel-desc {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.72;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 28px;
}

/* B2B list */
.split-panel-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.split-panel-list li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.split-panel-list li {
  color: var(--text-muted);
}

.split-b2b .split-panel-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--honey);
  opacity: 0.9;
}

/* Consumer product pills */
.split-consumer-products {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.split-product-pill {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--rule-warm, #E8D9A0);
  border-radius: 4px;
  border-left: 3px solid var(--honey);
  transition: background var(--duration) var(--ease);
}

.split-product-pill:hover {
  background: rgba(255,255,255,0.80);
}

.split-product-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.split-product-name {
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.split-product-sub {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.45;
}

/* CTAs */
.split-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 2px;
  border: 1px solid;
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease),
              transform var(--duration) var(--ease);
  align-self: flex-start;
}

.split-cta:hover {
  transform: translateX(4px);
}

/* Honey unifies both CTAs */
.split-cta-b2b,
.split-cta-consumer {
  background: var(--honey);
  color: var(--text-on-amber);
  border-color: var(--honey);
}

.split-cta-b2b:hover,
.split-cta-consumer:hover {
  background: var(--honey-dark);
  border-color: var(--honey-dark);
}

/* Large background word (decorative) */
.split-panel-accent {
  display: none;
}

.split-accent-word {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: 0.045;
}

.split-panel-accent-b2b .split-accent-word  { color: var(--steel-light); opacity: 0.6; }
.split-panel-accent-consumer .split-accent-word { color: var(--honey-light); opacity: 0.7; }

/* Divider line between panels */
.split-panels::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .split-panels {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-b2b,
  .split-consumer { transform: none; }

  .split-panels::after { display: none; }

  .split-panel-inner {
    padding: clamp(40px, 6vw, 64px) var(--pad);
  }
}

@media (max-width: 480px) {
  .split-intro {
    padding-bottom: 32px;
  }
}
