:root {
  --ink: #0b0b0d;
  --ink-soft: #16171a;
  --paper: #f2f1ed;
  --muted: #a7a7aa;
  --line: rgba(255, 255, 255, 0.14);
  --orange: #ff4d00;
  --orange-bright: #ff5a14;
  --text: #ffffff;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection {
  background: var(--orange);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: calc(var(--scroll-progress) * 100%);
  height: 3px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 77, 0, 0.65);
  pointer-events: none;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(100% - 64px, 1440px);
  height: 94px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.brand img {
  width: 56px;
  height: 31px;
  object-fit: contain;
}

.brand span {
  padding-left: 17px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  max-height: 980px;
  padding: 138px max(32px, calc((100vw - 1440px) / 2)) 58px;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(560px, 1.18fr);
  gap: 64px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 77, 0, 0.08), transparent 31%),
    var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 44%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, var(--line) 16%, var(--line) 84%, transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--orange-bright);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(62px, 6.3vw, 112px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.78);
}

.hero-lead {
  max-width: 570px;
  margin: 34px 0 0;
  color: #b8b8bb;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 250ms ease, color 250ms ease, background 250ms ease, border-color 250ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: #fff;
  background: var(--orange);
  border: 1px solid var(--orange);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-bright);
  border-color: var(--orange-bright);
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.52);
}

.hero-visual {
  position: relative;
  min-height: min(64vh, 650px);
  display: flex;
  align-items: center;
  border-radius: 4px;
  background: #f7f7f5;
  isolation: isolate;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 28%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.08));
}

.visual-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.055) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 2%, #000 36%, #000 100%);
}

.hero-visual > img {
  position: relative;
  z-index: 1;
  width: 100%;
  transform: scale(1.05);
  mix-blend-mode: multiply;
}

.floating-spec {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  min-width: 120px;
  padding: 17px 19px;
  color: #fff;
  background: rgba(11, 11, 13, 0.94);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.floating-spec strong {
  font-size: 23px;
  letter-spacing: -0.04em;
}

.floating-spec span {
  margin-top: 4px;
  color: #a9a9ad;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-height {
  top: 28px;
  right: 28px;
}

.spec-load {
  right: 28px;
  bottom: 28px;
  background: var(--orange);
}

.spec-load span {
  color: rgba(255, 255, 255, 0.72);
}

.image-credit {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 9px;
  margin: 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-in {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-enter 800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-in-one { animation-delay: 100ms; }
.hero-in-two { animation-delay: 190ms; }
.hero-in-three { animation-delay: 300ms; }
.hero-in-four { animation-delay: 410ms; }

@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}

.section-shell {
  width: min(100% - 64px, 1320px);
  margin: 0 auto;
}

.case-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.scroll-story {
  --story-progress: 0;
  --story-angle: 0deg;
  position: relative;
  height: 500svh;
  color: #111216;
  background: var(--paper);
}

.story-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 78%, rgba(255, 77, 0, 0.12), transparent 29%),
    radial-gradient(circle at 18% 18%, rgba(52, 116, 164, 0.1), transparent 31%),
    var(--paper);
}

.story-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.story-topline {
  position: absolute;
  z-index: 7;
  top: 0;
  left: 50%;
  width: min(100% - 64px, 1320px);
  height: 84px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: rgba(17, 18, 22, 0.58);
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.story-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-family: "Courier New", monospace;
}

.story-counter b {
  color: var(--orange);
  font-size: 14px;
}

.story-ring {
  position: absolute;
  z-index: 0;
  top: 52%;
  left: 50%;
  width: min(77vw, 990px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(-90deg);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 50%;
}

.story-ring::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: inherit;
  box-shadow:
    0 0 0 9vw rgba(255, 255, 255, 0.13),
    0 0 0 18vw rgba(255, 255, 255, 0.1);
}

.story-ring::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    var(--orange) 0deg,
    var(--orange) var(--story-angle),
    rgba(15, 16, 20, 0.14) var(--story-angle),
    rgba(15, 16, 20, 0.14) 360deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 calc(100% - 4px));
  filter: drop-shadow(0 0 10px rgba(255, 77, 0, 0.28));
}

.story-slides {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.story-slide {
  --slide-opacity: 0;
  --slide-shift: 80px;
  --slide-scale: 0.96;
  --slide-blur: 8px;
  position: absolute;
  top: 48%;
  left: max(32px, calc((100vw - 1320px) / 2));
  width: min(52vw, 690px);
  opacity: var(--slide-opacity);
  filter: blur(var(--slide-blur));
  transform: translate3d(0, calc(-50% + var(--slide-shift)), 0) scale(var(--slide-scale));
  transform-origin: left center;
  will-change: opacity, transform, filter;
  pointer-events: none;
}

.story-slide:first-child {
  --slide-opacity: 1;
  --slide-shift: 0px;
  --slide-scale: 1;
  --slide-blur: 0px;
}

.story-slide > p {
  margin: 0 0 15px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-slide > strong {
  display: block;
  color: #111216;
  font-size: clamp(112px, 13vw, 205px);
  font-weight: 300;
  letter-spacing: -0.085em;
  line-height: 0.78;
  white-space: nowrap;
}

.story-slide > h2 {
  margin: 24px 0 0;
  color: #111216;
  font-size: clamp(31px, 3.8vw, 58px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1;
}

.story-slide > span {
  display: block;
  max-width: 535px;
  margin-top: 22px;
  color: rgba(17, 18, 22, 0.58);
  font-size: 15px;
  line-height: 1.7;
}

.story-visuals {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.story-visual {
  --visual-opacity: 0;
  --visual-shift: 140px;
  --visual-lift: 38px;
  --visual-scale: 0.92;
  position: absolute;
  margin: 0;
  opacity: var(--visual-opacity);
  transform: translate3d(var(--visual-shift), var(--visual-lift), 0) scale(var(--visual-scale));
  transform-origin: center bottom;
  will-change: opacity, transform;
}

.story-visual:first-child {
  --visual-opacity: 0.96;
  --visual-shift: 0px;
  --visual-lift: 0px;
  --visual-scale: 1;
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.03) drop-shadow(0 34px 42px rgba(0, 0, 0, 0.12));
}

.visual-one {
  right: -2vw;
  bottom: -5vh;
  width: min(52vw, 720px);
}

.visual-two {
  right: -1vw;
  bottom: -9vh;
  width: min(47vw, 650px);
}

.visual-three {
  right: 1vw;
  bottom: -10vh;
  width: min(46vw, 640px);
}

.visual-four {
  right: -1vw;
  bottom: -9vh;
  width: min(46vw, 640px);
}

.case-section {
  position: relative;
  padding: 150px 0 142px;
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 77, 0, 0.11), transparent 25%),
    var(--ink);
  overflow: hidden;
}

.case-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 11%;
  width: 1px;
  height: 260px;
  background: linear-gradient(var(--orange), transparent);
  opacity: 0.55;
  pointer-events: none;
}

.case-shell {
  position: relative;
  z-index: 2;
}

.case-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 110px;
  align-items: end;
}

.case-heading h2 span {
  color: transparent;
  -webkit-text-stroke: 1.3px rgba(255, 255, 255, 0.66);
}

.case-intro {
  max-width: 520px;
  margin: 0 0 7px;
  color: #a2a2a7;
  font-size: 16px;
  line-height: 1.8;
}

.case-stage {
  position: relative;
  margin: 72px 0 0;
  aspect-ratio: 1920 / 730;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    #f6f6f4;
  background-size: 68px 68px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  overflow: hidden;
}

.case-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: contrast(1.035);
}

.final-cta {
  position: relative;
  min-height: 570px;
  padding: 110px max(32px, calc((100vw - 1320px) / 2));
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--orange);
  overflow: hidden;
}

.cta-background-text {
  position: absolute;
  right: -1vw;
  bottom: -0.25em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.23);
  font-size: clamp(180px, 30vw, 460px);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.76;
  pointer-events: none;
  white-space: nowrap;
}

.final-cta > div:last-child {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.final-cta .eyebrow {
  color: var(--ink);
}

.final-cta p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

.button-dark {
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

footer {
  min-height: 130px;
  padding: 30px max(32px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  background: #070708;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 48px;
  height: 24px;
  object-fit: contain;
}

footer > a {
  justify-self: end;
  color: #8b8b8f;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-bar .site-header {
  top: 32px;
}

.content-page {
  min-height: calc(100svh - 130px);
  padding-top: 160px;
  padding-bottom: 110px;
}

.content-page-header,
.content-article {
  max-width: 900px;
}

.content-page h1 {
  margin: 0 0 42px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.content-page h2 {
  margin: 0 0 16px;
  font-size: clamp(27px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.content-page p,
.content-page li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.content-page .entry-content > * + * {
  margin-top: 1.35em;
}

.content-page .entry-content a,
.post-card a {
  color: var(--orange-bright);
}

.content-page img {
  height: auto;
}

.post-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.post-card {
  padding: 34px;
  background: var(--ink);
}

.post-card p:last-child {
  margin-bottom: 0;
}

.post-meta {
  margin: 0 0 12px;
  color: var(--orange) !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  margin-top: 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.comments-area {
  max-width: 900px;
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.comments-area input,
.comments-area textarea {
  width: 100%;
  padding: 14px;
  color: var(--text);
  background: var(--ink-soft);
  border: 1px solid var(--line);
}

.comments-area input[type="submit"] {
  width: auto;
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
  cursor: pointer;
}

.wfpg3-no-motion .hero-in,
.wfpg3-no-motion [data-reveal] {
  opacity: 1;
  transform: none;
  animation: none;
  transition: none;
}

.wfpg3-no-motion .scroll-story {
  height: auto;
}

.wfpg3-no-motion .story-sticky {
  position: relative;
  height: auto;
  min-height: 0;
  padding: 104px max(16px, calc((100vw - 1320px) / 2)) 90px;
}

.wfpg3-no-motion .story-ring,
.wfpg3-no-motion .story-visuals {
  display: none;
}

.wfpg3-no-motion .story-slides {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(0, 0, 0, 0.13);
}

.wfpg3-no-motion .story-slide {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  padding: 38px 32px;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  background: var(--paper);
  text-align: left;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header {
    width: calc(100% - 40px);
  }

  .hero {
    min-height: auto;
    height: auto;
    max-height: none;
    padding: 150px 24px 92px;
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero h1 {
    font-size: clamp(64px, 10vw, 105px);
  }

  .hero-visual {
    min-height: 560px;
  }

  .scroll-story {
    height: 460svh;
  }

  .story-sticky {
    min-height: 640px;
  }

  .story-topline {
    width: calc(100% - 48px);
  }

  .story-ring {
    width: min(98vw, 880px);
  }

  .story-slide {
    left: 42px;
    width: 59vw;
  }

  .story-slide > strong {
    font-size: clamp(96px, 15vw, 170px);
  }

  .visual-one,
  .visual-two,
  .visual-three,
  .visual-four {
    right: -7vw;
    width: min(55vw, 610px);
  }

  .case-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .case-intro {
    max-width: 720px;
  }

  .case-stage {
    margin-top: 58px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    width: calc(100% - 32px);
    height: 76px;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 45px;
    height: 24px;
  }

  .brand span {
    padding-left: 10px;
    font-size: 9px;
  }

  .hero {
    padding: 118px 16px 58px;
    gap: 44px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(52px, 17vw, 78px);
    letter-spacing: -0.07em;
    line-height: 0.9;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 31px;
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-visual > img {
    height: 100%;
    object-fit: contain;
    transform: scale(1.35);
  }

  .floating-spec {
    min-width: 94px;
    padding: 13px 14px;
  }

  .floating-spec strong {
    font-size: 18px;
  }

  .floating-spec span {
    font-size: 8px;
  }

  .spec-height {
    top: 14px;
    right: 14px;
  }

  .spec-load {
    right: 14px;
    bottom: 14px;
  }

  .section-shell {
    width: calc(100% - 32px);
  }

  .case-heading h2,
  .final-cta h2 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .scroll-story {
    height: 430svh;
  }

  .story-sticky {
    min-height: 640px;
  }

  .story-topline {
    width: calc(100% - 32px);
    height: 64px;
    font-size: 7px;
  }

  .story-counter {
    gap: 5px;
  }

  .story-counter b {
    font-size: 12px;
  }

  .story-ring {
    top: 56%;
    width: 148vw;
  }

  .story-ring::before {
    inset: 10%;
  }

  .story-slide {
    top: 34%;
    left: 16px;
    width: calc(100% - 32px);
    text-align: center;
    transform-origin: center;
  }

  .story-slide > p {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .story-slide > strong {
    font-size: clamp(82px, 27vw, 126px);
    line-height: 0.82;
  }

  .story-slide > h2 {
    margin-top: 17px;
    font-size: clamp(29px, 9vw, 43px);
  }

  .story-slide > span {
    max-width: 420px;
    margin: 16px auto 0;
    font-size: 12px;
    line-height: 1.55;
  }

  .visual-one,
  .visual-two,
  .visual-three,
  .visual-four {
    right: auto;
    bottom: -2vh;
    left: 7vw;
    width: 86vw;
    max-height: 43svh;
  }

  .case-section {
    padding: 92px 0 100px;
  }

  .case-section::before {
    right: 24px;
    height: 170px;
  }

  .case-heading {
    gap: 28px;
  }

  .case-intro {
    font-size: 14px;
    line-height: 1.7;
  }

  .case-stage {
    margin-top: 44px;
    height: 360px;
    aspect-ratio: auto;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  }

  .case-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .final-cta {
    min-height: 620px;
    padding: 90px 22px;
    align-items: flex-start;
  }

  .cta-background-text {
    right: -9vw;
    bottom: 0;
    font-size: 63vw;
  }

  footer {
    padding: 35px 22px;
    grid-template-columns: 1fr auto;
  }

  .content-page {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .wfpg3-no-motion .story-slides {
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .scroll-story {
    height: auto;
  }

  .story-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 104px max(16px, calc((100vw - 1320px) / 2)) 90px;
    overflow: hidden;
  }

  .story-ring,
  .story-visuals,
  .story-caption {
    display: none;
  }

  .story-slides {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(0, 0, 0, 0.13);
  }

  .story-slide {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    padding: 38px 32px;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    background: var(--paper);
    text-align: left;
  }

  .story-slide > strong {
    font-size: clamp(70px, 11vw, 130px);
  }

  .story-slide > span {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 760px) {
  .story-slides {
    grid-template-columns: 1fr;
  }

  .story-slide {
    padding: 32px 20px;
  }
}
