:root {
  --void: #08090b;
  --night: #111318;
  --charcoal: #181b21;
  --ink: #20242b;
  --paper: #f7f4ee;
  --paper-2: #e9e3d8;
  --white: #ffffff;
  --muted: #7b817f;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(17, 19, 24, 0.14);
  --red: #bd1425;
  --red-dark: #7f111b;
  --gold: #c8b58a;
  --max: 1220px;
  --radius: 18px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 20% 0%, rgba(189, 20, 37, .08), transparent 34rem),
    linear-gradient(180deg, #fbf8f2 0%, var(--paper) 42%, #f0ebe2 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .045;
  background-image:
    linear-gradient(rgba(0, 0, 0, .5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .5) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

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

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

a:hover {
  color: var(--red);
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(189, 20, 37, .35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--void);
}

.skip-link:focus {
  top: 16px;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  width: calc(var(--progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--red), #f14c5e);
  transform-origin: left;
}

.cursor-light {
  position: fixed;
  inset: auto;
  left: var(--mx, 50%);
  top: var(--my, 50%);
  z-index: 1;
  width: 34vw;
  aspect-ratio: 1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189, 20, 37, .15), transparent 62%);
  transform: translate(-50%, -50%);
  filter: blur(8px);
  opacity: .85;
}

.container,
.nav,
.footer__inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
  background: rgba(8, 9, 11, .8);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(20px);
}

.nav {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(255, 255, 255, .08));
}

.brand__text {
  display: grid;
  line-height: 1.08;
}

.brand__name {
  font-weight: 950;
  letter-spacing: .02em;
}

.brand__tagline {
  color: rgba(255, 255, 255, .62);
  font-size: .86rem;
}

.nav__links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
}

.nav__links a {
  padding: 10px 9px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .76);
  font-size: .9rem;
  font-weight: 800;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.nav__links a:hover,
.nav__links a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.nav__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  font-weight: 950;
  line-height: 1.1;
  cursor: pointer;
  isolation: isolate;
  transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .24), transparent);
  transform: translateX(-120%);
  transition: transform .65s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.7;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 45px rgba(189, 20, 37, .22);
}

.btn--primary:hover {
  color: #fff;
}

.btn--light {
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .08);
}

.btn--light:hover {
  color: #fff;
  background: rgba(255, 255, 255, .15);
}

.btn--ghost {
  color: var(--ink);
  border-color: rgba(17, 19, 24, .18);
  background: rgba(255, 255, 255, .35);
}

.btn--ghost:hover {
  color: var(--ink);
  border-color: rgba(189, 20, 37, .44);
  background: #fff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 8vw, 8.6rem);
  line-height: .86;
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 5.8rem);
  line-height: .9;
  letter-spacing: -.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
}

.cinema-hero,
.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  color: #fff;
  background: var(--void);
}

.cinema-hero__media,
.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.cinema-hero__media img,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.05);
  transform: scale(1.05);
  transition: transform .8s var(--ease);
}

.cinema-hero::before,
.hero__overlay {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 74% 22%, rgba(255, 255, 255, .12), transparent 20rem),
    linear-gradient(90deg, rgba(8, 9, 11, .98) 0%, rgba(8, 9, 11, .76) 46%, rgba(8, 9, 11, .22) 100%),
    linear-gradient(0deg, rgba(8, 9, 11, .92) 0%, transparent 56%);
}

.cinema-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 25vw 100%, 100% 28vh;
  opacity: .28;
}

.cinema-hero__content,
.hero__content {
  position: relative;
  z-index: 3;
  width: min(100% - 32px, var(--max));
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  margin-inline: auto;
  padding: 92px 0 154px;
}

.cinema-hero__copy,
.hero__copy {
  max-width: 820px;
}

.cinema-hero__copy p:not(.eyebrow),
.hero__copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.hero__badges,
.cinema-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.hero__badges span,
.cinema-hero__badges span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .06);
  font-size: .9rem;
  font-weight: 850;
}

.hero__actions,
.cinema-hero__actions,
.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__proofs,
.cinema-hero__proofs {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  width: min(100% - 32px, var(--max));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  overflow: hidden;
  transform: translateX(-50%);
  background: rgba(8, 9, 11, .72);
  backdrop-filter: blur(18px);
}

.hero__proofs div,
.cinema-hero__proofs div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.hero__proofs div:last-child,
.cinema-hero__proofs div:last-child {
  border-right: 0;
}

.hero__proofs strong,
.cinema-hero__proofs strong {
  display: block;
  margin-bottom: 4px;
}

.hero__proofs span,
.cinema-hero__proofs span {
  color: rgba(255, 255, 255, .62);
  font-size: .92rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 16%, rgba(189, 20, 37, .22), transparent 26rem),
    var(--void);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: 48px;
  align-items: center;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 40px 110px rgba(0, 0, 0, .38);
  filter: saturate(.92) contrast(1.04);
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, .78);
}

.marquee {
  overflow: hidden;
  color: #fff;
  background: var(--red);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee__track span {
  padding: 14px 26px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 138px) 0;
}

.section--soft {
  background: var(--paper-2);
}

.section--dark {
  color: #fff;
  background:
    radial-gradient(circle at 15% 12%, rgba(189, 20, 37, .18), transparent 26rem),
    var(--void);
}

.section--dark .lead,
.section--dark p {
  color: rgba(255, 255, 255, .72);
}

.section__head {
  max-width: 840px;
  margin-bottom: 42px;
}

.section__head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(300px, .46fr);
  gap: 48px;
  align-items: end;
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__head--center .eyebrow {
  justify-content: center;
}

.immersive-row,
.document-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .56fr);
  gap: 28px;
  align-items: stretch;
}

.visual-frame,
.document-photo,
.story,
.image-card,
.experience-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  isolation: isolate;
}

.visual-frame,
.document-photo {
  min-height: 600px;
  color: #fff;
  background: var(--void);
  box-shadow: 0 40px 100px rgba(8, 9, 11, .18);
}

.visual-frame img,
.document-photo img,
.story img,
.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.visual-frame:hover img,
.document-photo:hover img,
.image-card:hover img,
.story:hover img {
  transform: scale(1.045);
}

.visual-frame::after,
.document-photo::after,
.image-card::after,
.story::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(8, 9, 11, .92) 0%, rgba(8, 9, 11, .36) 52%, rgba(8, 9, 11, .06) 100%);
}

.visual-caption,
.document-photo__caption {
  position: absolute;
  left: clamp(22px, 4vw, 44px);
  right: clamp(22px, 4vw, 44px);
  bottom: clamp(22px, 4vw, 44px);
  z-index: 2;
  max-width: 650px;
}

.visual-caption span,
.document-photo__caption span,
.image-card__label,
.small-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .64);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.visual-caption strong,
.document-photo__caption strong {
  display: block;
  font-size: clamp(1.7rem, 4vw, 4rem);
  line-height: .92;
  letter-spacing: -.04em;
}

.premium-panel,
.document-note {
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line-dark);
  border-radius: 32px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .5)),
    var(--paper);
  box-shadow: 0 30px 80px rgba(8, 9, 11, .08);
}

.document-note--wide {
  max-width: 920px;
  margin-inline: auto;
}

.premium-list,
.document-note__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-list li,
.document-note__list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  color: var(--ink);
  font-weight: 650;
}

.premium-list li::before,
.document-note__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(189, 20, 37, .08);
}

.image-grid,
.scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.image-card,
.experience-card {
  min-height: 520px;
  color: #fff;
  background: var(--void);
}

.image-card__content,
.experience-card__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.image-card p,
.experience-card p {
  color: rgba(255, 255, 255, .72);
}

.text-grid,
.service-grid,
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.text-card,
.service-card,
.mini-card {
  position: relative;
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: 26px;
  background: rgba(255, 255, 255, .62);
  backdrop-filter: blur(8px);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}

.text-card:hover,
.service-card:hover,
.mini-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 28px 70px rgba(8, 9, 11, .12);
}

.text-card span,
.service-card span,
.mini-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 950;
}

.text-card p,
.service-card p,
.mini-card p {
  color: var(--muted);
}

.service-card {
  display: grid;
  align-content: space-between;
  gap: 24px;
}

.service-card a {
  color: var(--red);
  font-weight: 950;
}

.service-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card--visual {
  min-height: 0;
  padding: 0;
  gap: 0;
  align-content: stretch;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
}

.service-card--visual figure {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--void);
}

.service-card--visual figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 9, 11, .45), transparent 56%);
}

.service-card--visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
  transition: transform .7s var(--ease);
}

.service-card--visual:hover img {
  transform: scale(1.045);
}

.service-card__body {
  display: grid;
  gap: 10px;
  padding: 26px;
}

.service-card__body span {
  margin-bottom: 10px;
}

.service-card__body h3,
.service-card__body p {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  border-radius: 30px;
  overflow: hidden;
  background: var(--line-dark);
}

.timeline__item {
  min-height: 240px;
  padding: 28px;
  background: rgba(255, 255, 255, .68);
}

.timeline__item span {
  display: block;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 1.6rem;
  font-weight: 950;
}

.story {
  min-height: 660px;
  color: #fff;
  background: var(--void);
  box-shadow: 0 40px 120px rgba(8, 9, 11, .18);
}

.story::after {
  background: linear-gradient(90deg, rgba(8, 9, 11, .96) 0%, rgba(8, 9, 11, .7) 48%, rgba(8, 9, 11, .08) 100%);
}

.story--right::after {
  background: linear-gradient(270deg, rgba(8, 9, 11, .96) 0%, rgba(8, 9, 11, .7) 48%, rgba(8, 9, 11, .08) 100%);
}

.story__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: clamp(32px, 6vw, 72px);
}

.story--right .story__content {
  margin-left: auto;
}

.story__content p:not(.eyebrow) {
  color: rgba(255, 255, 255, .76);
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(280px, .42fr);
  gap: 36px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line-dark);
  border-radius: 34px;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .52)),
    radial-gradient(circle at 88% 10%, rgba(189, 20, 37, .16), transparent 20rem);
}

.quote-band strong {
  display: block;
  font-size: clamp(1.6rem, 3.6vw, 4rem);
  line-height: .95;
  letter-spacing: -.04em;
}

.cta-panel {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line-dark);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .58)),
    radial-gradient(circle at 82% 20%, rgba(189, 20, 37, .14), transparent 18rem);
  box-shadow: 0 30px 80px rgba(8, 9, 11, .08);
}

.cta-panel img {
  width: 86px;
}

.cta-panel p:last-child {
  margin-bottom: 0;
}

.cta-panel__actions {
  display: grid;
  gap: 10px;
}

.form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line-dark);
  border-radius: 32px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 30px 80px rgba(8, 9, 11, .08);
}

.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 950;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(17, 19, 24, .16);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, .74);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--muted);
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.form__status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form__status[data-status="success"] {
  color: #17613b;
}

.form__status[data-status="error"] {
  color: #9d1c24;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, .55fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-card {
  position: sticky;
  top: 136px;
  padding: 32px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(189, 20, 37, .28), transparent 18rem),
    var(--void);
  box-shadow: 0 34px 90px rgba(8, 9, 11, .2);
}

.contact-card p {
  color: rgba(255, 255, 255, .72);
}

.contact-card__links {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.contact-card__links a {
  display: block;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  color: #fff;
  font-weight: 950;
  background: rgba(255, 255, 255, .06);
}

.contact-card__note {
  padding: 18px;
  border-left: 4px solid var(--red);
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
}

.signature-hero {
  position: relative;
  min-height: calc(100svh - 84px);
  overflow: hidden;
  color: #fff;
  background: var(--void);
  isolation: isolate;
}

.signature-hero__media,
.signature-hero__veil {
  position: absolute;
  inset: 0;
}

.signature-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.08);
  transform: scale(1.02);
}

.signature-hero__veil {
  z-index: 1;
  background:
    radial-gradient(circle at 70% 16%, rgba(255, 255, 255, .12), transparent 20rem),
    linear-gradient(90deg, rgba(8, 9, 11, .97) 0%, rgba(8, 9, 11, .8) 44%, rgba(8, 9, 11, .2) 100%),
    linear-gradient(0deg, rgba(8, 9, 11, .96) 0%, transparent 60%);
}

.signature-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 25% 100%, 100% 25%;
  opacity: .24;
}

.signature-hero__content {
  position: relative;
  z-index: 3;
  width: min(100% - 32px, var(--max));
  min-height: calc(100svh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 42px;
  align-items: center;
  margin-inline: auto;
  padding: 96px 0 128px;
}

.signature-hero__copy {
  max-width: 860px;
}

.signature-hero h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: 6.7rem;
  line-height: .86;
  letter-spacing: 0;
}

.signature-hero__copy p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.34rem;
}

.hero-cta-row,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.live-panel {
  align-self: end;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  background: rgba(8, 9, 11, .64);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .32);
  backdrop-filter: blur(18px);
}

.live-panel__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #fff;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.live-panel__status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(189, 20, 37, .18);
}

.live-panel strong {
  display: block;
  margin-bottom: 24px;
  font-size: 1.75rem;
  line-height: 1;
}

.live-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.live-panel__grid span {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  color: rgba(255, 255, 255, .76);
  background: rgba(255, 255, 255, .06);
  font-weight: 850;
}

.mission-rail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  overflow: auto;
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: rgba(8, 9, 11, .7);
  backdrop-filter: blur(16px);
  scrollbar-width: none;
}

.mission-rail::-webkit-scrollbar {
  display: none;
}

.mission-rail span {
  flex: 1 0 auto;
  min-width: 190px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .74);
  font-size: .86rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.diagnosis-section h2,
.services-signature h2,
.field-section h2,
.method-strip h2,
.human-proof h2,
.final-cta h2 {
  font-size: 4.35rem;
  line-height: .93;
  letter-spacing: 0;
}

.problem-lab {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 16px;
}

.problem-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
  background: var(--void);
  box-shadow: 0 34px 90px rgba(8, 9, 11, .14);
}

.problem-card--large {
  grid-row: span 2;
  min-height: 620px;
}

.problem-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04);
  transition: transform .7s var(--ease);
}

.problem-card:hover img {
  transform: scale(1.045);
}

.problem-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 9, 11, .95) 0%, rgba(8, 9, 11, .34) 58%, rgba(8, 9, 11, .05) 100%);
}

.problem-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.problem-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .68);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.problem-card h3 {
  max-width: 650px;
  margin-bottom: 10px;
  font-size: 2.2rem;
  line-height: .98;
  letter-spacing: 0;
}

.problem-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
}

.service-board {
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.service-line {
  display: grid;
  grid-template-columns: 80px minmax(0, .8fr) minmax(260px, .7fr);
  gap: 22px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  transition: padding .25s var(--ease), color .25s var(--ease);
}

.service-line:hover {
  padding-left: 18px;
  color: #fff;
}

.service-line span {
  color: var(--red);
  font-weight: 950;
}

.service-line strong {
  font-size: 2rem;
  line-height: 1;
}

.service-line em {
  color: rgba(255, 255, 255, .66);
  font-style: normal;
}

.field-layout,
.human-proof__grid {
  display: grid;
  grid-template-columns: minmax(300px, .58fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.field-copy {
  max-width: 580px;
}

.sector-map {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--void);
  box-shadow: 0 40px 100px rgba(8, 9, 11, .16);
}

.sector-map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
  filter: saturate(.86) contrast(1.05);
}

.sector-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 45% 45%, transparent 0 8px, rgba(255, 255, 255, .08) 9px 10px, transparent 11px),
    linear-gradient(0deg, rgba(8, 9, 11, .86), rgba(8, 9, 11, .18));
  background-size: 84px 84px, auto;
}

.sector-pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 9, 11, .68);
  backdrop-filter: blur(12px);
  font-weight: 950;
}

.sector-pin::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 9px rgba(189, 20, 37, .18);
}

.sector-pin--one { left: 8%; top: 20%; }
.sector-pin--two { right: 12%; top: 32%; }
.sector-pin--three { left: 14%; bottom: 28%; }
.sector-pin--four { right: 10%; bottom: 18%; }

.method-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  overflow: hidden;
  background: var(--line-dark);
}

.method-flow article {
  min-height: 260px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .58)),
    var(--paper);
}

.method-flow span {
  display: block;
  margin-bottom: 46px;
  color: var(--red);
  font-size: 1.65rem;
  font-weight: 950;
}

.method-flow p {
  color: var(--muted);
}

.human-proof__image {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--void);
  box-shadow: 0 38px 100px rgba(8, 9, 11, .16);
}

.human-proof__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.02);
}

.human-proof__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 28px;
}

.human-proof__points span {
  padding: 11px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .62);
  font-weight: 850;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  padding: 46px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  color: #fff;
  background:
    linear-gradient(130deg, rgba(8, 9, 11, .98), rgba(17, 19, 24, .92)),
    radial-gradient(circle at 90% 12%, rgba(189, 20, 37, .28), transparent 22rem);
  box-shadow: 0 34px 90px rgba(8, 9, 11, .18);
}

.final-cta p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, .76);
}

.legal {
  max-width: 900px;
}

.legal h2 {
  margin-top: 40px;
  font-size: 1.65rem;
}

.notice {
  padding: 18px;
  border-left: 4px solid var(--red);
  border-radius: 18px;
  background: rgba(255, 255, 255, .7);
}

.site-footer {
  position: relative;
  color: #fff;
  background: var(--void);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
}

.footer__inner {
  padding: 64px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr .8fr;
  gap: 30px;
}

.footer__brand img {
  width: 74px;
  margin-bottom: 14px;
}

.footer__brand p,
.footer__links a,
.footer__bottom {
  color: rgba(255, 255, 255, .68);
}

.footer__title {
  margin: 0 0 12px;
  color: #fff;
  font-weight: 950;
}

.footer__links {
  display: grid;
  gap: 8px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .9rem;
}

.quick-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.quick-cta a {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-weight: 950;
  box-shadow: 0 18px 40px rgba(8, 9, 11, .22);
}

.quick-cta a:nth-child(2) {
  color: var(--ink);
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tilt-card {
  transform: perspective(900px) rotateX(calc(var(--tilt-y, 0) * -5deg)) rotateY(calc(var(--tilt-x, 0) * 5deg));
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1080px) {
  .nav__links {
    position: fixed;
    left: 0;
    right: 0;
    top: 84px;
    display: none;
    padding: 14px 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background: rgba(8, 9, 11, .96);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .28);
  }

  .nav__links.is-open {
    display: grid;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav__actions .btn {
    display: none;
  }

  .page-hero__grid,
  .immersive-row,
  .document-row,
  .section__head--split,
  .quote-band,
  .contact-layout,
  .cta-panel,
  .signature-hero__content,
  .field-layout,
  .human-proof__grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .signature-hero h1 {
    max-width: 720px;
    font-size: 5.1rem;
  }

  .live-panel {
    align-self: stretch;
    max-width: 540px;
  }

  .problem-lab {
    grid-template-columns: 1fr;
  }

  .problem-card--large {
    grid-row: auto;
  }

  .contact-card {
    position: static;
  }

  .image-grid,
  .scene-grid,
  .text-grid,
  .service-grid,
  .service-visual-grid,
  .mini-grid,
  .timeline,
  .method-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-line {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .service-line em {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .cursor-light {
    display: none;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand__tagline {
    display: none;
  }

  .cinema-hero,
  .hero,
  .signature-hero {
    min-height: 720px;
  }

  .cinema-hero__content,
  .hero__content,
  .signature-hero__content {
    min-height: 720px;
    padding: 80px 0 98px;
  }

  .signature-hero h1 {
    font-size: 4rem;
  }

  .signature-hero__copy p:not(.eyebrow) {
    font-size: 1.12rem;
  }

  .cinema-hero::before,
  .hero__overlay,
  .signature-hero__veil {
    background: linear-gradient(0deg, rgba(8, 9, 11, .98) 0%, rgba(8, 9, 11, .8) 58%, rgba(8, 9, 11, .28) 100%);
  }

  .hero__proofs,
  .cinema-hero__proofs,
  .live-panel,
  .mission-rail {
    display: none;
  }

  .quick-cta {
    display: grid;
  }

  .hero__actions,
  .cinema-hero__actions,
  .section__actions,
  .hero-cta-row,
  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .visual-frame,
  .document-photo,
  .story {
    min-height: 460px;
  }

  .image-grid,
  .scene-grid,
  .text-grid,
  .service-grid,
  .service-visual-grid,
  .mini-grid,
  .timeline,
  .method-flow,
  .form__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .diagnosis-section h2,
  .services-signature h2,
  .field-section h2,
  .method-strip h2,
  .human-proof h2,
  .final-cta h2 {
    font-size: 3rem;
  }

  .problem-card,
  .problem-card--large,
  .sector-map,
  .human-proof__image {
    min-height: 430px;
  }

  .service-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-line em {
    grid-column: auto;
  }

  .story::after,
  .story--right::after {
    background: linear-gradient(0deg, rgba(8, 9, 11, .98) 0%, rgba(8, 9, 11, .76) 58%, rgba(8, 9, 11, .16) 100%);
  }

  .story__content {
    padding: 30px;
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.7rem);
  }

  .image-card,
  .experience-card {
    min-height: 430px;
  }

  .premium-panel,
  .document-note,
  .form,
  .cta-panel,
  .quote-band,
  .final-cta {
    padding: 22px;
  }

  .signature-hero h1 {
    font-size: 3.25rem;
  }

  .diagnosis-section h2,
  .services-signature h2,
  .field-section h2,
  .method-strip h2,
  .human-proof h2,
  .final-cta h2 {
    font-size: 2.35rem;
  }

  .problem-card h3,
  .service-line strong {
    font-size: 1.55rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.footer__bottom a {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__bottom a:hover {
  color: var(--gold);
}
