@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #111317;
  --charcoal: #181b20;
  --panel: #22262d;
  --steel: #68717c;
  --mist: #eef1f4;
  --paper: #fbfcfd;
  --white: #ffffff;
  --red: #d71920;
  --red-dark: #a70f15;
  --amber: #f3b23c;
  --line: rgba(17, 19, 23, 0.12);
  --light-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

p {
  line-height: 1.7;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-solid,
.site-header.nav-active {
  background: rgba(17, 19, 23, 0.96);
  box-shadow: 0 1px 0 var(--light-line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(164px, 17vw, 220px);
  max-height: 52px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  color: rgba(255, 255, 255, 0.8);
}

.nav a:hover {
  color: var(--white);
}

.nav-call {
  padding: 13px 18px;
  background: var(--red);
  color: var(--white) !important;
  min-width: 188px;
  text-align: center;
  white-space: nowrap;
  word-spacing: 0.18em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--light-line);
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 19, 23, 0.94), rgba(17, 19, 23, 0.74) 46%, rgba(17, 19, 23, 0.18)),
    linear-gradient(0deg, rgba(17, 19, 23, 0.88), rgba(17, 19, 23, 0.12) 58%, rgba(17, 19, 23, 0.52));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 138px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 52px;
  align-items: end;
}

.hero-copy {
  max-width: 730px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(54px, 8vw, 104px);
  line-height: 0.92;
}

h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.96;
}

h3 {
  font-size: 26px;
  line-height: 1;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 0;
  font: 900 13px/1 Inter, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.light {
  background: var(--white);
  color: var(--ink);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 9px 12px;
  border: 1px solid var(--light-line);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.quote-card {
  padding: 26px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-card h2 {
  margin-bottom: 18px;
  font-size: 34px;
}

.form-kicker {
  margin: 0 0 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  color: var(--ink);
  background: #f7f8fa;
  font: 500 15px/1.4 Inter, sans-serif;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--steel);
  font-size: 13px;
  line-height: 1.45;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--red);
  color: var(--white);
}

.trust-strip div {
  padding: 24px clamp(16px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-strip strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 34px;
  line-height: 0.9;
  text-transform: uppercase;
}

.trust-strip span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-inner,
.service-grid,
.services-list {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: start;
}

.split > p,
.area-panel p {
  margin: 0;
  color: var(--steel);
  font-size: 17px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.service-grid.compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.service-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 220ms ease, opacity 220ms ease;
}

.service-card:hover img {
  transform: scale(1.04);
  opacity: 0.58;
}

.service-card span {
  position: absolute;
  inset: auto 16px 16px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
}

.dark-band {
  background: var(--charcoal);
  color: var(--white);
}

.dark-band .section-heading h2 {
  max-width: 760px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-grid article {
  padding: 26px;
  border: 1px solid var(--light-line);
  background: rgba(255, 255, 255, 0.04);
}

.value-grid span,
.service-row span {
  color: var(--red);
  font-weight: 900;
}

.value-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  counter-increment: process;
}

.process-list li::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 20px;
  color: var(--red);
  font-weight: 900;
}

.process-list strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 26px;
  text-transform: uppercase;
}

.process-list span {
  display: block;
  margin-top: 8px;
  color: var(--steel);
  font-size: 14px;
  line-height: 1.6;
}

.area-panel {
  padding: 28px;
  background: var(--mist);
  border-left: 5px solid var(--red);
}

.area-panel .button {
  margin-top: 20px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(38px, 6vw, 64px) clamp(20px, 6vw, 76px);
  background: var(--ink);
  color: var(--white);
}

.cta-band h2 {
  max-width: 780px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  padding: 42px clamp(20px, 5vw, 72px);
  background: #0c0d10;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
  width: 190px;
  margin-bottom: 14px;
}

.site-footer strong,
.site-footer a,
.site-footer span {
  display: block;
}

.site-footer strong {
  margin-bottom: 12px;
  color: var(--white);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  margin-bottom: 8px;
}

.page-main {
  padding-top: 78px;
}

.page-hero {
  padding: clamp(78px, 10vw, 130px) clamp(20px, 6vw, 76px);
  background: var(--charcoal);
  color: var(--white);
}

.page-hero h1,
.page-hero p {
  max-width: 820px;
}

.page-hero p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.service-row img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.service-row p {
  color: var(--steel);
}

.text-link {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.pill-grid,
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-grid span,
.area-tags span {
  padding: 12px 15px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 800;
}

.contact-layout {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) 0;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 54px;
  align-items: start;
}

.contact-copy p {
  color: var(--steel);
  font-size: 17px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a,
.contact-methods div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-methods strong,
.contact-methods span {
  display: block;
}

.contact-methods strong {
  margin-bottom: 4px;
  color: var(--red);
  text-transform: uppercase;
}

.contact-card {
  box-shadow: 0 20px 60px rgba(17, 19, 23, 0.14);
}

.thanks-page,
.legal-page {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: start;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 60px 0;
}

.thanks-page img {
  width: 220px;
  margin-bottom: 26px;
}

.legal-page a:not(.button) {
  color: var(--red);
}

@media (max-width: 960px) {
  .hero-inner,
  .split,
  .contact-layout,
  .service-row {
    grid-template-columns: 1fr;
  }

  .quote-card {
    max-width: 560px;
  }

  .trust-strip,
  .service-grid.compact,
  .value-grid,
  .process-list,
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    padding-top: 54px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding: 12px 18px;
  }

  .brand img {
    width: 154px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    inset: 70px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 20px;
    background: var(--ink);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--light-line);
  }

  .nav-call {
    margin-top: 12px;
    padding: 15px;
    text-align: center;
    border-bottom: 0 !important;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 44px;
    gap: 32px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-text {
    font-size: 16px;
  }

  .trust-strip,
  .service-grid.compact,
  .value-grid,
  .process-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card img {
    min-height: 210px;
  }

  .cta-band {
    display: grid;
  }

  .cta-band .button {
    width: 100%;
  }

  .page-main {
    padding-top: 70px;
  }
}
