/* ==========================================================================
   Aerospace Laser Cleaning — site.css
   Art direction: machined metal, clean-room discipline, technical drawing.
   Palette derived from the subject: graphite tool steel, brushed aluminium,
   blueprint navy, ablation amber, oxide rust.
   ========================================================================== */

:root {
  /* Surfaces / neutrals */
  --ink:        #0E1114;
  --ink-2:      #14181D;
  --steel-900:  #1C2228;
  --steel-800:  #262E36;
  --steel-700:  #333C46;
  --steel-600:  #4A555F;
  --steel-500:  #66727D;
  --steel-400:  #8B959E;
  --steel-300:  #B4BCC3;
  --alu-200:    #D8DDE1;
  --alu-100:    #E8EBEE;
  --paper:      #F5F6F7;
  --white:      #FFFFFF;

  /* Accents */
  --blueprint:  #16324F;
  --blueprint-2:#204B72;
  --amber:      #C8721B;
  --amber-hi:   #E9A34A;
  --amber-dk:   #A25A11;
  --oxide:      #8A4530;
  --go:         #2F6B4F;
  --alert:      #A3271B;

  /* Type */
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.0625rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.875rem;
  --text-3xl: 2.25rem;
  --text-hero: clamp(2.1rem, 6.2vw, 3.75rem);

  /* Space */
  --s1: 0.25rem;
  --s2: 0.5rem;
  --s3: 0.75rem;
  --s4: 1rem;
  --s5: 1.5rem;
  --s6: 2rem;
  --s7: 3rem;
  --s8: 4rem;
  --s9: 6rem;

  --maxw: 1160px;
  --radius: 2px;
  --rule: 1px solid var(--alu-200);
  --rule-dark: 1px solid rgba(255,255,255,0.14);
  --shadow: 0 1px 2px rgba(14,17,20,0.08), 0 8px 24px rgba(14,17,20,0.06);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.62;
  color: var(--steel-900);
  background: var(--white);
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 var(--s4);
  overflow-wrap: break-word;
}
h1 { font-size: var(--text-hero); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.5rem, 3.6vw, 2.1rem); }
h3 { font-size: var(--text-lg); letter-spacing: -0.01em; }
h4 { font-size: var(--text-base); }
p { margin: 0 0 var(--s4); }
ul, ol { margin: 0 0 var(--s4); padding-left: 1.2em; }
li { margin-bottom: var(--s2); }
a { color: var(--blueprint); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--amber-dk); }
strong { font-weight: 600; }
hr { border: 0; border-top: var(--rule); margin: var(--s6) 0; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--white); padding: var(--s3) var(--s4);
  font-family: var(--font-mono); font-size: var(--text-sm);
}
.skip-link:focus { left: 0; }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s5); }
.section { padding: var(--s8) 0; }
.section--tight { padding: var(--s7) 0; }
.section--dark { background: var(--ink); color: var(--alu-200); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark a { color: var(--amber-hi); }
.section--steel { background: var(--paper); }
.section--rule { border-top: var(--rule); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-500);
  margin: 0 0 var(--s3);
  display: flex; align-items: center; gap: var(--s3);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--amber); flex: 0 0 auto;
}
.section--dark .eyebrow { color: var(--steel-300); }

.lede { font-size: var(--text-lg); line-height: 1.5; color: var(--steel-700); max-width: 60ch; }
.section--dark .lede { color: var(--alu-200); }
.measure { max-width: 68ch; }

.grid { display: grid; gap: var(--s5); }
@media (min-width: 700px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 860px) { .grid--split { grid-template-columns: 1.05fr 0.95fr; gap: var(--s7); align-items: center; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-base);
  letter-spacing: 0.01em;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
  min-height: 48px;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.btn--primary:hover { background: var(--amber-hi); color: var(--ink); border-color: var(--amber-hi); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--steel-400); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--alu-100); }
.section--dark .btn--ghost, .hero .btn--ghost { color: var(--white); border-color: rgba(255,255,255,0.4); }
.section--dark .btn--ghost:hover, .hero .btn--ghost:hover { background: rgba(255,255,255,0.08); color: var(--white); border-color: var(--white); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn--sm { font-size: var(--text-sm); padding: 0.55rem 0.95rem; min-height: 40px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  /* Opaque, not translucent: a white bar over white page sections has no contrast of its
     own, so content used to bleed through and page headings got sliced at the edge.
     The shadow is what separates it from light sections; the border carries dark ones. */
  background: var(--white);
  border-bottom: 1px solid var(--alu-200);
  box-shadow: 0 2px 12px rgba(14,17,20,0.10);
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  /* Must stay `wrap`: below 900px the mobile nav panel is a 100%-width flex row that has
     to fall onto its own line. `nowrap` scrambles the open menu. Desktop fits on one row
     because the brand tag was removed and the wordmark is 47px. */
  flex-wrap: wrap; gap: var(--s3) var(--s4); min-height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: var(--s3); text-decoration: none; color: var(--steel-900); }
.brand { max-width: 62vw; }
/* The wordmark stacks three lines of type, so it needs real height to stay legible.
   Anything under ~44px renders the lines as unreadable slivers. */
.logo-wordmark { display: block; height: 47px; width: auto; flex: 0 0 auto; }
.brand__tag {
  font-family: var(--font-mono); font-weight: 400; font-size: 0.6rem; letter-spacing: 0.17em;
  color: var(--steel-400); text-transform: uppercase; line-height: 1.2;
  padding-left: var(--s3); border-left: 1px solid var(--ink-700);
}

.nav-toggle {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: transparent; border: 1px solid var(--alu-200); color: var(--steel-900);
  font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.6rem 0.75rem; border-radius: var(--radius); cursor: pointer; min-height: 44px;
}
.nav-toggle:hover { background: var(--alu-100); border-color: var(--steel-400); }
.nav-toggle__icon { width: 16px; height: 12px; position: relative; display: inline-block; }
.nav-toggle__icon i { position: absolute; left: 0; right: 0; height: 2px; background: currentColor; }
.nav-toggle__icon i:nth-child(1) { top: 0; }
.nav-toggle__icon i:nth-child(2) { top: 5px; }
.nav-toggle__icon i:nth-child(3) { top: 10px; }

.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav a {
  font-family: var(--font-mono); font-size: var(--text-sm); letter-spacing: 0.06em;
  color: var(--steel-700); text-decoration: none; text-transform: uppercase;
}
.site-nav a:hover { color: var(--amber-dk); }
.site-nav a[aria-current="page"] { color: var(--steel-900); box-shadow: inset 0 -2px 0 var(--amber); }

@media (max-width: 1023px) {
  .site-nav {
    display: none; flex: 0 0 100%; width: 100%; padding: var(--s4) 0 var(--s5);
    border-top: 1px solid var(--alu-200);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { display: grid; gap: var(--s1); }
  .site-nav a { display: block; padding: 0.7rem 0; font-size: var(--text-base); }
  .header-cta { display: none; }
  .site-nav .header-cta--mobile { display: block; margin-top: var(--s4); }
}
@media (max-width: 420px) {
  .brand { max-width: 74vw; gap: var(--s2); }
  .logo-wordmark { height: 40px; }
  .brand__tag { display: none; }
}
/* Matches the `1024` breakpoint in web/assets/js/site.js - keep them in sync. */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .brand { max-width: none; }
  .site-nav { display: block !important; order: 2; margin-left: auto; }
  .header-cta { order: 3; }
  .site-nav ul { display: flex; gap: var(--s5); align-items: center; }
  .site-nav .header-cta--mobile { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); color: var(--alu-200); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 52%; opacity: 0.95; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,17,20,0.93) 0%, rgba(14,17,20,0.8) 40%, rgba(14,17,20,0.28) 76%, rgba(14,17,20,0.1) 100%),
    linear-gradient(180deg, rgba(14,17,20,0.45) 0%, rgba(14,17,20,0.12) 42%, rgba(14,17,20,0.7) 100%);
}
.hero__inner { position: relative; padding-top: var(--s8); padding-bottom: var(--s8); }
.hero h1 { color: var(--white); max-width: 20ch; }
/* Sits between the short keyword h1 and the lede, carrying the positioning the h1 drops. */
.hero__sub { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500;
  line-height: 1.25; color: var(--white); max-width: 40ch; margin-top: .5rem; }
.hero__lede { font-size: var(--text-lg); color: var(--alu-200); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s6); }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: var(--s3) var(--s5); margin-top: var(--s7);
  padding-top: var(--s4); border-top: var(--rule-dark);
  font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--steel-300);
}
.hero__meta span { display: inline-flex; align-items: center; gap: var(--s2); }
.hero__meta span::before { content: ""; width: 6px; height: 6px; background: var(--amber); flex: 0 0 auto; }

/* Page header (inner pages) */
.page-head { background: var(--ink-2); color: var(--alu-200); padding: var(--s7) 0 var(--s7); border-bottom: 3px solid var(--amber); position: relative; }
.page-head::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-head > .wrap { position: relative; z-index: 1; }
.page-head h1 { color: var(--white); font-size: clamp(1.9rem, 5vw, 3rem); max-width: 26ch; }
.page-head p { color: var(--alu-200); max-width: 62ch; margin-bottom: 0; }

/* Breadcrumb */
.crumbs { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel-400); margin-bottom: var(--s4); }
.crumbs a { color: var(--steel-300); text-decoration: none; }
.crumbs a:hover { color: var(--amber-hi); }
.crumbs span { color: var(--steel-500); margin: 0 var(--s2); }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: var(--rule); border-radius: var(--radius);
  padding: var(--s5); display: flex; flex-direction: column;
}
.card--flush { padding: 0; overflow: hidden; }
.card__body { padding: var(--s5); }
.card h3 { margin-bottom: var(--s2); }
.card p:last-child { margin-bottom: 0; }
.card__num {
  font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.14em;
  color: var(--amber-dk); margin-bottom: var(--s3); display: block;
}
.card__fig { aspect-ratio: 4 / 3; background: var(--steel-800); }
.card__fig img { width: 100%; height: 100%; object-fit: cover; }
.section--dark .card { background: var(--steel-900); border-color: rgba(255,255,255,0.12); }
.section--dark .card p { color: var(--alu-200); }
.section--dark .card__num { color: var(--amber-hi); }

.spec-list { list-style: none; padding: 0; margin: 0; }
.spec-list li {
  display: flex; gap: var(--s4); padding: var(--s3) 0; border-bottom: var(--rule);
  font-size: var(--text-base);
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list li > * { min-width: 0; overflow-wrap: anywhere; }
.spec-list dt, .spec-list__k {
  font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--steel-500); flex: 0 0 40%; max-width: 190px;
}
@media (max-width: 620px) {
  .spec-list li { flex-direction: column; gap: var(--s1); }
  .spec-list dt, .spec-list__k { flex: 0 0 auto; max-width: none; }
}
.section--dark .spec-list li { border-color: rgba(255,255,255,0.12); }
.section--dark .spec-list__k { color: var(--steel-300); }

.checklist { list-style: none; padding: 0; }
.checklist li { position: relative; padding-left: 1.6rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 9px; height: 9px; border: 2px solid var(--amber); background: transparent;
}
.tick li::before { border: 0; background: none; content: "\2713"; color: var(--amber-dk); font-weight: 700; top: 0; }

/* Placeholder token chip */
.token {
  font-family: var(--font-mono); font-size: 0.82em; letter-spacing: 0.02em;
  background: rgba(200,114,27,0.12); border: 1px dashed var(--amber-dk);
  color: var(--amber-dk); padding: 0.1em 0.35em; border-radius: var(--radius);
  overflow-wrap: anywhere;
}
.section--dark .token, .site-footer .token { background: rgba(233,163,74,0.12); border-color: var(--amber-hi); color: var(--amber-hi); }
.note {
  border-left: 3px solid var(--steel-400); background: var(--paper);
  padding: var(--s4) var(--s5); font-size: var(--text-base); color: var(--steel-700);
}
.note strong { color: var(--ink); }

/* Callout band */
.cta-band { background: var(--blueprint); color: var(--white); }
.cta-band h2 { color: var(--white); }
.cta-band p { color: #D6E1EC; max-width: 56ch; }
/* Links inherit --blueprint by default, which is this band's own background. */
.cta-band a:not(.btn) { color: var(--amber-hi); text-decoration-color: rgba(233,163,74,0.6); }
.cta-band a:not(.btn):hover { color: #F7C480; }
.cta-band__inner { display: grid; gap: var(--s5); align-items: center; }
@media (min-width: 860px) { .cta-band__inner { grid-template-columns: 1.4fr auto; } }

/* Figures */
.figure { margin: 0; }
.figure img { width: 100%; border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.08); }
.figure figcaption {
  font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.06em;
  color: var(--steel-500); margin-top: var(--s3); text-transform: uppercase;
}
.section--dark .figure figcaption { color: var(--steel-300); }

/* Before / after pair */
.ba { border: var(--rule); background: var(--white); }
.ba__pair { display: grid; grid-template-columns: 1fr 1fr; }
.ba__cell { position: relative; }
.ba__cell img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ba__cell + .ba__cell { border-left: 1px solid var(--alu-200); }
.ba__tag {
  position: absolute; left: 0; top: 0;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--ink); color: var(--white); padding: 0.3rem 0.55rem;
}
.ba__tag--after { background: var(--amber); color: var(--ink); }
.ba__body { padding: var(--s4) var(--s5) var(--s5); }
.ba__body h3 { margin-bottom: var(--s2); font-size: var(--text-base); }
.ba__body p { font-size: var(--text-sm); color: var(--steel-700); margin: 0; }

/* Accordion (FAQ) */
.faq-item { border-bottom: var(--rule); }
.faq-item h3 { margin: 0; font-size: var(--text-base); }
.faq-q {
  width: 100%; background: none; border: 0; text-align: left; cursor: pointer;
  padding: var(--s4) 2.5rem var(--s4) 0; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-md); color: var(--ink);
  line-height: 1.4;
}
.faq-q::after {
  content: "+"; position: absolute; right: 0.25rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 1.3rem; color: var(--amber-dk); line-height: 1;
}
.faq-q[aria-expanded="true"]::after { content: "\2013"; }
.faq-q:hover { color: var(--amber-dk); }
.faq-a { padding: 0 0 var(--s5); max-width: 68ch; color: var(--steel-700); }
.faq-a[hidden] { display: none; }

/* ---------- Forms ---------- */
.field { margin-bottom: var(--s5); }
.field > label, .fieldset-legend {
  display: block; font-family: var(--font-mono); font-size: var(--text-xs);
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel-600);
  margin-bottom: var(--s2); font-weight: 500;
}
.field .hint { font-size: var(--text-sm); color: var(--steel-600); margin: calc(-1 * var(--s1)) 0 var(--s3); }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; font-family: var(--font-body); font-size: var(--text-base);
  color: var(--ink); background: var(--white);
  border: 1px solid var(--steel-400); border-radius: var(--radius);
  padding: 0.7rem 0.8rem; min-height: 48px;
}
textarea { min-height: 110px; resize: vertical; line-height: 1.55; }
input::placeholder, textarea::placeholder { color: var(--steel-500); }
input:focus-visible, select:focus-visible, textarea:focus-visible { border-color: var(--ink); }
input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] { border-color: var(--alert); background: #FDF6F5; }
fieldset { border: 0; padding: 0; margin: 0 0 var(--s5); }
legend { padding: 0; }

.error {
  color: var(--alert); font-size: var(--text-sm); font-weight: 600;
  margin-top: var(--s2); display: flex; gap: var(--s2); align-items: flex-start;
}
.error:empty { display: none; }
.error::before { content: "!"; font-family: var(--font-mono); flex: 0 0 auto; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Choice chips / options */
.options { display: grid; gap: var(--s3); }
@media (min-width: 620px) { .options--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 620px) { .options--3 { grid-template-columns: repeat(3, 1fr); } }
.option {
  position: relative; display: flex; align-items: flex-start; gap: var(--s3);
  border: 1px solid var(--steel-400); border-radius: var(--radius);
  padding: 0.85rem 0.9rem; cursor: pointer; background: var(--white);
  font-size: var(--text-base); line-height: 1.35; min-height: 52px;
}
.option:hover { border-color: var(--ink); background: var(--paper); }
.option input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.option__box {
  flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px;
  border: 2px solid var(--steel-500); background: var(--white);
}
.option input[type="radio"] ~ .option__box { border-radius: 50%; }
.option__text { display: block; }
.option__text small { display: block; font-size: var(--text-sm); color: var(--steel-600); margin-top: 2px; }
.option:has(input:checked) { border-color: var(--amber-dk); background: rgba(200,114,27,0.07); box-shadow: inset 0 0 0 1px var(--amber-dk); }
.option:has(input:checked) .option__box { border-color: var(--amber-dk); background: var(--amber); box-shadow: inset 0 0 0 2px var(--white); }
.option:has(input:focus-visible) { outline: 3px solid var(--amber); outline-offset: 2px; }

.preset-row { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s4); }
.preset {
  font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.06em;
  background: var(--white); border: 1px solid var(--steel-400); color: var(--steel-700);
  padding: 0.5rem 0.7rem; border-radius: var(--radius); cursor: pointer; min-height: 38px;
}
.preset:hover { border-color: var(--ink); color: var(--ink); }
.preset[aria-pressed="true"] { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ---------- Wizard ---------- */
.wizard { max-width: 720px; margin: 0 auto; }
.wizard__progress { margin-bottom: var(--s6); }
.wizard__track { display: flex; gap: 4px; margin-bottom: var(--s3); }
.wizard__seg { flex: 1; height: 4px; background: var(--alu-200); }
.wizard__seg.is-done { background: var(--amber-dk); }
.wizard__seg.is-current { background: var(--amber); }
.wizard__count {
  font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--steel-600);
  display: flex; justify-content: space-between; gap: var(--s3);
}
.step { border: var(--rule); border-top: 3px solid var(--amber); background: var(--white); padding: var(--s5); box-shadow: var(--shadow); }
@media (min-width: 700px) { .step { padding: var(--s6); } }
.step[hidden] { display: none; }
[hidden] { display: none !important; }
.step h2 { font-size: clamp(1.3rem, 4.2vw, 1.75rem); margin-bottom: var(--s2); }
.step__hint { color: var(--steel-600); font-size: var(--text-base); margin-bottom: var(--s5); }
.wizard__nav { display: flex; gap: var(--s3); justify-content: space-between; align-items: center; margin-top: var(--s6); flex-wrap: wrap; }
.wizard__nav .btn { flex: 1 1 auto; }
@media (min-width: 620px) { .wizard__nav .btn { flex: 0 0 auto; min-width: 150px; } }

/* Uploads */
.drop {
  border: 2px dashed var(--steel-400); background: var(--paper);
  padding: var(--s6) var(--s4); text-align: center; border-radius: var(--radius);
}
.drop.is-over { border-color: var(--amber-dk); background: rgba(200,114,27,0.06); }
.drop p { margin: 0 0 var(--s3); color: var(--steel-700); font-size: var(--text-base); }
.file-list { list-style: none; padding: 0; margin: var(--s4) 0 0; }
.file-list li { display: flex; gap: var(--s3); align-items: center; padding: var(--s3) 0; border-bottom: var(--rule); font-size: var(--text-sm); }
.file-list__name { flex: 1 1 auto; min-width: 0; overflow-wrap: anywhere; }
.file-list__size { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--steel-600); flex: 0 0 auto; }
.file-remove { background: none; border: 1px solid var(--steel-400); color: var(--steel-700); cursor: pointer; font-family: var(--font-mono); font-size: var(--text-xs); padding: 0.35rem 0.5rem; border-radius: var(--radius); }
.file-remove:hover { border-color: var(--alert); color: var(--alert); }
.bar { height: 6px; background: var(--alu-200); margin-top: var(--s4); overflow: hidden; }
.bar__fill { height: 100%; width: 0; background: var(--amber); transition: width .2s ease; }
.upload-status { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel-600); margin-top: var(--s2); }

/* Review table on final step */
.review { border: var(--rule); background: var(--paper); padding: var(--s4) var(--s5); margin-bottom: var(--s5); }
.review h3 { font-size: var(--text-base); margin-bottom: var(--s3); }
.review dl { margin: 0; display: grid; gap: var(--s2) var(--s4); grid-template-columns: minmax(96px, 34%) 1fr; font-size: var(--text-sm); }
.review dt { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel-600); }
.review dd { margin: 0; overflow-wrap: anywhere; }

/* Success + failure panels */
.panel { border: var(--rule); border-top: 3px solid var(--go); background: var(--white); padding: var(--s6) var(--s5); box-shadow: var(--shadow); }
.panel--fail { border-top-color: var(--alert); }
.panel__mark { width: 44px; height: 44px; border-radius: 50%; background: var(--go); color: var(--white); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: var(--s4); }
.panel--fail .panel__mark { background: var(--alert); }
.rfq-id {
  font-family: var(--font-mono); font-size: clamp(1.1rem, 4vw, 1.5rem); letter-spacing: 0.06em;
  background: var(--ink); color: var(--amber-hi); padding: 0.6rem 0.9rem; display: inline-block;
  border-radius: var(--radius); overflow-wrap: anywhere;
}

/* Indicative price band on the confirmation panel. Set apart from the panel
   body so it never reads as the committed quote. */
.panel__estimate {
  border: var(--rule); border-left: 3px solid var(--amber); background: var(--paper);
  padding: var(--s5); margin: var(--s5) 0;
}
.panel__estimate h3 {
  font-family: var(--font-mono); font-size: var(--text-sm); font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel-700);
  margin: 0 0 var(--s3);
}
.panel__estimate > p { margin-bottom: var(--s4); }
.panel__estimate .note { border-left-width: 0; padding: 0; background: none; font-size: var(--text-sm); }
.rfq-band {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 2.25rem); line-height: 1.1;
  color: var(--ink); display: inline-block; overflow-wrap: anywhere;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--steel-300); padding: var(--s8) 0 var(--s6); font-size: var(--text-base); }
.site-footer h2, .site-footer h3 { color: var(--white); font-size: var(--text-sm); font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: var(--s4); }
.site-footer a { color: var(--alu-200); text-decoration: none; }
.site-footer a:hover { color: var(--amber-hi); text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: var(--s2); }
.footer-grid { display: grid; gap: var(--s6); }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; } }
.footer-legal { margin-top: var(--s7); padding-top: var(--s4); border-top: var(--rule-dark); font-size: var(--text-sm); color: var(--steel-400); display: grid; gap: var(--s2); }
.footer-legal p { margin: 0; }
.footer-brand__blurb { color: var(--steel-300); max-width: 40ch; margin-top: var(--s4); }

/* Utility */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-5 { margin-top: var(--s5); } .mt-6 { margin-top: var(--s6); }
.center { text-align: center; }
.stack > * + * { margin-top: var(--s4); }
.nowrap { white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
