/* =========================================================================
   SCS DIAMOND DRILLING — LF90D twin-drill sale
   Aesthetic: rugged industrial-editorial. Steel + blueprint + safety-yellow.
   Type: Saira Condensed (display) / Archivo (body) / IBM Plex Mono (labels)
   ========================================================================= */

:root {
  /* steel scale */
  --steel-950: #0c0f13;
  --steel-900: #12161b;
  --steel-850: #171c22;
  --steel-800: #1d232b;
  --steel-700: #2a323c;
  --steel-600: #3a4450;
  --steel-500: #5c6876;
  --steel-400: #8a97a5;
  --steel-300: #b6c0cb;
  --steel-200: #d6dde4;
  --paper:     #e9edf1;
  --paper-2:   #f4f6f8;
  --white:     #ffffff;

  /* accents */
  --hazard:    #ffd400;   /* safety yellow — used sparingly */
  --hazard-2:  #ffb000;   /* amber */
  --blueprint: #2f6fb0;   /* blueprint line blue */
  --blueprint-dim: rgba(120,170,220,.16);
  --rust:      #c2502a;   /* warm warning / detail */
  --ok:        #3da06b;

  --ink:       #11151a;
  --line:      #2a323c;
  --line-soft: rgba(255,255,255,.10);

  --font-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --font-body:    "Archivo", system-ui, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --gut: clamp(18px, 4vw, 56px);
  --shadow: 0 30px 70px -25px rgba(0,0,0,.7);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--steel-950);
  color: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
  font-size: 17px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--hazard); outline-offset: 3px; }

/* ---- shared bits -------------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.mono { font-family: var(--font-mono); }

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--steel-400);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px; background: var(--hazard);
  display: inline-block;
}
.sec-num {
  font-family: var(--font-mono);
  color: var(--hazard);
  font-size: 12px;
  letter-spacing: .2em;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: .95;
  letter-spacing: .005em; text-transform: uppercase; margin: 0; }

.hazard-bar {
  height: 10px;
  background: repeating-linear-gradient(135deg,
    var(--hazard) 0 18px, var(--steel-950) 18px 36px);
  opacity: .92;
}

.btn {
  --bg: var(--hazard);
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg); color: #1a1400;
  font-family: var(--font-mono); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; font-size: 14px;
  padding: 15px 26px; border: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(255,212,0,.55); }
.btn--ghost {
  --bg: transparent; color: var(--paper);
  border: 1px solid var(--steel-600);
  clip-path: none;
}
.btn--ghost:hover { border-color: var(--hazard); color: var(--white);
  box-shadow: none; background: rgba(255,212,0,.06); }
.btn--block { width: 100%; justify-content: center; }

/* ===== HEADER ============================================================ */
.top {
  position: sticky; top: 0; z-index: 60;
  background: rgba(12,15,19,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.top__in { display: flex; align-items: center; gap: 18px; min-height: 68px; padding-block: 7px; }
.brand { display: flex; flex-direction: column; align-items: flex-start; gap: 1px; margin-right: auto; line-height: 1; }
.brand__scs { font-family: var(--font-display); font-size: clamp(22px, 2vw, 26px); font-weight: 700;
  letter-spacing: .02em; color: var(--white); text-transform: uppercase; }
.brand__scs b { color: var(--hazard); }
.brand__sub { font-family: var(--font-mono); font-size: 10px; letter-spacing: .24em;
  color: var(--steel-400); text-transform: uppercase; }
.top nav { display: flex; gap: 22px; }
.top nav a { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--steel-300); transition: color .15s; }
.top nav a:hover { color: var(--hazard); }
.cur {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .08em;
  background: var(--steel-850); color: var(--paper);
  border: 1px solid var(--steel-600); padding: 8px 10px; text-transform: uppercase;
}
.top .btn { padding: 11px 18px; }
.top__menu { display: none; }
@media (max-width: 920px) {
  .top nav, .top .btn--top { display: none; }
}
@media (max-width: 700px) {
  .top__in { min-height: 68px; }
  .top .cur { display: none; }
  .brand__scs { font-size: 21px; }
  .brand__sub { font-size: 9px; letter-spacing: .2em; }
}

/* ===== HERO ============================================================== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end;
  overflow: hidden; border-bottom: 1px solid var(--line); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,15,19,.72) 0%, rgba(12,15,19,.30) 34%, rgba(12,15,19,.62) 72%, var(--steel-950) 100%),
    linear-gradient(90deg, rgba(12,15,19,.85) 0%, rgba(12,15,19,.15) 55%);
}
.blueprint-grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(var(--blueprint-dim) 1px, transparent 1px),
    linear-gradient(90deg, var(--blueprint-dim) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 90% at 20% 80%, #000 30%, transparent 80%);
}
.hero__in { position: relative; z-index: 2; padding-block: 60px 54px; width: 100%; }
.hero__loc { margin-bottom: 22px; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.badge {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 11px; color: var(--paper);
  border: 1px solid var(--steel-600); background: rgba(18,22,27,.6);
}
.badge--hot { border-color: var(--hazard); color: var(--hazard); }
.badge--ok { border-color: var(--ok); color: #7fdca8; }

.hero h1 { font-size: clamp(42px, 7.8vw, 108px); color: var(--white); max-width: 17ch; }
.hero h1 em { font-style: normal; color: var(--hazard); }
.hero__sale {
  position: relative;
  display: inline-block;
  color: var(--white);
  -webkit-text-stroke: 1.4px var(--hazard);
  text-shadow:
    3px 3px 0 rgba(255,212,0,.18),
    0 0 20px rgba(255,212,0,.24);
}
.hero__sale::after {
  content: "";
  position: absolute;
  left: .03em;
  right: .05em;
  bottom: -.1em;
  height: .07em;
  background: var(--hazard);
  box-shadow: 0 0 18px rgba(255,212,0,.35);
}
.hero__sub { max-width: 56ch; margin: 22px 0 30px; color: var(--steel-200);
  font-size: clamp(16px, 1.6vw, 20px); }
.hero__sub b { color: var(--white); font-weight: 700; }

.pricestrip { display: flex; flex-wrap: wrap; gap: 14px; align-items: stretch; margin-bottom: 30px; }
.pricechip {
  border: 1px solid var(--steel-600); background: rgba(18,22,27,.72);
  padding: 12px 18px; min-width: 150px;
}
.pricechip .lab { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--steel-400); }
.pricechip .val { font-family: var(--font-display); font-size: 30px; font-weight: 700;
  color: var(--white); line-height: 1.1; }
.pricechip--pair { border-color: var(--hazard); background: rgba(255,212,0,.07); }
.pricechip--pair .val { color: var(--hazard); }
.pricechip .save { font-family: var(--font-mono); font-size: 11px; color: var(--ok); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
@media (max-width: 700px) {
  .hero__in { padding-block: 34px 30px; }
  .hero__loc { display: block; max-width: 330px; letter-spacing: .12em; line-height: 1.65; margin-bottom: 16px; }
  .badges { margin-bottom: 16px; }
  .hero h1 { font-size: 36px; max-width: 10ch; }
  .hero__sub { max-width: 330px; font-size: 15px; margin: 16px 0 18px; overflow-wrap: break-word; }
  .pricestrip { display: grid; grid-template-columns: 1fr; gap: 10px; max-width: 330px; }
  .pricechip { min-width: 0; width: 100%; }
}

/* ===== HONESTY STRIP ===================================================== */
.honesty { background: var(--hazard); color: #1a1400; }
.honesty__in { display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: center;
  padding-block: 16px; font-family: var(--font-mono); font-size: 13px;
  letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.honesty__in span { display: inline-flex; align-items: center; gap: 9px; }
.honesty__in span::before { content: "//"; opacity: .55; }

/* ===== SECTION SHELL ==================================================== */
section { position: relative; }
.band { padding-block: clamp(56px, 8vw, 110px); }
.band--dark { background: var(--steel-950); }
.band--steel { background:
  linear-gradient(180deg, var(--steel-900), var(--steel-850)); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.sec-head h2 { font-size: clamp(32px, 5vw, 64px); color: var(--white); max-width: 18ch; }
.sec-head p { color: var(--steel-300); max-width: 46ch; margin: 0; }

/* ===== THE TWO RIGS ===================================================== */
.rigs { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 880px) { .rigs { grid-template-columns: 1fr; } }

/* ===== See it run / video clips ======================================== */
.clip-group {
  position: relative;
  margin-top: 40px;
  padding: clamp(20px, 3vw, 34px);
  background: var(--steel-900);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent, var(--hazard));
}
.clip-group:first-of-type { margin-top: 10px; }
.clip-group--a { --accent: var(--hazard); }
.clip-group--b { --accent: var(--blueprint); }
/* number watermark down the side, so the two blocks read as different rigs */
.clip-group__head {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding-bottom: 18px; margin-bottom: 22px; border-bottom: 1px solid var(--line);
}
.clip-group__num {
  font-family: var(--font-display); font-weight: 700; line-height: .78;
  font-size: clamp(46px, 8vw, 78px); color: var(--accent, var(--hazard));
  letter-spacing: -.01em; flex: none;
}
.clip-group__id { display: flex; flex-direction: column; gap: 3px; margin-right: auto; }
.clip-group__tag {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; font-size: clamp(22px, 3vw, 30px); color: var(--white); line-height: 1;
}
.clip-group__note { font-family: var(--font-mono); font-size: 12.5px; color: var(--steel-300); }
.clip-group__count {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--steel-950); background: var(--accent, var(--hazard));
  padding: 5px 10px; align-self: flex-start; font-weight: 600;
}
.clips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 720px) { .clips { grid-template-columns: 1fr; } }
.clip {
  margin: 0; background: var(--steel-900); border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: border-color .2s, transform .2s;
}
.clip:hover { border-color: var(--steel-600); transform: translateY(-3px); }
.clip__media { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.clip__media video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.clip__cap {
  display: flex; align-items: baseline; gap: 12px; padding: 13px 16px;
  font-family: var(--font-display); font-size: 16px; color: var(--paper);
  border-top: 1px solid var(--line); text-transform: uppercase; letter-spacing: .04em;
}
.clip__no {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em;
  color: var(--steel-300);
}

/* ===== Accessory marquee (two auto-scrolling rows) ===================== */
.marq { display: flex; flex-direction: column; gap: 28px; }
.marq__tag {
  display: inline-block; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--steel-300); margin-bottom: 10px;
}
.marq__viewport {
  overflow: hidden; border-block: 1px solid var(--line); background: var(--steel-900);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marq__track {
  display: flex; width: max-content; will-change: transform;
  animation: marq-scroll var(--dur, 80s) linear infinite;
}
.marq__item { flex: none; margin-right: 12px; height: 178px; background: var(--steel-800); }
.marq__item:last-child { margin-right: 0; }
.marq__item img { display: block; height: 100%; width: auto; }
.marq__fallback { color: var(--steel-300); font-size: 14px; }
@keyframes marq-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 720px) { .marq__item { height: 124px; } }
@media (prefers-reduced-motion: reduce) {
  .marq__track { animation: none; }
  .marq__viewport { overflow-x: auto; }
}

.rig {
  background: var(--steel-900); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.rig:hover { border-color: var(--steel-600); transform: translateY(-3px); }
.rig__media { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--steel-800); }
.rig__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.rig:hover .rig__media img { transform: scale(1.04); }
.rig__tag { position: absolute; top: 0; left: 0; background: var(--steel-950);
  color: var(--hazard); font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em;
  padding: 8px 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rig__statustag { position: absolute; top: 12px; right: 12px; }
.rig__body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.rig__name { font-size: 30px; color: var(--white); }
.rig__model { font-family: var(--font-mono); color: var(--steel-400); font-size: 12.5px;
  letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }
.rig__price { display: flex; align-items: baseline; gap: 10px; margin: 16px 0 4px; }
.rig__price .num { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--hazard); }
.rig__price .cur-code { font-family: var(--font-mono); font-size: 13px; color: var(--steel-400); }

.spec { list-style: none; margin: 18px 0 0; padding: 0; border-top: 1px solid var(--line); }
.spec li { display: flex; align-items: baseline; gap: 8px; padding: 9px 0;
  border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.spec .k { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--steel-400); white-space: nowrap; }
.spec .dots { flex: 1; border-bottom: 1px dotted var(--steel-600); transform: translateY(-3px); }
.spec .v { color: var(--paper); font-weight: 600; text-align: right; }
.spec .v small { font-family: var(--font-mono); font-weight: 400; color: var(--steel-400); font-size: 11px; }
.spec .v.hot { color: var(--hazard); }

.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin: 20px 0 0; }
.thumbs button { padding: 0; border: 1px solid var(--line); background: var(--steel-800);
  aspect-ratio: 1; overflow: hidden; position: relative; }
.thumbs button img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s; opacity: .82; }
.thumbs button:hover img { opacity: 1; }
.thumbs button.more { display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; color: var(--hazard); letter-spacing: .05em; }
.rig__cta { margin-top: 22px; }

/* ===== ACCESSORY EQUIPMENT / SUPPLIES ================================= */
.accessories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 920px) { .accessories { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .accessories { grid-template-columns: 1fr; } }
.acc {
  background: var(--steel-900);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.acc__media {
  aspect-ratio: 4 / 3;
  background: var(--steel-800);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.acc__media img { width: 100%; height: 100%; object-fit: cover; }
.acc__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.acc__body h3 { font-size: 23px; color: var(--white); }
.acc__body p { margin: 0; color: var(--steel-300); font-size: 14px; }
.ask {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hazard);
  border: 1px solid rgba(255,212,0,.55);
  padding: 5px 8px;
  background: rgba(255,212,0,.06);
}
.acc-callout {
  margin-top: 22px;
  border: 1px solid var(--steel-600);
  background: rgba(18,22,27,.72);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}
.acc-callout p { margin: 10px 0 0; max-width: 66ch; color: var(--steel-200); font-size: 14.5px; }
@media (max-width: 760px) {
  .acc-callout { align-items: stretch; flex-direction: column; }
  .acc-callout .btn { justify-content: center; }
}

/* ===== FEATURE CARDS (differentiators) ================================= */
.feats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; }
@media (max-width: 820px) { .feats { grid-template-columns: 1fr; } }
.feat { border: 1px solid var(--line); background: var(--steel-900); overflow: hidden;
  display: flex; flex-direction: column; transition: border-color .2s, transform .2s; }
.feat:hover { border-color: var(--steel-600); transform: translateY(-3px); }
.feat__media { aspect-ratio: 16/10; overflow: hidden; background: var(--steel-800); position: relative; }
.feat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feat:hover .feat__media img { transform: scale(1.04); }
.feat__tag { position: absolute; top: 0; left: 0; background: var(--hazard); color: #1a1400;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 12px; font-weight: 600; }
.feat__body { padding: 22px 22px 24px; }
.feat__body h3 { font-size: 24px; color: var(--white); margin-bottom: 8px; }
.feat__body p { color: var(--steel-200); font-size: 14.5px; margin: 0; }

/* ===== STAT ROW ========================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat { background: var(--steel-900); padding: 28px 22px; }
.stat .big { font-family: var(--font-display); font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 700; color: var(--white); line-height: 1; }
.stat .big i { font-style: normal; color: var(--hazard); }
.stat .lab { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--steel-400); margin-top: 10px; }

/* ===== DEPTH TABLE ====================================================== */
.depth { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 820px) { .depth { grid-template-columns: 1fr; gap: 28px; } }
table.dt { width: 100%; border-collapse: collapse; font-size: 15px; }
table.dt th, table.dt td { text-align: left; padding: 12px 12px; border-bottom: 1px solid var(--line); }
table.dt thead th { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--steel-400); }
table.dt td:first-child { font-family: var(--font-mono); color: var(--hazard); }
table.dt td { color: var(--paper); }
.note { font-family: var(--font-mono); font-size: 12px; color: var(--steel-400);
  border-left: 2px solid var(--hazard); padding: 8px 0 8px 14px; margin-top: 18px; line-height: 1.6; }

/* ===== PROCESS / LANES ================================================== */
.lanes { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 820px) { .lanes { grid-template-columns: 1fr; } }
.lane { border: 1px solid var(--line); background: var(--steel-900); padding: 26px 24px; }
.lane h3 { font-size: 22px; color: var(--white); margin-bottom: 6px; }
.lane .flag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  color: var(--hazard); text-transform: uppercase; }
.lane ul { margin: 14px 0 0; padding-left: 18px; color: var(--steel-200); font-size: 14.5px; }
.lane li { margin-bottom: 8px; }

/* ===== LEAD FORM / GATE ================================================= */
.gate { background:
  linear-gradient(180deg, var(--steel-900), var(--steel-950)); border-top: 1px solid var(--line); }
.gate__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: start; }
@media (max-width: 880px) { .gate__grid { grid-template-columns: 1fr; gap: 34px; } }
.gate h2 { font-size: clamp(34px, 5vw, 60px); color: var(--white); }
.gate__lead { color: var(--steel-200); margin: 18px 0 24px; max-width: 44ch; }
.gate__list { list-style: none; padding: 0; margin: 0; }
.gate__list li { display: flex; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line);
  font-size: 14.5px; color: var(--steel-200); align-items: baseline; }
.gate__list li::before { content: "▸"; color: var(--hazard); }

.form { background: var(--steel-850); border: 1px solid var(--steel-700); padding: 30px 28px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }
.field { margin-bottom: 14px; }
.field label { display: block; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--steel-400); margin-bottom: 6px; }
.field label .req { color: var(--hazard); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--steel-950); border: 1px solid var(--steel-600);
  color: var(--white); padding: 12px 13px; font-family: var(--font-body); font-size: 15px;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--hazard); outline: none; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 18px;
  font-size: 12.5px; color: var(--steel-300); font-family: var(--font-mono); line-height: 1.5; }
.consent input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--hazard); }
.privacy { font-family: var(--font-mono); font-size: 11px; color: var(--steel-500);
  margin-top: 14px; line-height: 1.6; }

.reveal { display: none; border: 1px solid var(--hazard); background: rgba(255,212,0,.06);
  padding: 30px 28px; text-align: center; }
.reveal.show { display: block; animation: pop .4s ease; }
@keyframes pop { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }
.reveal .ok { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em;
  color: var(--ok); text-transform: uppercase; }
.reveal .phone { font-family: var(--font-display); font-size: clamp(34px, 6vw, 54px);
  color: var(--hazard); font-weight: 700; margin: 10px 0; display: block; }
.reveal .email { font-family: var(--font-mono); color: var(--paper); font-size: 15px; }
/* Success vs. send-failure messaging — phone/email stay visible either way. */
.reveal .reveal__fail { display: none; color: var(--hazard); }
.reveal--failed .reveal__ok { display: none; }
.reveal--failed .reveal__fail { display: block; }

/* ===== FOOTER =========================================================== */
.foot { background: var(--steel-950); border-top: 1px solid var(--line); padding-block: 50px 30px; }
.foot__top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.foot__brand .brand__scs { font-size: 30px; }
.foot__c { font-family: var(--font-mono); font-size: 13px; color: var(--steel-300); line-height: 1.9; }
.foot__c a:hover { color: var(--hazard); }
.disc { font-family: var(--font-mono); font-size: 11px; color: var(--steel-500);
  margin-top: 24px; line-height: 1.7; max-width: 90ch; }

/* ===== LIGHTBOX ========================================================= */
.lb { position: fixed; inset: 0; z-index: 100; background: rgba(8,10,13,.95);
  display: none; align-items: center; justify-content: center; padding: 4vw; }
.lb.show { display: flex; }
.lb img { max-width: 100%; max-height: 86vh; object-fit: contain; border: 1px solid var(--steel-700); }
.lb__cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center;
  font-family: var(--font-mono); font-size: 13px; color: var(--steel-300); letter-spacing: .05em; }
.lb__x, .lb__nav { position: absolute; background: var(--steel-850); color: var(--white);
  border: 1px solid var(--steel-600); width: 50px; height: 50px; font-size: 22px;
  display: flex; align-items: center; justify-content: center; transition: background .15s; }
.lb__x:hover, .lb__nav:hover { background: var(--hazard); color: #1a1400; }
.lb__x { top: 20px; right: 20px; }
.lb__nav { top: 50%; transform: translateY(-50%); }
.lb__prev { left: 18px; } .lb__next { right: 18px; }
.lb__count { position: absolute; top: 28px; left: 24px; font-family: var(--font-mono);
  font-size: 13px; color: var(--steel-400); }

/* ===== reveal-on-load animation ======================================== */
.r { opacity: 0; transform: translateY(18px); }
.r.in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
@media (prefers-reduced-motion: reduce) {
  .r, .r.in { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto; }
}

/* corner crop marks for editorial flavor */
.crop { position: relative; }
.crop::before, .crop::after {
  content: ""; position: absolute; width: 14px; height: 14px; pointer-events: none;
  border-color: var(--steel-600); border-style: solid;
}
.crop::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.crop::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
