:root {
  color-scheme: light;
  --warm-white: #f7f7f2;
  --coal: #050607;
  --coal-soft: rgba(5, 6, 7, 0.72);
  --sky: #a8d8f0;
  --steel: #b8c0c7;
  --accent: #c7a24b;
  --line: rgba(5, 6, 7, 0.16);
  --line-light: rgba(247, 247, 242, 0.22);
  --shell: min(1560px, calc(100% - clamp(32px, 5vw, 96px)));
  --display: "IBM Plex Sans Condensed", "Aptos Narrow", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --sky-image: url("assets/background2.webp");
  --coal-image: url("assets/media-coal.webp");
  --aviation-image: url("assets/media-aviation.webp");
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
  background: var(--warm-white);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track,
::-webkit-scrollbar-thumb {
  background: transparent;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--body);
  color: var(--coal);
  background: var(--warm-white);
  line-height: 1.5;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

section {
  scroll-margin-top: 64px;
}

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.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;
}

.text-accent {
  color: var(--accent) !important;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--warm-white);
  color: var(--coal);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--warm-white);
  background:
    linear-gradient(rgba(247, 247, 242, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 247, 242, 0.04) 1px, transparent 1px),
    var(--coal);
  background-size:
    100% 18vh,
    18vw 100%,
    auto;
  transition:
    opacity 520ms ease,
    visibility 520ms ease;
}

.page-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(199, 162, 75, 0.18), transparent);
  opacity: 0.8;
  transform: translateX(-64%);
  animation: loader-scan 1800ms cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

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

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 48px));
}

.page-loader__logo {
  width: clamp(230px, 30vw, 430px);
  height: auto;
  margin: 0 auto clamp(34px, 5vw, 66px);
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.42));
}

.page-loader__meta {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(247, 247, 242, 0.2);
  padding-bottom: 14px;
  font-family: var(--display);
  text-transform: uppercase;
}

.page-loader__meta strong {
  min-width: 4ch;
  color: var(--accent);
  font-size: clamp(2.6rem, 5.4vw, 5.7rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.82;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.page-loader__bar {
  position: relative;
  height: 4px;
  overflow: hidden;
  background: rgba(247, 247, 242, 0.14);
}

.page-loader__bar span {
  display: block;
  width: var(--loader-progress, 0%);
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 22px rgba(199, 162, 75, 0.44);
  transition: width 180ms ease;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-pad {
  padding: clamp(76px, 9vw, 140px) 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: calc(20px - (6px * var(--header-scroll, 0))) 0 0;
  color: var(--warm-white);
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(5, 6, 7, 0.08);
  color: var(--coal);
  background: rgba(247, 247, 242, 0.82);
  backdrop-filter: blur(14px);
}

.site-header.is-menu-open {
  border-bottom: 1px solid rgba(5, 6, 7, 0.1);
  color: var(--coal);
  background: rgba(247, 247, 242, 0.88);
}

.site-header__inner {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  width: clamp(
    147px,
    calc((22.4vw - (9.8vw * var(--header-scroll, 0)))),
    calc(364px - (154px * var(--header-scroll, 0)))
  );
  aspect-ratio: 5.2 / 1;
  overflow: hidden;
}

.brand__logo {
  width: 136%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translate(-15%, -38%);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  opacity: 0.72;
}

.site-nav a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav a:hover,
.site-nav a.is-active {
  opacity: 1;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  z-index: 0;
  min-height: 240svh;
  overflow: visible;
  isolation: isolate;
  background: transparent;
}

.hero__stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero__sky,
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__sky {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--sky);
}

.hero__grain {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.24), rgba(5, 6, 7, 0.08) 42%, rgba(5, 6, 7, 0.2)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.12), transparent 34%, rgba(5, 6, 7, 0.16));
  backdrop-filter: blur(1.6px);
  -webkit-backdrop-filter: blur(1.6px);
}

.hero__intro {
  position: absolute;
  left: max(clamp(32px, 5vw, 96px), calc((100vw - 1560px) / 2));
  bottom: clamp(54px, 7vw, 104px);
  z-index: 6;
  max-width: 520px;
  color: var(--warm-white);
  overflow: hidden;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: rgba(5, 6, 7, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.hero__lead {
  position: relative;
  max-width: 560px;
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  font-weight: 600;
  line-height: 1.45;
}

.hero__mission-question {
  position: relative;
  display: block;
  width: max-content;
  min-height: 1.45em;
  perspective: 720px;
}

.hero__mission-question-text {
  display: block;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  transition:
    opacity 420ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.hero__mission-question-text--next {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
  transform: rotateX(90deg) translateY(0.32em);
}

.hero__mission-question.is-flipped .hero__mission-question-text--current {
  opacity: 0;
  transform: rotateX(-90deg) translateY(-0.32em);
}

.hero__mission-question.is-flipped .hero__mission-question-text--next {
  opacity: 1;
  transform: rotateX(0deg) translateY(0);
}

.hero__mission-accent {
  display: inline-block;
  font-weight: 800;
  opacity: var(--mission-reveal, 0);
  transform: translateY(calc(14px * (1 - var(--mission-reveal, 0))));
  transition:
    opacity 180ms linear,
    transform 180ms linear;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__mission-copy {
  display: block;
  margin-top: 0.35em;
  opacity: var(--mission-copy-reveal, 0);
  transform: translateY(calc(12px * (1 - var(--mission-copy-reveal, 0))));
  transition:
    opacity 180ms linear,
    transform 180ms linear;
}

.hero__mission-letter {
  color: var(--warm-white);
  transition: color 220ms ease;
}

.hero__mission-letter--space {
  white-space: pre;
}

.hero__mission-letter.is-filled {
  color: #7f1d1d;
}

.hero__lead::before {
  content: "";
  display: block;
  width: clamp(56px, 7vw, 116px);
  height: 2px;
  margin-bottom: clamp(16px, 2vw, 26px);
  background: var(--warm-white);
  transform: scaleX(0);
  transform-origin: left;
}

.hero__intro.is-visible {
  animation: hero-copy-block 920ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.hero__intro.is-visible .hero__lead {
  animation: hero-copy-text 1100ms cubic-bezier(0.19, 1, 0.22, 1) 120ms both;
}

.hero__intro.is-visible .hero__lead::before {
  animation: hero-copy-rule 880ms cubic-bezier(0.19, 1, 0.22, 1) 260ms both;
}

.hero__side {
  position: absolute;
  top: clamp(118px, 11vw, 168px);
  right: max(clamp(32px, 5vw, 96px), calc((100vw - 1560px) / 2));
  z-index: 6;
  display: grid;
  gap: 12px;
  width: max-content;
  max-width: 420px;
  color: var(--warm-white);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.45vw, 1.65rem);
  font-weight: 700;
  line-height: 0.96;
  opacity: var(--side-reveal, 0);
  text-align: right;
  transform: translateY(calc(22px * (1 - var(--side-reveal, 0))));
  transition:
    opacity 180ms linear,
    transform 180ms linear;
  text-transform: uppercase;
}

.hero__side p {
  margin: 0;
  min-width: 14.5ch;
}

.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.split-showcase {
  position: absolute;
  inset: 0;
  z-index: 8;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.split-showcase__panel {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  will-change: transform, opacity;
}

.split-showcase__panel--left {
  left: 0;
  transform: translateY(-100%);
}

.split-showcase__panel--right {
  right: 0;
  transform: translateY(100%);
}

.split-showcase__panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0.45px) contrast(0.98) brightness(0.96);
  transform: scale(1.08);
  will-change: transform;
}

.split-showcase__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.16), rgba(5, 6, 7, 0.06) 38%, rgba(5, 6, 7, 0.58)),
    linear-gradient(90deg, rgba(5, 6, 7, 0.5), rgba(5, 6, 7, 0.1) 56%);
  pointer-events: none;
}

.split-showcase__panel--right::after {
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.16), rgba(5, 6, 7, 0.06) 38%, rgba(5, 6, 7, 0.58)),
    linear-gradient(270deg, rgba(5, 6, 7, 0.5), rgba(5, 6, 7, 0.1) 56%);
}

.split-showcase__caption {
  position: absolute;
  bottom: clamp(34px, 5vw, 78px);
  z-index: 2;
  display: grid;
  gap: clamp(18px, 2vw, 30px);
  max-width: min(520px, 76%);
  color: var(--warm-white);
  opacity: var(--split-caption-reveal, 0);
  transform: translateY(calc(18px * (1 - var(--split-caption-reveal, 0))));
  transition:
    opacity 160ms linear,
    transform 160ms linear;
}

.split-showcase__caption--left {
  left: max(clamp(24px, 4vw, 72px), calc((100vw - 1560px) / 2));
}

.split-showcase__caption--right {
  right: max(clamp(24px, 4vw, 72px), calc((100vw - 1560px) / 2));
}

.split-showcase__link {
  display: grid;
  gap: 8px;
  color: inherit;
  pointer-events: auto;
  text-decoration: none;
}

.split-showcase__link::before {
  content: "";
  width: clamp(54px, 5vw, 92px);
  height: 2px;
  margin-bottom: 4px;
  background: currentColor;
  transform: scaleX(0.62);
  transform-origin: left;
  transition: transform 180ms ease;
}

.split-showcase__link:hover::before {
  transform: scaleX(1);
}

.split-showcase__link strong {
  display: block;
  color: #7f1d1d;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 3.1rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.split-showcase__link small {
  display: block;
  font-size: clamp(0.8rem, 0.86vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.split-showcase__link p {
  margin: 4px 0 0;
  font-size: clamp(0.92rem, 1.1vw, 1.12rem);
  font-weight: 600;
  line-height: 1.42;
}

.section-kicker {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.section-kicker--dark {
  color: rgba(247, 247, 242, 0.62);
  border-bottom-color: var(--line-light);
}

.display-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.1rem, 5.2vw, 6.4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.display-title--light {
  color: var(--warm-white);
}

.manifest-title-block {
  display: flex;
  min-height: clamp(420px, 52vw, 680px);
  flex-direction: column;
  justify-content: center;
  align-self: start;
}

.manifest-title {
  margin: 0;
}

.manifest-title__main {
  display: block;
  line-height: 0.78;
}

.manifest-title__sub {
  display: block;
}

.manifest-title__red {
  color: #7f1d1d;
}

.manifest-title__sub {
  font-size: 0.38em;
  line-height: 0.92;
  margin-top: 6px;
}

.manifest-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 3.4vw, 44px);
}

.manifest-cta__button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--coal);
  padding: 0 18px 0 20px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.manifest-cta__button svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.manifest-cta__button--primary {
  min-width: 210px;
  background: var(--coal);
  color: var(--warm-white);
}

.manifest-cta__button--secondary {
  min-width: 245px;
  background: rgba(247, 247, 242, 0.44);
  color: var(--coal);
}

.manifest-cta__button:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--coal);
  transform: translateY(-2px);
}

.manifest {
  position: relative;
  z-index: 5;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 247, 242, 0.78), rgba(247, 247, 242, 0.66) 44%, rgba(247, 247, 242, 0.48)),
    url("assets/background2.webp") center right / cover no-repeat,
    var(--warm-white);
}

.manifest__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 0.52fr);
  gap: clamp(44px, 7vw, 116px);
  padding-top: clamp(34px, 5vw, 72px);
}

.manifest__columns {
  display: grid;
  align-content: start;
  gap: 0;
}

.manifest__since {
  display: grid;
  justify-items: start;
  margin-top: clamp(30px, 4vw, 58px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: rgba(5, 6, 7, 0.16);
  font-family: var(--display);
  text-transform: uppercase;
}

.manifest__since span {
  color: rgba(5, 6, 7, 0.36);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.manifest__since strong {
  font-size: clamp(4.8rem, 8vw, 7.6rem);
  font-weight: 700;
  line-height: 0.82;
}

.manifest__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: clamp(22px, 3vw, 34px) 0;
  border-top: 1px solid var(--line);
}

.manifest__item:last-child {
  border-bottom: 1px solid var(--line);
}

.manifest__item h3 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(1.9rem, 2.8vw, 3.1rem);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
}

.manifest__item p {
  margin: 0;
  color: rgba(5, 6, 7, 0.7);
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  font-weight: 700;
  line-height: 1.5;
}

.manifest__meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(28px, 4vw, 58px);
  color: rgba(5, 6, 7, 0.28);
  font-family: var(--display);
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.manifest__meta-line::before {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.manifest__meta-line span {
  order: -1;
}

.manifest__meta-line strong {
  max-width: 12ch;
  color: rgba(5, 6, 7, 0.34);
  font-size: 0.86em;
}

.media-band {
  position: relative;
  z-index: 5;
  min-height: clamp(440px, 70vw, 720px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--coal);
}

.media-band__image {
  min-height: inherit;
  background-position: center;
  background-size: cover;
  filter: grayscale(0.55) contrast(1.1);
}

.media-band__image--coal {
  background-image:
    linear-gradient(90deg, rgba(5, 6, 7, 0.2), rgba(5, 6, 7, 0.56)),
    var(--coal-image);
}

.media-band__image--aviation {
  background-image:
    linear-gradient(90deg, rgba(5, 6, 7, 0.44), rgba(5, 6, 7, 0.12)),
    var(--aviation-image);
}

.media-band__text {
  position: absolute;
  bottom: clamp(30px, 5vw, 72px);
  z-index: 1;
  width: min(430px, calc(50% - clamp(64px, 9vw, 150px)));
  color: var(--warm-white);
  isolation: isolate;
}

.media-band__text::before {
  content: "";
  position: absolute;
  inset: -18px -22px -16px;
  z-index: -1;
  background: rgba(5, 6, 7, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  pointer-events: none;
}

.media-band__text--left {
  left: clamp(32px, 5vw, 96px);
}

.media-band__text--right {
  left: calc(50% + clamp(32px, 5vw, 96px));
}

.media-band__text span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-band__text p {
  margin: 0;
  max-width: 360px;
  color: var(--accent);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  font-weight: 700;
  line-height: 1.35;
}

.media-band__text h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.25vw, 4.4rem);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
}

.directions {
  position: relative;
  z-index: 5;
  overflow: hidden;
  color: var(--warm-white);
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.88), rgba(5, 6, 7, 0.96)),
    var(--coal-image) center / cover fixed;
}

.directions .display-title {
  max-width: 980px;
  margin-top: 0;
}

.directions-title {
  font-size: calc(clamp(3.1rem, 5.2vw, 6.4rem) - 3px);
}

.directions-title__red {
  color: #7f1d1d;
}

.directions__list {
  margin-top: clamp(42px, 5vw, 78px);
  border-top: 1px solid var(--line-light);
}

.direction {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.72fr) 34px;
  align-items: start;
  gap: clamp(22px, 3.2vw, 52px);
  padding: clamp(28px, 4.4vw, 58px) 0;
  border-bottom: 1px solid var(--line-light);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.direction:hover {
  border-bottom-color: rgba(199, 162, 75, 0.72);
}

.direction__main,
.direction__copy {
  min-width: 0;
}

.direction h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.75vw, 5.1rem);
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
}

.direction__subtitle {
  margin: 14px 0 0;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
}

.direction__copy {
  margin: 0;
  color: rgba(247, 247, 242, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.24rem);
  font-weight: 600;
}

.direction__address {
  display: block;
  margin-top: 16px;
  color: var(--accent);
  font-size: 0.76em;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.direction svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.direction:hover svg {
  transform: translate(4px, -4px);
}

.contacts {
  position: relative;
  z-index: 5;
  background:
    linear-gradient(90deg, rgba(247, 247, 242, 0.96), rgba(247, 247, 242, 0.84)),
    var(--aviation-image) center / cover no-repeat;
}

.contacts__info {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.58fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: start;
  min-width: 0;
}

.contacts__info > * {
  min-width: 0;
}

.contacts__intro .display-title {
  max-width: 680px;
  margin-top: 24px;
  font-size: clamp(3.4rem, 4.35vw, 5.4rem);
}

.contacts__lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(5, 6, 7, 0.68);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 700;
  line-height: 1.45;
}

.contact-list {
  display: grid;
  gap: clamp(16px, 2vw, 20px);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-top: 0;
  font-style: normal;
}

.contact-list__quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.contact-list__addresses {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.contact-list a,
.contact-list p {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
  margin: 0;
  color: rgba(5, 6, 7, 0.72);
  font-weight: 700;
}

.contact-list__quick a {
  min-height: 64px;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(247, 247, 242, 0.58);
  color: var(--coal);
  font-size: clamp(0.94rem, 1vw, 1.04rem);
  line-height: 1.15;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.contact-list__quick svg {
  align-self: center;
  width: 18px;
  height: 18px;
}

.contact-list__quick a:hover {
  border-color: var(--accent);
  background: rgba(247, 247, 242, 0.94);
  transform: translateY(-2px);
}

.contact-list p {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(0.96rem, 1.12vw, 1.08rem);
}

.contact-list svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.contact-list span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-footer {
  background: var(--coal);
  color: rgba(247, 247, 242, 0.76);
}

.site-footer__inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

.site-footer__links a {
  color: rgba(247, 247, 242, 0.7);
  transition: color 180ms ease;
}

.site-footer__links a:hover {
  color: var(--warm-white);
}

.cookie-banner {
  position: fixed;
  right: clamp(16px, 3vw, 36px);
  bottom: clamp(16px, 3vw, 36px);
  z-index: 120;
  width: min(560px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(247, 247, 242, 0.18);
  border-top: 3px solid var(--accent);
  background: rgba(5, 6, 7, 0.94);
  color: var(--warm-white);
  box-shadow: 0 20px 60px rgba(5, 6, 7, 0.28);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: rgba(247, 247, 242, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-banner__button {
  min-height: 42px;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: var(--accent);
  color: var(--coal);
  padding: 0 14px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-banner__button--ghost {
  border-color: rgba(247, 247, 242, 0.28);
  background: transparent;
  color: rgba(247, 247, 242, 0.84);
}

.legal-page .site-header {
  border-bottom: 1px solid rgba(5, 6, 7, 0.08);
  color: var(--coal);
  background: rgba(247, 247, 242, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.legal-main {
  padding-top: clamp(86px, 9vw, 128px);
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(5, 6, 7, 0.045) 1px, transparent 1px),
    var(--warm-white);
  background-size:
    14vw 100%,
    100% 124px,
    auto;
}

.legal-hero {
  padding-bottom: clamp(44px, 6vw, 88px);
}

.legal-hero__title {
  max-width: 960px;
  margin: clamp(22px, 4vw, 52px) 0 0;
  font-size: clamp(3.4rem, 9vw, 9.8rem);
  line-height: 0.82;
}

#privacyTitle,
#cookieTitle {
  font-size: clamp(1.7rem, 4.5vw, 4.9rem);
}

.legal-hero__lead {
  max-width: 640px;
  margin: clamp(26px, 4vw, 48px) 0 0;
  color: rgba(5, 6, 7, 0.66);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 700;
}

.legal-hero__lead a,
.legal-document a {
  color: var(--coal);
  text-decoration: underline;
  text-decoration-color: rgba(199, 162, 75, 0.72);
  text-underline-offset: 0.18em;
}

.legal-document {
  padding-top: 0;
}

.legal-document__grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: start;
}

.legal-document__meta {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
  border-top: 3px solid var(--accent);
  padding-top: 20px;
  color: rgba(5, 6, 7, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.legal-document__meta p {
  margin: 0;
}

.legal-document__body {
  border-top: 3px solid var(--coal);
}

.legal-document__section {
  padding: clamp(24px, 3vw, 42px) 0;
  border-bottom: 1px solid var(--line);
}

.legal-document__section h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.legal-document__section p,
.legal-document__section li {
  max-width: 880px;
  margin: 0;
  color: rgba(5, 6, 7, 0.76);
  font-size: clamp(1rem, 1.22vw, 1.16rem);
  line-height: 1.72;
}

.legal-document__section p + p {
  margin-top: 8px;
}

.legal-document__section ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-document__section li {
  position: relative;
  padding-left: 24px;
}

.legal-document__section li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.legal-document__sign {
  display: grid;
  gap: 8px;
  padding: clamp(28px, 4vw, 56px) 0 0;
  color: var(--coal);
  font-weight: 800;
}

.legal-document__sign p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.hero__side.reveal,
.hero__side.reveal.is-visible {
  opacity: var(--side-reveal, 0);
  transform: translateY(calc(22px * (1 - var(--side-reveal, 0))));
}

@keyframes hero-copy-block {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes hero-copy-text {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-copy-rule {
  to {
    transform: scaleX(1);
  }
}

@keyframes loader-scan {
  to {
    transform: translateX(64%);
  }
}

@media (max-width: 1024px) {
  :root {
    --shell: min(100% - 40px, 900px);
  }

  .section-pad {
    padding: 92px 0;
  }

  .site-header__inner {
    align-items: center;
  }

  .brand {
    width: clamp(138px, 24vw, 230px);
  }

  .nav-toggle {
    position: relative;
    z-index: 62;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .site-header.is-menu-open {
    min-height: auto;
  }

  .nav-toggle__line,
  .nav-toggle__line::before,
  .nav-toggle__line::after {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--coal);
    transition:
      background-color 180ms ease,
      transform 180ms ease,
      opacity 180ms ease;
  }

  .nav-toggle__line {
    background: #7f1d1d;
  }

  .nav-toggle__line::before,
  .nav-toggle__line::after {
    content: "";
    position: absolute;
    background: var(--coal);
  }

  .nav-toggle__line::before {
    transform: translateY(-8px);
  }

  .nav-toggle__line::after {
    transform: translateY(8px);
  }

  .site-header.is-menu-open .nav-toggle__line {
    background: transparent;
  }

  .site-header.is-menu-open .nav-toggle__line::before {
    background: var(--coal);
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .nav-toggle__line::after {
    background: #7f1d1d;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    inset: 100% 0 auto auto;
    z-index: 60;
    width: min(390px, calc(100vw - 28px));
    min-height: 0;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 12px 0 10px;
    border: 1px solid rgba(247, 247, 242, 0.16);
    border-top: 3px solid #7f1d1d;
    background:
      linear-gradient(135deg, rgba(5, 6, 7, 0.98), rgba(24, 27, 29, 0.94)),
      var(--coal);
    box-shadow: 0 22px 54px rgba(5, 6, 7, 0.34);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 260ms ease,
      opacity 180ms ease;
  }

  .site-nav::before {
    content: "АО СЗКД";
    padding: 0 18px 12px;
    border-bottom: 1px solid rgba(247, 247, 242, 0.16);
    color: rgba(247, 247, 242, 0.48);
    font-family: var(--display);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1;
  }

  .site-header.is-menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 46px;
    padding: 0 18px;
    color: var(--warm-white);
    font-family: var(--display);
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    opacity: 0.88;
    transition:
      background-color 180ms ease,
      color 180ms ease,
      opacity 180ms ease,
      padding-left 180ms ease;
  }

  .site-nav a + a {
    border-top: 1px solid rgba(247, 247, 242, 0.12);
  }

  .site-nav a::before {
    width: 7px;
    height: 7px;
    background: #7f1d1d;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    padding-left: 24px;
    background: rgba(127, 29, 29, 0.22);
    color: var(--warm-white);
    opacity: 1;
  }

  .hero__intro {
    left: max(20px, calc((100vw - 900px) / 2));
    bottom: 48px;
    max-width: 580px;
  }

  .hero__mission-accent {
    white-space: normal;
  }

  .hero__side {
    top: clamp(92px, 11vw, 120px);
    left: max(20px, calc((100vw - 900px) / 2));
    right: auto;
    max-width: 560px;
    text-align: left;
  }

  .split-showcase__caption {
    max-width: min(440px, 84%);
  }

  .split-showcase__link strong {
    font-size: clamp(1.25rem, 3.1vw, 2.4rem);
  }

  .split-showcase__link p {
    font-size: 0.95rem;
  }

  .manifest__grid,
  .contacts__info {
    grid-template-columns: 1fr;
  }

  .direction {
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 24px;
  }

  .direction__copy {
    grid-column: 1 / -1;
    max-width: 760px;
  }

  .media-band__text {
    width: min(360px, calc(50% - 52px));
  }

  .media-band__text--left {
    left: 32px;
  }

  .media-band__text--right {
    left: calc(50% + 32px);
  }

  .contacts__info {
    gap: 48px;
  }

  .legal-document__grid {
    grid-template-columns: 1fr;
  }

  .legal-document__meta {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 28px, 620px);
  }

  html {
    scrollbar-width: none;
  }

  ::-webkit-scrollbar {
    display: none;
  }

  .section-pad {
    padding: 72px 0;
  }

  .brand {
    width: clamp(118px, 38vw, 170px);
  }

  .site-nav {
    width: min(320px, calc(100vw - 28px));
    padding: 8px 0;
  }

  .site-nav::before {
    padding: 0 14px 10px;
    font-size: 0.68rem;
  }

  .site-nav a {
    min-height: 42px;
    padding: 0 14px;
    font-size: 1.02rem;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    padding-left: 20px;
  }

  .hero {
    min-height: 190svh;
  }

  .hero__stage {
    width: 100vw;
    max-width: 100vw;
  }

  .hero__sky,
  .hero__grain,
  .split-showcase {
    left: 0;
    right: auto;
    width: 100vw;
  }

  .hero__grain {
    background:
      linear-gradient(180deg, rgba(5, 6, 7, 0.22), rgba(5, 6, 7, 0.08) 40%, rgba(5, 6, 7, 0.44)),
      linear-gradient(90deg, rgba(5, 6, 7, 0.22), rgba(5, 6, 7, 0.06));
  }

  .hero__intro {
    left: 14px;
    right: 14px;
    bottom: 30px;
    max-width: 100%;
  }

  .hero__lead {
    font-size: 0.94rem;
    line-height: 1.38;
  }

  .hero__mission-accent {
    max-width: 18ch;
  }

  .hero__side {
    top: 100px;
    left: 14px;
    right: 14px;
    gap: 8px;
    max-width: 280px;
    font-size: clamp(0.96rem, 4.7vw, 1.28rem);
  }

  .split-showcase__panel {
    left: 0;
    width: 100%;
    height: 50%;
  }

  .split-showcase__panel--left {
    top: 0;
  }

  .split-showcase__panel--right {
    top: 50%;
    right: auto;
  }

  .split-showcase__caption {
    bottom: 18px;
    left: 14px;
    right: 14px;
    width: calc(100% - 28px);
    max-width: none;
    gap: 10px;
    justify-items: center;
    text-align: center;
  }

  .split-showcase__caption--right {
    right: 14px;
  }

  .split-showcase__link {
    justify-items: center;
    gap: 5px;
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .split-showcase__link::before {
    width: 52px;
    margin-bottom: 2px;
    transform-origin: center;
  }

  .split-showcase__link strong {
    max-width: 20ch;
    font-size: clamp(1.1rem, 6vw, 1.9rem);
    line-height: 0.9;
  }

  .split-showcase__link small {
    font-size: 0.7rem;
  }

  .split-showcase__link p {
    max-width: 48ch;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .section-kicker {
    display: grid;
    gap: 8px;
  }

  .display-title {
    font-size: clamp(2.15rem, 10.5vw, 3.45rem);
    line-height: 0.94;
  }

  .manifest__grid {
    gap: 42px;
    padding-top: 38px;
  }

  .manifest-title-block {
    min-height: auto;
    justify-content: flex-start;
  }

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

  .manifest-cta__button {
    width: 100%;
    min-width: 0;
  }

  .manifest__item {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .manifest__item h3 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .manifest__item p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .manifest__since {
    margin-bottom: 24px;
  }

  .manifest__since strong {
    font-size: clamp(4.2rem, 22vw, 6.4rem);
  }

  .manifest__meta-line {
    display: grid;
    gap: 10px;
    font-size: 1rem;
  }

  .manifest__meta-line::before {
    order: 2;
    width: 100%;
  }

  .media-band {
    --media-mobile-image-height: 360px;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .media-band__image {
    min-height: var(--media-mobile-image-height);
  }

  .media-band__text {
    position: absolute;
    z-index: 2;
  }

  .media-band__text--left {
    top: auto;
    bottom: calc(var(--media-mobile-image-height) + 28px);
    left: 18px;
    right: 18px;
    width: auto;
  }

  .media-band__text--right {
    top: auto;
    bottom: 28px;
    left: 18px;
    right: 18px;
    width: auto;
  }

  .media-band__text::before {
    inset: -14px -16px -14px;
    background: rgba(5, 6, 7, 0.34);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }

  .media-band__text h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .directions-title {
    max-width: 100%;
    font-size: clamp(1.85rem, 8.8vw, 2.75rem);
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .directions__list {
    margin-top: 34px;
  }

  .direction {
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 14px;
    min-width: 0;
    padding: 30px 0;
  }

  .direction svg {
    grid-column: 2;
    grid-row: 1;
    display: block;
    width: 28px;
    height: 28px;
    align-self: start;
    justify-self: end;
    color: var(--accent);
    padding: 4px;
    border: 1px solid rgba(199, 162, 75, 0.62);
    background: rgba(5, 6, 7, 0.26);
  }

  .direction__main,
  .direction__copy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .direction h3 {
    max-width: 100%;
    font-size: clamp(1.8rem, 9.7vw, 2.75rem);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .direction__main {
    grid-column: 1;
    grid-row: 1;
  }

  .direction__subtitle {
    margin-top: 10px;
    font-size: 0.86rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .direction__copy {
    grid-column: 1 / -1;
    font-size: 0.96rem;
    line-height: 1.46;
  }

  .direction__address {
    margin-top: 12px;
    font-size: 0.7em;
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  .contacts__lead {
    max-width: 100%;
    font-size: 0.96rem;
  }

  .contacts__intro .display-title {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 3.25rem);
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .direction__copy {
    grid-column: 1 / -1;
  }

  .contacts__info {
    gap: 36px;
    max-width: 100%;
    overflow: hidden;
  }

  .contact-list a,
  .contact-list p {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 14px;
    font-size: 0.95rem;
  }

  .contact-list__quick {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-list a {
    min-height: 78px;
    padding: 16px;
  }

  .contact-list__quick a {
    min-height: 56px;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    padding: 12px 14px;
    font-size: 0.96rem;
  }

  .legal-main {
    padding-top: 92px;
    background-size:
      48vw 100%,
      100% 96px,
      auto;
  }

  .legal-hero__title {
    font-size: clamp(2.9rem, 15vw, 4.7rem);
    line-height: 0.9;
  }

  #privacyTitle,
  #cookieTitle {
    font-size: clamp(1.45rem, 7.5vw, 2.35rem);
  }

  .legal-document__meta {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 16px;
  }

  .legal-document__section h2 {
    font-size: clamp(1.52rem, 7.4vw, 2.15rem);
    line-height: 1;
  }

  .legal-document__section p,
  .legal-document__section li {
    font-size: 0.97rem;
    line-height: 1.65;
  }

  .site-footer__inner {
    min-height: 84px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__button {
    flex: 1 1 180px;
  }
}

@media (max-width: 380px) {
  .directions-title {
    font-size: clamp(1.65rem, 8.2vw, 2.15rem);
  }

  .direction h3 {
    font-size: clamp(1.62rem, 8.8vw, 2.2rem);
  }

  .direction__copy {
    font-size: 0.9rem;
  }
}

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

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