.our-story-page {
  background: #f5f5f1;
}

.story-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a0c0e;
  color: white;
}

.story-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,7,9,.9) 0%, rgba(5,7,9,.6) 50%, rgba(5,7,9,.18) 100%), linear-gradient(0deg, rgba(5,7,9,.82), transparent 55%);
}

.story-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-hero-copy {
  position: relative;
  z-index: 2;
  width: min(980px, 90vw);
  padding: 9vw 7vw 8vw;
}

.story-hero-copy .eyebrow { color: #ffd400; letter-spacing: .1em; }
.story-hero h1 { max-width: 920px; margin-bottom: 26px; font-size: clamp(54px, 8vw, 104px); letter-spacing: -.055em; }
.story-hero .lead { max-width: 820px; color: #f0f1ed; font-size: clamp(19px, 2.1vw, 27px); line-height: 1.55; }

.story-intro {
  display: grid;
  grid-template-columns: minmax(260px,.75fr) minmax(360px,1.25fr);
  gap: 72px;
  padding: 100px 7vw;
  background: #111417;
  color: white;
}
.story-intro h2 { color: white; font-size: clamp(46px, 6vw, 82px); letter-spacing: -.04em; }
.story-intro-copy p { color: #c8cdd2; font-size: 19px; line-height: 1.75; }
.story-intro-copy strong { color: #ffd400; }

.story-timeline {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: #0b0e11;
}
.story-timeline article { min-height: 270px; padding: 42px; border-right: 1px solid rgba(255,255,255,.13); color: white; }
.story-timeline article:last-child { border-right: 0; }
.story-timeline span { display: block; margin-bottom: 52px; color: #707983; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.story-timeline h3 { margin-bottom: 14px; font-family: Georgia, "Times New Roman", serif; font-size: 34px; }
.story-timeline p { color: #aeb6be; line-height: 1.65; }
.story-timeline article.current { background: #ffd400; color: #080a0c; }
.story-timeline article.current span, .story-timeline article.current p { color: #303238; }

.story-chapter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: white;
}
.story-chapter.reverse .story-chapter-media { order: 2; }
.story-chapter.reverse .story-chapter-copy { order: 1; background: #eeece4; }
.story-chapter-media { min-height: 620px; overflow: hidden; background: #16181a; }
.story-chapter-media img, .story-chapter-media video { width: 100%; height: 100%; object-fit: cover; }
.story-chapter-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px 7vw 80px 6vw; }
.story-chapter-copy .eyebrow { color: #a57d18; }
.story-chapter-copy h2 { max-width: 650px; font-size: clamp(46px, 5vw, 72px); letter-spacing: -.04em; }
.story-chapter-copy p { color: #34393f; font-size: 18px; line-height: 1.75; }
.story-chapter-stat { margin: 28px 0; padding: 26px 0; border-top: 1px solid #d2d5d7; border-bottom: 1px solid #d2d5d7; }
.story-chapter-stat strong { display: block; color: #111315; font-size: clamp(52px, 6vw, 78px); line-height: .9; letter-spacing: -.05em; }
.story-chapter-stat span { display: block; margin-top: 10px; color: #686f77; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.story-pivot {
  padding: 120px 7vw;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px), #080a0c;
  background-size: 68px 68px;
  color: white;
}
.story-pivot-inner { display: grid; grid-template-columns: minmax(280px,.75fr) minmax(360px,1.25fr); gap: 74px; align-items: start; }
.story-pivot h2 { color: white; font-size: clamp(52px, 7vw, 96px); letter-spacing: -.05em; }
.story-pivot-copy p { color: #c6ccd2; font-size: 19px; line-height: 1.75; }
.story-pivot-quote { margin: 30px 0; padding-left: 24px; border-left: 4px solid #ffd400; color: white !important; font-family: Georgia, "Times New Roman", serif; font-size: clamp(25px, 3vw, 38px) !important; line-height: 1.4 !important; }
.story-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.story-actions .button { min-height: 52px; padding: 0 24px; }
.story-actions .button.secondary { border-color: rgba(255,255,255,.45); }

.story-history-note {
  display: grid;
  grid-template-columns: minmax(280px,.8fr) minmax(360px,1.2fr);
  gap: 60px;
  padding: 90px 7vw;
  background: #f5f5f1;
}
.story-history-note h2 { font-size: clamp(40px, 5vw, 68px); letter-spacing: -.035em; }
.story-history-note p { color: #3d4349; font-size: 18px; line-height: 1.75; }

@media (max-width: 900px) {
  .story-intro, .story-pivot-inner, .story-history-note, .story-chapter { grid-template-columns: 1fr; }
  .story-timeline { grid-template-columns: 1fr; }
  .story-timeline article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .story-chapter.reverse .story-chapter-media, .story-chapter.reverse .story-chapter-copy { order: initial; }
  .story-chapter-media { min-height: 430px; }
  .story-chapter-copy { padding: 62px 7vw; }
}

@media (max-width: 620px) {
  .story-hero { min-height: 72vh; }
  .story-hero-copy { padding: 80px 6vw 70px; }
  .story-intro, .story-pivot, .story-history-note { padding: 72px 6vw; }
  .story-timeline article { padding: 32px 6vw; }
  .story-actions { flex-direction: column; }
  .story-actions .button { width: 100%; }
}
