/* ─── Story page ─── */

.story-hero {
  position: relative;
  height: clamp(480px, 75vh, 760px);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: var(--pad);
}
.story-hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.04);
  animation: heroZoom 16s var(--ease) forwards;
}
.story-hero-vig {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,37,58,0.15) 0%, rgba(20,37,58,0) 30%, rgba(20,37,58,0.55) 100%);
}
.story-hero-copy {
  position: relative;
  z-index: 2;
  color: var(--paper);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 100%;
}
.story-hero-copy .kicker {
  color: rgba(250, 246, 236, 0.85);
  margin-bottom: 24px;
}
.story-headline {
  font-size: clamp(40px, 6.4vw, 100px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.story-headline em {
  font-style: italic;
  color: var(--coral);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

/* ─── Letter ─── */
.letter {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: var(--paper);
}
.letter-inner {
  max-width: 720px;
  margin: 0 auto;
}
.letter-from {
  display: block;
  text-align: center;
  margin-bottom: 56px;
}
.founders-portrait {
  margin: 0 auto 64px;
  max-width: 480px;
}
.founders-portrait-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center 20%;
  position: relative;
}
.founders-portrait-img::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(20, 37, 58, 0.1);
}
.founders-portrait figcaption {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  text-align: center;
}
.letter p {
  font-family: var(--serif);
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: -0.005em;
  margin-bottom: 28px;
  color: var(--ink);
  font-variation-settings: "opsz" 14, "SOFT" 50;
}
.dropcap .drop {
  font-family: var(--serif);
  float: left;
  font-size: clamp(80px, 9vw, 130px);
  line-height: 0.85;
  margin: 4px 14px 0 -2px;
  font-weight: 400;
  color: var(--coral);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.signature {
  font-size: clamp(28px, 3.6vw, 44px) !important;
  line-height: 1.2 !important;
  margin-top: 56px !important;
  font-weight: 400 !important;
  color: var(--ink) !important;
}
.signature em {
  color: var(--coral);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

/* ─── Dual image strip ─── */
.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--ink);
  height: clamp(360px, 48vw, 600px);
}
.dual-img {
  background-size: cover;
  background-position: center;
}

/* ─── Story values ─── */
.story-values {
  padding: var(--section) var(--pad);
  background: var(--sand);
}
.story-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 5vw, 80px) clamp(40px, 6vw, 100px);
  max-width: 1080px;
  margin: 0 auto;
}
.sv-num {
  font-size: 22px;
  color: var(--ink-muted);
  margin-bottom: 14px;
  font-weight: 300;
  font-variation-settings: "opsz" 14, "SOFT" 100, "WONK" 1;
}
.sv-num em {
  color: var(--coral);
  font-style: italic;
  font-variation-settings: "opsz" 14, "SOFT" 100, "WONK" 1;
}
.sv h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.sv p {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 38ch;
}

/* ─── Story CTA ─── */
.story-cta {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.story-cta-inner h2 {
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 36px;
  color: var(--paper);
}
.story-cta .btn-primary {
  background: var(--coral);
  color: #fff;
}
.story-cta .btn-primary:hover {
  background: var(--paper);
  color: var(--ink);
}

@media (max-width: 700px) {
  .story-values-grid { grid-template-columns: 1fr; }
  .dual { grid-template-columns: 1fr; height: auto; }
  .dual-img { height: 60vw; min-height: 320px; }
}
