/* ============================================
   The Coolest Milk: Meet the Northernmost
   Dairy Farmer on Earth
   Editorial Layer
   Accent: Arctic Meadow Green #4A8C5C
   Unique prefix: dairy-
   ============================================ */

:root {
  --art-accent: #4A8C5C;
  --art-accent-dark: #3A7049;
  --art-accent-glow: rgba(74, 140, 92, 0.35);
  --art-accent-subtle: rgba(74, 140, 92, 0.06);
  --art-link: #2d6a3f;
  --art-link-hover: #4A8C5C;
  --art-link-underline: #4A8C5C;
}


/* ── Hero ──────────────────────────────────── */

.art-hero__media img {
  object-position: center 35%;
  animation: dairyHeroKB 24s ease-in-out infinite alternate;
}
@keyframes dairyHeroKB {
  0%   { transform: scale(1)   translate(0, 0); }
  100% { transform: scale(1.05) translate(-0.5%, -1%); }
}


/* ── Images match prose width ──────────────── */

.art-figure.art-figure--spread {
  max-width: 800px;
}


/* ── Quote breathing room ─────────────────── */

.art-quote {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.art-pullquote {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}


/* ── Stat row (key numbers) ───────────────── */

.dairy-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  max-width: 800px;
  margin: var(--space-2xl) auto;
  padding: 0 var(--space-xl);
}

.dairy-stat {
  text-align: center;
  flex: 0 1 auto;
}

.dairy-stat__number {
  display: block;
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 600;
  line-height: 1;
  color: var(--art-accent);
  letter-spacing: -0.02em;
}

.dairy-stat__label {
  display: block;
  margin-top: var(--space-xs, 0.25rem);
  font-family: 'Glacial Indifference', var(--font-body), sans-serif;
  font-size: var(--text-sm, 0.875rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted, #666);
}

.dairy-inline-cta {
  margin: clamp(1.75rem, 4vw, 3rem) auto;
}


/* ── Responsive ─────────────────────────── */

@media (max-width: 768px) {
  .art-hero__media img {
    object-position: center 30%;
  }

  .dairy-stats {
    flex-direction: column;
    gap: var(--space-xl);
    align-items: center;
  }
}


/* ── Reduced motion ─────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .art-hero__media img {
    animation: none;
  }
}
