/* ============================================================
   STORY PAGE — Minnie's brand-image / long-form bio
   Warm editorial luxury minimal
   ============================================================ */

/* ----- HERO ----- */
.story-hero {
  padding: calc(var(--hv-section-lg) * 1.3) 0 var(--hv-section-md);
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(168, 137, 107, 0.10) 0%, transparent 60%),
    var(--hv-bg);
}

.story-hero .container {
  max-width: 980px;
}

.story-hero__kicker {
  font-family: var(--hv-font-heading);
  font-size: var(--hv-text-xs);
  font-weight: var(--hv-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--hv-tracking-widest);
  color: var(--hv-text-accent);
  margin-bottom: var(--hv-space-7);
}

.story-hero__headline {
  font-family: var(--hv-font-display);
  font-weight: var(--hv-weight-regular);
  font-size: clamp(var(--hv-text-3xl), 5vw, var(--hv-text-7xl));
  line-height: var(--hv-leading-tight);
  letter-spacing: var(--hv-tracking-tighter);
  color: var(--hv-text);
  margin: 0;
}

.story-hero__headline em {
  font-style: italic;
  color: var(--hv-text-accent);
  font-weight: var(--hv-weight-light);
}

/* ----- PORTRAIT BAND ----- */
.story-portrait {
  padding: var(--hv-section-md) 0;
  background: var(--hv-surface);
  border-top: 1px solid var(--hv-border);
  border-bottom: 1px solid var(--hv-border);
}

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

@media (min-width: 900px) {
  .story-portrait__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--hv-space-20);
  }
}

.story-portrait__figure {
  margin: 0;
  position: relative;
}

.story-portrait__figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--hv-radius-md);
  box-shadow: var(--hv-shadow-lg);
  filter: brightness(0.98) saturate(0.92) sepia(0.04);
}

.story-portrait__figure figcaption {
  margin-top: var(--hv-space-4);
  font-family: var(--hv-font-heading);
  font-size: var(--hv-text-xs);
  text-transform: uppercase;
  letter-spacing: var(--hv-tracking-wider);
  color: var(--hv-text-muted);
}

.story-portrait__facts dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--hv-space-6);
}

.story-portrait__facts dl > div {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: baseline;
  gap: var(--hv-space-5);
  padding-bottom: var(--hv-space-5);
  border-bottom: 1px solid var(--hv-border);
}

.story-portrait__facts dl > div:last-child {
  border-bottom: none;
}

.story-portrait__facts dt {
  font-family: var(--hv-font-heading);
  font-size: var(--hv-text-xs);
  font-weight: var(--hv-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--hv-tracking-wider);
  color: var(--hv-text-accent);
}

.story-portrait__facts dd {
  font-family: var(--hv-font-display);
  font-size: var(--hv-text-lg);
  color: var(--hv-text);
  margin: 0;
}

/* ----- LONG-FORM PROSE ----- */
.story-prose {
  padding: var(--hv-section-lg) 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(232, 220, 200, 0.4) 0%, transparent 60%),
    var(--hv-bg);
}

.story-prose__container {
  max-width: 720px;
}

.story-section {
  margin-bottom: var(--hv-section-md);
}

.story-section:last-child {
  margin-bottom: 0;
}

.story-section__heading {
  font-family: var(--hv-font-display);
  font-weight: var(--hv-weight-regular);
  font-size: clamp(var(--hv-text-2xl), 3.4vw, var(--hv-text-4xl));
  line-height: var(--hv-leading-snug);
  letter-spacing: var(--hv-tracking-tight);
  color: var(--hv-text);
  margin-bottom: var(--hv-space-8);
  padding-bottom: var(--hv-space-5);
  border-bottom: 1px solid var(--hv-border);
}

.story-section__body p {
  font-family: var(--hv-font-body);
  font-size: var(--hv-text-md);
  line-height: var(--hv-leading-loose);
  color: var(--hv-text);
  margin-bottom: var(--hv-space-6);
}

.story-section__body p:last-child {
  margin-bottom: 0;
}

.story-section__body em {
  font-family: var(--hv-font-display);
  font-style: italic;
  font-size: 1.05em;
  color: var(--hv-text-accent);
}

/* KR-specific tweaks */
.kr .story-section__body p {
  font-family: var(--hv-font-kr);
  font-weight: var(--hv-weight-light);
  line-height: 1.95;
}

/* Pull quote between sections */
.story-pullquote {
  margin: var(--hv-section-md) calc(var(--hv-space-8) * -1);
  padding: var(--hv-space-12) var(--hv-space-10);
  background: var(--hv-surface-paper);
  border-left: 3px solid var(--hv-accent);
  border-radius: var(--hv-radius-md);
}

.story-pullquote p {
  font-family: var(--hv-font-display);
  font-style: italic;
  font-weight: var(--hv-weight-regular);
  font-size: clamp(var(--hv-text-xl), 2.4vw, var(--hv-text-3xl));
  line-height: var(--hv-leading-snug);
  letter-spacing: var(--hv-tracking-tight);
  color: var(--hv-text);
  margin: 0;
}

@media (max-width: 768px) {
  .story-pullquote {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ----- CLOSING CTA ----- */
.story-cta {
  padding: var(--hv-section-md) 0 var(--hv-section-lg);
  background:
    linear-gradient(180deg, var(--hv-bg) 0%, var(--hv-surface) 100%);
  text-align: center;
}

.story-cta__inner {
  max-width: 720px;
  margin: 0 auto;
}

.story-cta__lead {
  font-family: var(--hv-font-body);
  font-size: var(--hv-text-md);
  color: var(--hv-text-muted);
  line-height: var(--hv-leading-relaxed);
  margin-bottom: var(--hv-space-6);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.story-cta__headline {
  font-family: var(--hv-font-display);
  font-weight: var(--hv-weight-regular);
  font-style: italic;
  font-size: clamp(var(--hv-text-2xl), 4vw, var(--hv-text-5xl));
  line-height: var(--hv-leading-snug);
  letter-spacing: var(--hv-tracking-tight);
  color: var(--hv-text);
  margin-bottom: var(--hv-space-10);
}

.story-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--hv-space-4);
}
