/* ══════════════════════════════════════════════════════════
   GARDEN PAGE  ·  matches strendal_garden.html exactly
   ══════════════════════════════════════════════════════════ */

/* ── HERO ── */
.gd-hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
@supports not (height: 100svh) { .gd-hero { height: 100vh; } }

.hero-img {
  position: absolute;
  inset: 0;
  /* fallback when no custom image is uploaded */
  background: linear-gradient(160deg, #0e1e0a 0%, #1e3d14 40%, #2a5220 100%);
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,30,10,0.28) 0%,
    rgba(14,30,10,0.08) 35%,
    rgba(14,30,10,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 100px 60px 68px;
  animation: gdFadeUp 1.1s ease both;
}
@keyframes gdFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-light);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.5vw, 78px);
  font-weight: 300;
  line-height: 1.05;
  color: white;
  margin-bottom: 22px;
  max-width: 720px;
  letter-spacing: -0.5px;
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.82);
}

.hero-sub {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.hero-stat {
  padding: 16px 28px 16px 0;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hs-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 3px;
}
.hs-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ── ZERO PESTICIDE BANNER ── */
.zero-banner {
  background: var(--green);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.zero-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.zero-icon { font-size: 18px; }
.zero-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.zero-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.25);
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 88px 60px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Shared label style used in philosophy, abundance, season-facts */
.phil-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.phil-label::after {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: var(--green);
  opacity: 0.5;
}

.philosophy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 24px;
}
.philosophy h2 em { font-style: italic; color: var(--green); }
.philosophy p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 18px;
}
.philosophy p:last-child { margin-bottom: 0; }

/* Harvest basket image */
.basket-block {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(30,61,20,0.14);
  background: var(--green-light);
  min-height: 260px;
}
.basket-block img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.basket-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  background: linear-gradient(transparent, rgba(14,30,10,0.75));
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* ── WHAT GROWS HERE ── */
.grows-section {
  background: var(--green-light);
  padding: 80px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.grows-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.grows-header {
  text-align: center;
  margin-bottom: 52px;
}
.grows-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.grows-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
}
.grows-header h2 em { font-style: italic; color: var(--green); }

.produce-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.produce-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 22px 18px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.produce-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(106,158,82,0.12);
  transform: translateY(-2px);
}
.produce-emoji { font-size: 28px; margin-bottom: 10px; }
.produce-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.produce-note {
  font-size: 11px;
  color: var(--ink-light);
  line-height: 1.4;
}

.herb-strip {
  background: var(--green-dark);
  border-radius: 3px;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.herb-strip-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  flex-shrink: 0;
  white-space: nowrap;
}
.herb-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.herb-item {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: center;
  gap: 6px;
}
.herb-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
  display: inline-block;
}

/* ── ABUNDANCE ── */
.abundance {
  padding: 80px 60px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.abundance-img {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(30,61,20,0.12);
  background: var(--green-light);
  min-height: 260px;
}
.abundance-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.abundance-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  background: linear-gradient(transparent, rgba(14,30,10,0.75));
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.abundance-right .phil-label { margin-bottom: 18px; }
.abundance-right h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 300;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 22px;
}
.abundance-right h2 em { font-style: italic; color: var(--green); }
.abundance-right p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 18px;
}

/* Season bar */
.season-bar {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.season-bar-header {
  background: var(--green-light);
  padding: 12px 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
  border-bottom: 1px solid var(--border);
}
.season-months {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.month {
  text-align: center;
  padding: 10px 2px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-light);
  border-right: 1px solid var(--border-soft);
}
.month:last-child { border-right: none; }
.month.grow {
  background: var(--green);
  color: white;
  font-weight: 600;
}
.month.peak {
  background: var(--green-dark);
  color: white;
  font-weight: 700;
}

/* ── QUOTE ── */
.quote-section {
  background: var(--green);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 10% 80%, rgba(106,158,82,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 90% 15%, rgba(200,149,42,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.quote-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(106,158,82,0.3);
  line-height: 0.5;
  margin-bottom: 24px;
  display: block;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
}
.quote-attribution {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── SEASON FACTS ── */
.season-facts {
  background: var(--white);
  padding: 80px 60px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.season-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}
.season-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}
.season-left h2 em { font-style: italic; color: var(--green); }
.season-left p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.8;
}
.season-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.season-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 22px;
}
.sc-icon { font-size: 22px; margin-bottom: 10px; }
.sc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.sc-body {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--green-dark);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-left h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 300;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}
.cta-left p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.62);
  max-width: 480px;
  line-height: 1.65;
}
.btn-gold {
  flex-shrink: 0;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 38px;
  border-radius: 3px;
  background: var(--gold);
  color: white;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
  display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); color: var(--ink); transform: translateY(-1px); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content              { padding: 80px 28px 52px; }
  .hero-stats                { gap: 0; }
  .hero-stat                 { padding: 12px 20px 12px 0; margin-right: 20px; }
  .zero-banner               { padding: 16px 28px; gap: 20px; }
  .zero-divider              { display: none; }
  .philosophy                { grid-template-columns: 1fr; gap: 40px; padding: 56px 28px; }
  .grows-section             { padding: 56px 28px; }
  .produce-grid              { grid-template-columns: repeat(2, 1fr); }
  .abundance                 { grid-template-columns: 1fr; gap: 40px; padding: 56px 28px; }
  .abundance-img             { order: -1; }
  .quote-section             { padding: 60px 28px; }
  .season-facts              { padding: 56px 28px; }
  .season-inner              { grid-template-columns: 1fr; gap: 40px; }
  .cta-strip                 { padding: 48px 28px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .hero-content              { padding: 72px 20px 44px; }
  .hero-stats                { flex-wrap: wrap; gap: 0; }
  .hero-stat                 { flex: 0 0 50%; border-right: none; margin-right: 0; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4)    { border-bottom: none; }
  .produce-grid              { grid-template-columns: repeat(2, 1fr); }
  .season-cards              { grid-template-columns: 1fr; }
  .herb-strip                { flex-direction: column; align-items: flex-start; gap: 10px; }
  .herb-divider              { display: none; }
}
