:root {
  --paper: #f5f2ed;
  --paper-deep: #e8e2da;
  --ink: #15151b;
  --ink-soft: #292831;
  --muted: #60606a;
  --line: rgba(21, 21, 27, .14);
  --coral: #f23b73;
  --coral-soft: #ff6e9c;
  --lilac: #a99bff;
  --mint: #bde9d8;
  --dark-band: #17131d;
  --dark-muted: #b9b0ba;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gutter: clamp(24px, 5vw, 84px);
  --max: 1440px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
main { min-width: 0; overflow: clip; }
section { scroll-margin-top: calc(var(--header-height) + 20px); }
.page-shell { width: min(100% - (var(--gutter) * 2), var(--max)); margin: 0 auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 18px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.site-header.is-scrolled {
  background: rgba(245, 242, 237, .88);
  border-color: var(--line);
  box-shadow: 0 10px 32px rgba(21, 21, 27, .05);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(100% - (var(--gutter) * 2), var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -.075em;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 5px 14px rgba(242, 59, 115, .18);
}
.primary-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); }
.primary-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .035em;
  transition: color .2s ease;
}
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--ink); }
.primary-nav .nav-cta { color: var(--coral); }
.menu-toggle { display: none; }

/* Shared primitives */
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease, color .22s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary {
  background: var(--coral);
  color: #170c11;
  box-shadow: 0 14px 28px rgba(242, 59, 115, .2);
}
.button-primary:hover, .button-primary:focus-visible { background: var(--coral-soft); box-shadow: 0 18px 36px rgba(242, 59, 115, .28); }
.button-light { background: var(--paper); color: var(--ink); box-shadow: 0 18px 36px rgba(0,0,0,.16); }
.button-light:hover, .button-light:focus-visible { background: #fff; }
.play-icon { width: 17px; height: 19px; flex: 0 0 auto; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}
.text-link span { color: var(--coral); font-size: 18px; line-height: 1; transition: transform .2s ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translate(3px, 3px); }
.section-index {
  margin: 0 0 17px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.reveal { opacity: 1; transform: none; transition: opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1); }
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 2px solid var(--coral); outline-offset: 4px; }

/* Hero */
.hero { position: relative; min-height: 680px; padding: calc(var(--header-height) + 30px) 0 32px; overflow: clip; }
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169,155,255,.22), rgba(169,155,255,0) 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: -210px;
  bottom: -280px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,59,115,.13), rgba(242,59,115,0) 70%);
  pointer-events: none;
}
.hero-grid { min-height: 540px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(40px, 5vw, 78px); }
.hero-copy { position: relative; z-index: 2; padding: 18px 0 30px; }
.hero h1 {
  max-width: 9.5em;
  margin: 0 0 26px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(62px, 5.5vw, 92px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero h1 em, .section-heading h2 em, .cast-heading h2 em, .boundaries h2 em, .final-cta h2 em { color: var(--coral); font-style: italic; font-weight: 400; }
.hero-lede { max-width: 535px; margin: 0 0 29px; color: var(--muted); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.hero-trust { margin: 22px 0 0; color: #8a8587; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-trust span { color: var(--coral); padding: 0 4px; }
.hero-art { position: relative; min-height: 560px; perspective: 1200px; }
.art-shape { position: absolute; border-radius: 42% 58% 58% 42% / 48% 38% 62% 52%; pointer-events: none; }
.art-shape-coral { width: 310px; height: 360px; right: 8%; top: 11%; background: var(--coral); transform: rotate(13deg); opacity: .9; }
.art-shape-lilac { width: 260px; height: 430px; left: 5%; bottom: 4%; background: var(--lilac); transform: rotate(-17deg); opacity: .72; }
.hero-portrait { position: absolute; overflow: hidden; margin: 0; border: 1px solid rgba(21,21,27,.24); background: var(--paper-deep); box-shadow: 0 28px 54px rgba(21,21,27,.18); }
.hero-portrait::after { content: ""; position: absolute; inset: 0; pointer-events: none; border: 1px solid rgba(255,255,255,.28); border-radius: inherit; }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.hero-portrait:hover img { transform: scale(1.04); }
.hero-portrait-left-top { width: 28%; height: 50%; left: 0; top: 11%; border-radius: 21px; transform: rotate(-8deg); z-index: 1; }
.hero-portrait-left-bottom { width: 27%; height: 45%; left: 4%; bottom: 1%; border-radius: 20px; transform: rotate(-3deg); z-index: 4; }
.hero-portrait-main { width: 43%; height: 80%; left: 29%; top: 4%; border-radius: 26px; transform: rotate(1deg); z-index: 3; }
.hero-portrait-main img { object-position: 50% 31%; }
.hero-portrait-right-top { width: 28%; height: 49%; right: 0; top: 10%; border-radius: 21px; transform: rotate(7deg); z-index: 2; }
.hero-portrait-right-bottom { width: 27%; height: 45%; right: 2%; bottom: 1%; border-radius: 20px; transform: rotate(4deg); z-index: 4; }
.art-note { position: absolute; left: 0; bottom: 0; z-index: 5; display: flex; align-items: flex-start; gap: 11px; color: var(--ink); }
.art-note-line { display: block; width: 34px; height: 1px; margin-top: 7px; background: var(--ink); }
.art-note p { margin: 0; font-size: 11px; font-weight: 800; letter-spacing: .04em; line-height: 1.4; }

/* Signal strip */
.signal-strip { background: var(--dark-band); color: var(--paper); }
.signal-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.signal-grid article { min-height: 190px; padding: 35px clamp(20px, 3.5vw, 58px) 31px 0; border-right: 1px solid rgba(245,242,237,.14); }
.signal-grid article + article { padding-left: clamp(20px, 3.5vw, 58px); }
.signal-grid article:last-child { border-right: 0; }
.signal-grid span { color: var(--coral-soft); font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.signal-grid h2 { margin: 8px 0 4px; color: var(--coral-soft); font-family: var(--serif); font-size: clamp(36px, 4vw, 60px); font-weight: 400; line-height: .95; letter-spacing: -.04em; }
.signal-grid p { max-width: 245px; margin: 0; color: var(--dark-muted); font-size: 13px; line-height: 1.55; }

/* Process */
.process { padding: 132px 0 148px; background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr 1.2fr; align-items: end; gap: 50px; margin-bottom: 75px; }
.section-heading .section-index { grid-column: 1 / -1; margin-bottom: -26px; }
.section-heading h2 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(56px, 6.3vw, 94px); font-weight: 400; line-height: .92; letter-spacing: -.055em; }
.section-copy { max-width: 390px; justify-self: end; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.process-list { border-top: 1px solid var(--line); }
.process-row { display: grid; grid-template-columns: 82px minmax(260px, .92fr) minmax(300px, .9fr); align-items: center; gap: clamp(22px, 4vw, 72px); min-height: 470px; padding: 44px 0; border-bottom: 1px solid var(--line); }
.process-number { align-self: start; padding-top: 4px; color: var(--coral); font-family: var(--serif); font-size: 48px; line-height: 1; }
.process-copy h3 { margin: 0 0 13px; font-family: var(--serif); font-size: clamp(32px, 3.1vw, 48px); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.process-copy p { max-width: 415px; margin: 0 0 19px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.process-copy span { color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.process-media { position: relative; display: flex; justify-content: center; align-items: center; min-height: 410px; padding: 24px; border-radius: 22px; overflow: hidden; }
.process-media::before { content: ""; position: absolute; width: 250px; height: 250px; border-radius: 50%; border: 1px solid rgba(21,21,27,.16); }
.process-media-coral { background: #f5b3c3; }
.process-media-lilac { background: #d6ceff; }
.process-media-mint { background: #ccecdf; }
.process-shot { position: relative; z-index: 1; width: clamp(210px, 18vw, 260px); margin: 0; transform: rotate(1.5deg); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.process-row:nth-child(even) .process-shot { transform: rotate(-1.5deg); }
.process-row:hover .process-shot { transform: rotate(0) translateY(-7px); }
.process-shot img { display: block; width: 100%; height: auto; border: 1px solid rgba(21,21,27,.2); border-radius: 17px; box-shadow: 0 22px 42px rgba(21,21,27,.24); }

/* Cast gallery */
.cast { padding: 132px 0 140px; background: var(--dark-band); color: var(--paper); }
.cast-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 50px; margin-bottom: 42px; }
.cast-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(58px, 6.2vw, 98px); font-weight: 400; line-height: .9; letter-spacing: -.055em; }
.cast-heading > p { max-width: 420px; justify-self: end; margin: 0; color: var(--dark-muted); font-size: 15px; line-height: 1.7; }
.gallery-controls { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 27px; }
.filter-button { min-height: 39px; padding: 0 15px; border: 1px solid rgba(245,242,237,.2); border-radius: 999px; background: transparent; color: var(--dark-muted); cursor: pointer; font-size: 12px; font-weight: 800; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.filter-button:hover, .filter-button:focus-visible { border-color: var(--coral-soft); color: var(--paper); transform: translateY(-1px); }
.filter-button.is-active { border-color: var(--coral); background: var(--coral); color: #170c11; }
.portrait-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: start; gap: 12px; }
.person-card { position: relative; min-height: 0; aspect-ratio: 4 / 7; margin: 0; overflow: hidden; border: 1px solid rgba(245,242,237,.17); border-radius: 18px; background: #29222d; isolation: isolate; }
.person-card-tall, .person-card-wide { grid-row: auto; grid-column: auto; }
.person-card img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .35s ease; }
.person-card:hover img, .person-card:focus-within img { transform: scale(1.045); filter: saturate(1.06); }
.person-card::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, transparent 55%, rgba(9,7,12,.78)); }
.person-card figcaption { position: absolute; right: 15px; bottom: 14px; left: 15px; z-index: 2; display: flex; align-items: baseline; justify-content: space-between; gap: 9px; color: var(--paper); font-size: 10px; }
.person-card figcaption span { color: rgba(245,242,237,.74); letter-spacing: .06em; text-transform: uppercase; }
.person-card figcaption strong { color: var(--coral-soft); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.person-card[hidden] { display: none !important; }
.person-card.reveal { transition-delay: calc(var(--i, 0) * 50ms); }
.cast-note { margin: 24px 0 0; color: var(--dark-muted); font-size: 12px; }

/* Boundaries */
.boundaries { padding: 128px 0 140px; background: var(--lilac); color: var(--ink); }
.boundaries-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: start; gap: clamp(48px, 8vw, 128px); }
.boundaries h2 { max-width: 700px; margin: 0 0 24px; font-family: var(--serif); font-size: clamp(58px, 6.6vw, 102px); font-weight: 400; line-height: .9; letter-spacing: -.055em; }
.boundaries-copy > p:last-child { max-width: 470px; margin: 0; color: rgba(21,21,27,.7); font-size: 16px; line-height: 1.7; }
.boundary-list { border-top: 1px solid rgba(21,21,27,.26); }
.boundary-list article { display: grid; grid-template-columns: 44px 1fr; gap: 12px; padding: 20px 0 22px; border-bottom: 1px solid rgba(21,21,27,.26); }
.boundary-list article > span { padding-top: 3px; color: var(--coral); font-family: var(--serif); font-size: 25px; line-height: 1; }
.boundary-list h3 { margin: 0 0 5px; font-size: 15px; font-weight: 800; letter-spacing: -.02em; }
.boundary-list p { max-width: 390px; margin: 0; color: rgba(21,21,27,.68); font-size: 13px; line-height: 1.55; }

/* Final CTA and footer */
.final-cta { padding: 112px 0 118px; background: var(--ink); color: var(--paper); }
.final-cta-inner { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 50px; }
.final-cta h2 { max-width: 850px; margin: 0; font-family: var(--serif); font-size: clamp(57px, 6.3vw, 96px); font-weight: 400; line-height: .92; letter-spacing: -.055em; }
.final-cta h2 em { color: var(--coral-soft); }
.final-cta-inner > div { justify-self: end; }
.final-cta-inner > div > p { margin: 0 0 20px; color: var(--dark-muted); font-size: 14px; }
.site-footer { padding: 38px 0 48px; background: var(--ink); color: var(--dark-muted); border-top: 1px solid rgba(245,242,237,.14); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: end; gap: 35px; }
.footer-brand { color: var(--paper); font-size: 20px; }
.footer-brand img { width: 30px; height: 30px; }
.footer-grid p { margin: 10px 0 0; font-size: 12px; }
.footer-grid nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-grid nav a { color: var(--dark-muted); text-decoration: none; font-size: 12px; font-weight: 700; }
.footer-grid nav a:hover, .footer-grid nav a:focus-visible { color: var(--paper); }
.footer-grid .copyright { margin: 0; text-align: right; }

@media (max-width: 1100px) {
  :root { --gutter: clamp(22px, 4vw, 52px); }
  .hero { padding-top: calc(var(--header-height) + 42px); }
  .hero-grid { grid-template-columns: 1fr; gap: 8px; }
  .hero-copy { max-width: 760px; padding-bottom: 0; }
  .hero-art { width: min(760px, 100%); min-height: 610px; margin: -22px auto 0; }
  .process-row { grid-template-columns: 64px minmax(240px, 1fr) minmax(260px, .8fr); gap: 28px; }
  .portrait-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --header-height: 68px; --gutter: 20px; }
  .site-header { height: var(--header-height); }
  .nav-shell { position: relative; }
  .menu-toggle { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; flex-direction: column; gap: 6px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: rgba(245,242,237,.72); color: var(--ink); cursor: pointer; }
  .menu-toggle span { display: block; width: 15px; height: 1.5px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle.is-open span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .primary-nav { position: absolute; top: calc(100% + 10px); right: 0; left: 0; display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 9px; border: 1px solid var(--line); border-radius: 17px; background: rgba(245,242,237,.96); box-shadow: 0 18px 42px rgba(21,21,27,.12); backdrop-filter: blur(18px); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease; }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .primary-nav a { padding: 13px 12px; color: var(--ink); font-size: 13px; }
  .primary-nav .nav-cta { margin-top: 3px; border-radius: 10px; background: var(--coral); color: var(--ink); text-align: center; }
  .hero { min-height: 0; padding: calc(var(--header-height) + 42px) 0 45px; }
  .hero h1 { max-width: 8.4em; font-size: clamp(56px, 15.4vw, 82px); line-height: .91; }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .button-primary { width: 100%; }
  .hero-trust { font-size: 9px; letter-spacing: .045em; }
  .hero-art { min-height: 470px; margin-top: 4px; }
  .art-shape-coral { width: 220px; height: 250px; right: -3%; top: 16%; }
  .art-shape-lilac { width: 180px; height: 270px; left: 0; bottom: 4%; }
  .hero-portrait-left-top { width: 29%; height: 46%; left: 0; top: 15%; border-radius: 16px; }
  .hero-portrait-left-bottom { width: 28%; height: 41%; left: 3%; bottom: 2%; border-radius: 15px; }
  .hero-portrait-main { width: 48%; height: 78%; left: 26%; top: 4%; border-radius: 21px; }
  .hero-portrait-right-top { width: 30%; height: 45%; right: 0; top: 13%; border-radius: 16px; }
  .hero-portrait-right-bottom { width: 29%; height: 41%; right: 1%; bottom: 2%; border-radius: 15px; }
  .art-note { right: 1%; top: 60%; }
  .art-note { display: none; }
  .art-note-line { width: 22px; }
  .art-note p { font-size: 9px; }
  .signal-grid { display: block; }
  .signal-grid article, .signal-grid article + article { min-height: 0; padding: 24px 0 22px; border-right: 0; border-bottom: 1px solid rgba(245,242,237,.14); }
  .signal-grid article:last-child { border-bottom: 0; }
  .signal-grid h2 { font-size: 46px; }
  .signal-grid p { max-width: 320px; }
  .process { padding: 88px 0 95px; }
  .section-heading { display: block; margin-bottom: 48px; }
  .section-heading .section-index { margin-bottom: 15px; }
  .section-heading h2 { font-size: clamp(52px, 14vw, 76px); }
  .section-copy { margin-top: 23px; font-size: 14px; }
  .process-row { display: grid; grid-template-columns: 48px 1fr; gap: 15px; min-height: 0; padding: 33px 0 39px; }
  .process-number { font-size: 36px; }
  .process-copy h3 { font-size: 36px; }
  .process-copy p { font-size: 14px; }
  .process-media { grid-column: 1 / -1; min-height: 430px; margin-top: 8px; padding: 20px; }
  .process-shot { width: min(230px, 76vw); }
  .cast { padding: 88px 0 92px; }
  .cast-heading { display: block; margin-bottom: 30px; }
  .cast-heading h2 { font-size: clamp(53px, 14vw, 80px); }
  .cast-heading > p { margin-top: 23px; font-size: 14px; }
  .gallery-controls { margin-bottom: 21px; }
  .portrait-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .person-card { border-radius: 13px; }
  .person-card figcaption { right: 10px; bottom: 9px; left: 10px; font-size: 8px; }
  .person-card figcaption strong { font-size: 9px; }
  .cast-note { font-size: 11px; line-height: 1.5; }
  .boundaries { padding: 88px 0 94px; }
  .boundaries-grid { display: block; }
  .boundaries h2 { font-size: clamp(54px, 14vw, 80px); }
  .boundaries-copy > p:last-child { font-size: 14px; }
  .boundary-list { margin-top: 49px; }
  .final-cta { padding: 83px 0 88px; }
  .final-cta-inner { display: block; }
  .final-cta h2 { font-size: clamp(53px, 14vw, 80px); }
  .final-cta-inner > div { margin-top: 30px; }
  .final-cta-inner > div > p { margin-bottom: 17px; }
  .button-light { width: 100%; }
  .footer-grid { display: block; }
  .footer-grid nav { margin-top: 29px; gap: 16px 20px; }
  .footer-grid .copyright { margin-top: 28px; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .js .reveal { opacity: 1; transform: none; }
}
