:root {
  --bg: #07090d;
  --bg-2: #0c1016;
  --bg-3: #121820;
  --surface: #161d28;
  --line: rgba(232, 236, 242, 0.1);
  --line-strong: rgba(232, 236, 242, 0.18);
  --text: #f3f5f8;
  --muted: #9aa4b2;
  --brand: #2a6fe4;
  --brand-deep: #1a4fb8;
  --brand-soft: rgba(42, 111, 228, 0.16);
  --gold: #d4b15a;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --radius: 18px;
  --wrap: 1180px;
  --header: 76px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

img {
  height: auto;
}

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

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

h1,
h2,
h3,
p,
ul,
ol,
figure,
address {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-wrap: balance;
}

.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 100;
  background: var(--brand);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
}

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

.eyebrow {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.section {
  padding: 108px 0;
  scroll-margin-top: 92px;
}

.section__head {
  max-width: 680px;
  margin-bottom: 56px;
}

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

.section h2,
.about__copy h2,
.quote__copy h2,
.contact h2,
.careers h2 {
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 18px;
}

.section__intro,
.about__copy p,
.quote__copy > p,
.contact p,
.careers p,
.hero__lead,
.footer-blurb {
  color: var(--muted);
}

.section__intro {
  margin-top: 16px;
  font-size: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-inview {
  opacity: 1;
  transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: linear-gradient(180deg, #3b82f6, var(--brand-deep));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(26, 79, 184, 0.38);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}

.btn--lg {
  min-height: 56px;
  padding: 0 28px;
}

.btn--full {
  width: 100%;
}

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

.btn--ghost:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
}

.btn:focus-visible,
.nav a:focus-visible,
.topbar__phone:focus-visible,
.cert-link:focus-visible,
.footer-grid a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.topbar {
  background: #05070b;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.topbar__phone svg {
  width: 13px;
  height: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  border-bottom: 1px solid transparent;
  background: rgba(7, 9, 13, 0.72);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 9, 13, 0.92);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__name {
  /* font-family: var(--serif); */
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: 32px;
  line-height: 0.85;
  letter-spacing: 0.125em;
}

.brand__a {
  position: relative;
  display: inline-block;
}

.brand__a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 0.34em;
  height: 0.34em;
  transform: translate(-50%, -50%) rotate(0deg);
  background: var(--brand);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.brand__tag {
  margin-top: 5px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  margin-left: auto;
}

.nav__list {
  display: flex;
  gap: 26px;
  list-style: none;
  padding: 0;
}

.nav__cta {
  display: none;
}

.nav a {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d5dbe4;
}

.nav a:hover {
  color: var(--white);
}

.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  position: relative;
  transition: transform 0.2s ease;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.hero {
  position: relative;
  min-height: calc(100svh - 112px);
  display: grid;
  align-items: end;
  padding: 80px 0 120px;
  overflow: hidden;
}

.hero__media,
.hero__wash,
.hero__grid {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  filter: saturate(1.05) contrast(1.04);
}

.hero__wash {
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.18) 0%, rgba(7, 9, 13, 0.28) 38%, rgba(7, 9, 13, 0.88) 100%),
    linear-gradient(90deg, rgba(7, 9, 13, 0.55) 0%, rgba(7, 9, 13, 0.12) 58%, rgba(7, 9, 13, 0.2) 100%);
}

.hero__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  margin-bottom: 22px;
  color: var(--white);
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero h1 em {
  display: block;
  font-style: italic;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.86em;
  color: #d7e4ff;
}

.hero__lead {
  max-width: 58ch;
  font-size: 19px;
  margin-bottom: 32px;
  color: #d5dce6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__frame span {
  position: absolute;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(212, 177, 90, 0.7);
  z-index: 2;
}

.hero__frame span:nth-child(1) { top: 24px; left: 24px; border-right: 0; border-bottom: 0; }
.hero__frame span:nth-child(2) { top: 24px; right: 24px; border-left: 0; border-bottom: 0; }
.hero__frame span:nth-child(3) { bottom: 24px; left: 24px; border-right: 0; border-top: 0; }
.hero__frame span:nth-child(4) { bottom: 24px; right: 24px; border-left: 0; border-top: 0; }

.hero__spec {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  width: fit-content;
  max-width: 100%;
  margin: 28px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(212, 177, 90, 0.35);
  background: rgba(7, 9, 13, 0.55);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e6d3a2;
}

.hero__spec span + span::before {
  content: "\00B7";
  margin: 0 10px;
  color: var(--gold);
}

.stats {
  position: relative;
  z-index: 3;
  margin-top: -56px;
  padding-bottom: 20px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(180deg, #171e2a, #121820);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat {
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat__value {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
}

.stat__label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.services {
  background:
    radial-gradient(circle at 10% 0%, rgba(42, 111, 228, 0.08), transparent 32%),
    var(--bg);
}

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

.service {
  position: relative;
  padding: 28px 26px 30px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brand);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s ease;
}

.service:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 111, 228, 0.45);
  background: #182232;
}

.service:hover::before {
  transform: scaleY(1);
}

.service__no {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.service__icon {
  width: 52px;
  height: 52px;
  margin: 16px 0 18px;
  padding: 10px;
  color: #9ec0ff;
  background: var(--brand-soft);
  border: 1px solid rgba(42, 111, 228, 0.28);
  border-radius: 12px;
}

.service h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.service p {
  color: var(--muted);
  font-size: 15px;
}

.about {
  background: var(--bg-2);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.about__media figure {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about__media figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  background: rgba(7, 9, 13, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about__copy p + p {
  margin-top: 14px;
}

.check-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: #d7dde6;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 14px;
  height: 7px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.capacity {
  background:
    radial-gradient(circle at 88% 0%, rgba(42, 111, 228, 0.1), transparent 34%),
    var(--bg);
}

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

.capacity-card {
  padding: 26px 24px 28px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.capacity-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.capacity-card p {
  color: var(--muted);
  font-size: 15px;
}

.about__certs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.cert-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c8dbff;
  font-weight: 600;
}

.cert-link svg {
  width: 16px;
  height: 16px;
}

.cert-logos {
  width: 230px;
  background: #fff;
  padding: 8px 10px;
  border-radius: 8px;
}

.process {
  background:
    linear-gradient(180deg, #0a0e14, #0d1320);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
  padding: 0;
  counter-reset: none;
}

.process-step {
  padding: 28px 22px;
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.process-step__no {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
  color: rgba(42, 111, 228, 0.45);
  line-height: 1;
  margin-bottom: 22px;
}

.process-step h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--muted);
  font-size: 15px;
}

.facility {
  background: var(--bg);
}

.shop-film {
  position: relative;
  margin: 8px auto 36px;
  max-width: 840px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--shadow);
}

.shop-film__video,
.shop-film__poster {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #000;
}

.shop-film__poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  height: 100%;
}

.shop-film.is-playing .shop-film__poster {
  opacity: 0;
  visibility: hidden;
}

.shop-film__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  background: linear-gradient(180deg, rgba(7, 9, 13, 0.08), rgba(7, 9, 13, 0.42));
  color: var(--white);
  cursor: pointer;
}

.shop-film.is-playing .shop-film__play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.shop-film__play-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(180deg, #3b82f6, var(--brand-deep));
  box-shadow: 0 12px 32px rgba(26, 79, 184, 0.45);
  color: var(--white);
}

.shop-film__play-icon svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}

.shop-film__play-copy {
  display: grid;
  gap: 4px;
  text-align: left;
}

.shop-film__play-copy strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop-film__play-copy em {
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d7dde6;
}

.shop-film figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 6px 10px;
  background: rgba(7, 9, 13, 0.75);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-film.is-playing figcaption {
  opacity: 0;
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}

.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  min-height: 280px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 10px;
  background: rgba(7, 9, 13, 0.75);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote {
  background:
    radial-gradient(circle at 80% 10%, rgba(42, 111, 228, 0.16), transparent 36%),
    var(--bg-2);
}

.quote__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.quote__facts {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.quote__facts li {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.quote__facts span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.quote__facts a:hover {
  color: #c8dbff;
}

.quote-form {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.form-row label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c5cdd8;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #0d1219;
  color: var(--text);
  padding: 13px 14px;
}

.form-row select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c5cdd8' d='M1.2 1.2 6 6l4.8-4.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}

.form-row select:not(:valid) {
  color: #8b93a0;
}

.form-row select option {
  color: var(--text);
  background: #0d1219;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}

.recaptcha-row {
  margin-bottom: 16px;
  min-height: 78px;
}

.recaptcha-row .g-recaptcha,
.recaptcha-row .g-recaptcha > div {
  width: 304px !important;
}

.form-note {
  margin: 4px 0 16px;
  font-size: 13px;
  color: var(--muted);
}

.form-alert {
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 10px;
}
.form-alert--ok {
  background: #16351f;
  color: #b7f0c6;
}
.form-alert--error {
  background: #3a1614;
  color: #ffc7c2;
}
.form-row.is-invalid input,
.form-row.is-invalid select,
.form-row.is-invalid textarea {
  border-color: #d96a62;
}
.field-error {
  margin: 0;
  font-size: 13px;
  color: #ffb4ae;
}
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 860px;
}
.faq__item {
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}
.faq__item:first-child {
  border-top: 1px solid var(--line);
}
.faq__item h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
.faq__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.faq__trigger span:first-child {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.faq__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__icon svg {
  width: 100%;
  height: 100%;
}
.faq__item.is-open .faq__icon {
  transform: rotate(180deg);
}
.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq__item.is-open .faq__panel {
  grid-template-rows: 1fr;
}
.faq__panel-inner {
  overflow: hidden;
  min-height: 0;
}
.faq__item p {
  color: #c5cdd8;
  margin: 0;
  padding-bottom: 18px;
}

.contact {
  padding-top: 40px;
  background: var(--bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

address {
  font-style: normal;
  margin-top: 22px;
  color: #dce3ee;
}

.contact__hours {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.map {
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

.careers {
  padding: 0 0 100px;
}

.careers__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 40px;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(120deg, rgba(42, 111, 228, 0.16), transparent 46%),
    #141b26;
}

.careers h2 {
  margin-bottom: 8px;
}

.careers__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.site-footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
  background: #05070b;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(auto-fit, minmax(160px, 1fr));
  gap: 36px;
}

.brand--footer .brand__name {
  font-size: 28px;
}

.footer-blurb {
  margin-top: 14px;
  max-width: 32ch;
}

.site-footer h3 {
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--gold);
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  color: #c5cdd8;
}

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

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.scrollup {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, #3b82f6, var(--brand-deep));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(26, 79, 184, 0.38);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.scrollup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.scrollup:hover {
  color: var(--white);
}

@media (max-width: 1040px) {
  .service-grid,
  .capacity-grid,
  .process-grid,
  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .about__grid,
  .quote__grid,
  .contact__grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 16px 20px 22px;
    background: #07090d;
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .nav__cta {
    display: block;
    padding-top: 8px;
  }

  .nav__cta .btn {
    width: 100%;
  }

  body.nav-open .nav {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    gap: 14px;
  }

  .hero {
    min-height: 86svh;
    padding-bottom: 88px;
  }

  .hero__frame {
    display: none;
  }

  .hero__spec {
    display: flex;
  }

  .stats {
    margin-top: -28px;
  }

  .gallery,
  .about__grid,
  .quote__grid,
  .contact__grid,
  .form-grid,
  .careers__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .careers__inner {
    padding: 28px;
  }

  .careers__actions {
    width: 100%;
    display: grid;
    gap: 12px;
  }

  .careers__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .topbar__meta span:nth-child(n + 3) {
    display: none;
  }
}

@media (max-width: 640px) {
  .shop-film__play {
    flex-direction: column;
    gap: 12px;
  }

  .shop-film__play-copy {
    text-align: center;
  }

  .wrap {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .section {
    padding: 76px 0;
  }

  .stats__grid,
  .service-grid,
  .capacity-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero h1 {
    font-size: 46px;
  }

  .faq__trigger span:first-child {
    font-size: 18px;
  }

  .brand__name {
    font-size: 26px;
  }

  .footer-base {
    flex-direction: column;
  }
}

.jobs-why {
  padding-top: 56px;
  padding-bottom: 20px;
}
.jobs-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.jobs-why__card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}
.jobs-why__card h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.jobs-why__card p {
  color: #c5cdd8;
  margin: 0;
}

.jobs .section__head p {
  max-width: 640px;
  color: #c5cdd8;
}

.jobs-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  overflow: visible;
}
.jobs-split__list {
  display: grid;
  gap: 10px;
  overflow: visible;
}
.job-tab {
  position: relative;
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 18px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.job-tab:hover {
  border-color: rgba(42, 111, 228, 0.55);
  background: #182233;
}
.job-tab.is-active {
  z-index: 2;
  border-color: rgba(212, 177, 90, 0.55);
  background: #1c2430;
  box-shadow: inset 3px 0 0 var(--gold);
}
.job-tab.is-active:hover {
  border-color: rgba(212, 177, 90, 0.7);
  background: #1c2430;
}
.job-tab.is-active .job-tab__title {
  color: var(--gold);
}
@media (min-width: 901px) {
  .job-tab.is-active::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 14px solid var(--gold);
    filter: drop-shadow(0 0 8px rgba(212, 177, 90, 0.35));
    pointer-events: none;
  }
}
.job-tab__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
}
.job-tab__meta,
.job-tab__posted {
  color: var(--muted);
  font-size: 13px;
}
.jobs-split__detail {
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: var(--surface);
  min-height: 360px;
}
.job-panel[hidden] {
  display: none;
}
.job-panel__head h3 {
  font-size: 36px;
  margin-bottom: 8px;
}
.job-panel__meta,
.job-panel__posted {
  color: var(--muted);
  margin: 0;
}
.job-panel__summary {
  margin: 18px 0 0;
  color: #dce3ee;
}
.job-panel__body {
  margin: 20px 0 28px;
  color: #c5cdd8;
}
.job-panel__body p {
  margin: 0 0 14px;
}
.job-panel__body p:last-child {
  margin-bottom: 0;
}

.jobs-empty,
.jobs-general {
  margin-top: 36px;
  padding: 28px 32px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(42, 111, 228, 0.16), transparent 46%),
    #141b26;
}
.jobs-empty h3,
.jobs-general h3 {
  margin-bottom: 8px;
}
.jobs-general {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.jobs-general p,
.jobs-empty p {
  color: #c5cdd8;
  margin: 0 0 18px;
}
.jobs-general p {
  margin-bottom: 0;
}

.apply-banner {
  position: sticky;
  top: var(--header);
  z-index: 25;
  background: #16351f;
  border-bottom: 1px solid rgba(183, 240, 198, 0.22);
}
.apply-banner__inner {
  padding: 14px 0;
}
.apply-banner p {
  margin: 0;
  color: #b7f0c6;
  font-weight: 500;
}

.apply-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5, 7, 11, 0.72);
}
.apply-overlay[hidden] {
  display: none;
}
body.apply-open {
  overflow: hidden;
}
.apply-card {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100svh - 40px);
  overflow: auto;
  padding: 18px 20px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #121820;
  box-shadow: var(--shadow);
}
.apply-card h2 {
  margin-bottom: 2px;
  font-size: 24px;
  line-height: 1;
}
.apply-card__role {
  color: var(--gold);
  margin: 0 0 10px;
  font-size: 13px;
}
.apply-card__close {
  position: absolute;
  top: 8px;
  right: 8px;
  min-height: 32px;
  width: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #1b2430;
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.apply-card__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 2px;
}
.apply-card .eyebrow {
  margin-bottom: 2px;
}
.apply-card .btn {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}
.apply-form .form-grid {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.apply-form .form-row {
  gap: 3px;
  margin-bottom: 8px;
}
.apply-form .form-row input,
.apply-form .form-row textarea {
  padding: 8px 11px;
  border-radius: 10px;
}
.apply-form .form-row textarea {
  min-height: 54px;
  resize: none;
}
.apply-form .form-row input[type="file"] {
  padding: 6px 8px;
}
.apply-form .form-note {
  margin: 0;
  font-size: 11px;
}
.apply-form .recaptcha-row {
  margin: 6px 0 14px;
  overflow: visible;
}
.apply-role-row.is-hidden {
  display: none;
}
.apply-success {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 18px 8px 8px;
}
.apply-success__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  color: #7ee29a;
}
.apply-success .eyebrow {
  margin-bottom: 6px;
}
.apply-success h2 {
  margin-bottom: 10px;
}
.apply-success__copy {
  margin: 0 0 18px;
  max-width: 36ch;
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}
.apply-success .apply-card__actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .jobs-why__grid,
  .jobs-split,
  .jobs-general {
    grid-template-columns: 1fr;
    display: grid;
  }
  .job-panel__head h3 {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .apply-form .form-grid {
    grid-template-columns: 1fr;
  }
}

.error-page {
  min-height: calc(100svh - 160px);
  display: grid;
  align-items: center;
  padding: 72px 0 96px;
  background:
    radial-gradient(circle at 18% 0%, rgba(42, 111, 228, 0.16), transparent 36%),
    radial-gradient(circle at 90% 80%, rgba(212, 177, 90, 0.08), transparent 28%),
    var(--bg);
}
.error-page__inner {
  max-width: 720px;
}
.error-page h1 {
  margin-bottom: 16px;
  font-size: clamp(40px, 6vw, 68px);
}
.error-page__lead {
  max-width: 46ch;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal],
  .service,
  .gallery__item img,
  .btn,
  .faq__icon,
  .faq__panel {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
