/* ==========================================================================
   Queenie-B Honey — shared "chapter" photo banner (single-use accent section
   on sustainability.html / beekeeping.html) plus the Our Story page's own
   alternating image/text chapters and standalone quote breaks, which replace
   the old full-bleed, back-to-back photo-chapter treatment on that page.
   ========================================================================== */

.chapter-feature {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--color-stone);
  overflow: hidden;
}
.chapter-feature__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg, rgba(19,16,9,0.92) 0%, rgba(19,16,9,0.82) 38%, rgba(19,16,9,0.35) 68%, rgba(19,16,9,0.15) 100%);
}
.chapter-feature__inner { position: relative; z-index: 1; max-width: 58rem; }
.chapter-feature .eyebrow { color: var(--color-accent-bright); }
.chapter-feature .lead--story { color: rgba(255,254,251,0.88); }

@media (max-width: 768px) {
  .chapter-feature { min-height: 60vh; text-align: left; justify-content: flex-start; }
  .chapter-feature__inner { max-width: 100%; }
}

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.story-block__media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
}
.story-block__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.story-block__eyebrow { color: var(--color-accent-dark); }
.story-block__title { margin-top: var(--space-2); }
.story-block__text { margin-top: var(--space-4); color: var(--color-ink-soft); }
.story-block__text + .story-block__text { margin-top: var(--space-3); }
.story-block__text + .highlight-box { margin-top: var(--space-5); }
.story-block__link { margin-top: var(--space-5); }

.story-block--reverse .story-block__media { order: 2; }

@media (max-width: 860px) {
  .story-block { grid-template-columns: 1fr; }
  .story-block--reverse .story-block__media { order: 0; }
  .story-block__media { aspect-ratio: 16 / 10; }
}

/* ---- Quote break: a standalone, type-only interlude between chapters —
   deliberately plain (no photo, no decorative giant quote glyph) so it reads
   as a pause, not another competing visual treatment. -------------------- */
.quote-break {
  background: var(--color-charcoal);
  color: var(--color-stone);
  text-align: center;
  padding: var(--space-8) 0;
}
.quote-break__text {
  max-width: 76rem;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  line-height: 1.4;
}
.quote-break__attribution {
  margin-top: var(--space-4);
  font-family: var(--font-sans);
  font-size: var(--text-2xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent-bright);
}
