.desktop-nav .active::after { right: 0; }

.story-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.story-hero > img,
.story-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-hero > img {
  object-fit: cover;
  object-position: center 48%;
  animation: heroScale 14s ease-out both;
}

.story-hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .34) 47%, rgba(0, 0, 0, .08) 78%),
    linear-gradient(0deg, rgba(0, 0, 0, .4), transparent 55%);
}

.story-hero-content {
  position: absolute;
  left: 8vw;
  bottom: 13vh;
  width: min(850px, 76vw);
}

.story-hero-content h1 { font-size: clamp(3.7rem, 6.6vw, 7.4rem); }
.story-hero-content > p:last-child {
  max-width: 590px;
  margin: 2rem 0 0;
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  font-weight: 300;
}
.story-copy-break { display: block; margin-top: .35rem; }

.story-intro {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 22% 1fr;
  align-items: start;
}

.story-intro-copy { max-width: 900px; }
.story-intro h2,
.two-generations h2,
.elevium-birth h2,
.story-next h2 { font-size: clamp(3.4rem, 6.3vw, 7rem); }
.story-intro-copy > p:last-child {
  max-width: 680px;
  margin: 2.7rem 0 0;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  font-weight: 300;
}

.story-panorama {
  position: relative;
  height: min(78vh, 900px);
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.story-panorama img { height: 100%; object-fit: cover; }

.two-generations {
  padding: clamp(7rem, 11vw, 11rem) 8vw;
  color: var(--white);
  background: var(--ink);
}

.two-generations-heading {
  display: grid;
  grid-template-columns: 22% 1fr;
  margin-bottom: clamp(5rem, 9vw, 9rem);
}
.two-generations-heading .section-index { color: rgba(255, 255, 255, .56); }
.two-generations-heading h2 { grid-column: 2; }
.two-generations-heading h2 { max-width: 1040px; }

.generation-frame { position: relative; height: min(78vh, 880px); overflow: hidden; }
.generation-frame img { height: 100%; object-fit: cover; object-position: center 42%; }
.generation-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .55), transparent 45%);
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  margin: 0 0 0 22%;
}
.profile { position: relative; padding: 3rem 0 0; border-top: 1px solid rgba(255, 255, 255, .25); }
.profile h3 { margin: 0; font-family: var(--display); font-size: clamp(2.8rem, 4.5vw, 5.2rem); font-weight: 400; line-height: 1; }
.profile-role { margin: .9rem 0 2.2rem; color: var(--gold); font-size: .68rem; letter-spacing: .17em; text-transform: uppercase; }
.profile > p:last-child { max-width: 520px; color: rgba(255, 255, 255, .68); font-weight: 300; }

.elevium-birth {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(4rem, 9vw, 10rem);
  align-items: center;
  background: var(--white);
}
.birth-image { position: relative; height: min(76vw, 900px); overflow: hidden; }
.birth-image img { height: 100%; object-fit: cover; }
.birth-copy { max-width: 720px; }
.birth-copy .section-index { margin-bottom: clamp(4rem, 8vw, 8rem); color: #66696d; }
.birth-copy > p { max-width: 560px; margin: 2.3rem 0 3.5rem; font-size: clamp(1rem, 1.22vw, 1.17rem); font-weight: 300; }
.values { border-top: 1px solid var(--line); }
.values div { display: grid; grid-template-columns: 3.2rem 1fr; align-items: center; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.values span { color: #727579; font-size: .62rem; letter-spacing: .14em; }
.values strong { font-family: var(--display); font-size: 1.6rem; font-weight: 400; }

.story-next { position: relative; min-height: 92vh; display: grid; place-items: center; overflow: hidden; color: var(--white); text-align: center; }
.story-next > img,
.story-next-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.story-next > img { object-fit: cover; }
.story-next-shade { background: rgba(0, 0, 0, .53); }
.story-next-copy { position: relative; z-index: 1; padding: 7rem 1.5rem; }
.story-next h2 { max-width: 980px; }
.story-next .button-light { display: inline-flex; }

@media (max-width: 900px) {
  .story-hero > img { object-position: 63% center; }
  .story-hero-content { left: 1.4rem; right: 1.4rem; bottom: 13vh; width: auto; }
  .story-hero-content h1 { font-size: clamp(3.1rem, 12vw, 5.2rem); }
  .story-intro { min-height: auto; grid-template-columns: 1fr; gap: 4rem; }
  .story-intro-copy > p:last-child { margin-left: 0; }
  .story-panorama { height: 72svh; }
  .story-panorama img { object-position: 62% center; }
  .two-generations { padding: 7rem 1.4rem; }
  .two-generations-heading { display: block; }
  .two-generations-heading .section-index { margin-bottom: 4rem; }
  .generation-frame { height: 112vw; max-height: 740px; }
  .generation-frame img { object-position: 52% center; }
  .profile-grid { grid-template-columns: 1fr; gap: 4.5rem; margin-left: 0; }
  .profile:first-child { margin-top: 0; }
  .elevium-birth { grid-template-columns: 1fr; }
  .birth-image { height: 125vw; max-height: 760px; }
  .birth-copy .section-index { margin-bottom: 4rem; }
  .story-next { min-height: 80svh; }
}
