/* hero-narrative.css — flow layout (round-3 redesign 2026-04-29).
   The original Watchmaker sticky-rail recipe read as static and weird in
   real-world viewing. This is the simpler editorial-pair flow: each chapter
   is a normal-flow image+prose pair, alternating sides. No sticky, no
   active-chapter JS, no opacity transitions. Just clear editorial reading. */

/* Source Serif 4 Variable — kept for the chapter numerals. No kinetic
   animation in flow mode; just the editorial wght: 400 setting. */
@font-face {
  font-family: 'Source Serif 4 Variable';
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url('../../fonts/accreditation/source-serif-4-vf-numerals.woff2') format('woff2-variations'),
       url('../../fonts/accreditation/source-serif-4-vf-numerals.woff2') format('woff2');
  unicode-range: U+0020-002F, U+0030-0039, U+003A-003F;
}

/* Eyebrow + section title that sits ABOVE the narrative — signals "an example"
   so the narrative reads as illustration, not as the page's primary message. */
.acc-narrative-intro {
  max-width: var(--acc-measure-default);
  margin: 0 auto;
  padding: var(--acc-space-12) var(--acc-space-6) var(--acc-space-4);
}
.acc-narrative-intro .acc-eyebrow { margin: 0 0 var(--acc-space-3); }
.acc-narrative-intro h2 {
  font-family: var(--acc-font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.25;
  color: var(--acc-color-ink);
  margin: 0;
  max-width: 36rem;
}

/* Section wrapper */
.acc-narrative {
  position: relative;
  max-width: var(--acc-measure-default);
  margin-inline: auto;
  padding-inline: var(--acc-space-6);
  padding-block: var(--acc-space-8) var(--acc-space-12);
}

/* Each chapter = a 2-column editorial pair. Even chapters reverse the order
   so the page alternates picture-left / picture-right for visual rhythm. */
.acc-narrative__chapter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--acc-space-10);
  align-items: center;
  margin-block: var(--acc-space-12);
}
.acc-narrative__chapter:nth-child(even) .acc-narrative__picture {
  order: 2;
}

/* Image — natural editorial sizing, hairline frame, no hover/transition. */
.acc-narrative__picture {
  display: block;
  border: 1px solid var(--acc-color-rule);
  border-radius: 4px;
  overflow: hidden;
  background: var(--acc-color-paper-2);
  aspect-ratio: 1536 / 1024;
}
.acc-narrative__picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Chapter copy column */
.acc-narrative__copy {
  display: flex;
  flex-direction: column;
  gap: var(--acc-space-4);
}

.acc-narrative__numeral {
  font-family: 'Source Serif 4 Variable', var(--acc-font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-feature-settings: "lnum" 1, "tnum" 1;
  font-variation-settings: "wght" 400;
  color: var(--acc-color-accent);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
}

.acc-narrative__title {
  font-family: var(--acc-font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--acc-color-ink);
  margin: 0;
}

.acc-narrative__prose {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--acc-color-ink-3);
  margin: 0;
}

.acc-narrative__pull {
  border-left: 1px solid var(--acc-color-rule);
  padding-inline-start: var(--acc-space-4);
  margin: var(--acc-space-2) 0 0 0;
  font-family: var(--acc-font-display);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--acc-color-ink);
}

/* CTA after the last chapter */
.acc-narrative__cta {
  margin-top: var(--acc-space-12);
  text-align: center;
}

/* Mobile / narrow viewport — single column, picture on top */
@media (max-width: 880px) {
  .acc-narrative__chapter {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--acc-space-6);
    margin-block: var(--acc-space-10);
  }
  .acc-narrative__chapter:nth-child(even) .acc-narrative__picture {
    order: 0;
  }
}

/* Reduced motion — flow layout has no motion to suppress, but keep the
   numeral pinned at wght: 400 for consistency. */
@media (prefers-reduced-motion: reduce) {
  .acc-narrative__numeral { font-variation-settings: "wght" 400; }
}
