/* ==========================================================================
   Banexco Traders Inc. — css/growers.css
   Page-local styles for growers.html (§4.4). Additive only: linked AFTER
   css/main.css. Tokens only — no color literals, no token redefinition.
   ========================================================================== */

/* PAGE HEAD */
.page-head {
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4rem);
}
.page-head h1 { margin-bottom: 0.75rem; }
.page-sub {
  color: var(--ink-soft);
  font-size: 1.125rem;
  max-width: 36rem;
}

/* HECTARAGE stat band — tighter than a full section */
.hectarage { padding-block: clamp(3rem, 6vw, 4.5rem); }
.hectarage .footnote { margin-top: 1.5rem; }

/* FULL-WIDTH PHOTO BAND */
.aerial-band { line-height: 0; }
.aerial-band img {
  width: 100%;
  height: clamp(20rem, 55vh, 34rem);
  object-fit: cover;
}

/* BODY copy */
.growers-body {
  max-width: 44rem;
}

/* CALINAN HERITAGE callout */
.heritage-callout {
  background: var(--sage-tint);
  border-left: 3px solid var(--sage);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 44rem;
}
.heritage-callout p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--pine);
}
.heritage-callout .footnote {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: normal;
  color: var(--ink-soft);
  margin-top: 1rem;
}

/* PHOTOS — 2-up grid */
.grower-photos-section { padding-top: 0; }
.grower-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.grower-photo-grid figure { margin: 0; }
.grower-photo-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (max-width: 720px) {
  .grower-photo-grid { grid-template-columns: 1fr; }
  .grower-photo-grid img { aspect-ratio: auto; }
}
