/* =========================================================================
   ABOUT — about.html
   ========================================================================= */

/* ---------------- HERO ---------------- */
.about-hero {
  padding-top: calc(var(--nav-h) + 3.5rem);
  background: var(--charcoal);
}
.about-hero h1 {
  font-size: var(--size-h1);
  max-width: 18ch;
  color: var(--milled);
  margin: 1rem 0 1.6rem;
}
.about-hero .intro-lede { max-width: 48ch; }

/* ---------------- OUR STORY / TIMELINE ---------------- */
.story-section h2 { max-width: 16ch; }
.timeline {
  position: relative;
  margin-top: 3.5rem;
  max-width: 640px;
}
.timeline-track {
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--line-light);
}
.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--paddy);
}
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}
.timeline-item {
  position: relative;
  padding-left: 2.6rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.timeline-dot {
  position: absolute;
  left: -4.5px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--husk);
  border: 2px solid var(--paddy);
}
.timeline-index {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--paddy);
  letter-spacing: 0.08em;
}
.timeline-label {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* ---------------- OUR VALUES ---------------- */
.values-section h2 { color: var(--milled); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  margin-top: 3.5rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line-dark);
}
.value-index {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--grain-gold);
  margin-bottom: 1.2rem;
}
.value-card h3 { font-size: var(--size-h3); margin-bottom: 0.9rem; color: var(--milled); }
.value-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--milled);
  opacity: 0.78;
  text-transform: none;
}

/* ---------------- AGRICULTURE (IMMERSIVE) ---------------- */
.agriculture-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.agriculture-section .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.agriculture-section h2 { max-width: 14ch; }
.agriculture-section .intro-lede { text-align: center; color: var(--milled); opacity: 0.85; }
.agri-motif {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.07);
}
.agri-leaf {
  position: absolute;
}
.agri-leaf--1 { width: 360px; height: 360px; top: -90px; left: -100px; transform: rotate(-18deg); }
.agri-leaf--2 { width: 460px; height: 460px; bottom: -140px; right: -80px; transform: rotate(24deg); }
.agri-leaf--3 {
  width: 180px; height: 180px; top: 22%; right: 12%;
  opacity: 0.7;
  animation: agri-drift 12s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .agri-leaf--3 { animation: none; }
}
@keyframes agri-drift {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50% { transform: translateY(-16px) rotate(13deg); }
}

/* ---------------- FUTURE ---------------- */
.future-section h2 { max-width: 22ch; }
.future-section .intro-lede { margin-bottom: 2.2rem; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 2.4rem 1.6rem; }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
  .timeline-item { padding-left: 2rem; }
  .agri-leaf--1 { width: 220px; height: 220px; }
  .agri-leaf--2 { width: 280px; height: 280px; }
  .agri-leaf--3 { display: none; }
}
