:root {
  --red: #b31317;
  --red-dark: #860f12;
  --ink: #111214;
  --charcoal: #24272b;
  --steel: #6f767c;
  --line: #d8dde2;
  --soft: #f4f5f6;
  --white: #ffffff;
  --font-head: "Black Ops One", Impact, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --shadow: 0 18px 45px rgba(17, 18, 20, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: var(--white);
  padding: 10px 14px;
  z-index: 20;
}
.skip-link:focus { left: 10px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 8px 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.top-strip a { color: var(--white); text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  max-width: 1480px;
  margin: 0 auto;
  padding: 12px 22px 18px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "brand"
    "nav";
  gap: 8px;
  align-items: center;
}
.brand {
  grid-area: brand;
  justify-self: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
.brand img {
  width: min(100%, 640px);
  height: auto;
  margin: 0 auto;
}
.brand-logo-mobile { display: none; }
.site-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.site-nav a {
  padding: 8px 0;
  text-decoration: none;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
}
.site-nav a:hover,
.site-nav a.active { border-color: var(--red); color: var(--red-dark); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid var(--red);
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.1;
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn.light {
  background: var(--white);
  border-color: var(--white);
  color: var(--red-dark);
}
.btn.ghost.light {
  color: var(--white);
  border-color: rgba(255,255,255,.85);
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.hero .button-row .btn {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 15px;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

h1, h2, h3, .headline {
  font-family: var(--font-head);
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
h1 { font-size: clamp(38px, 5.9vw, 76px); margin: 0; }
h2 { font-size: clamp(28px, 3.4vw, 46px); margin: 0 0 16px; }
h3 { font-size: 24px; margin: 0 0 10px; }
p { margin: 0 0 16px; }
.mobile-only-break { display: none; }
.desktop-space { display: inline; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 32px;
}
.hero-copy {
  min-width: 0;
  padding: 0 0 28px;
}
.hero-lede {
  max-width: 660px;
  margin-top: 20px;
  font-size: 20px;
  color: #353a3f;
}
.hero-media {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.section {
  padding: 70px 22px;
}
.hero + .section {
  padding-top: 12px;
}
.section.soft { background: var(--soft); }
.section.dark {
  background: var(--ink);
  color: var(--white);
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
}
.section-head {
  max-width: 830px;
  margin-bottom: 34px;
}
.section-head p {
  font-size: 18px;
  color: #43494f;
}
.dark .section-head p,
.dark p { color: #d9dde1; }
.grid {
  display: grid;
  gap: 22px;
}
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 26px;
  border-radius: 6px;
}
.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin: -26px -26px 22px;
  max-width: calc(100% + 52px);
  border-bottom: 1px solid var(--line);
}
.card h3 a { text-decoration: none; }
.dark .card {
  background: #1b1d20;
  border-color: #3a3f45;
}
.feature-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 700;
}
.feature-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  background: var(--red);
  flex: 0 0 9px;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
.split img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.logo-pill,
.area-pill {
  border: 1px solid var(--line);
  padding: 12px 14px;
  background: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.process {
  counter-reset: step;
}
.process .card::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  margin-bottom: 16px;
}
.cta-band {
  margin: 0 auto;
  padding: 54px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: var(--red);
  color: var(--white);
}
.cta-band > div:first-child {
  max-width: 920px;
  margin-left: max(22px, calc((100vw - 1180px) / 2));
}
.cta-band > div:last-child {
  margin-right: max(22px, calc((100vw - 1180px) / 2));
}
.cta-band .eyebrow { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.9); }

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 32px;
  align-items: start;
}
.contact-form {
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--white);
  border-radius: 6px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
label,
.label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px 12px;
  border: 1px solid #c9cfd5;
  border-radius: 4px;
  font: inherit;
  background: var(--white);
}
textarea { min-height: 135px; resize: vertical; }
.field { margin-bottom: 16px; }
.toggle-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
}
.toggle-group input,
.checks input,
.consent input {
  width: auto;
}
.project-switch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 370px);
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
}
.project-switch-thumb {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 8px 18px rgba(179, 19, 23, .22);
  transition: transform .18s ease;
}
.project-switch.is-commercial .project-switch-thumb {
  transform: translateX(100%);
}
.project-switch label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 14px;
  cursor: pointer;
  color: var(--charcoal);
  font-weight: 900;
  text-transform: uppercase;
}
.project-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.project-switch input:checked + span {
  color: var(--white);
}
.choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 4px;
  font-weight: 800;
}
.checks .choice {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  border: 0;
  padding: 0;
  border-radius: 0;
  line-height: 1.25;
}
.checks .choice input {
  margin-top: 2px;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #42484f;
}
.form-note {
  padding: 14px;
  background: var(--soft);
  border-left: 4px solid var(--red);
  font-size: 14px;
}
.alert {
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 4px;
  background: #fff1f1;
  border: 1px solid #f3bbbb;
  color: #6f0e11;
}
.success {
  padding: 16px;
  background: #edf8ee;
  border: 1px solid #b9dfbe;
}
.honeypot { display: none; }

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}
.faq-list p { margin-top: 12px; color: #444a51; }

.site-footer {
  padding: 50px 22px 22px;
  background: var(--ink);
  color: var(--white);
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer-logo {
  max-width: 260px;
  background: var(--white);
  margin-bottom: 16px;
}
.site-footer h2 {
  font-size: 21px;
  margin-bottom: 14px;
}
.site-footer a {
  display: block;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 8px;
}
.site-footer p,
.footer-bottom {
  color: #c8cdd2;
}
.footer-bottom {
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid #3a3f45;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}

@media (max-width: 1050px) {
  .nav-wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav";
  }
  .brand { justify-self: center; }
  .brand img { width: min(100%, 520px); }
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
  }
  .top-strip { display: none; }
  .nav-wrap {
    grid-template-columns: minmax(0, min(286px, calc(100vw - 90px))) 44px;
    grid-template-areas:
      "brand toggle"
      "nav nav";
    justify-content: center;
    align-items: center;
    padding: 8px 0 0;
    gap: 8px;
  }
  .brand {
    display: block;
    width: 100%;
    max-width: 286px;
    justify-self: center;
    overflow: hidden;
  }
  .brand img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto;
  }
  .brand-logo-desktop { display: none; }
  .brand-logo-mobile { display: block; }
  .nav-toggle {
    grid-area: toggle;
    display: block;
    justify-self: start;
    width: 44px;
    height: 40px;
  }
  .site-nav {
    display: none;
    grid-area: nav;
    width: 80vw;
    max-width: 320px;
    margin: 10px auto 0;
  }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .site-nav a {
    border: 1px solid var(--line);
    padding: 11px 12px;
    text-align: center;
  }
  .hero,
  .split,
  .form-shell,
  .grid.two,
  .grid.three,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }
  .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-grid { grid-template-columns: 1fr; }
  .cta-band > div:first-child,
  .cta-band > div:last-child {
    margin: 0;
  }
  .footer-bottom { flex-direction: column; }
}

@media (min-width: 821px) {
  .hero {
    align-items: stretch;
  }
  .hero-copy {
    align-self: center;
  }
  .hero-media {
    align-self: stretch;
  }
  .hero-media img {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 520px) {
  h1 { font-size: 27px; line-height: 1.05; }
  h2 { font-size: 25px; line-height: 1.05; }
  h3 { font-size: 23px; line-height: 1.08; }
  .hero {
    display: block;
    width: 100%;
    max-width: none;
    padding: 0 18px;
  }
  .section { padding: 48px 18px; }
  .hero + .section { padding-top: 12px; }
  .area-grid { grid-template-columns: 1fr; }
  .button-row { justify-content: center; }
  .button-row .btn { width: auto; }
  .hero-copy,
  .section-head,
  .card,
  p { max-width: 100%; }
  .hero-copy {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    justify-self: center;
  }
  .mobile-only-break { display: block; }
  .desktop-space { display: none; }
  .hero .eyebrow {
    white-space: nowrap;
    font-size: 11px;
    letter-spacing: .04em;
  }
  .hero h1,
  .section-head,
  .section-head h2 {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero .hero-lede,
  .section-head p {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .section-head {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .checks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  h1 { font-size: 21px; }
  h2 { font-size: 18px; }
  .hero h1,
  .hero .hero-lede,
  .section-head,
  .section-head h2 {
    max-width: 100%;
  }
  .hero-lede { font-size: 18px; }
}
