/* ==========================================================================
   Singleton Oversize — site styles
   Palette sampled from the company badge: #FFD000 amber on near-black.
   ========================================================================== */

:root {
  /* Brand */
  --amber:       #FFD000;
  --amber-hi:    #FFE24D;
  --amber-deep:  #A87F00;

  /* Neutrals */
  --ink:         #0A0B0D;
  --steel-900:   #131519;
  --steel-800:   #1B1E24;
  --steel-700:   #262A32;
  --steel-600:   #383D47;
  --steel-400:   #98A0AE;

  --paper:       #FFFFFF;
  --fog:         #F4F6F8;
  --fog-line:    #E2E6EB;
  --text:        #14171C;
  --muted:       #545C69;

  /* Type */
  --display: "Barlow Condensed", "Oswald", "Arial Narrow", system-ui, sans-serif;
  --body:    "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --wrap: 1160px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --sect: clamp(3.5rem, 8vw, 6.5rem);
  --r: 4px;

  --shadow-sm: 0 1px 2px rgba(10,11,13,.08), 0 2px 8px rgba(10,11,13,.06);
  --shadow-md: 0 4px 14px rgba(10,11,13,.10), 0 12px 34px rgba(10,11,13,.08);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: .005em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); text-transform: uppercase; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }
p  { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

/* --- Layout ------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--sect); }
.section--fog  { background: var(--fog); border-block: 1px solid var(--fog-line); }
.section--dark { background: var(--steel-900); color: #E9ECF1; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--ink  { background: var(--ink); color: #E9ECF1; }
.section--ink h2, .section--ink h3 { color: #fff; }

.lede { font-size: clamp(1.1rem, 1.9vw, 1.28rem); color: var(--muted); max-width: 62ch; }
.section--dark .lede, .section--ink .lede { color: #AEB6C3; }

.eyebrow {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin: 0 0 .85rem;
  display: flex; align-items: center; gap: .7rem;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--amber); flex: none; }
.section--dark .eyebrow, .section--ink .eyebrow, .hero .eyebrow, .page-head .eyebrow { color: var(--amber); }

.section-head { max-width: 68ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow { justify-content: center; }
.center .lede { margin-inline: auto; }

/* --- Hazard stripe ------------------------------------------------------ */
.hazard {
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--amber) 0 14px, var(--ink) 14px 28px);
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--display);
  font-size: 1.1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .85rem 1.6rem;
  border: 2px solid transparent; border-radius: var(--r);
  text-decoration: none; cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.btn--primary:hover { background: var(--amber-hi); border-color: var(--amber-hi); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--dark:hover { background: var(--steel-700); border-color: var(--steel-700); }
.btn--lg { font-size: 1.25rem; padding: 1.05rem 2rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* --- Header ------------------------------------------------------------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--amber); color: var(--ink); padding: .8rem 1.2rem;
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
}
.skip:focus { left: 0; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,11,13,.95);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header__bar { display: flex; align-items: center; gap: 1.25rem; min-height: 74px; }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand img { width: 44px; height: auto; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: 1.3rem; letter-spacing: .03em; color: #fff; white-space: nowrap;
}
.brand__name b { color: var(--amber); font-weight: 700; }
.brand__tag {
  font-family: var(--display); font-size: .72rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--steel-400); margin-top: .22rem;
}

.nav { display: flex; align-items: center; gap: 1.35rem; }
.nav a {
  font-family: var(--display); font-size: 1.05rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: #D6DBE3;
  text-decoration: none; padding: .3rem 0; position: relative; white-space: nowrap;
}
.nav a:hover { color: #fff; }
.nav a[aria-current="page"] { color: var(--amber); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.25rem; height: 2px; background: var(--amber);
}
.header-cta { display: flex; align-items: center; gap: .7rem; }
.header-cta .btn { font-size: .98rem; padding: .6rem 1.1rem; white-space: nowrap; }
.header-cta .mail {
  color: #fff; text-decoration: none; font-family: var(--display);
  font-size: 1rem; font-weight: 600; letter-spacing: .02em; white-space: nowrap;
}
.header-cta .mail:hover { color: var(--amber); }

.nav-toggle {
  display: none; background: transparent; border: 1.5px solid rgba(255,255,255,.3);
  border-radius: var(--r); color: #fff; padding: .5rem .7rem; cursor: pointer;
}
.nav-toggle svg { display: block; }

@media (max-width: 1200px) {
  .nav-toggle { display: block; }
  .nav, .header-cta { display: none; }
  .site-header.is-open .nav,
  .site-header.is-open .header-cta {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    width: 100%; padding-bottom: 1.2rem;
  }
  .site-header.is-open .site-header__bar { flex-wrap: wrap; }
  .site-header.is-open .nav a { padding: .85rem 0; border-top: 1px solid rgba(255,255,255,.08); font-size: 1.15rem; }
  .site-header.is-open .nav a[aria-current="page"]::after { display: none; }
  .site-header.is-open .header-cta { gap: .6rem; padding-top: .9rem; border-top: 1px solid rgba(255,255,255,.08); }
  .site-header.is-open .header-cta .btn { width: 100%; font-size: 1.1rem; padding: .85rem 1rem; }
  .site-header.is-open .header-cta .mail { text-align: center; font-size: 1.2rem; padding: .5rem 0; white-space: normal; overflow-wrap: anywhere; }
}

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  padding-block: clamp(3.5rem, 9vw, 7rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(255,208,0,.16), transparent 58%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.028) 0 2px, transparent 2px 12px);
}
.hero .wrap { position: relative; }
.hero__grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.25fr .85fr; } }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--amber); display: block; }
.hero__sub { font-size: clamp(1.1rem, 2vw, 1.3rem); color: #BFC6D2; max-width: 54ch; margin-bottom: 2rem; }
.hero__badge { justify-self: center; max-width: min(380px, 100%); filter: drop-shadow(0 20px 45px rgba(0,0,0,.6)); }

/* Trust strip */
.trust { background: var(--steel-800); border-bottom: 1px solid rgba(255,255,255,.07); color: #E9ECF1; }
.trust__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.09); }
@media (min-width: 760px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }
.trust__item { background: var(--steel-800); padding: 1.5rem 1.25rem; text-align: center; }
.trust__num {
  font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.15rem); font-weight: 700;
  color: var(--amber); line-height: 1; display: block;
}
.trust__label {
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--steel-400); margin-top: .5rem; display: block; font-weight: 500;
}

/* --- Cards -------------------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--paper);
  border: 1px solid var(--fog-line);
  border-left: 4px solid var(--amber);
  border-radius: var(--r);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--muted); margin-bottom: 0; }
.card__icon {
  width: 44px; height: 44px; margin-bottom: 1rem;
  display: grid; place-items: center;
  background: var(--amber); border-radius: var(--r); color: var(--ink);
}
.card__icon svg { width: 24px; height: 24px; }
.section--dark .card, .section--ink .card {
  background: var(--steel-800); border-color: rgba(255,255,255,.09);
  border-left-color: var(--amber); box-shadow: none;
}
.section--dark .card p, .section--ink .card p { color: #AEB6C3; }

/* --- Checklist ---------------------------------------------------------- */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.checks li { position: relative; padding-left: 2.15rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .38em;
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  background: var(--amber);
}
.checks li::after {
  content: ""; position: absolute; left: .34rem; top: .68em;
  width: .72rem; height: .4rem;
  border-left: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink);
  transform: rotate(-45deg);
}

/* --- Split media -------------------------------------------------------- */
.split { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; } }

/* Grid items default to min-width:auto, so a wide child (an image with a width
   attribute, a long table) can stretch its track past the viewport. */
.hero__grid > *, .split > *, .grid > *, .regions > *, .steps > * { min-width: 0; }

/* --- Panels ------------------------------------------------------------- */
.panel {
  background: var(--steel-800); border-left: 5px solid var(--amber);
  border-radius: var(--r); padding: clamp(1.6rem, 3.5vw, 2.5rem); color: #E9ECF1;
}
.panel--light {
  background: var(--paper); color: var(--text);
  border: 1px solid var(--fog-line); border-left: 5px solid var(--amber);
  box-shadow: var(--shadow-sm);
}

/* SDVOSB seal */
.sdvosb {
  display: flex; gap: 1.25rem; align-items: flex-start;
  border: 2px solid var(--amber); border-radius: var(--r);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(255,208,0,.07);
}
.sdvosb__mark {
  flex: none; width: 56px; height: 56px; border-radius: 50%;
  background: var(--amber); color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1.4rem; letter-spacing: .02em;
}
.sdvosb h3 { margin-bottom: .35rem; }
.sdvosb p { margin-bottom: 0; font-size: .96rem; }

/* --- State coverage ----------------------------------------------------- */
.regions { display: grid; gap: 1.75rem; }
@media (min-width: 700px) { .regions { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .regions { grid-template-columns: repeat(3, 1fr); } }
.region h3 {
  font-size: 1.05rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--amber); padding-bottom: .6rem; margin-bottom: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.chips { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.chips li {
  font-family: var(--display); font-weight: 600; font-size: .95rem; letter-spacing: .06em;
  background: var(--steel-700); color: #DDE2EA;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 3px; padding: .28rem .6rem;
}
.chips li[data-home] { background: var(--amber); color: var(--ink); border-color: var(--amber); }

/* --- Steps -------------------------------------------------------------- */
.steps { display: grid; gap: 1.75rem; counter-reset: step; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding-top: 3.4rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--display); font-size: 2.6rem; font-weight: 700; line-height: 1;
  color: var(--amber);
}
.step h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .98rem; margin-bottom: 0; }
.section--dark .step p, .section--ink .step p { color: #AEB6C3; }

/* --- Spec table --------------------------------------------------------- */
.spec { width: 100%; border-collapse: collapse; font-size: 1rem; }
.spec th, .spec td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--fog-line); vertical-align: top; }
.spec th {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; width: 38%; color: var(--text);
}
.spec tr:last-child th, .spec tr:last-child td { border-bottom: 0; }
.table-scroll { overflow-x: auto; }

/* --- Forms -------------------------------------------------------------- */
.form { display: grid; gap: 1.15rem; }
.field { display: grid; gap: .4rem; }
.field > label, legend {
  font-family: var(--display); font-weight: 700; font-size: 1.02rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--text);
}
.field .hint { font-size: .88rem; color: var(--muted); font-family: var(--body); letter-spacing: 0; text-transform: none; font-weight: 400; }
.req { color: #B3300F; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem;
  padding: .75rem .85rem;
  border: 1.5px solid #C1C8D2; border-radius: var(--r);
  background: var(--paper); color: var(--text); width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 3px solid rgba(255,208,0,.55); outline-offset: 1px; border-color: var(--amber-deep);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: #B3300F; background: #FFF7F5;
}
.field-error { font-size: .88rem; color: #96280C; font-weight: 600; }
.field-error:empty { display: none; }

.row { display: grid; gap: 1.15rem; }
@media (min-width: 620px) { .row--2 { grid-template-columns: 1fr 1fr; } .row--3 { grid-template-columns: repeat(3, 1fr); } }

fieldset { border: 1px solid var(--fog-line); border-radius: var(--r); padding: 1.1rem 1.25rem 1.25rem; margin: 0; }
legend { padding-inline: .5rem; }
.opts { display: grid; gap: .6rem; margin-top: .8rem; }
@media (min-width: 620px) { .opts { grid-template-columns: repeat(2, 1fr); } }
.opt { display: flex; align-items: flex-start; gap: .6rem; font-size: 1rem; cursor: pointer; }
.opt input { width: 1.15rem; height: 1.15rem; margin-top: .28rem; flex: none; accent-color: var(--amber-deep); }

.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { border-radius: var(--r); padding: 1rem 1.15rem; font-weight: 600; }
.form-status:empty { display: none; }
.form-status--ok  { background: #E8F6EC; border: 1px solid #8CC79E; color: #14532D; }
.form-status--err { background: #FDECE8; border: 1px solid #E09077; color: #7C2412; }

/* --- Contact block ------------------------------------------------------ */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.3rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list svg { width: 22px; height: 22px; flex: none; color: var(--amber); margin-top: .3rem; }
.contact-list a { color: inherit; text-decoration-color: rgba(255,208,0,.7); text-underline-offset: 3px; }
.contact-list a:hover { color: var(--amber); }
.contact-list strong {
  display: block; font-family: var(--display); text-transform: uppercase;
  letter-spacing: .1em; font-size: .9rem; color: var(--steel-400); font-weight: 600;
}
.panel--light .contact-list strong { color: var(--muted); }
.panel--light .contact-list svg { color: var(--amber-deep); }

/* --- CTA band ----------------------------------------------------------- */
.cta-band { background: var(--amber); color: var(--ink); }
.cta-band h2 { color: var(--ink); margin-bottom: .3rem; }
.cta-band p { color: rgba(10,11,13,.8); font-size: 1.15rem; }
.cta-band .btn--dark:hover { background: #000; border-color: #000; }
.cta-band__inner { display: grid; gap: 1.75rem; align-items: center; }
@media (min-width: 880px) { .cta-band__inner { grid-template-columns: 1.4fr auto; } }

/* --- Footer ------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #A2AAB8; font-size: .96rem; padding-top: clamp(3rem, 6vw, 4.5rem); }
.site-footer h4 {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .14em;
  font-size: .95rem; color: #fff; margin-bottom: 1rem;
}
.site-footer a { color: #A2AAB8; text-decoration: none; }
.site-footer a:hover { color: var(--amber); }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-brand img { width: 74px; margin-bottom: 1rem; }
.footer-brand p { max-width: 34ch; }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(255,255,255,.09);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between;
  font-size: .88rem;
}
.footer-vet { color: var(--amber); font-weight: 600; }

/* --- Page head (interior) ----------------------------------------------- */
.page-head { background: var(--ink); color: #fff; padding-block: clamp(3rem, 6vw, 4.5rem); position: relative; overflow: hidden; }
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 120% at 88% 0%, rgba(255,208,0,.14), transparent 60%);
}
.page-head .wrap { position: relative; }
.page-head h1 { margin-bottom: .35rem; }
.page-head p { color: #AEB6C3; font-size: clamp(1.05rem, 1.8vw, 1.22rem); max-width: 58ch; margin-bottom: 0; }
.crumbs {
  font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--steel-400); margin-bottom: 1rem; font-family: var(--display); font-weight: 600;
}
.crumbs a { color: var(--steel-400); text-decoration: none; }
.crumbs a:hover { color: var(--amber); }

/* --- Utilities ---------------------------------------------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.nowrap { white-space: nowrap; }

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