/* A17 Details — site styles
   Committed dark-industrial palette (fixed theme, painted explicitly).
   Fonts: Barlow Condensed (display) · IBM Plex Sans (body) · IBM Plex Mono (labels) */

:root {
  color-scheme: dark;
  --carbon: #0b0e12;
  --carbon-2: #10141a;
  --gunmetal: #161c24;
  --steel: #283039;
  --steel-2: #3a4350;
  --chalk: #edf0f3;
  --ash: #9aa4b1;
  --ash-2: #6f7987;
  --led: #5cc8ff;
  --led-deep: #1e8fd6;
  --led-glow: rgba(92, 200, 255, 0.28);
  --concrete: #e4e7eb;
  --concrete-2: #d3d7dd;
  --concrete-line: #bfc5cd;
  --ink: #12161b;
  --ink-muted: #556070;

  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  --max: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(56px, 8vw, 104px);
  --radius: 2px;
  --hex: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='112' height='194' viewBox='0 0 112 194'%3E%3Cg fill='none' stroke='%235cc8ff' stroke-opacity='.16' stroke-width='1.5'%3E%3Cpath d='M56 2 108 32v60L56 122 4 92V32z'/%3E%3Cpath d='M56 122 108 152v60M56 122 4 152v60M56 2V-30'/%3E%3C/g%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--carbon);
  color: var(--chalk);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.02; margin: 0; text-wrap: balance; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.skip { position: absolute; left: -999px; top: 8px; background: var(--led); color: var(--ink); padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; }

:focus-visible { outline: 2px solid var(--led); outline-offset: 3px; }

.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }

/* ---------- type utilities ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--led);
}
.eyebrow.dim { color: var(--ash); }
.h-xl { font-size: clamp(46px, 8.5vw, 104px); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; }
.h-l  { font-size: clamp(34px, 4.8vw, 56px); font-weight: 700; text-transform: uppercase; }
.h-m  { font-size: clamp(26px, 3vw, 36px); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; }
.h-s  { font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }
.lead { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; color: var(--ash); max-width: 62ch; }
.measure { max-width: 66ch; }
.muted { color: var(--ash); }
.num { font-variant-numeric: tabular-nums; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 18px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 13px 22px; border: 1px solid transparent; border-radius: var(--radius); text-decoration: none; cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  line-height: 1;
}
.btn-solid { background: var(--chalk); color: var(--ink); }
.btn-solid:hover { background: var(--led); }
.btn-line { background: transparent; color: var(--chalk); border-color: var(--steel-2); }
.btn-line:hover { border-color: var(--led); color: var(--led); }
.btn-led { background: var(--led); color: var(--ink); box-shadow: 0 0 0 0 var(--led-glow); }
.btn-led:hover { box-shadow: 0 0 28px 2px var(--led-glow); }
.on-light .btn-line { color: var(--ink); border-color: var(--ink); }
.on-light .btn-line:hover { color: var(--led-deep); border-color: var(--led-deep); }
.on-light .btn-solid { background: var(--ink); color: var(--chalk); }
.on-light .btn-solid:hover { background: var(--led-deep); }
.btn svg { width: 18px; height: 18px; }

.arrow-link {
  font-family: var(--display); font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  text-decoration: none; color: var(--led); display: inline-flex; align-items: center; gap: 8px;
}
.arrow-link::after { content: "→"; transition: transform .15s ease; }
.arrow-link:hover::after { transform: translateX(4px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 14, 18, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--steel);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 68px; }
.brand { display: flex; align-items: center; text-decoration: none; flex: none; }
.brand img { height: 36px; width: auto; max-width: none; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--display); font-size: 18px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none; color: var(--ash); padding: 8px 12px; border-radius: var(--radius); white-space: nowrap;
}
.nav a:hover { color: var(--chalk); }
.nav a[aria-current="page"] { color: var(--chalk); box-shadow: inset 0 -2px 0 var(--led); }
.nav .btn { margin-left: 8px; padding: 10px 16px; font-size: 16px; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--steel-2); color: var(--chalk); border-radius: var(--radius);
  width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 68px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--carbon-2); border-bottom: 1px solid var(--steel); padding: 8px var(--gutter) 16px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 8px; border-bottom: 1px solid var(--steel); font-size: 20px; }
  .nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--led); padding-left: 14px; }
  .nav .btn { margin: 14px 0 0; justify-content: center; }
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--carbon); }
.hero::before {
  content: ""; position: absolute; inset: 0; background: var(--hex); background-size: 112px 194px; opacity: .55;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 70%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; padding-block: clamp(40px, 6vw, 88px); }
.hero-copy { display: grid; gap: 22px; }
.hero-copy .h-xl { line-height: .94; }
.hero-copy .h-xl em { font-style: normal; color: var(--led); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-phone { font-family: var(--mono); font-size: 14px; color: var(--ash); letter-spacing: .04em; }
.hero-phone a { color: var(--chalk); text-decoration: none; border-bottom: 1px solid var(--steel-2); }
.hero-art { position: relative; }
.hero-art img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid var(--steel); }
.hero-art::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(11,14,18,.75));
}
.hero-tag { position: absolute; left: 14px; bottom: 14px; z-index: 1; font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--chalk); background: rgba(11,14,18,.72); border: 1px solid var(--steel-2); padding: 6px 10px; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
}

/* page hero (inner pages) */
.page-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--steel); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: var(--hex); background-size: 112px 194px; opacity: .4; pointer-events: none;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.9), transparent 75%); -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,.9), transparent 75%); }
.page-hero .wrap { position: relative; display: grid; gap: 16px; padding-block: clamp(40px, 6vw, 80px); }
.page-hero.with-art .wrap { grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(24px, 4vw, 56px); }
.page-hero .art img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid var(--steel); }
.page-hero .copy { display: grid; gap: 16px; }
@media (max-width: 860px) { .page-hero.with-art .wrap { grid-template-columns: 1fr; } }

/* ---------- stat rail ---------- */
.rail { border-top: 1px solid var(--steel); border-bottom: 1px solid var(--steel); background: var(--carbon-2); }
.rail .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.rail .cell { padding: 20px 16px 20px 0; border-right: 1px solid var(--steel); display: grid; gap: 4px; }
.rail .cell + .cell { padding-left: 20px; }
.rail .cell:last-child { border-right: 0; }
.rail .v { font-family: var(--display); font-size: 26px; font-weight: 700; text-transform: uppercase; line-height: 1.05; }
.rail .k { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ash); }
@media (max-width: 860px) {
  .rail .wrap { grid-template-columns: 1fr 1fr; }
  .rail .cell:nth-child(2) { border-right: 0; }
  .rail .cell:nth-child(3) { padding-left: 0; }
  .rail .cell:nth-child(n+3) { border-top: 1px solid var(--steel); }
}
@media (max-width: 440px) {
  .rail .wrap { grid-template-columns: 1fr; }
  .rail .cell { border-right: 0 !important; padding-left: 0 !important; }
  .rail .cell + .cell { border-top: 1px solid var(--steel); }
}

/* ---------- sections ---------- */
.section { padding-block: var(--section); }
.section.tight { padding-block: clamp(40px, 5vw, 64px); }
.section-head { display: grid; gap: 12px; margin-bottom: clamp(28px, 4vw, 48px); max-width: 70ch; }
.section-head.row { max-width: none; grid-template-columns: 1fr auto; align-items: end; }
@media (max-width: 700px) { .section-head.row { grid-template-columns: 1fr; } }
.on-light { background: var(--concrete); color: var(--ink); }
.on-light .lead, .on-light .muted { color: var(--ink-muted); }
.on-light .eyebrow { color: var(--led-deep); }
.on-light .arrow-link { color: var(--led-deep); }
.on-dark-2 { background: var(--carbon-2); }

/* ---------- service tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--steel); border: 1px solid var(--steel); }
.tile { background: var(--carbon); display: grid; grid-template-rows: auto 1fr; text-decoration: none; color: inherit; }
.tile .pic { aspect-ratio: 4 / 3; overflow: hidden; background: var(--gunmetal); position: relative; }
.tile .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, filter .35s ease; filter: saturate(.9) brightness(.92); }
.tile:hover .pic img { transform: scale(1.03); filter: saturate(1) brightness(1); }
.tile .body { padding: 20px 20px 24px; display: grid; gap: 10px; align-content: start; }
.tile .body p { color: var(--ash); font-size: 15px; }
.tile .body .arrow-link { margin-top: 6px; font-size: 16px; }
.tile .pic.placeholder { display: grid; place-items: center; background: var(--gunmetal) var(--hex); background-size: 112px 194px; }
.tile .pic.placeholder svg { width: 40%; height: auto; color: var(--led); opacity: .9; }
@media (max-width: 1000px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tiles { grid-template-columns: 1fr; } }

/* ---------- before / after ---------- */
.ba-wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
@media (max-width: 860px) { .ba-wrap { grid-template-columns: 1fr; } }
.ba { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--steel); background: var(--gunmetal); user-select: none; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba .handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: var(--led); transform: translateX(-1px); pointer-events: none; box-shadow: 0 0 14px var(--led-glow); }
.ba .handle::after {
  content: "◀ ▶"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--ink); background: var(--led); padding: 7px 8px; white-space: nowrap;
}
.ba .lab { position: absolute; top: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 5px 8px; background: rgba(11,14,18,.75); border: 1px solid var(--steel-2); color: var(--chalk); pointer-events: none; }
.ba .lab.l { left: 12px; } .ba .lab.r { right: 12px; }
.ba input[type="range"] {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none;
}
.ba-copy { display: grid; gap: 14px; }
.ba-copy .h-m { font-size: clamp(26px, 3vw, 40px); }

/* ---------- steps (a real sequence) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--steel); border: 1px solid var(--steel); }
.step { background: var(--carbon-2); padding: 26px 22px 30px; display: grid; gap: 10px; align-content: start; }
.step .n { font-family: var(--display); font-size: 48px; font-weight: 800; color: var(--led); line-height: 1; }
.step p { color: var(--ash); font-size: 15px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ---------- spec sheet (packages) ---------- */
.sheet { border-top: 2px solid var(--ink); }
.on-dark .sheet, .section:not(.on-light) .sheet { border-top-color: var(--chalk); }
.pkg { display: grid; grid-template-columns: 1.1fr 1.6fr .9fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--concrete-line); }
.section:not(.on-light) .pkg { border-bottom-color: var(--steel); }
.pkg .name { display: grid; gap: 8px; align-content: start; }
.pkg .name .for { font-size: 14px; color: var(--ink-muted); }
.section:not(.on-light) .pkg .name .for { color: var(--ash); }
.pkg ul { display: grid; gap: 6px; font-size: 15px; }
.pkg ul li { padding-left: 18px; position: relative; }
.pkg ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 2px; background: var(--led-deep); }
.pkg .price { display: grid; gap: 6px; align-content: start; justify-items: start; }
.pkg .price .amt { font-family: var(--display); font-size: 40px; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
.pkg .price .amt small { font-family: var(--mono); font-size: 11px; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; display: block; margin-bottom: 6px; color: var(--ink-muted); }
.section:not(.on-light) .pkg .price .amt small { color: var(--ash); }
.pkg .price .note { font-size: 13px; color: var(--ink-muted); }
.section:not(.on-light) .pkg .price .note { color: var(--ash); }
@media (max-width: 860px) {
  .pkg { grid-template-columns: 1fr; gap: 14px; }
  .pkg .price { justify-items: start; }
}

/* fine print & notes */
.note-box { border-left: 3px solid var(--led-deep); padding: 14px 18px; background: rgba(30,143,214,.08); font-size: 15px; max-width: 70ch; }
.section:not(.on-light) .note-box { background: rgba(92,200,255,.07); border-left-color: var(--led); }

/* ---------- two-column prose ---------- */
.cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.cols.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .cols, .cols.three { grid-template-columns: 1fr; } }
.prose { display: grid; gap: 14px; max-width: 66ch; }
.prose p { line-height: 1.65; }
.prose h3 { margin-top: 8px; }
.prose ul { display: grid; gap: 8px; }
.prose ul li { padding-left: 18px; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .66em; width: 8px; height: 2px; background: var(--led); }
.on-light .prose ul li::before { background: var(--led-deep); }

/* facts list (label / value) */
.facts { display: grid; gap: 0; border-top: 1px solid var(--steel); }
.facts div { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--steel); }
.facts dt { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ash); margin: 0; padding-top: 4px; }
.facts dd { margin: 0; }
.on-light .facts, .on-light .facts div { border-color: var(--concrete-line); }
.on-light .facts dt { color: var(--ink-muted); }
@media (max-width: 480px) { .facts div { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 8px; }
.gallery figure { margin: 0; overflow: hidden; position: relative; border: 1px solid var(--steel); background: var(--gunmetal); }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.03); }
.gallery figure.wide { grid-column: span 2; }
.gallery figure.tall { grid-row: span 2; }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 8px 10px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--chalk); background: linear-gradient(180deg, transparent, rgba(11,14,18,.85)); }
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; } }
@media (max-width: 480px) { .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; } .gallery figure.wide { grid-column: span 2; } .gallery figure.tall { grid-row: span 1; } }

/* photo pair */
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pair figure { margin: 0; position: relative; border: 1px solid var(--steel); overflow: hidden; }
.pair figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.pair figcaption { position: absolute; top: 10px; left: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; background: rgba(11,14,18,.78); border: 1px solid var(--steel-2); color: var(--chalk); padding: 5px 8px; }
@media (max-width: 520px) { .pair { grid-template-columns: 1fr; } }

/* ---------- quote / review ---------- */
.review { display: grid; gap: 18px; padding: 28px 0; border-top: 1px solid var(--steel); }
.review:last-child { border-bottom: 1px solid var(--steel); }
.review blockquote { margin: 0; font-family: var(--display); font-size: clamp(22px, 2.6vw, 32px); font-weight: 600; line-height: 1.2; text-wrap: pretty; max-width: 34ch; }
.review blockquote::before { content: "“"; color: var(--led); }
.review blockquote::after { content: "”"; color: var(--led); }
.review .who { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ash); }
.review .who b { color: var(--chalk); font-weight: 500; }
.stars { color: var(--led); letter-spacing: .1em; font-size: 14px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-top: 1px solid var(--steel); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: var(--hex); background-size: 112px 194px; opacity: .35; pointer-events: none;
  mask-image: radial-gradient(60% 100% at 100% 50%, rgba(0,0,0,.9), transparent); -webkit-mask-image: radial-gradient(60% 100% at 100% 50%, rgba(0,0,0,.9), transparent); }
.cta-band .wrap { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding-block: clamp(40px, 6vw, 72px); }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 760px) { .cta-band .wrap { grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(24px, 4vw, 64px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cards { display: grid; gap: 1px; background: var(--steel); border: 1px solid var(--steel); }
.contact-cards a, .contact-cards div { background: var(--carbon-2); padding: 18px 20px; display: grid; gap: 4px; text-decoration: none; color: inherit; }
.contact-cards a:hover { background: var(--gunmetal); }
.contact-cards .k { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ash); }
.contact-cards .v { font-family: var(--display); font-size: 26px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; line-height: 1.1; }
.contact-cards .v.small { font-family: var(--body); font-size: 16px; font-weight: 400; text-transform: none; letter-spacing: 0; }

form.quote { display: grid; gap: 14px; }
form.quote .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { form.quote .row { grid-template-columns: 1fr; } }
form.quote label { display: grid; gap: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ash); }
form.quote input, form.quote select, form.quote textarea {
  font: 16px/1.4 var(--body); color: var(--chalk); background: var(--carbon-2); border: 1px solid var(--steel-2); border-radius: var(--radius); padding: 12px 14px; width: 100%;
}
form.quote select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ash) 50%), linear-gradient(135deg, var(--ash) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
form.quote textarea { min-height: 120px; resize: vertical; }
form.quote input:focus, form.quote select:focus, form.quote textarea:focus { border-color: var(--led); outline: none; box-shadow: 0 0 0 3px rgba(92,200,255,.18); }
form.quote .fine { font-size: 13px; color: var(--ash); }
form.quote .actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.form-note { display: none; font-size: 14px; color: var(--led); }
.form-note.show { display: block; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--steel); background: var(--carbon-2); padding-block: 44px 28px; color: var(--ash); font-size: 14px; }
.site-footer .top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--steel); }
.site-footer .top .col { display: grid; gap: 10px; align-content: start; }
.site-footer .top .col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ash-2); font-weight: 500; }
.site-footer .top a { text-decoration: none; color: var(--chalk); }
.site-footer .top a:hover { color: var(--led); }
.site-footer .brand img { height: 30px; max-width: none; }
.site-footer .bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ash-2); }
@media (max-width: 860px) { .site-footer .top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .site-footer .top { grid-template-columns: 1fr; } }

/* ---------- misc ---------- */
.divider { height: 1px; background: linear-gradient(90deg, var(--led), transparent 60%); opacity: .6; }
.tag { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 4px 8px; border: 1px solid var(--steel-2); color: var(--ash); }
.on-light .tag { border-color: var(--concrete-line); color: var(--ink-muted); }

/* honeypot field — invisible to people, bots fill it in */
form.quote .hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- hero video ---------- */
.hero-video { aspect-ratio: 4 / 5; max-height: 640px; margin-inline: auto; width: min(100%, 520px); background: var(--gunmetal); border: 1px solid var(--steel); overflow: hidden; }
.hero-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-video::after { background: linear-gradient(180deg, transparent 70%, rgba(11,14,18,.7)); }
.sound-btn {
  position: absolute; right: 14px; bottom: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--chalk);
  background: rgba(11,14,18,.78); border: 1px solid var(--steel-2); border-radius: var(--radius); padding: 8px 10px; cursor: pointer;
}
.sound-btn:hover { border-color: var(--led); color: var(--led); }
.sound-btn svg { width: 16px; height: 16px; }
.hero-video .hero-tag { right: auto; left: 14px; max-width: calc(100% - 150px); }
@media (max-width: 860px) { .hero-video { width: 100%; max-height: 70vh; aspect-ratio: 4 / 5; } }

/* ---------- lightbox ---------- */
img.zoomable { cursor: zoom-in; }
.lb { position: fixed; inset: 0; z-index: 200; background: rgba(6,8,11,.94); display: grid; grid-template-rows: 1fr auto auto; padding: 56px 16px 16px; }
.lb[hidden] { display: none; }
.lb-stage { position: relative; overflow: hidden; display: grid; place-items: center; min-height: 0; touch-action: none; }
.lb-stage img { max-width: 100%; max-height: 100%; object-fit: contain; transform-origin: center; transition: transform .12s ease; cursor: zoom-in; user-select: none; -webkit-user-drag: none; }
.lb-stage.zoomed img { cursor: grab; transition: none; }
.lb-cap { text-align: center; font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--chalk); padding-top: 12px; }
.lb-hint { text-align: center; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--ash-2); padding-top: 4px; }
.lb button { position: absolute; background: rgba(11,14,18,.7); color: var(--chalk); border: 1px solid var(--steel-2); border-radius: var(--radius); width: 44px; height: 44px; font-size: 28px; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.lb button:hover { border-color: var(--led); color: var(--led); }
.lb-x { top: 12px; right: 12px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) { .lb { padding: 56px 8px 12px; } .lb-hint { display: none; } }
