:root {
  --void: #f3eee5;
  --panel: #fffaf2;
  --ice: #191714;
  --mute: #716a61;
  --line: rgb(51 42 33 / 0.1);
  --signal: #e31b23;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

html { scroll-behavior: smooth; }
html, body { background: var(--void); color: var(--ice); }
[id] { scroll-margin-top: 6rem; }
body {
  font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
  overflow-x: hidden;
}

.font-display { font-family: "Space Grotesk", sans-serif; }
.font-editorial { font-family: "Instrument Serif", Georgia, serif; }
.font-mono { font-family: "IBM Plex Mono", ui-monospace, monospace; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--signal);
  color: #fff;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.02;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.grid-fade {
  background-image:
    linear-gradient(rgb(25 23 20 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(25 23 20 / 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 72%);
}

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  padding: 1.1rem 1.25rem 0;
}

.rail {
  margin-inline: auto;
  max-width: 80rem;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.4rem 0.45rem 0.4rem 0.7rem;
  border: 0;
  border-radius: 999px;
  background: rgb(255 250 242 / 0.9);
  box-shadow:
    0 18px 55px rgb(73 52 31 / 0.13),
    inset 0 1px 0 rgb(255 255 255 / 0.95);
}
@supports (backdrop-filter: blur(18px)) {
  .rail {
    background: rgb(255 250 242 / 0.76);
    backdrop-filter: blur(18px) saturate(130%);
  }
}

.brand-lock {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
}
.brand-lock img {
  width: 2.1rem;
  height: 2.1rem;
  object-fit: contain;
}
.brand-lock span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ice);
}

.nav-links a {
  position: relative;
  color: var(--mute);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 500ms var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--ice); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: var(--signal);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.55rem 0.72rem 1.05rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  transition: transform 500ms var(--ease), background 500ms var(--ease), border-color 500ms var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn-signal { background: var(--signal); color: #fff; }
.btn-signal:hover { background: #c8171e; }
.btn-ghost {
  border: 0;
  background: rgb(255 252 247 / 0.85);
  color: var(--ice);
  box-shadow:
    inset 0 0 0 1px var(--line),
    0 10px 30px rgb(72 50 29 / 0.08);
}
.btn-ghost:hover { background: #fffdf9; }
.media-dark .btn-ghost {
  background: rgb(16 14 12 / 0.28);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.28);
}
.media-dark .btn-ghost:hover { background: rgb(16 14 12 / 0.48); }
.btn-icon {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: rgb(0 0 0 / 0.2);
  transition: transform 500ms var(--ease);
}
.group:hover .btn-icon { transform: translateX(2px) translateY(-1px); }

.menu-btn {
  display: none;
  place-items: center;
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgb(25 23 20 / 0.06);
}
@media (max-width: 1023px) { .menu-btn { display: grid; } }
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 1rem;
  height: 1.2px;
  background: var(--ice);
  transition: transform 500ms var(--ease), opacity 400ms var(--ease);
}
.menu-btn span { position: relative; }
.menu-btn span::before,
.menu-btn span::after { content: ""; position: absolute; left: 0; }
.menu-btn span::before { top: -5px; }
.menu-btn span::after { top: 5px; }
.menu-btn.is-open span { background: transparent; }
.menu-btn.is-open span::before { top: 0; transform: rotate(45deg); }
.menu-btn.is-open span::after { top: 0; transform: rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 1.25rem 2rem;
  background: rgb(243 238 229 / 0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 600ms var(--ease), visibility 600ms var(--ease);
}
@supports (backdrop-filter: blur(24px)) {
  .menu-overlay {
    background: rgb(243 238 229 / 0.84);
    backdrop-filter: blur(24px);
  }
}
.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.menu-overlay a {
  display: block;
  padding: 0.7rem 0;
  color: var(--ice);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 9vw, 3.6rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  transform: translateY(1.4rem);
  opacity: 0;
  transition: transform 700ms var(--ease), opacity 700ms var(--ease);
}
.menu-overlay.is-open a { transform: none; opacity: 1; }
.menu-overlay a:nth-child(1) { transition-delay: 70ms; }
.menu-overlay a:nth-child(2) { transition-delay: 120ms; }
.menu-overlay a:nth-child(3) { transition-delay: 170ms; }
.menu-overlay a:nth-child(4) { transition-delay: 220ms; }
.menu-overlay a:nth-child(5) { transition-delay: 270ms; }
.menu-overlay a:nth-child(6) { transition-delay: 320ms; }

.viewport {
  position: relative;
  padding: 0.4rem;
  border: 0;
  border-radius: 2rem;
  background: rgb(67 50 34 / 0.07);
  box-shadow: 0 28px 70px rgb(75 52 29 / 0.13);
}
.viewport-core {
  position: relative;
  overflow: hidden;
  border-radius: calc(2rem - 0.4rem);
  background: #050506;
  aspect-ratio: 16 / 10;
}
.viewport video,
.viewport img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tick {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--signal);
  border-style: solid;
  pointer-events: none;
}
.tick-tl { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.tick-tr { top: 8px; right: 8px; border-width: 1px 1px 0 0; }
.tick-bl { bottom: 8px; left: 8px; border-width: 0 0 1px 1px; }
.tick-br { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }

.shell {
  padding: 0.35rem;
  border: 0;
  border-radius: 2rem;
  background: rgb(75 57 40 / 0.07);
  box-shadow: 0 28px 70px rgb(77 54 31 / 0.1);
}
.shell-core {
  overflow: hidden;
  border-radius: calc(2rem - 0.35rem);
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.95);
}

.field {
  width: 100%;
  border: 1px solid var(--line);
  background: #f6f0e7;
  color: var(--ice);
  padding: 0.85rem 0.95rem;
  border-radius: 0.85rem;
  outline: none;
  transition: border-color 400ms var(--ease);
}
.field::placeholder { color: #958b7f; }
.field:focus { border-color: var(--signal); }

.reveal { opacity: 1; }
html.js .reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
html.js .reveal.is-in { opacity: 1; transform: none; }

.img-zoom { transition: transform 900ms var(--ease); }
.group:hover .img-zoom { transform: scale(1.04); }

.spot {
  --mx: 60%;
  --my: 40%;
}
.spot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgb(227 27 35 / 0.12), transparent 55%);
}

.cream-section {
  color: var(--ice);
}
.cream-section .text-white,
footer .text-white {
  color: var(--ice) !important;
}
.cream-section .text-ice,
footer .text-ice {
  color: var(--ice) !important;
}
.cream-section .text-mute,
footer .text-mute {
  color: var(--mute) !important;
}
.cream-section [class*="border-white"],
footer[class*="border-white"] {
  border-color: var(--line) !important;
}
.cream-section.bg-panel {
  background: #ebe3d7 !important;
}

.proof-strip {
  position: relative;
  z-index: 4;
  margin-top: -2.2rem;
  padding-block: 0;
  border: 0 !important;
}
.proof-grid {
  padding: 2rem;
  border-radius: 2rem;
  background: rgb(255 252 247 / 0.96);
  box-shadow:
    0 32px 80px rgb(74 51 28 / 0.14),
    inset 0 1px 0 #fff;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--signal);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-kicker::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: currentColor;
}

.mix-section {
  position: relative;
  overflow: hidden;
}
.mix-section::before {
  content: "";
  position: absolute;
  width: 36rem;
  height: 36rem;
  right: -18rem;
  top: 5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(227 27 35 / 0.08), transparent 68%);
  pointer-events: none;
}
.mix-intro {
  position: relative;
  display: grid;
  gap: 1.5rem;
}
.mix-intro h2 {
  max-width: 13ch;
  text-wrap: balance;
}
.mix-intro-copy {
  max-width: 32rem;
  align-self: end;
}
.mix-bento {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(18rem, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}
.mix-shell {
  min-width: 0;
  padding: 0.42rem;
  border-radius: 2.65rem;
  background: rgb(74 55 36 / 0.08);
  box-shadow: 0 35px 80px rgb(76 53 29 / 0.13);
}
.mix-shell--main {
  grid-column: span 7;
  grid-row: span 2;
}
.mix-shell--side { grid-column: span 5; }
.mix-card {
  position: relative;
  height: 100%;
  min-height: 18rem;
  overflow: hidden;
  border-radius: calc(2.65rem - 0.42rem);
  isolation: isolate;
  background: #fffaf2;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.95);
}
.mix-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.mix-shell:hover .mix-card img { transform: scale(1.035); }
.mix-card--main img {
  position: absolute;
  inset: 0;
}
.mix-card--main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 25%, rgb(18 15 12 / 0.84) 100%);
}
.mix-card-copy {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.mix-card--main .mix-card-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  padding: clamp(2rem, 5vw, 3.25rem);
}
.mix-card--side {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}
.mix-card--side .mix-image {
  min-height: 100%;
  overflow: hidden;
}
.mix-card--side .mix-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.mix-card--dark {
  background: #1c1916;
  color: #fff;
}
.mix-number {
  margin-bottom: auto;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.68;
}
.mix-card h3 {
  margin-top: 2rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}
.mix-card p:last-child {
  max-width: 31rem;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.75;
}
.mix-spec {
  display: inline-flex;
  width: max-content;
  margin-bottom: 1.1rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: var(--signal);
  color: #fff;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.origin-section {
  padding: clamp(7rem, 12vw, 11rem) 1rem;
}
.origin-wrap,
.service-wrap,
.crew-wrap,
.dispatch-wrap {
  max-width: 80rem;
  margin-inline: auto;
}
.origin-intro {
  max-width: 59rem;
}
.origin-intro h2,
.service-intro h2,
.project-reel-head h2,
.crew-copy h2 {
  color: var(--ice);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-wrap: balance;
}
.origin-intro p,
.service-intro p,
.project-reel-head p {
  max-width: 37rem;
  margin-top: 1.5rem;
  color: var(--mute);
  font-size: 1rem;
  line-height: 1.7;
}
.origin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr);
  gap: clamp(3rem, 8vw, 8rem);
  margin-top: clamp(4.5rem, 9vw, 8rem);
  align-items: start;
}
.origin-visual {
  position: sticky;
  top: 7.5rem;
  min-height: 41rem;
}
.origin-photo {
  position: absolute;
  overflow: hidden;
  background: #ded5c8;
  box-shadow: 0 35px 90px rgb(72 49 27 / 0.16);
}
.origin-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.origin-visual:hover .origin-photo--front img { transform: scale(1.025); }
.origin-photo--front {
  inset: 0 18% 11% 0;
  z-index: 2;
  border-radius: 3.2rem;
}
.origin-photo--back {
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 43%;
  height: 47%;
  border: 0.45rem solid var(--void);
  border-radius: 2.5rem;
}
.origin-fleet {
  position: absolute;
  top: 2.5rem;
  right: -0.5rem;
  z-index: 4;
  display: flex;
  width: 10rem;
  flex-direction: column;
  color: var(--signal);
}
.origin-fleet strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(5rem, 9vw, 8.25rem);
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.72;
}
.origin-fleet span {
  margin-top: 1.15rem;
  color: var(--ice);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.origin-chapter {
  min-height: 22rem;
  padding: 2rem 0 5rem;
  border-bottom: 1px solid var(--line);
}
.origin-chapter:first-child { padding-top: 0; }
.origin-chapter:last-child {
  min-height: 0;
  border-bottom: 0;
}
.origin-chapter time {
  display: block;
  margin-bottom: 2rem;
  color: var(--signal);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}
.origin-chapter h3 {
  max-width: 11ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
}
.origin-chapter p {
  max-width: 28rem;
  margin-top: 1.35rem;
  color: var(--mute);
  line-height: 1.7;
}

.operation-film-section {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 12vw, 11rem) 1rem;
  background:
    radial-gradient(circle at 85% 10%, rgb(227 27 35 / 0.12), transparent 28rem),
    #121110;
  color: #fffaf2;
}
.operation-film-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.025) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
  pointer-events: none;
}
.operation-film-wrap {
  position: relative;
  width: min(100%, 80rem);
  margin-inline: auto;
}
.operation-film-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
}
.operation-film-head h2 {
  max-width: 12ch;
  margin-top: 1.25rem;
  color: #fffaf2;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}
.operation-film-head > p {
  max-width: 35rem;
  color: rgb(255 250 242 / 0.62);
  font-size: 0.95rem;
  line-height: 1.75;
}
.operation-film-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(22rem, 0.75fr);
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.operation-film-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  grid-template-columns: minmax(11rem, 0.95fr) minmax(0, 1.05fr);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 1.4rem;
  background: #1b1917;
  box-shadow: 0 2rem 5rem rgb(0 0 0 / 0.22);
}
.operation-film-card--feature {
  display: block;
  grid-row: span 2;
}
.operation-film-media {
  position: relative;
  min-height: 16rem;
  overflow: hidden;
  background: #080808;
}
.operation-film-card--feature .operation-film-media {
  min-height: 0;
  aspect-ratio: 16 / 10;
}
.operation-film-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.operation-film-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
}
.operation-film-card--feature .operation-film-copy {
  min-height: 12rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.operation-film-copy > span {
  color: #ff6b70;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.operation-film-copy h3 {
  margin-top: 0.85rem;
  color: #fffaf2;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.operation-film-card--feature .operation-film-copy h3 {
  max-width: 17ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.operation-film-copy p {
  max-width: 34rem;
  margin-top: 0.85rem;
  color: rgb(255 250 242 / 0.58);
  font-size: 0.75rem;
  line-height: 1.55;
}
@media (max-width: 1023px) {
  .operation-film-grid {
    grid-template-columns: 1fr;
  }
  .operation-film-card--feature {
    grid-row: auto;
  }
  .operation-film-card:not(.operation-film-card--feature) {
    grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
  }
}

.service-section {
  padding: clamp(7rem, 12vw, 11rem) 1rem;
  background: #eae2d6;
}
.service-intro {
  max-width: 55rem;
}
.service-intro h2 { max-width: 13ch; }
.service-switcher {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 7vw, 7rem);
  margin-top: clamp(4rem, 7vw, 6rem);
  align-items: center;
}
.service-tabs {
  display: flex;
  flex-direction: column;
}
.service-tab {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgb(51 42 33 / 0.14);
  color: var(--mute);
  text-align: left;
  transition: color 650ms var(--ease), transform 650ms var(--ease);
}
.service-tab::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 650ms var(--ease);
}
.service-tab:first-child { border-top: 1px solid rgb(51 42 33 / 0.14); }
.service-tab strong {
  display: block;
  color: currentColor;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}
.service-tab small {
  display: block;
  max-width: 25rem;
  margin-top: 0.45rem;
  font-size: 0.83rem;
  line-height: 1.5;
}
.service-tab i {
  flex: 0 0 auto;
  font-size: 1.35rem;
  opacity: 0;
  transform: translate(-0.75rem, 0.75rem);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.service-tab:hover,
.service-tab.is-active {
  color: var(--ice);
}
.service-tab.is-active::before { transform: scaleX(1); }
.service-tab.is-active i {
  opacity: 1;
  transform: none;
}
.service-media {
  position: relative;
  min-height: 39rem;
  overflow: hidden;
  border-radius: 3.25rem;
  background: #d9d0c3;
  box-shadow: 0 40px 90px rgb(73 50 27 / 0.16);
}
.service-panel {
  position: absolute;
  inset: 0;
  margin: 0;
}
.service-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (prefers-reduced-motion: no-preference) {
  .service-panel.is-active {
    animation: service-in 850ms var(--ease) both;
  }
}
@keyframes service-in {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: none; }
}

.journey-section {
  padding: clamp(7rem, 12vw, 11rem) 1rem;
  background: #f3eee5;
}
.journey-wrap {
  width: min(100%, 80rem);
  margin-inline: auto;
}
.journey-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.journey-head h2 {
  max-width: 12ch;
  margin-top: 1.25rem;
  color: var(--ice);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}
.journey-head > p {
  max-width: 35rem;
  color: var(--mute);
  font-size: 0.95rem;
  line-height: 1.75;
}
.journey-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.journey-step {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 8rem);
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
}
.journey-step:nth-child(even) {
  grid-template-columns: minmax(0, 1.28fr) minmax(17rem, 0.72fr);
}
.journey-step:nth-child(even) .journey-step-copy {
  order: 2;
}
.journey-step:nth-child(even) .journey-media {
  order: 1;
}
.journey-step-copy > span {
  color: var(--signal);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.journey-step-copy h3 {
  max-width: 10ch;
  margin-top: 1rem;
  color: var(--ice);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.96;
}
.journey-step-copy p {
  max-width: 29rem;
  margin-top: 1.3rem;
  color: var(--mute);
  font-size: 0.9rem;
  line-height: 1.7;
}
.journey-step-copy small {
  display: block;
  margin-top: 2rem;
  color: #91877b;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.journey-media {
  margin: 0;
  padding: 0.4rem;
  border-radius: 2.8rem;
  background: rgb(76 56 37 / 0.07);
  box-shadow: 0 2.5rem 5.5rem rgb(73 50 27 / 0.13);
}
.journey-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(2.8rem - 0.4rem);
  background: #111;
  object-fit: cover;
}

.project-reel-section {
  overflow: hidden;
  padding: clamp(7rem, 12vw, 11rem) 0;
}
.project-reel-head {
  display: flex;
  max-width: 80rem;
  margin-inline: auto;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  padding-inline: 1rem;
}
.project-reel-head h2 { max-width: 11ch; }
.project-reel-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.project-reel-actions button {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  background: #fffaf2;
  color: var(--ice);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform 500ms var(--ease), background 500ms var(--ease);
}
.project-reel-actions button:hover {
  background: #fff;
  transform: translateY(-2px);
}
.project-reel-actions button:active { transform: scale(0.96); }
.project-reel-actions a {
  margin-left: 0.65rem;
  color: var(--ice);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgb(25 23 20 / 0.22);
  text-underline-offset: 0.35rem;
}
.project-track {
  display: flex;
  gap: 1.5rem;
  margin-top: 4rem;
  padding-inline: max(1rem, calc((100vw - 80rem) / 2));
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.project-track::-webkit-scrollbar { display: none; }
.project-slide {
  flex: 0 0 min(72vw, 58rem);
  scroll-snap-align: start;
}
.project-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 3rem;
  object-fit: cover;
  box-shadow: 0 35px 80px rgb(72 50 28 / 0.13);
  transition: transform 900ms var(--ease);
}
.project-slide:hover img { transform: scale(0.99); }
.project-slide > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.65fr);
  gap: 2rem;
  padding: 1.5rem 0.5rem 0;
}
.project-slide h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}
.project-slide p {
  align-self: end;
  color: var(--mute);
  font-size: 0.9rem;
  line-height: 1.6;
}

.night-flight-section {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 12vw, 11rem) 1rem;
  background:
    radial-gradient(circle at 12% 75%, rgb(227 27 35 / 0.16), transparent 26rem),
    #121110;
  color: #fffaf2;
}
.night-flight-wrap {
  display: grid;
  width: min(100%, 80rem);
  margin-inline: auto;
  grid-template-columns: minmax(19rem, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}
.night-flight-copy h2 {
  max-width: 10ch;
  margin-top: 1.25rem;
  color: #fffaf2;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}
.night-flight-copy > p {
  max-width: 31rem;
  margin-top: 1.5rem;
  color: rgb(255 250 242 / 0.62);
  font-size: 0.9rem;
  line-height: 1.75;
}
.night-flight-proof {
  display: grid;
  margin-block: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block: 1px solid rgb(255 255 255 / 0.12);
}
.night-flight-proof span {
  display: grid;
  gap: 0.35rem;
  padding-block: 1.25rem;
  color: rgb(255 250 242 / 0.5);
  font-size: 0.64rem;
  line-height: 1.4;
}
.night-flight-proof span + span {
  padding-left: 1.25rem;
  border-left: 1px solid rgb(255 255 255 / 0.12);
}
.night-flight-proof strong {
  color: #fffaf2;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}
.night-flight-media {
  position: relative;
  margin: 0;
  padding: 0.42rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 3.1rem;
  background: rgb(255 255 255 / 0.055);
  box-shadow: 0 3rem 7rem rgb(0 0 0 / 0.32);
}
.night-flight-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: calc(3.1rem - 0.42rem);
  background: #050505;
  object-fit: cover;
}
.night-flight-media figcaption {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 0.85rem;
  background: rgb(13 12 11 / 0.72);
  color: #fffaf2;
  backdrop-filter: blur(12px);
}
.night-flight-media figcaption span {
  color: #ff7378;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.night-flight-media figcaption strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
}
@media (max-width: 1023px) {
  .night-flight-wrap {
    grid-template-columns: 1fr;
  }
}

.crew-section {
  padding: clamp(7rem, 12vw, 11rem) 1rem;
}
.crew-wrap {
  position: relative;
  max-width: 80rem;
  margin-inline: auto;
}
.crew-image {
  width: 100%;
  overflow: hidden;
  border-radius: 3.5rem;
  box-shadow: 0 40px 95px rgb(74 51 29 / 0.15);
}
.crew-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 55%;
}
.crew-copy {
  position: relative;
  z-index: 1;
  width: min(34rem, calc(100% - 2rem));
  margin: -4.5rem 1rem 0 auto;
  padding: clamp(1.8rem, 3.4vw, 2.8rem);
  border-radius: 2.75rem;
  background: var(--signal);
  color: #fff;
  box-shadow: 0 35px 75px rgb(151 25 30 / 0.25);
}
.crew-copy h2 {
  color: #fff;
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
}
.crew-copy p {
  margin-top: 1.35rem;
  color: rgb(255 255 255 / 0.8);
  line-height: 1.65;
}
.crew-copy .btn {
  margin-top: 2rem;
  background: #fffaf2;
  color: var(--ice);
  box-shadow: none;
}

.dispatch-section {
  padding: clamp(7rem, 11vw, 10rem) 1rem;
}
.dispatch-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(19rem, 0.7fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(2rem, 6vw, 5.5rem);
  border-radius: 3.5rem;
  background: #1c1916;
  color: #fff;
  box-shadow: 0 38px 90px rgb(70 47 24 / 0.2);
}
.dispatch-main > p {
  color: rgb(255 255 255 / 0.62);
  font-size: 0.9rem;
}
.dispatch-main h2 {
  margin-top: 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.9;
}
.dispatch-main > a {
  display: inline-block;
  margin-top: 2.75rem;
  color: var(--signal);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 4vw, 3.35rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}
.dispatch-details {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.dispatch-details > div {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.13);
}
.dispatch-details > div:last-child { border-bottom: 0; }
.dispatch-details span {
  display: block;
  margin-bottom: 0.55rem;
  color: rgb(255 255 255 / 0.46);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dispatch-details a,
.dispatch-details p {
  color: rgb(255 255 255 / 0.86);
  font-size: 0.9rem;
  line-height: 1.6;
}

.project-archive {
  padding: 2rem 1rem clamp(7rem, 12vw, 11rem);
}
.project-archive-grid {
  display: grid;
  max-width: 80rem;
  margin-inline: auto;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(4rem, 8vw, 8rem) 1.5rem;
  align-items: start;
}
.archive-piece--wide { grid-column: 1 / span 8; }
.archive-piece--tall {
  grid-column: 9 / span 4;
  margin-top: 9rem;
}
.archive-piece--compact { grid-column: 2 / span 5; }
.archive-piece--landscape {
  grid-column: 7 / span 6;
  margin-top: 6rem;
}
.archive-piece figure {
  overflow: hidden;
  border-radius: 2.8rem;
  background: #ded5c8;
  box-shadow: 0 35px 80px rgb(71 49 27 / 0.13);
}
.archive-piece img {
  width: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.archive-piece:hover img { transform: scale(1.025); }
.archive-piece--wide img { aspect-ratio: 16 / 10; }
.archive-piece--tall img { aspect-ratio: 4 / 5; }
.archive-piece--compact img { aspect-ratio: 4 / 3; }
.archive-piece--landscape img { aspect-ratio: 16 / 10; }
.archive-piece > div {
  padding: 1.5rem 0.5rem 0;
}
.archive-piece h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}
.archive-piece p {
  max-width: 31rem;
  margin-top: 0.75rem;
  color: var(--mute);
  font-size: 0.9rem;
  line-height: 1.6;
}

.people-section {
  padding: clamp(7rem, 12vw, 11rem) 1rem;
}
.people-wrap,
.contact-layout {
  max-width: 80rem;
  margin-inline: auto;
}
.people-intro {
  max-width: 57rem;
}
.people-intro h2,
.contact-copy h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-wrap: balance;
}
.people-intro p {
  max-width: 37rem;
  margin-top: 1.5rem;
  color: var(--mute);
  line-height: 1.7;
}
.people-gallery {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
  margin-top: clamp(4rem, 8vw, 7rem);
  align-items: center;
}
.people-list {
  display: flex;
  flex-direction: column;
}
.people-tab {
  position: relative;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--mute);
  text-align: left;
  transition: color 500ms var(--ease), padding 500ms var(--ease);
}
.people-tab::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.4rem;
  height: 2px;
  background: var(--signal);
  opacity: 0;
  transform: translate(-0.75rem, -50%);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.people-tab strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}
.people-tab small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
}
.people-tab:hover,
.people-tab.is-active {
  color: var(--ice);
}
.people-tab.is-active {
  padding-left: 2.1rem;
}
.people-tab.is-active::before {
  opacity: 1;
  transform: translate(0, -50%);
}
.people-stage {
  position: relative;
  min-height: 47rem;
  overflow: hidden;
  border-radius: 3.5rem;
  background: #e0d8cc;
  box-shadow: 0 40px 90px rgb(72 49 27 / 0.16);
}
.people-panel {
  position: absolute;
  inset: 0;
  margin: 0;
}
.people-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
@media (prefers-reduced-motion: no-preference) {
  .people-panel.is-active {
    animation: service-in 850ms var(--ease) both;
  }
}

.contact-section {
  padding: clamp(7rem, 12vw, 11rem) 1rem;
  background: #eae2d6;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}
.contact-copy h2 { max-width: 10ch; }
.contact-phone {
  display: inline-block;
  margin-top: 2rem;
  color: var(--signal);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
}
.contact-copy > p {
  margin-top: 2rem;
  color: var(--mute);
  font-size: 0.9rem;
}
.contact-copy > a:not(.contact-phone) {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--ice);
  font-size: 0.9rem;
  text-decoration: underline;
  text-decoration-color: rgb(25 23 20 / 0.2);
  text-underline-offset: 0.3rem;
}
.contact-direct {
  display: grid;
  max-width: 32rem;
  margin-top: 3rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.contact-direct p {
  padding-top: 1rem;
  border-top: 1px solid rgb(51 42 33 / 0.15);
}
.contact-direct span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--mute);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-direct a {
  color: var(--ice);
  font-size: 0.82rem;
  line-height: 1.5;
}
.contact-form {
  padding: 0.45rem;
  border-radius: 3.2rem;
  background: rgb(68 49 31 / 0.07);
  box-shadow: 0 35px 85px rgb(72 50 29 / 0.13);
}
.contact-form-inner {
  padding: clamp(1.75rem, 4vw, 3.25rem);
  border-radius: calc(3.2rem - 0.45rem);
  background: #fffaf2;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.95);
}
.contact-form .field {
  background: #f2ebe1;
}

.document-hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 1rem 7rem;
}
.document-hero::before {
  content: "";
  position: absolute;
  width: 38rem;
  height: 38rem;
  left: -16rem;
  top: -14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(227 27 35 / 0.1), transparent 68%);
}
.document-layout {
  position: relative;
  display: grid;
  max-width: 80rem;
  min-height: 38rem;
  margin-inline: auto;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}
.document-copy h1 {
  text-wrap: balance;
}
.document-visual {
  transform: rotate(1.5deg);
}
.document-visual img {
  width: 100%;
  height: 34rem;
  object-fit: cover;
}

.credit-flow-section {
  isolation: isolate;
}
.credit-flow-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(42rem, 82vw);
  aspect-ratio: 1;
  right: -17rem;
  top: 3rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(227 27 35 / 0.08), transparent 69%);
}
.credit-flow-step {
  transition: padding 350ms var(--ease), background 350ms var(--ease);
}
.credit-flow-step:hover {
  padding-inline: 1rem;
  background: rgb(255 250 242 / 0.5);
}
.credit-flow-preview {
  position: relative;
  overflow: hidden;
  border-radius: 1rem 3.2rem 1rem 3.2rem;
  box-shadow: 0 35px 80px rgb(64 42 24 / 0.18);
}
.credit-flow-preview::after {
  content: "";
  position: absolute;
  width: 13rem;
  height: 13rem;
  right: -6rem;
  bottom: -7rem;
  border: 1px solid rgb(255 250 242 / 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 2.5rem rgb(255 250 242 / 0.035);
  pointer-events: none;
}

.online-application-section {
  padding: clamp(6rem, 10vw, 10rem) 1rem;
  background:
    linear-gradient(rgb(25 23 20 / 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgb(25 23 20 / 0.025) 1px, transparent 1px),
    #eae2d6;
  background-size: 5rem 5rem;
}
.online-application-wrap {
  width: min(100%, 80rem);
  margin-inline: auto;
}
.online-application-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.online-application-intro h2 {
  max-width: 12ch;
  margin-top: 1.25rem;
  color: var(--ice);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}
.online-application-note {
  padding: 1.35rem;
  border: 1px solid rgb(227 27 35 / 0.15);
  border-radius: 1.4rem;
  background: rgb(255 250 242 / 0.72);
}
.online-application-note > span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--signal);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.online-application-note p {
  margin-top: 0.8rem;
  color: var(--mute);
  font-size: 0.8rem;
  line-height: 1.65;
}
.online-application-form {
  width: min(100%, 68rem);
  margin-left: auto;
  padding: clamp(1.25rem, 4vw, 3.5rem);
  border-radius: 1.2rem 4rem 1.2rem 4rem;
  background: #fffaf2;
  box-shadow: 0 2.5rem 6rem rgb(66 45 25 / 0.14);
}
.online-application-form-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
.online-application-form-head p {
  color: var(--signal);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.online-application-form-head h3 {
  margin-top: 0.55rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}
.online-application-form-head > span {
  color: var(--mute);
  font-size: 0.7rem;
}
.online-application-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--signal);
  font-size: 0.76rem;
}
.online-application-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 2.5rem 0;
  border: 0;
}
.online-application-form fieldset + fieldset {
  border-top: 1px solid var(--line);
}
.online-application-form legend {
  margin-bottom: 1.5rem;
  color: var(--ice);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.online-application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}
.online-application-field {
  display: grid;
  min-width: 0;
  gap: 0.55rem;
}
.online-application-field--wide {
  grid-column: 1 / -1;
}
.online-application-field > span {
  color: #4d463e;
  font-size: 0.74rem;
  font-weight: 600;
}
.online-application-field :where(input, select, textarea) {
  width: 100%;
  min-width: 0;
  border: 1px solid rgb(51 42 33 / 0.13);
  border-radius: 1rem;
  outline: none;
  background: #f2ebe1;
  color: var(--ice);
  font: inherit;
  font-size: 0.88rem;
  transition: border-color 250ms var(--ease), background 250ms var(--ease), box-shadow 250ms var(--ease);
}
.online-application-field :where(input, select) {
  min-height: 3.35rem;
  padding: 0.75rem 0.9rem;
}
.online-application-field textarea {
  min-height: 7rem;
  padding: 0.9rem;
  line-height: 1.55;
  resize: vertical;
}
.online-application-field :where(input, select, textarea):focus {
  border-color: var(--signal);
  background: #fffdf9;
  box-shadow: 0 0 0 4px rgb(227 27 35 / 0.09);
}
.online-application-field :where(input, select, textarea)[aria-invalid="true"] {
  border-color: var(--signal);
  box-shadow: 0 0 0 4px rgb(227 27 35 / 0.09);
}
.online-signature-block {
  margin-top: 0.5rem !important;
  padding: clamp(1.5rem, 4vw, 2.5rem) !important;
  border: 0 !important;
  border-radius: 1rem 3rem 1rem 3rem;
  background: #191714;
  color: #fffaf2;
}
.online-signature-block legend {
  float: left;
  width: 100%;
  color: #fffaf2;
}
.online-signature-block legend + * {
  clear: both;
}
.online-signature-block > p {
  max-width: 42rem;
  margin-bottom: 1.5rem;
  color: rgb(255 250 242 / 0.62);
  font-size: 0.78rem;
  line-height: 1.6;
}
.online-signature-block .online-application-field > span {
  color: rgb(255 250 242 / 0.72);
}
.online-signature-block .online-application-field :where(input, select) {
  border-color: rgb(255 255 255 / 0.12);
  background: rgb(255 255 255 / 0.08);
  color: #fffaf2;
}
.online-signature-block .online-application-field :where(input, select):focus {
  border-color: var(--signal);
  background: rgb(255 255 255 / 0.12);
}
.online-application-check {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 1.5rem;
  color: rgb(255 250 242 / 0.72);
  font-size: 0.78rem;
  line-height: 1.55;
}
.online-application-check input {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 1.1rem;
  margin-top: 0.12rem;
  accent-color: var(--signal);
}
.online-application-submit {
  display: flex;
  width: 100%;
  min-height: 3.7rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 0.6rem 0.7rem 0.6rem 1.3rem;
  border: 0;
  border-radius: 999px;
  background: var(--signal);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 300ms var(--ease), transform 300ms var(--ease);
}
.online-application-submit i {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  background: rgb(0 0 0 / 0.18);
}
.online-application-submit:hover {
  background: #c8171e;
  transform: translateY(-1px);
}
.online-application-success {
  padding: clamp(2rem, 6vw, 5rem);
  border-radius: 1rem 3rem 1rem 3rem;
  outline: none;
  background: #191714;
  color: #fffaf2;
  text-align: center;
}
.online-application-success > span {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  margin-inline: auto;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
  font-size: 1.4rem;
}
.online-application-success > p:first-of-type {
  margin-top: 1.5rem;
  color: #ff777c;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.online-application-success h3 {
  max-width: 14ch;
  margin: 0.75rem auto 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.online-application-success h3 + p {
  max-width: 38rem;
  margin: 1rem auto 0;
  color: rgb(255 250 242 / 0.65);
  font-size: 0.82rem;
  line-height: 1.6;
}
.online-application-success > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.online-application-success [data-application-reset] {
  min-height: 3.1rem;
  padding-inline: 1.2rem;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 999px;
  background: transparent;
  color: #fffaf2;
  font-size: 0.78rem;
  font-weight: 600;
}

.wholesale-capability-strip {
  padding: 1rem;
  background: #f3eee5;
}
.wholesale-capability-strip > div {
  display: grid;
  width: min(100%, 80rem);
  margin-inline: auto;
  overflow: hidden;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: rgb(255 250 242 / 0.72);
}
.wholesale-capability-strip article {
  display: flex;
  min-height: 7rem;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem;
}
.wholesale-capability-strip article + article {
  border-left: 1px solid var(--line);
}
.wholesale-capability-strip article > i {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 2.8rem;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
  color: #fff;
  font-size: 1.2rem;
}
.wholesale-capability-strip article p {
  display: grid;
  gap: 0.3rem;
}
.wholesale-capability-strip article strong {
  color: var(--ice);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
}
.wholesale-capability-strip article span {
  color: var(--mute);
  font-size: 0.7rem;
  line-height: 1.5;
}
.wholesale-request-form {
  width: min(100%, 76rem);
}
.wholesale-fieldset-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: -0.8rem;
  margin-bottom: 1.25rem;
}
.wholesale-fieldset-head > p,
.wholesale-fieldset-copy {
  max-width: 46rem;
  color: var(--mute);
  font-size: 0.76rem;
  line-height: 1.6;
}
.wholesale-fieldset-head button,
.wholesale-material-row-head button {
  display: inline-flex;
  min-height: 2.55rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding-inline: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ice);
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
}
.wholesale-fieldset-head button:hover,
.wholesale-material-row-head button:hover {
  border-color: rgb(227 27 35 / 0.35);
  color: var(--signal);
}
.wholesale-fieldset-head button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.wholesale-material-rows {
  display: grid;
  gap: 0.85rem;
}
.wholesale-material-row {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: #f7f0e6;
}
.wholesale-material-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.wholesale-material-row-head > span {
  color: var(--signal);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}
.wholesale-material-row-head button {
  min-height: 2.2rem;
  padding-inline: 0.75rem;
  color: var(--mute);
  font-size: 0.64rem;
}
.wholesale-material-grid {
  display: grid;
  grid-template-columns: minmax(11rem, 1fr) minmax(14rem, 1.4fr) minmax(7rem, 0.55fr) minmax(8rem, 0.65fr);
  gap: 0.85rem;
}
.wholesale-labor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.wholesale-labor-grid label {
  position: relative;
  cursor: pointer;
}
.wholesale-labor-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.wholesale-labor-grid label > span {
  display: grid;
  min-height: 9.25rem;
  align-content: start;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: #f2ebe1;
  transition: border-color 250ms var(--ease), background 250ms var(--ease), transform 250ms var(--ease);
}
.wholesale-labor-grid label:hover > span {
  transform: translateY(-2px);
}
.wholesale-labor-grid input:focus-visible + span {
  outline: 3px solid rgb(227 27 35 / 0.22);
  outline-offset: 3px;
}
.wholesale-labor-grid input:checked + span {
  border-color: rgb(227 27 35 / 0.45);
  background: rgb(227 27 35 / 0.07);
}
.wholesale-labor-grid i {
  color: var(--signal);
  font-size: 1.4rem;
}
.wholesale-labor-grid strong {
  margin-top: 1rem;
  color: var(--ice);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
}
.wholesale-labor-grid small {
  margin-top: 0.35rem;
  color: var(--mute);
  font-size: 0.67rem;
  line-height: 1.45;
}
.wholesale-notes {
  margin-top: 1rem;
}
.wholesale-confirmation {
  margin-top: 0.5rem !important;
}
.online-application-status.is-error {
  color: #b90f16;
}
.wholesale-request-success [data-wholesale-copy],
.wholesale-request-success [data-wholesale-reset] {
  min-height: 3.1rem;
  padding-inline: 1.2rem;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 999px;
  background: transparent;
  color: #fffaf2;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

footer {
  color: var(--ice);
  background: #eae2d6;
  border-color: var(--line) !important;
}

@media (min-width: 768px) {
  .mix-intro {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    align-items: end;
  }
}
@media (min-width: 1024px) {
  .proof-grid > div + div {
    border-left: 1px solid var(--line);
    padding-left: 2rem;
  }
}
@media (max-width: 767px) {
  .proof-strip { margin-top: -1.25rem; }
  .proof-grid { padding: 1.5rem; }
  .mix-bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .mix-shell--main,
  .mix-shell--side {
    grid-column: 1;
    grid-row: auto;
  }
  .mix-card--main { min-height: 32rem; }
  .mix-card--side {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .mix-card--side .mix-image { height: 13rem; }
  .mix-card-copy { padding: 1.6rem; }
  .document-hero { padding: 8rem 1rem 5rem; }
  .document-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .document-visual { transform: none; }
  .document-visual img { height: 25rem; }
  .credit-flow-step:hover { padding-inline: 0; }
  .credit-flow-preview { border-radius: 0.9rem 2.4rem 0.9rem 2.4rem; }
  .online-application-section { padding-block: 5rem; }
  .online-application-intro { grid-template-columns: 1fr; gap: 2rem; }
  .wholesale-capability-strip > div,
  .wholesale-material-grid,
  .wholesale-labor-grid {
    grid-template-columns: 1fr;
  }
  .wholesale-capability-strip article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .wholesale-fieldset-head {
    display: grid;
  }
  .wholesale-fieldset-head button {
    width: 100%;
  }
  .online-application-form {
    padding: 1rem;
    border-radius: 0.9rem 2.4rem 0.9rem 2.4rem;
  }
  .online-application-form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.75rem 0.5rem 1.5rem;
  }
  .online-application-form fieldset { padding: 2rem 0.5rem; }
  .online-application-grid { grid-template-columns: 1fr; }
  .online-application-field--wide { grid-column: 1; }
  .online-signature-block {
    padding: 1.5rem !important;
    border-radius: 0.8rem 2.2rem 0.8rem 2.2rem;
  }
  .online-application-success {
    border-radius: 0.8rem 2.2rem 0.8rem 2.2rem;
  }
  .origin-section,
  .operation-film-section,
  .service-section,
  .journey-section,
  .project-reel-section,
  .night-flight-section,
  .crew-section,
  .dispatch-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .origin-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3.5rem;
  }
  .origin-visual {
    position: relative;
    top: auto;
    min-height: 31rem;
  }
  .origin-photo--front { inset: 0 12% 10% 0; }
  .origin-photo--back {
    width: 45%;
    height: 42%;
  }
  .origin-fleet {
    top: 1.5rem;
    right: 0;
  }
  .origin-fleet strong { font-size: 5rem; }
  .origin-chapter {
    min-height: 0;
    padding: 2.5rem 0;
  }
  .operation-film-head {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .operation-film-card:not(.operation-film-card--feature) {
    grid-template-columns: 1fr;
  }
  .operation-film-card .operation-film-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .operation-film-card .operation-film-copy {
    min-height: 10rem;
    padding: 1.5rem;
  }
  .journey-head {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .journey-step,
  .journey-step:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .journey-step .journey-step-copy {
    order: 2;
  }
  .journey-step .journey-media {
    order: 1;
  }
  .journey-media {
    border-radius: 2rem;
  }
  .journey-media video {
    border-radius: calc(2rem - 0.4rem);
  }
  .service-switcher {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
  }
  .service-media {
    min-height: 28rem;
    order: -1;
    border-radius: 2.5rem;
  }
  .service-tab { padding: 1.35rem 0; }
  .project-reel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
  }
  .project-slide { flex-basis: 88vw; }
  .project-slide img { border-radius: 2.25rem; }
  .project-slide > div {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .night-flight-proof {
    grid-template-columns: 1fr;
  }
  .night-flight-proof span + span {
    padding-left: 0;
    border-top: 1px solid rgb(255 255 255 / 0.12);
    border-left: 0;
  }
  .night-flight-media {
    border-radius: 2rem;
  }
  .night-flight-media video {
    border-radius: calc(2rem - 0.42rem);
  }
  .night-flight-media figcaption {
    top: 1rem;
    right: 1rem;
  }
  .crew-section { padding-bottom: 6rem; }
  .crew-image {
    width: 100%;
    border-radius: 2.5rem;
  }
  .crew-image img {
    aspect-ratio: 4 / 3;
    object-position: center 48%;
  }
  .crew-copy {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 1.5rem);
    margin: -2.5rem auto 0;
    border-radius: 2.25rem;
  }
  .dispatch-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
    border-radius: 2.5rem;
  }
  .project-archive-grid {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }
  .archive-piece--wide,
  .archive-piece--tall,
  .archive-piece--compact,
  .archive-piece--landscape {
    grid-column: 1;
    margin-top: 0;
  }
  .archive-piece figure { border-radius: 2.25rem; }
  .people-section,
  .contact-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .people-gallery,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .people-stage {
    min-height: 32rem;
    order: -1;
    border-radius: 2.5rem;
  }
  .people-list {
    flex-direction: row;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .people-list::-webkit-scrollbar { display: none; }
  .people-tab {
    flex: 0 0 14rem;
    scroll-snap-align: start;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background: #fffaf2;
  }
  .people-tab.is-active { padding-left: 1rem; }
  .people-tab::before { display: none; }
  .contact-direct { grid-template-columns: 1fr; }
  .contact-form { border-radius: 2.5rem; }
  .contact-form-inner { border-radius: calc(2.5rem - 0.45rem); }
}
@media (max-width: 359px) {
  .site-header { padding-inline: 0.75rem; }
  .rail { gap: 0.55rem; }
  .site-header .brand-lock span { display: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .rail, .menu-overlay { backdrop-filter: none; background: var(--panel); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
