/* Shared presentation for the four opening story sections on both landing pages. */
.story_mirror {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.story_mirror .mirror_inner {
  width: min(1500px, 100%);
  min-height: 100svh;
  height: auto;
  margin: 0 auto;
  padding: 112px 8vw 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 7vw;
}

.story_mirror .content_stack {
  max-width: 690px;
}

.story_mirror .mirror_inner h1,
.story_mirror .mirror_inner h2,
.story_mirror .mirror_inner p {
  margin-top: 0;
}

.story_mirror .mirror_inner h1,
.story_mirror .mirror_inner h2 {
  margin-bottom: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.045em;
}

.story_mirror .mirror_inner h1 {
  max-width: 1050px;
  font-size: clamp(4.7rem, 8.7vw, 9.8rem);
  line-height: .82;
  letter-spacing: -.055em;
}

.story_mirror .mirror_inner h2 {
  font-size: clamp(3.3rem, 5vw, 6rem);
  line-height: .88;
}

.story_mirror .mirror_inner p {
  margin: 28px 0 0;
  color: var(--ink-soft, var(--ink_soft));
  font-size: clamp(1.04rem, 1.35vw, 1.42rem);
  line-height: 1.72;
}

.story_mirror .lede {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.25vw, 2.4rem);
  line-height: 1.42;
}

.story_mirror .eyebrow {
  margin: 0 0 24px;
  color: var(--steel);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.55;
  text-transform: uppercase;
}

.story_mirror.story_hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 18, 25, .9), rgba(8, 18, 25, .5) 54%, rgba(8, 18, 25, .22)),
    url("../images/slide-1-hero.jpg") center / cover;
}

.story_mirror.story_hero .mirror_inner {
  grid-template-columns: minmax(0, 1.22fr) minmax(260px, .78fr);
  padding-top: 108px;
  padding-bottom: 96px;
}

.story_mirror.story_hero .content_stack {
  max-width: 790px;
}

.story_mirror.story_hero .mirror_inner h1 {
  font-size: clamp(4.1rem, 7.1vw, 8rem);
}

.story_mirror .hero_rule {
  width: 88px;
  height: 2px;
  margin: 26px 0 20px;
  background: #b9d0da;
}

.story_mirror.story_hero .story_subhead {
  margin: 6px 0 4px;
  font-size: clamp(1.9rem, 3.55vw, 4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.story_mirror.story_hero .lede {
  margin-top: 20px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.32rem, 1.82vw, 2rem);
  line-height: 1.4;
}

.story_mirror .story_prompt {
  max-width: 820px;
}

.story_mirror .story_aside {
  align-self: center;
  justify-self: end;
  width: min(390px, 100%);
  padding: 28px 0 0 28px;
  border-left: 1px solid rgba(255, 255, 255, .42);
}

.story_mirror .story_aside p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 1.7vw, 1.9rem);
  line-height: 1.42;
}

.story_mirror .story_mobile_spacer,
.story_mirror .story_mobile_aside {
  display: none;
}

.story_mirror .action_row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.story_mirror .action_button {
  min-height: 48px;
  padding: 14px 21px;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.story_mirror .action_button:hover {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.story_mirror.interview_slide {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .96), rgba(237, 242, 243, .9)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2200&q=80") center / cover;
}

.story_mirror.interview_slide .mirror_inner h2 {
  font-size: clamp(2.65rem, 4.45vw, 5.35rem);
  line-height: .98;
}

.story_mirror .question_panel {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.story_mirror .question_mark {
  position: absolute;
  z-index: 0;
  top: 48%;
  right: 4%;
  transform: translateY(-50%);
  color: rgba(78, 104, 118, .1);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: min(55vw, 650px);
  line-height: .7;
}

.story_mirror .answer_card {
  position: relative;
  z-index: 1;
  width: min(500px, 92%);
  padding: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 32px 70px rgba(23, 32, 39, .1);
}

.story_mirror .answer_card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--steel-deep, var(--steel_deep));
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.story_mirror .answer_card p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 2.4vw, 2.7rem);
  line-height: 1.28;
}

.story_mirror .answer_line {
  margin-top: 34px !important;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--steel-deep, var(--steel_deep));
  font-weight: 600;
}

.story_mirror.release_slide {
  background:
    radial-gradient(circle at 72% 48%, rgba(78, 104, 118, .18), transparent 0 24%, transparent 24%),
    linear-gradient(135deg, #f7f8f6, #e7edef);
}

.story_mirror .release_visual {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
}

.story_mirror .release_circle {
  width: min(490px, 82%);
  aspect-ratio: 1;
  padding: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  background: var(--steel-deep, var(--steel_deep));
  box-shadow: 0 35px 80px rgba(47, 75, 90, .25);
}

.story_mirror .release_circle strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 500;
  line-height: .8;
}

.story_mirror .release_circle span {
  display: block;
  margin-top: 24px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.6;
  text-transform: uppercase;
}

.story_mirror .word_path {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.story_mirror .word_path span {
  position: relative;
  padding-right: 30px;
  color: var(--steel-deep, var(--steel_deep));
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.story_mirror .word_path span:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: 0;
  color: rgba(47, 75, 90, .45);
}

.story_mirror.presence_slide {
  background: var(--paper-bright, var(--paper_bright));
}

.story_mirror .principles {
  margin-top: 5px;
  display: grid;
  gap: 3px;
}

.story_mirror .principle {
  min-height: 0;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 18px;
  align-items: start;
  background: transparent;
}

.story_mirror .principle::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--steel);
}

.story_mirror .principle strong {
  display: block;
  margin-bottom: 1px;
  font-family: inherit;
  font-size: .9rem;
  letter-spacing: .1em;
  line-height: normal;
  text-transform: uppercase;
}

.story_mirror .principle p {
  margin: 0 0 8px !important;
  font-size: 1rem;
  line-height: 1.55;
}

.story_mirror .presence_visual {
  position: relative;
  min-height: 560px;
}

.story_mirror .presence_visual img {
  width: 78%;
  height: 68vh;
  max-height: 650px;
  margin-left: auto;
  display: block;
  object-fit: cover;
  filter: grayscale(1) contrast(.92);
}

.story_mirror .presence_note {
  position: absolute;
  bottom: 42px;
  left: 0;
  width: min(360px, 78%);
  padding: 28px;
  color: var(--white);
  background: var(--steel-deep, var(--steel_deep));
}

.story_mirror .presence_note p {
  margin: 0;
  color: inherit;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 1.9vw, 2rem);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .story_mirror .mirror_inner,
  .story_mirror.story_hero .mirror_inner {
    min-height: 100%;
    padding: 102px 30px 42px;
    grid-template-columns: 1fr;
    gap: 28px;
    align-content: center;
  }

  .story_mirror.story_hero .mirror_inner {
    padding-bottom: 54px;
  }

  .story_mirror .mirror_inner h1,
  .story_mirror.story_hero .mirror_inner h1 {
    font-size: clamp(3.8rem, 16vw, 6.3rem);
  }

  .story_mirror .mirror_inner h2,
  .story_mirror.interview_slide .mirror_inner h2 {
    font-size: clamp(3rem, 12vw, 5rem);
    line-height: .88;
  }

  .story_mirror .mirror_inner p,
  .story_mirror .lede {
    font-size: 1rem;
    line-height: 1.55;
  }

  .story_mirror .eyebrow {
    margin-bottom: 16px;
    font-size: .7rem;
  }

  .story_mirror.story_hero .story_subhead {
    font-size: clamp(1.9rem, 8vw, 3.15rem);
  }

  .story_mirror.story_hero .lede {
    font-size: 1rem;
    line-height: 1.55;
  }

  .story_mirror .story_aside {
    display: none;
  }

  .story_mirror .question_panel,
  .story_mirror .release_visual,
  .story_mirror .presence_visual {
    min-height: 270px;
  }

  .story_mirror .question_mark {
    font-size: 110vw;
  }

  .story_mirror .answer_card {
    width: 100%;
    padding: 25px;
  }

  .story_mirror .answer_card p {
    font-size: 1.55rem;
  }

  .story_mirror .release_circle {
    width: min(270px, 80vw);
    padding: 40px;
  }

  .story_mirror .release_circle strong {
    font-size: 4rem;
  }

  .story_mirror .word_path {
    margin-top: 24px;
    gap: 9px 14px;
  }

  .story_mirror .word_path span {
    padding-right: 22px;
    font-size: .72rem;
  }

  .story_mirror .principles {
    margin-top: 4px;
    gap: 2px;
  }

  .story_mirror .principle p {
    font-size: .88rem;
  }

  .story_mirror .presence_visual img {
    width: 84%;
    height: 310px;
  }

  .story_mirror .presence_note {
    bottom: 0;
    width: 76%;
    padding: 18px;
  }

  .story_mirror .action_row {
    margin-top: 22px;
  }

  .story_mirror .action_button {
    padding: 12px 15px;
    font-size: .64rem;
  }
}

@media (max-width: 640px) {
  .story_mirror.story_hero .mirror_inner {
    padding: 120px 30px 46px;
    align-content: start;
  }

  .story_mirror.story_hero .mirror_inner h1 {
    font-size: clamp(3.05rem, 14.1vw, 4.15rem);
    line-height: .9;
  }

  .story_mirror.story_hero .hero_rule {
    margin: 18px 0 14px;
  }

  .story_mirror.story_hero .story_subhead {
    margin: 4px 0 2px;
    font-size: clamp(1.55rem, 7.2vw, 2.25rem);
    line-height: 1.08;
  }

  .story_mirror.story_hero .lede {
    margin-top: 18px;
    font-size: .95rem;
    line-height: 1.5;
  }

  .story_mirror .story_mobile_spacer {
    display: block;
    height: .55rem;
  }

  .story_mirror .story_mobile_aside {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, .36);
    display: block;
  }

  .story_mirror .story_mobile_aside p {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.03rem;
    line-height: 1.36;
  }

  .story_mirror.story_hero .action_row {
    margin-top: 18px;
  }
}

@media (min-width: 901px) {
  .story_mirror .mirror_inner {
    width: min(1640px, 100%);
    min-height: 100svh;
    padding:
      clamp(104px, 12vh, 150px)
      clamp(80px, 6.6vw, 128px)
      clamp(78px, 9vh, 118px);
    gap: clamp(52px, 5vw, 108px);
  }
}
