:root {
  --bg: #0a0c0f;
  --bg-2: #0f1216;
  --panel: #14181d;
  --panel-2: #1a1f26;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --text: #c5ccd3;
  --muted: #7d8791;
  --white: #f3f4f5;
  --spark: #f26b1d;
  --spark-hot: #ff8a3d;
  --max: 1320px;
  --display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
::selection { background: var(--spark); color: #fff; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

.skip { position: absolute; left: -999px; top: 0; background: var(--spark); color: #fff; padding: 10px 16px; z-index: 200; }
.skip:focus { left: 8px; top: 8px; }

/* Film grain + scroll progress */
.grain {
  position: fixed; inset: -50%; width: 200%; height: 200%; z-index: 90; pointer-events: none; opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; background: var(--spark); transform: scaleX(0); transform-origin: 0 50%; z-index: 120; }

/* Type */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--white);
  text-wrap: balance;
}
h1 { font-size: clamp(3.6rem, 9.2vw, 9rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2.6rem, 6vw, 5.4rem); letter-spacing: -0.005em; }
h3 { font-size: 1.9rem; font-weight: 800; line-height: 1; letter-spacing: 0.01em; }
p { text-wrap: pretty; }
.outline { color: transparent; -webkit-text-stroke: 1.5px var(--spark); }
.fill-sweep {
  background: linear-gradient(90deg, var(--spark) 50%, transparent 50%) 100% 0 / 200% 100% no-repeat;
  -webkit-background-clip: text; background-clip: text;
  animation: sweep 1.4s var(--ease) 0.9s forwards;
}
.rise.fill-sweep { animation: rise 1s var(--ease) forwards, sweep 1.4s var(--ease) 1.1s forwards; animation-delay: calc(var(--i, 0) * 120ms + 150ms), 1.1s; }
@keyframes sweep { to { background-position: 0 0; } }

.label {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--spark);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.label::before { content: ""; width: 8px; height: 8px; background: var(--spark); display: inline-block; }
.label.plain::before { display: none; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 19px 28px;
  background: var(--spark);
  color: #fff;
  border: 1px solid var(--spark);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.15s;
}
.btn::before { content: ""; position: absolute; inset: 0; background: var(--white); transform: translateY(101%); transition: transform 0.4s var(--ease); z-index: -1; }
.btn::after { content: "\2192"; font-size: 1.1rem; line-height: 1; transition: transform 0.35s var(--ease); }
.btn:hover { color: var(--bg); border-color: var(--white); }
.btn:hover::before { transform: none; }
.btn:hover::after { transform: translateX(5px); }
.btn:active { transform: scale(0.98); }
.btn.ghost { background: transparent; border-color: rgba(255, 255, 255, 0.35); }
.btn[disabled] { opacity: 0.6; pointer-events: none; }
.tlink { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; color: var(--white); border-bottom: 1px solid var(--spark); padding-bottom: 6px; transition: color 0.2s; }
.tlink:hover { color: var(--spark); }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s; border-bottom: 1px solid transparent; }
.site-header.scrolled, .site-header.menu-open { background: rgba(10, 12, 15, 0.88); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-color: var(--line-soft); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--white); }
.brand img { height: 42px; width: auto; }
.brand span { font-family: var(--display); font-weight: 800; font-size: 1.12rem; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.05; }
.brand small { display: block; font-family: var(--mono); font-weight: 400; color: var(--muted); font-size: 0.6rem; letter-spacing: 0.24em; margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { position: relative; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; color: var(--text); padding: 8px 0; transition: color 0.2s; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--spark); transform: scaleX(0); transform-origin: 100% 50%; transition: transform 0.35s var(--ease); }
.nav a:hover, .nav a.active { color: var(--white); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: 0 50%; }
.nav a.nav-cta { background: var(--spark); color: #fff; padding: 12px 20px; transition: background 0.2s, color 0.2s; }
.nav a.nav-cta:hover { background: var(--white); color: var(--bg); }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); margin: 6px auto; transition: transform 0.25s, opacity 0.2s; }

/* Home hero */
.hero { position: relative; min-height: 100dvh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; background: var(--bg); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.42; animation: kenburns 24s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.14); } to { transform: scale(1); } }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background:
  radial-gradient(60% 55% at 85% 100%, rgba(242, 107, 29, 0.26), transparent 70%),
  linear-gradient(90deg, var(--bg) 0%, rgba(10, 12, 15, 0.75) 45%, rgba(10, 12, 15, 0.25) 100%),
  linear-gradient(0deg, var(--bg) 0%, transparent 35%); }
#embers { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; pointer-events: none; }
.hero > .wrap { position: relative; z-index: 3; width: 100%; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 40px; align-items: end; padding-top: 140px; padding-bottom: 56px; }
.hero h1 { margin: 22px 0 28px; }
.hero h1 span { display: block; }
.hero .lead { font-size: 1.22rem; max-width: 50ch; color: var(--text); }
.hero .actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-top: 40px; }
.rise { opacity: 0; transform: translateY(40px); animation: rise 1s var(--ease) forwards; animation-delay: calc(var(--i, 0) * 120ms + 150ms); }
@keyframes rise { to { opacity: 1; transform: none; } }

.strips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; height: min(68vh, 640px); transform: skewX(-9deg); margin-right: 30px; }
.strip { position: relative; overflow: hidden; opacity: 0; animation: stripIn 1.2s var(--ease) forwards; animation-delay: calc(var(--i) * 160ms + 400ms); border-bottom: 3px solid var(--spark); }
.strip:nth-child(1) { margin: 70px 0 0; }
.strip:nth-child(2) { margin: 0 0 70px; }
.strip:nth-child(3) { margin: 110px 0 -20px; }
.strip img { position: absolute; top: -10%; left: -35%; width: 170%; max-width: none; height: 120%; object-fit: cover; transform: skewX(9deg) translateY(var(--py, 0px)); filter: saturate(1.1) contrast(1.05); }
@keyframes stripIn { from { opacity: 0; clip-path: inset(100% 0 0 0); } to { opacity: 1; clip-path: inset(0); } }

.stats { position: relative; z-index: 3; border-top: 1px solid var(--line); background: rgba(10, 12, 15, 0.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); padding-top: 0; padding-bottom: 0; }
.stat { padding: 26px 28px 24px 0; border-right: 1px solid var(--line); margin-right: 28px; }
.stat:last-child { border: 0; margin: 0; }
.stat b { display: block; font-family: var(--display); font-weight: 900; font-size: clamp(2rem, 3.4vw, 3.2rem); line-height: 1; color: var(--white); font-variant-numeric: tabular-nums; letter-spacing: 0.01em; }
.stat b span { font: inherit; letter-spacing: inherit; color: inherit; text-transform: none; }
.stat > span { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* Inner page hero */
.phero { position: relative; min-height: 78vh; display: flex; align-items: flex-end; overflow: hidden; }
.phero .hero-bg { opacity: 0.85; }
.phero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, var(--bg) 0%, rgba(10, 12, 15, 0.2) 50%, rgba(10, 12, 15, 0.55) 100%), linear-gradient(90deg, rgba(10, 12, 15, 0.86) 0%, rgba(10, 12, 15, 0.45) 45%, transparent 80%); }
.phero .wrap { position: relative; z-index: 3; width: 100%; padding-top: 170px; padding-bottom: 70px; }
.phero h1 { font-size: clamp(3.2rem, 8.6vw, 8rem); max-width: 12ch; margin: 20px 0 22px; }
.phero .lead { font-size: 1.25rem; max-width: 46ch; }
.crumbs { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.crumbs a { text-decoration: none; color: var(--text); }
.crumbs a:hover { color: var(--spark); }
.crumbs i { font-style: normal; color: var(--spark); margin: 0 10px; }
.ghost-word { position: absolute; right: -2vw; bottom: -0.16em; z-index: 2; font-family: var(--display); font-weight: 900; font-size: clamp(8rem, 24vw, 24rem); line-height: 0.8; text-transform: uppercase; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16); pointer-events: none; white-space: nowrap; user-select: none; }

/* Marquee */
.marquee { overflow: hidden; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-2); padding: 26px 0; }
.marquee .track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
.marquee span { font-family: var(--display); font-weight: 900; font-size: clamp(2.6rem, 5.4vw, 4.8rem); line-height: 1; text-transform: uppercase; white-space: nowrap; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4); padding-right: 0.5em; }
.marquee span:nth-child(3n + 1) { color: var(--white); -webkit-text-stroke: 0; }
.marquee span::after { content: "\2726"; color: var(--spark); -webkit-text-stroke: 0; font-size: 0.5em; vertical-align: 0.3em; padding-left: 0.9em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Hazard divider */
.hazard { height: 10px; background: repeating-linear-gradient(-45deg, var(--spark) 0 14px, var(--bg) 14px 28px); opacity: 0.9; }

/* Sections */
section { position: relative; padding: 140px 0 150px; }
section.alt { background: var(--bg-2); }
.blueprint::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(80% 80% at 50% 40%, #000 20%, transparent 100%); -webkit-mask-image: radial-gradient(80% 80% at 50% 40%, #000 20%, transparent 100%); }
section > .wrap { position: relative; }
.section-head { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 40px; align-items: end; margin-bottom: 72px; }
.section-head h2 { margin-top: 20px; }
.section-head p { font-size: 1.15rem; max-width: 44ch; justify-self: end; }
.section-head .tlink { justify-self: end; }

/* About collage */
.about { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 90px; align-items: center; }
.collage { position: relative; padding: 0 70px 90px 0; }
.collage .main { position: relative; z-index: 1; }
.collage .main img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; }
.collage .over { position: absolute; right: 0; bottom: 0; width: 56%; z-index: 2; border: 8px solid var(--bg); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55); }
section.alt .collage .over { border-color: var(--bg-2); }
.collage .over img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.collage .year { position: absolute; left: -0.06em; top: -0.62em; font-family: var(--display); font-weight: 900; font-size: clamp(6rem, 13vw, 12rem); line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(242, 107, 29, 0.55); z-index: 0; pointer-events: none; }
.marks::before, .marks::after { content: ""; position: absolute; width: 34px; height: 34px; z-index: 3; pointer-events: none; }
.marks::before { top: -12px; left: -12px; border-top: 2px solid var(--spark); border-left: 2px solid var(--spark); }
.marks::after { bottom: -12px; right: -12px; border-bottom: 2px solid var(--spark); border-right: 2px solid var(--spark); }
.about h2 { margin: 20px 0 30px; }
.about p + p { margin-top: 18px; }
.about .btn { margin-top: 38px; }

/* Image wipe reveal */
.wipe { clip-path: inset(0 100% 0 0); transition: clip-path 1.2s var(--ease); }
.wipe img { transform: scale(1.18); transition: transform 1.6s var(--ease); }
.wipe.in { clip-path: inset(0); }
.wipe.in img { transform: none; }

/* Services interactive */
.svc { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 70px; align-items: start; }
.svc-list { list-style: none; border-top: 1px solid var(--line); }
.svc-item { position: relative; display: grid; grid-template-columns: 70px 1fr auto; gap: 10px 20px; align-items: center; padding: 34px 0; border-bottom: 1px solid var(--line); cursor: default; transition: padding 0.4s var(--ease); }
.svc-item::before { content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 2px; background: var(--spark); transform: scaleX(0); transform-origin: 0 50%; transition: transform 0.6s var(--ease); }
.svc-item .n { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.18em; color: var(--muted); transition: color 0.3s; }
.svc-item h3 { font-size: clamp(2rem, 4.2vw, 3.6rem); font-weight: 900; color: rgba(243, 244, 245, 0.45); transition: color 0.3s, transform 0.45s var(--ease); }
.svc-item p { grid-column: 2; font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.svc-item .arr { grid-row: 1; grid-column: 3; font-size: 2rem; color: var(--spark); opacity: 0; transform: translateX(-16px); transition: opacity 0.3s, transform 0.45s var(--ease); }
.svc-item.on::before { transform: scaleX(1); }
.svc-item.on h3 { color: var(--white); transform: translateX(10px); }
.svc-item.on .n { color: var(--spark); }
.svc-item.on .arr { opacity: 1; transform: none; }
.svc-stage { position: sticky; top: 120px; aspect-ratio: 4 / 5; overflow: hidden; background: var(--panel); }
.svc-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.1); transition: opacity 0.7s var(--ease), transform 1.4s var(--ease); }
.svc-stage img.on { opacity: 1; transform: none; }
.svc-stage .tag { position: absolute; left: 0; bottom: 0; z-index: 2; background: var(--spark); color: #fff; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 10px 16px; }

/* Shots + bento */
.shot { position: relative; display: block; width: 100%; overflow: hidden; background: var(--panel); cursor: zoom-in; border: 0; padding: 0; text-align: left; }
.shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.9s var(--ease), filter 0.5s; filter: saturate(0.9) brightness(0.92); }
.shot:hover img, .shot:focus-visible img { transform: scale(1.06); filter: none; }
.shot::after { content: "+"; position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; display: grid; place-items: center; background: var(--spark); color: #fff; font-family: var(--mono); font-size: 1.3rem; opacity: 0; transform: scale(0.6) rotate(-90deg); transition: opacity 0.3s, transform 0.45s var(--ease); }
.shot:hover::after, .shot:focus-visible::after { opacity: 1; transform: none; }
.tile-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 70px 22px 20px; background: linear-gradient(transparent, rgba(6, 8, 10, 0.92)); color: var(--white); font-family: var(--display); font-weight: 800; font-size: 1.5rem; line-height: 1; text-transform: uppercase; letter-spacing: 0.02em; }
.tile-cap small { display: block; font-family: var(--mono); font-weight: 400; font-size: 0.66rem; letter-spacing: 0.2em; color: var(--spark-hot); margin-bottom: 8px; }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, minmax(0, 300px)); gap: 16px; }
.bento > * { min-height: 0; }
.bento .shot, .bento .shot img { height: 100%; aspect-ratio: auto; }
.bento > :nth-child(1) { grid-column: span 2; grid-row: span 2; }
.bento > :nth-child(4) { grid-column: span 2; }
.bento > :nth-child(1) .tile-cap { font-size: 2.4rem; padding: 110px 30px 28px; }

/* Masonry gallery */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.chip { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; background: transparent; border: 1px solid var(--line); color: var(--text); padding: 12px 18px; cursor: pointer; transition: background 0.25s, color 0.25s, border-color 0.25s; }
.chip:hover { border-color: var(--spark); color: var(--white); }
.chip[aria-pressed="true"] { background: var(--spark); border-color: var(--spark); color: #fff; }
.chip sup { color: inherit; opacity: 0.7; margin-left: 6px; font-size: 0.85em; }
.masonry { columns: 3; column-gap: 16px; }
.masonry figure { break-inside: avoid; margin: 0 0 16px; }
.masonry figure[hidden] { display: none; }
.masonry .shot img { aspect-ratio: auto; }
.masonry .tile-cap { font-size: 1.25rem; opacity: 0.0; transform: translateY(12px); transition: opacity 0.35s, transform 0.45s var(--ease); }
.masonry .shot:hover .tile-cap, .masonry .shot:focus-visible .tile-cap { opacity: 1; transform: none; }

/* Cert band */
.cert { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 80px; align-items: center; }
.badge { position: relative; width: clamp(220px, 24vw, 320px); aspect-ratio: 1; }
.badge svg { width: 100%; height: 100%; animation: spin 26s linear infinite; }
.badge text { font-family: var(--mono); font-size: 10.4px; letter-spacing: 0.34em; fill: var(--text); text-transform: uppercase; }
.badge .core { position: absolute; inset: 22%; border-radius: 50%; background: var(--spark); display: grid; place-content: center; text-align: center; color: #fff; box-shadow: 0 0 80px rgba(242, 107, 29, 0.45); }
.badge .core b { font-family: var(--display); font-weight: 900; font-size: clamp(2.6rem, 4.6vw, 4rem); line-height: 0.9; letter-spacing: 0.02em; }
.badge .core i { font-style: normal; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; margin-top: 6px; }
@keyframes spin { to { transform: rotate(360deg); } }
.cert h2 { margin: 20px 0 26px; }
.cert p { max-width: 60ch; }
.procs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 44px; border: 1px solid var(--line); }
.proc { padding: 22px 22px 20px; border-right: 1px solid var(--line); transition: background 0.3s; }
.proc:last-child { border: 0; }
.proc:hover { background: var(--panel-2); }
.proc b { display: block; font-family: var(--display); font-weight: 900; font-size: 2rem; line-height: 1; color: var(--white); letter-spacing: 0.04em; }
.proc span { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.cert-mini { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 40px; padding: 30px 0; }
.cert-mini strong { font-family: var(--display); font-weight: 900; font-size: 2.2rem; line-height: 1; text-transform: uppercase; color: var(--white); letter-spacing: 0.02em; }
.cert-mini strong em { font-style: normal; color: var(--spark); }
.cert-band { background: var(--panel); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

/* Team */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.member { position: relative; overflow: hidden; background: var(--panel); }
.member img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 22%; filter: grayscale(1) contrast(1.08) brightness(0.85); transition: filter 0.6s, transform 0.9s var(--ease); }
.member:hover img { filter: none; transform: scale(1.05); }
.member .who { position: absolute; left: 0; right: 0; bottom: 0; padding: 80px 20px 18px; background: linear-gradient(transparent, rgba(6, 8, 10, 0.94)); }
.member h3 { font-size: 1.6rem; }
.member p { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--spark-hot); margin-top: 6px; line-height: 1.5; }
.member::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 3px; background: var(--spark); transform: scaleX(0); transform-origin: 0 50%; transition: transform 0.5s var(--ease); }
.member:hover::after { transform: scaleX(1); }
.member.lead { grid-column: span 2; }
.member.lead img { aspect-ratio: 8 / 5.08; object-position: center 18%; }
.member.lead h3 { font-size: 2.4rem; }

/* Equipment */
.equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.equip { position: relative; background: var(--panel); display: flex; flex-direction: column; border: 1px solid var(--line-soft); transition: border-color 0.3s, transform 0.5s var(--ease); }
.equip:hover { border-color: rgba(242, 107, 29, 0.6); transform: translateY(-6px); }
.equip .idx { position: absolute; top: 0; left: 0; z-index: 2; background: var(--bg); color: var(--spark); font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.2em; padding: 9px 14px; }
.equip .body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.equip .model { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
.equip a.spec { margin-top: auto; padding-top: 26px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); text-decoration: none; display: flex; justify-content: space-between; border-top: 1px solid var(--line); margin-top: 26px; padding-top: 18px; transition: color 0.2s; }
.equip a.spec::after { content: "\2197"; color: var(--spark); transition: transform 0.3s var(--ease); }
.equip a.spec:hover { color: var(--spark); }
.equip a.spec:hover::after { transform: translate(3px, -3px); }
.equip.wide { grid-column: span 3; flex-direction: row; }
.equip.wide .shot { width: 62%; }
.equip.wide .shot img { height: 100%; aspect-ratio: 16 / 7; }
.equip.wide .body { justify-content: center; }
.equip.wide h3 { font-size: 3rem; }

/* Contact */
.contact { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 80px; align-items: start; }
.contact h2 { margin: 20px 0 26px; }
.contact-list { list-style: none; margin-top: 46px; border-top: 1px solid var(--line); }
.contact-list li { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.contact-list .k { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.contact-list a, .contact-list address { font-style: normal; font-size: 1.2rem; line-height: 1.45; color: var(--white); text-decoration: none; transition: color 0.2s; }
.contact-list a:hover { color: var(--spark); }
.contact-list a.big { font-family: var(--display); font-weight: 900; font-size: 2.6rem; line-height: 1; letter-spacing: 0.02em; }

.form { background: var(--panel); border: 1px solid var(--line-soft); padding: 46px; position: relative; }
.form::before { content: ""; position: absolute; top: -1px; left: -1px; width: 90px; height: 3px; background: var(--spark); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.field label i { font-style: normal; color: var(--spark); }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 1.05rem; color: var(--white); background: var(--bg); border: 1px solid var(--line); border-radius: 0; padding: 15px 16px; transition: border-color 0.2s, background 0.2s; appearance: none; -webkit-appearance: none; }
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--spark) 50%), linear-gradient(135deg, var(--spark) 50%, transparent 50%); background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--spark); background: #07090b; }
.field .err { font-size: 0.85rem; color: #ff9a7a; min-height: 0; display: none; }
.field.bad input, .field.bad select, .field.bad textarea { border-color: #e2603a; }
.field.bad .err { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-top: 32px; }
.form-foot small { color: var(--muted); font-size: 0.85rem; max-width: 38ch; line-height: 1.5; }
.form-status { margin-top: 22px; padding: 16px 18px; font-size: 1rem; display: none; border-left: 3px solid var(--spark); background: var(--bg); }
.form-status.show { display: block; }
.form-status.ok { border-color: #5fcf8a; }
.form-status a { color: var(--spark-hot); }
.map { width: 100%; height: 460px; border: 0; display: block; filter: grayscale(1) invert(0.92) contrast(0.9) hue-rotate(180deg); }

/* CTA */
.cta { position: relative; overflow: hidden; padding: 150px 0; text-align: left; background: var(--bg-2); }
.cta .bgimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.22; filter: grayscale(0.4); }
.cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 100% 50%, rgba(242, 107, 29, 0.3), transparent 70%), linear-gradient(90deg, var(--bg) 10%, transparent 90%); }
.cta .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.5fr) auto; gap: 50px; align-items: end; }
.cta h2 { font-size: clamp(3rem, 7.4vw, 7rem); margin-top: 20px; }
.cta .actions { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }

/* Footer */
.site-footer { background: #060709; color: var(--muted); padding: 0 0 30px; font-size: 1rem; overflow: hidden; border-top: 1px solid var(--line-soft); }
.foot-word { font-family: var(--display); font-weight: 900; font-size: clamp(3.6rem, 13.2vw, 14rem); line-height: 0.86; text-transform: uppercase; white-space: nowrap; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16); padding: 70px 0 50px; text-align: center; letter-spacing: 0.01em; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.3fr; gap: 50px; padding-top: 50px; border-top: 1px solid var(--line-soft); }
.site-footer img { height: 50px; width: auto; margin-bottom: 18px; }
.site-footer h4 { font-family: var(--mono); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--spark); margin-bottom: 18px; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { text-decoration: none; color: var(--text); transition: color 0.2s; }
.site-footer a:hover { color: var(--spark); }
.foot-certs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.foot-certs span { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); border: 1px solid var(--line); padding: 7px 11px; }
.foot-bottom { margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 150; background: rgba(5, 6, 8, 0.96); display: none; align-items: center; justify-content: center; padding: 70px 24px; }
.lightbox.open { display: flex; animation: fade 0.3s; }
@keyframes fade { from { opacity: 0; } }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox p { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: var(--white); font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; }
.lightbox button { position: absolute; background: none; border: 1px solid var(--line); color: var(--white); width: 52px; height: 52px; font-size: 1.6rem; cursor: pointer; line-height: 1; transition: background 0.2s, border-color 0.2s; }
.lightbox button:hover { background: var(--spark); border-color: var(--spark); }
.lightbox .close { top: 16px; right: 16px; }
.lightbox .prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox .next { right: 16px; top: 50%; transform: translateY(-50%); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
.reveal.in { opacity: 1; transform: none; }
:focus-visible { outline: 2px solid var(--spark); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .rise, .strip { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .wipe { clip-path: none; } .wipe img { transform: none; }
  .hero-bg, .marquee .track, .badge svg { animation: none; }
  .fill-sweep { animation: none; background-position: 0 0; }
  .strips { transform: skewX(-9deg) !important; }
}

@media (max-width: 1080px) {
  .hero > .wrap { grid-template-columns: 1fr; }
  .strips { display: none; }
  .about, .svc, .contact, .cert { grid-template-columns: 1fr; gap: 56px; }
  .badge { margin: 0 auto 0 0; }
  .svc-stage { position: relative; top: 0; aspect-ratio: 16 / 10; order: -1; }
  .section-head { grid-template-columns: 1fr; gap: 22px; margin-bottom: 52px; }
  .section-head p, .section-head .tlink { justify-self: start; }
  .team { grid-template-columns: repeat(3, 1fr); }
  .member.lead { grid-column: span 1; }
  .member.lead img { aspect-ratio: 4 / 5; }
  .member.lead h3 { font-size: 1.6rem; }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .equip.wide { grid-column: span 2; }
  .masonry { columns: 2; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: none; grid-auto-rows: 260px; }
  .bento > :nth-child(1) { grid-row: span 1; }
  .cta .wrap { grid-template-columns: 1fr; }
  .cta .actions { flex-direction: row; flex-wrap: wrap; }
  .procs { grid-template-columns: repeat(2, 1fr); }
  .proc:nth-child(2) { border-right: 0; }
  .proc:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav { position: fixed; top: 84px; left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column; align-items: stretch; gap: 0; padding: 20px 24px 40px; display: none; overflow-y: auto; }
  .nav.open { display: flex; }
  .nav a { font-family: var(--display); font-weight: 900; font-size: 2.6rem; letter-spacing: 0.02em; line-height: 1; padding: 18px 0; border-bottom: 1px solid var(--line-soft); color: var(--white); }
  .nav a:not(.nav-cta)::after { display: none; }
  .nav a.active { color: var(--spark); }
  .nav a.nav-cta { margin-top: 26px; text-align: center; font-family: var(--mono); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.2em; padding: 20px; border: 0; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  section { padding: 96px 0 104px; }
  .cta { padding: 100px 0; }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--line); padding: 20px 0; margin: 0; border-right: 0; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); margin-right: 20px; }
  .stat:nth-last-child(-n + 2) { border-bottom: 0; }
  .form { padding: 30px 24px; }
  .equip.wide { flex-direction: column; }
  .equip.wide .shot { width: 100%; }
  .equip.wide h3 { font-size: 2rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 17px; }
  .wrap { padding: 0 20px; }
  .site-header .wrap { height: 72px; }
  .nav { top: 72px; }
  .brand span { display: none; }
  .hero > .wrap { padding-top: 110px; padding-bottom: 40px; }
  .hero .lead { font-size: 1.08rem; }
  .phero { min-height: 68vh; }
  .phero .wrap { padding-bottom: 48px; }
  .collage { padding: 0 34px 60px 0; }
  .team { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .member h3 { font-size: 1.25rem; }
  .member .who { padding: 60px 12px 12px; }
  .equip-grid, .form-grid, .foot-grid { grid-template-columns: 1fr; }
  .equip.wide { grid-column: span 1; }
  .masonry { columns: 1; }
  .masonry .tile-cap { opacity: 1; transform: none; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .bento > :nth-child(1), .bento > :nth-child(4) { grid-column: span 1; }
  .bento > :nth-child(1) .tile-cap { font-size: 1.7rem; padding: 70px 22px 20px; }
  .svc-item { grid-template-columns: 44px 1fr; padding: 26px 0; }
  .svc-item .arr { display: none; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .contact-list a.big { font-size: 2.2rem; }
  .map { height: 340px; }
  .cert-mini strong { font-size: 1.8rem; }
}
