/* =========================================
   Kuha Works – Story Page Styles
   ========================================= */

/* ── Story prose blocks ────────────────── */
.story-prose {
  max-width: 680px;
  margin: 0 auto;
}
.story-prose p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
}
.story-prose p:last-child {
  margin-bottom: 0;
}

/* ── Section alternation ───────────────── */
.story-section {
  position: relative;
  overflow: hidden;
}
.story-section--light {
  background: var(--color-bg-light);
}
.story-section--white {
  background: var(--color-white);
}

/* ── Decorative emblem on section ──────── */
.story-section__emblem {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  height: 110%;
  width: auto;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}

/* ── Pull quotes ───────────────────────── */
.story-pullquote {
  background: var(--color-reflection);
  padding-block: var(--spacing-lg);
}
.story-pullquote--alt {
  background: var(--color-blue-pine);
}
.story-pullquote blockquote {
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.35;
  color: var(--color-white);
  text-align: center;
  border: none;
  padding: 0;
  position: relative;
}
.story-pullquote blockquote::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-new-grass);
  margin: 0 auto var(--spacing-md);
  border-radius: 2px;
}

/* ── Sign-off ──────────────────────────── */
.story-signoff {
  background: var(--color-bg-light);
  padding-block: var(--spacing-lg);
  text-align: center;
}
.story-signoff > .container {
  max-width: 680px;
}
.story-signoff p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}
.story-signoff__names {
  margin-top: var(--spacing-md);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-blue-pine);
}

/* ── Responsive ────────────────────────── */
@media (max-width: 600px) {
  .story-section__emblem { display: none; }
  .story-pullquote { padding-block: var(--spacing-md); }
}
