:root {
  --ink: #f4f2ec;
  --bg: #05070d;
  --panel: #0a0d15;
  --accent: #ffb443;      /* halo amber */
  --steel: #8a93a6;
  --line: rgba(244, 242, 236, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, .hud, .corner, .kicker, .cta, .stat-num, .steps b {
  font-family: "Oswald", "Arial Narrow", sans-serif;
}

/* ---------- Fixed nav ---------- */
.hud {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  font-size: 13px;
  letter-spacing: 0.26em;
  color: rgba(244, 242, 236, 0.85);
  mix-blend-mode: difference;
}
.hud-brand .dim { color: var(--accent); margin: 0 2px; }
.hud-mid { color: var(--steel); font-size: 11px; }
.hud-cta {
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(255, 180, 67, 0.5);
  padding: 7px 14px;
  transition: background 0.25s, color 0.25s;
}
.hud-cta:hover { background: var(--accent); color: #10120a; }

/* ---------- Cinematic scrub sections ---------- */
.cinematic { position: relative; height: 520vh; }
.cinematic.alt { height: 460vh; }
.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #03040a;
}
.cinematic canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 45%, rgba(0,0,0,0.6) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 22%, transparent 72%, rgba(0,0,0,0.72) 100%);
}

/* ---------- Overlay copy ---------- */
.overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: end center;   /* captions sit in the lower band, clear of the sign */
  text-align: center;
  padding: 0 4vw 14vh;
  pointer-events: none;
}
.reveal-line {
  grid-area: 1 / 1;
  max-width: 92vw;
  font-weight: 700;
  font-size: clamp(2rem, 7vw, 6.2rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  opacity: 0;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.85), 0 1px 6px rgba(0, 0, 0, 0.55);
  will-change: opacity, transform;
}
.reveal-line.accent {
  color: var(--accent);
  text-shadow: 0 0 70px rgba(255, 180, 67, 0.45), 0 4px 26px rgba(0, 0, 0, 0.8);
}

/* ---------- Corners ---------- */
.corner {
  position: absolute;
  z-index: 12;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255, 180, 67, 0.8);
}
.tl { top: 88px; left: 28px; }
.tr { top: 88px; right: 28px; }

.scroll-hint {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(244, 242, 236, 0.65);
  animation: bob 1.8s ease-in-out infinite;
  transition: opacity 0.4s;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ---------- Shared section chrome ---------- */
.kicker {
  font-size: 12px;
  letter-spacing: 0.42em;
  color: var(--accent);
  margin-bottom: 22px;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Intro strip ---------- */
.strip {
  padding: 140px 8vw 120px;
  max-width: 1100px;
  margin: 0 auto;
}
.strip h2 {
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.lede {
  margin-top: 26px;
  max-width: 640px;
  color: var(--steel);
  font-size: 1.08rem;
  line-height: 1.75;
}

/* ---------- Services ---------- */
.services { padding: 40px 8vw 140px; max-width: 1250px; margin: 0 auto; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px 26px;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: rgba(255, 180, 67, 0.45); transform: translateY(-4px); }
.card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.card p { color: var(--steel); line-height: 1.65; font-size: 0.98rem; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  padding: 110px 8vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(70% 90% at 50% 0%, rgba(255, 180, 67, 0.06), transparent 65%), var(--panel);
  text-align: center;
}
.stat-num {
  display: block;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 700;
  color: var(--ink);
}
.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--steel);
}

/* ---------- Process ---------- */
.process { padding: 140px 8vw; max-width: 1100px; margin: 0 auto; }
.steps { list-style: none; }
.steps li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.steps b {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.steps span { color: var(--steel); line-height: 1.6; }

/* ---------- Outro / CTA ---------- */
.outro {
  min-height: 92vh;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 18px;
  padding: 60px 24px;
  background: radial-gradient(80% 60% at 50% 100%, rgba(255, 180, 67, 0.10), transparent 60%), var(--bg);
}
.outro h2 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.outro p { color: var(--steel); font-size: 1.05rem; }
.outro-lede { max-width: 760px; justify-self: center; }
.cta {
  justify-self: center;
  margin-top: 12px;
  padding: 16px 42px;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  color: #10120a;
  background: var(--accent);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 45px rgba(255, 180, 67, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.cta:hover { transform: translateY(-3px); box-shadow: 0 0 70px rgba(255, 180, 67, 0.55); }

/* ---------- Quote form ---------- */
.quote-form {
  width: min(680px, 92vw);
  justify-self: center;
  margin-top: 34px;
  display: grid;
  gap: 16px;
  text-align: left;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: grid; gap: 8px; }
.field > span {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--steel);
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.98rem;
  color: var(--ink);
  background: rgba(10, 13, 21, 0.85);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(138, 147, 166, 0.55); }
.field input:hover,
.field textarea:hover { border-color: rgba(244, 242, 236, 0.22); }
.field input:focus,
.field textarea:focus {
  border-color: rgba(255, 180, 67, 0.65);
  background: rgba(10, 13, 21, 1);
  box-shadow: 0 0 0 3px rgba(255, 180, 67, 0.12);
}
.quote-form .cta { margin-top: 6px; width: 100%; }
.quote-form .cta:disabled { opacity: .5; cursor: wait; transform: none; box-shadow: none; }

/* Submit status — success, or a fallback if the save fails */
.form-msg {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
  min-height: 1.4em;
}
.form-msg.ok  { color: #6ee7a0; }
.form-msg.bad { color: #f87171; }
.form-msg .link { color: var(--accent); text-decoration: underline; }

/* Honeypot — hidden from humans, catches bots */
.honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}
.fine {
  margin-top: 60px;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(138, 147, 166, 0.6);
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
  .hud { padding: 14px 16px; font-size: 11px; letter-spacing: 0.18em; }
  .hud-mid { display: none; }
  .corner { font-size: 9px; letter-spacing: 0.18em; }
  .tl, .tr { top: 64px; }
  .steps li { grid-template-columns: 1fr; gap: 6px; }
  .field-row { grid-template-columns: 1fr; }
  .quote-form { margin-top: 26px; }
  .fine { margin-top: 44px; letter-spacing: 0.18em; line-height: 1.9; }
}
