:root {
  --ink: #111515;
  --ink-soft: #1b2020;
  --paper: #f1f0eb;
  --paper-bright: #fbfbf8;
  --white: #ffffff;
  --muted: #6d7472;
  --line: rgba(17, 21, 21, 0.16);
  --line-light: rgba(255, 255, 255, 0.22);
  --red: #ef3026;
  --red-dark: #c8211a;
  --container: min(92vw, 1380px);
  --header-h: 88px;
  --ease: cubic-bezier(.2, .72, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background: var(--paper-bright);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

::selection { background: var(--red); color: var(--white); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.narrow { width: min(92vw, 920px); margin-inline: auto; }
.section { position: relative; padding: clamp(88px, 10vw, 156px) 0; }
.section--tight { padding: clamp(64px, 7vw, 104px) 0; }
.section--dark { background: var(--ink); color: var(--white); }
.section--soft { background: var(--paper); }
.section--red { background: var(--red); color: var(--white); }
.section-line { height: 1px; background: currentColor; opacity: .17; }

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}
.section--dark .eyebrow,
.section--dark .section-kicker,
.hero .eyebrow { color: #ff574f; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  letter-spacing: -.035em;
  line-height: 1.03;
}
h1 { font-size: clamp(3.2rem, 7.2vw, 7.6rem); font-weight: 650; }
h2 { font-size: clamp(2.35rem, 4.8vw, 5.1rem); font-weight: 610; }
h3 { font-size: clamp(1.28rem, 2vw, 1.9rem); font-weight: 620; }
.display { max-width: 1100px; }
.lede {
  max-width: 760px;
  color: color-mix(in srgb, currentColor 72%, transparent);
  font-size: clamp(1.08rem, 1.6vw, 1.38rem);
  line-height: 1.55;
}
.body-large { font-size: clamp(1.15rem, 1.7vw, 1.5rem); line-height: 1.55; }
.muted { color: var(--muted); }
.red { color: var(--red); }
.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease);
}
.btn::after {
  content: "→";
  font-size: 1.2rem;
  transition: transform .3s var(--ease);
}
.btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn:hover::after { transform: translateX(5px); }
.btn--ghost { background: transparent; border-color: rgba(255, 255, 255, .55); }
.btn--ghost:hover { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn--dark { background: var(--ink); }
.btn--dark:hover { background: var(--ink-soft); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.text-link::after { content: "↗"; }

.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

.preloader {
  display: none;
  position: fixed;
  z-index: 5000;
  inset: 0;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  transition: opacity .5s var(--ease), visibility .5s;
}
.js .preloader { display: grid; }
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__brand { display: grid; justify-items: center; gap: 22px; }
.preloader__brand img { width: 210px; filter: brightness(0) invert(1); }
.preloader__line { width: 210px; height: 1px; overflow: hidden; background: rgba(255,255,255,.18); }
.preloader__line::after {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  background: var(--red);
  animation: loading 1s var(--ease) infinite alternate;
}
@keyframes loading { from { transform: translateX(-100%); } to { transform: translateX(225%); } }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 4vw;
  right: 4vw;
  height: 1px;
  background: rgba(255,255,255,.28);
}
.site-header.is-scrolled,
.inner-page .site-header { background: rgba(15, 18, 18, .9); backdrop-filter: blur(14px); }
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(0,0,0,.1); }
.header-shell {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  gap: 32px;
  min-height: var(--header-h);
  align-items: center;
  transition: min-height .35s;
}
.is-scrolled .header-shell { min-height: 72px; }
.brand { display: inline-flex; width: 205px; align-items: center; }
.brand img { width: 100%; height: auto; filter: brightness(0) invert(1); }
.main-nav { justify-self: center; }
.main-nav ul { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 42px); margin: 0; padding: 0; list-style: none; }
.main-nav a {
  position: relative;
  padding-block: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .045em;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-cta { min-height: 46px; padding: 12px 17px; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.45);
  background: transparent;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 21px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .25s, opacity .25s; }
.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: min(980px, 100svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #273235;
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,10,10,.79) 0%, rgba(6,10,10,.42) 48%, rgba(6,10,10,.12) 82%), linear-gradient(0deg, rgba(6,10,10,.66), transparent 55%);
}
.hero__media { position: absolute; inset: -4%; }
.hero__media picture,
.hero__media img { width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: center 55%; transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06); will-change: transform; }
.hero__content { position: relative; z-index: 2; padding: calc(var(--header-h) + 72px) 0 clamp(64px, 9vw, 120px); }
.hero h1 { max-width: 1120px; margin-bottom: 28px; }
.hero .lede { max-width: 700px; color: rgba(255,255,255,.78); }
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 900px;
  margin-top: clamp(58px, 8vw, 100px);
  border-top: 1px solid var(--line-light);
}
.hero__meta div { min-height: 98px; padding: 24px 24px 0 0; border-right: 1px solid var(--line-light); }
.hero__meta div + div { padding-left: 24px; }
.hero__meta div:last-child { border-right: 0; }
.hero__meta span { display: block; margin-bottom: 6px; color: #ff5d55; font-family: ui-monospace, monospace; font-size: .72rem; }
.hero__meta strong { font-size: .9rem; font-weight: 600; }
.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 66px;
  display: flex;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  font-size: .65rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.scroll-cue::after { content: ""; width: 1px; height: 60px; background: rgba(255,255,255,.6); }

.page-hero {
  position: relative;
  min-height: min(800px, 82svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.page-hero--compact { min-height: 620px; }
.page-hero__media { position: absolute; inset: 0; opacity: .48; }
.page-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,11,11,.9), rgba(8,11,11,.12)), linear-gradient(0deg, rgba(8,11,11,.7), transparent 60%); }
.page-hero__media picture,
.page-hero__media img { width: 100%; height: 100%; }
.page-hero__media img { object-fit: cover; transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04); }
.page-hero__content { position: relative; z-index: 2; padding: calc(var(--header-h) + 90px) 0 clamp(70px, 9vw, 115px); }
.page-hero h1 { max-width: 1050px; margin-bottom: 28px; font-size: clamp(3.2rem, 7vw, 7rem); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(40px, 7vw, 80px); color: rgba(255,255,255,.62); font-size: .78rem; }
.breadcrumbs span { color: var(--white); }

.intro-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: start;
}
.intro-grid h2,
.split h2 { margin-bottom: 0; }
.copy-stack > * + * { margin-top: 24px; }
.copy-stack ul { padding-left: 20px; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(50px, 7vw, 92px);
  border-top: 1px solid var(--line);
}
.benefit {
  min-height: 320px;
  padding: 28px clamp(18px, 2vw, 32px) 26px 0;
  border-right: 1px solid var(--line);
}
.benefit + .benefit { padding-left: clamp(18px, 2vw, 32px); }
.benefit:last-child { border-right: 0; }
.benefit__number { display: block; margin-bottom: 90px; color: var(--red); font-family: ui-monospace, monospace; font-size: .76rem; }
.benefit h3 { margin-bottom: 15px; font-size: 1.25rem; }
.benefit p { margin: 0; color: var(--muted); font-size: .92rem; }

.image-panel { position: relative; min-height: 640px; overflow: hidden; }
.image-panel picture,
.image-panel img { width: 100%; height: 100%; }
.image-panel img { object-fit: cover; transition: transform 1s var(--ease); }
.image-panel:hover img { transform: scale(1.025); }
.image-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 360px;
  padding: 24px;
  background: var(--ink);
  color: var(--white);
  font-size: .78rem;
}
.image-caption span { color: var(--red); }

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 72px;
  border-top: 1px solid var(--line-light);
}
.app-card {
  position: relative;
  min-height: 350px;
  padding: 34px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
}
.app-card:nth-child(3n) { border-right: 0; }
.app-card__index { display: block; margin-bottom: 92px; color: var(--red); font-family: ui-monospace, monospace; font-size: .76rem; }
.app-card h3 { margin-bottom: 18px; font-size: 1.65rem; }
.app-card p { max-width: 310px; margin-bottom: 24px; color: rgba(255,255,255,.62); }
.app-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 0;
  background: var(--red);
  transition: height .45s var(--ease);
}
.app-card:hover::before { height: 100%; }

.system-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.system-list { margin-top: 50px; border-top: 1px solid var(--line); }
.system-list article { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.system-list span { color: var(--red); font-family: ui-monospace, monospace; font-size: .75rem; }
.system-list h3 { margin: 0 0 8px; font-size: 1.15rem; }
.system-list p { margin: 0; color: var(--muted); font-size: .94rem; }

.compare-wrap { overflow-x: auto; margin-top: 54px; }
.compare-table { width: 100%; min-width: 760px; border-collapse: collapse; text-align: left; }
.compare-table th,
.compare-table td { padding: 24px 22px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare-table thead th { border-top: 2px solid var(--ink); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.compare-table thead th:nth-child(2) { border-top-color: var(--red); color: var(--red); }
.compare-table tbody th { width: 25%; font-size: .85rem; }
.compare-table td { color: var(--muted); }

.editorial-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 340px 340px;
  gap: 18px;
  margin-top: 66px;
}
.editorial-grid figure { position: relative; margin: 0; overflow: hidden; background: #ccc; }
.editorial-grid figure:first-child { grid-row: 1 / 3; }
.editorial-grid picture,
.editorial-grid img { width: 100%; height: 100%; }
.editorial-grid img { object-fit: cover; transition: transform .8s var(--ease); }
.editorial-grid figure:hover img { transform: scale(1.035); }
.editorial-grid figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 85%;
  padding: 17px 20px;
  background: rgba(15,18,18,.88);
  color: var(--white);
  font-size: .75rem;
}

.stats-band { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.stat { padding: 42px 30px; border-right: 1px solid var(--line-light); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--red); font-size: clamp(2rem, 4vw, 4.5rem); font-weight: 500; line-height: 1; }
.stat span { display: block; margin-top: 14px; color: rgba(255,255,255,.64); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }

.timeline { margin-top: 54px; border-top: 1px solid var(--line); }
.timeline article { display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.timeline__number { color: var(--red); font-family: ui-monospace, monospace; }
.timeline h3 { margin-bottom: 12px; }
.timeline p { max-width: 760px; margin: 0; color: var(--muted); }

.application-list { margin-top: 68px; border-top: 1px solid var(--line); }
.application-row {
  display: grid;
  grid-template-columns: 120px minmax(200px, .7fr) 1.3fr auto;
  gap: 30px;
  align-items: start;
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}
.application-row__index { color: var(--red); font-family: ui-monospace, monospace; }
.application-row h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 3.2rem); }
.application-row p { margin: 0; color: var(--muted); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag-list span { padding: 6px 9px; border: 1px solid var(--line); font-size: .7rem; letter-spacing: .04em; text-transform: uppercase; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; margin-top: 66px; }
.gallery-item { position: relative; min-height: 380px; grid-column: span 5; margin: 0; overflow: hidden; background: #d3d4d0; cursor: zoom-in; }
.gallery-item:nth-child(3n + 1) { grid-column: span 7; }
.gallery-item:nth-child(4n) { min-height: 540px; }
.gallery-item picture,
.gallery-item img { width: 100%; height: 100%; }
.gallery-item img { object-fit: cover; transition: transform .8s var(--ease), filter .4s; }
.gallery-item:hover img { transform: scale(1.035); filter: brightness(.8); }
.gallery-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; gap: 20px; padding: 24px; background: linear-gradient(0deg, rgba(0,0,0,.75), transparent); color: var(--white); font-size: .8rem; }
.gallery-item figcaption span:last-child { color: rgba(255,255,255,.65); }

.lightbox {
  width: min(94vw, 1320px);
  max-width: none;
  padding: 0;
  border: 0;
  background: var(--ink);
  color: var(--white);
}
.lightbox::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(4px); }
.lightbox__media { max-height: 82vh; margin: auto; }
.lightbox__media img { width: 100%; max-height: 82vh; object-fit: contain; }
.lightbox__close { position: absolute; z-index: 2; top: 14px; right: 14px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.55); background: rgba(0,0,0,.5); color: var(--white); cursor: pointer; font-size: 1.3rem; }
.lightbox__caption { padding: 16px 20px; color: rgba(255,255,255,.75); font-size: .82rem; }

.faq-list { margin-top: 52px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: grid; grid-template-columns: 72px 1fr 30px; gap: 20px; align-items: center; padding: 28px 0; cursor: pointer; list-style: none; font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 580; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span:first-child { color: var(--red); font-family: ui-monospace, monospace; font-size: .72rem; font-weight: 400; }
.faq-list summary::after { content: "+"; font-size: 1.5rem; font-weight: 300; transition: transform .25s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-answer { max-width: 880px; padding: 0 0 30px 92px; color: var(--muted); }
.faq-answer p:last-child { margin-bottom: 0; }

.sticky-story { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(50px, 9vw, 150px); align-items: start; }
.sticky-story__title { position: sticky; top: 130px; }
.story-block { min-height: 55vh; padding: 24px 0 60px; border-top: 1px solid var(--line); }
.story-block span { display: block; margin-bottom: 80px; color: var(--red); font-family: ui-monospace, monospace; font-size: .74rem; }
.story-block h3 { font-size: clamp(1.8rem, 3.5vw, 3.6rem); }
.story-block p { max-width: 680px; color: var(--muted); font-size: 1.08rem; }

.contact-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 8vw, 120px); align-items: start; }
.contact-aside { position: sticky; top: 120px; }
.contact-list { margin-top: 48px; border-top: 1px solid var(--line); }
.contact-list a,
.contact-list p { display: block; margin: 0; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-list small { display: block; color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-list strong { font-weight: 580; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
.field { display: grid; gap: 8px; }
.field--wide { grid-column: 1 / -1; }
.field label { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #9fa4a1;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
  transition: border-color .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--red); }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--red); box-shadow: 0 1px 0 var(--red); }
.consent { grid-column: 1 / -1; display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; color: var(--muted); font-size: .82rem; }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--red); }
.form-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 12px; }
.form-status { margin: 0; font-size: .86rem; }
.honeypot { position: absolute; left: -9999px; }

.cta-cinematic {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.cta-cinematic__media { position: absolute; inset: -4%; opacity: .45; }
.cta-cinematic__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,13,13,.92), rgba(10,13,13,.18)); }
.cta-cinematic__media picture,
.cta-cinematic__media img { width: 100%; height: 100%; }
.cta-cinematic__media img { object-fit: cover; transform: translate3d(0,var(--parallax-y,0),0) scale(1.06); }
.cta-cinematic__content { position: relative; z-index: 1; max-width: 960px; padding: 100px 0; }
.cta-cinematic h2 { margin-bottom: 26px; }
.cta-cinematic p { max-width: 640px; color: rgba(255,255,255,.74); font-size: 1.15rem; }

.site-footer { padding: 80px 0 26px; background: #0b0e0e; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 44px; padding-bottom: 68px; }
.footer-brand img {
  width: 225px;
  height: auto;
  aspect-ratio: 520 / 127;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-brand p { max-width: 340px; margin-top: 28px; color: rgba(255,255,255,.55); }
.footer-col h2 { margin-bottom: 22px; color: rgba(255,255,255,.45); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a,
.footer-col span { display: block; width: fit-content; margin: 10px 0; color: rgba(255,255,255,.76); font-size: .9rem; }
.footer-col a:hover { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.42); font-size: .72rem; }

.whatsapp {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(0,0,0,.2);
  font-weight: 900;
  transition: transform .25s, background .25s;
}
.whatsapp:hover { transform: translateY(-4px); background: var(--red-dark); }

.js .reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .reveal[data-delay="1"] { transition-delay: .1s; }
.js .reveal[data-delay="2"] { transition-delay: .2s; }
.js .reveal[data-delay="3"] { transition-delay: .3s; }
.js .mask-reveal { clip-path: inset(0 100% 0 0); transition: clip-path 1.05s var(--ease); }
.js .mask-reveal.is-visible { clip-path: inset(0); }

@media (max-width: 1120px) {
  :root { --header-h: 78px; }
  .header-shell { grid-template-columns: 190px 1fr auto; gap: 18px; }
  .brand { width: 180px; }
  .main-nav ul { gap: 18px; }
  .header-cta { display: none; }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit:nth-child(3) { border-right: 0; }
  .benefit:nth-child(n+4) { border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-col:last-child { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
  :root { --container: min(90vw, 720px); }
  .section { padding: 82px 0; }
  h1 { font-size: clamp(3rem, 13vw, 5.2rem); }
  h2 { font-size: clamp(2.25rem, 9vw, 3.8rem); }
  .header-shell { grid-template-columns: 1fr auto; }
  .brand { width: 176px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    justify-self: stretch;
    display: grid;
    place-items: center;
    padding: 110px 8vw 60px;
    background: var(--ink);
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
  }
  .menu-open .main-nav { opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; gap: 12px; text-align: center; }
  .main-nav a { font-size: clamp(1.5rem, 6vw, 2.4rem); font-weight: 500; letter-spacing: -.02em; }
  .hero { min-height: 820px; }
  .hero::after { background: linear-gradient(0deg, rgba(6,10,10,.88), rgba(6,10,10,.2)); }
  .hero__media img { object-position: 60% center; }
  .hero__content { padding-bottom: 58px; }
  .hero__meta { grid-template-columns: 1fr; margin-top: 50px; }
  .hero__meta div { min-height: auto; padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .hero__meta div + div { padding-left: 0; }
  .scroll-cue { display: none; }
  .page-hero { min-height: 680px; }
  .page-hero__media img { object-position: 62% center; }
  .intro-grid, .split, .system-grid, .sticky-story, .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit, .benefit + .benefit { min-height: auto; padding: 28px 0; border-right: 0; border-top: 1px solid var(--line); }
  .benefit:first-child { border-top: 0; }
  .benefit__number { margin-bottom: 46px; }
  .image-panel { min-height: 480px; }
  .app-grid { grid-template-columns: 1fr; }
  .app-card, .app-card:nth-child(3n) { min-height: 300px; border-right: 0; }
  .app-card__index { margin-bottom: 62px; }
  .editorial-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 330px); }
  .editorial-grid figure:first-child { grid-row: auto; }
  .application-row { grid-template-columns: 52px 1fr; gap: 20px; }
  .application-row p, .application-row .text-link { grid-column: 2; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(3n + 1) { grid-column: 1; min-height: 380px; }
  .gallery-item:nth-child(4n) { min-height: 440px; }
  .stats-band { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .stat:last-child { border-bottom: 0; }
  .sticky-story__title, .contact-aside { position: static; }
  .story-block { min-height: auto; }
  .story-block span { margin-bottom: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .btn-row { align-items: stretch; flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .hero { min-height: 760px; }
  .hero h1 { font-size: clamp(2.9rem, 14vw, 4.5rem); }
  .page-hero { min-height: 630px; }
  .page-hero h1 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .breadcrumbs { margin-bottom: 38px; }
  .image-panel { min-height: 380px; }
  .image-caption { max-width: calc(100% - 24px); }
  .timeline article { grid-template-columns: 1fr; gap: 10px; }
  .faq-list summary { grid-template-columns: 42px 1fr 22px; gap: 12px; }
  .faq-answer { padding-left: 54px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--wide, .consent, .form-actions { grid-column: auto; }
  .cta-cinematic { min-height: 570px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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