:root {
  --black: #050507;
  --black-2: #0a0a0d;
  --black-3: #101014;
  --panel: #0c0c10;
  --line: #24242a;
  --red: #ef101f;
  --red-deep: #78000a;
  --white: #f6f6f7;
  --muted: #a7a7ae;
  --wrap: min(1180px, calc(100% - 40px));
  --heading: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Oswald", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 14px;
  background: #fff;
  color: #000;
}
.skip-link:focus { top: 16px; }

.wrap { width: var(--wrap); margin-inline: auto; }

.service-strip {
  position: relative;
  z-index: 30;
  background: #19070a;
  border-bottom: 1px solid #34090f;
  color: #d5d5d9;
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
}
.service-strip__inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.service-strip span { white-space: nowrap; }
.service-strip span i::before { content: "•"; color: var(--red); font-style: normal; padding: 0 .5em; }
.service-strip a { color: var(--red); text-decoration: none; font-size: 13px; letter-spacing: .08em; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  background: rgba(5,5,7,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { width: 66px; height: 54px; overflow: hidden; display: block; }
.brand img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: .09em;
  font-size: 14px;
}
.desktop-nav a:not(.nav-call):hover { color: var(--red); }
.nav-call { border: 1px solid #5a5a61; padding: 10px 18px; }
.nav-call:hover { background: var(--red); border-color: var(--red); }

.menu-button {
  display: none;
  background: transparent;
  border: 0;
  width: 46px;
  height: 46px;
  padding: 12px;
  cursor: pointer;
}
.menu-button span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 78px 0 auto 0;
  background: #070709;
  border-bottom: 1px solid var(--line);
  padding: 16px 20px 28px;
  flex-direction: column;
  z-index: 24;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--heading);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: .05em;
  padding: 13px 0;
  border-bottom: 1px solid #1d1d21;
}
.mobile-nav a:last-child { color: var(--red); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 26% 34%, rgba(239,16,31,.11), transparent 55%),
    linear-gradient(180deg, #08080a 0%, #050507 100%);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 0 57%, rgba(239,16,31,.05) 57% 58%, transparent 58% 100%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.018) 0 1px, transparent 1px 16px);
  opacity: .7;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .15;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}
.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 650px;
  padding: 70px 0 52px;
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(450px, 1.05fr);
  align-items: center;
  gap: 70px;
}
.hero__logo { position: relative; }
.logo-glow {
  position: absolute;
  inset: 16% 12%;
  border-radius: 50%;
  background: rgba(239,16,31,.15);
  filter: blur(80px);
}
.hero__logo img {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  position: relative;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.45));
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .25em;
}
.hero h1,
.section h2,
.cta h2 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(58px, 7.2vw, 104px); max-width: 680px; }
.hero h1 span { color: #fff; }
.hero__copy::before {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  background: var(--red);
  margin-bottom: 20px;
  transform: skewX(-20deg);
}
.hero__lede {
  color: #bdbdc3;
  max-width: 600px;
  margin: 26px 0 28px;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .045em;
  border: 1px solid #4b4b51;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 17px; fill: currentColor; }
.btn--primary { background: var(--red); border-color: var(--red); color: #fff; }
.btn--primary:hover { background: #ff2532; }
.btn--ghost { background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: #fff; }
.hero__rule {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #b1b1b7;
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
}
.hero__rule i { height: 1px; flex: 1; max-width: 70px; background: var(--red); opacity: .65; }

.trust-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  min-height: 90px;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  color: #c0c0c5;
  font-size: 13px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.dot-check {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(239,16,31,.5);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--red);
  font-size: 11px;
  flex: 0 0 auto;
}

.section { position: relative; padding: 98px 0; }
.section-heading { margin-bottom: 52px; }
.section h2 { font-size: clamp(52px, 6vw, 82px); }
.red-line { width: 48px; height: 4px; background: var(--red); margin-top: 18px; transform: skewX(-18deg); }

.process { background: #070709; border-bottom: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-card {
  min-height: 360px;
  position: relative;
  padding: 105px 32px 36px;
  overflow: hidden;
  border-right: 1px solid var(--line);
}
.process-card:last-child { border-right: 0; }
.process-number {
  position: absolute;
  top: 12px;
  left: 18px;
  font-family: var(--heading);
  font-size: 94px;
  font-weight: 900;
  line-height: 1;
  color: rgba(137,0,12,.32);
  letter-spacing: -.03em;
}
.process-label { color: var(--red); font-family: var(--heading); font-size: 11px; letter-spacing: .18em; font-weight: 800; margin-bottom: 9px; }
.process-card h3 { margin: 0 0 14px; font-family: var(--heading); font-weight: 900; font-size: 30px; line-height: 1; }
.process-card p { color: #b0b0b5; margin: 0; font-size: 15px; line-height: 1.65; }

.life-safe {
  min-height: 610px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4,4,5,.12), rgba(4,4,5,.1)),
    radial-gradient(1000px 500px at 50% 40%, #1a1014 0%, #09090b 55%, #050507 100%);
  border-bottom: 1px solid var(--line);
}
.life-safe::before,
.life-safe::after {
  content: "";
  position: absolute;
  inset: -35% -12%;
  background: repeating-linear-gradient(120deg, transparent 0 26px, rgba(255,255,255,.025) 26px 27px);
  transform: rotate(-8deg);
}
.life-safe::after { transform: rotate(10deg); opacity: .5; }
.life-safe__flare {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(239,16,31,.08);
  filter: blur(110px);
  top: 40px;
  left: calc(50% - 260px);
}
.life-safe__inner { position: relative; z-index: 1; text-align: center; max-width: 760px; }
.shield { width: 58px; margin: 0 auto 18px; fill: none; stroke: var(--red); stroke-width: 2.2; }
.life-safe h2 { font-size: clamp(52px, 6.2vw, 82px); }
.life-safe__copy { color: #bbbcc1; font-size: 17px; line-height: 1.7; max-width: 680px; margin: 24px auto 26px; }
.safe-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.safe-tags span { border: 1px solid #32151a; background: rgba(130,0,12,.1); color: #d6d6da; padding: 9px 14px; font-family: var(--heading); font-size: 12px; font-weight: 800; letter-spacing: .06em; }
.safe-tags span::first-letter { color: var(--red); }

.service-area { background: #08080a; border-bottom: 1px solid var(--line); }
.service-area__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.service-area h2 { font-size: clamp(44px, 5.1vw, 68px); }
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 18px;
}
.area-grid div {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  background: #0d0d10;
  border: 1px solid #202025;
  color: #d2d2d5;
  font-size: 14px;
}
.area-grid span { color: var(--red); font-size: 10px; }
.coverage-note { grid-column: 2; color: #87878d; font-size: 14px; margin: 2px 0 0; }
.coverage-note a { color: var(--red); text-decoration: none; }

.cta { background: #060608; text-align: center; }
.cta__inner { max-width: 760px; }
.red-line--center { margin-inline: auto; margin-bottom: 26px; }
.cta h2 { font-size: clamp(50px, 6vw, 78px); }
.cta a {
  display: inline-block;
  margin-top: 20px;
  color: var(--red);
  text-decoration: none;
  font-family: var(--heading);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1;
}
.cta p { margin-top: 28px; color: #8f8f95; font-family: var(--heading); font-size: 11px; letter-spacing: .24em; font-weight: 800; }
.cta p span { color: var(--red); padding: 0 .4em; }

.site-footer { padding: 70px 0 26px; background: #050507; border-top: 1px solid #161619; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .9fr; gap: 70px; }
.footer-brand img { width: 140px; margin-bottom: 18px; }
.footer-brand p { color: #8d8d94; max-width: 420px; font-size: 14px; }
.footer-standard { color: var(--red); text-decoration: none; font-size: 13px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column h3 { margin: 3px 0 12px; font-family: var(--heading); font-size: 11px; letter-spacing: .2em; color: #e3e3e6; }
.footer-column a { color: #8f8f95; text-decoration: none; font-size: 14px; }
.footer-column a:hover { color: #fff; }
.footer-column .footer-phone { color: var(--red); font-weight: 700; }
.footer-column p { color: #85858c; font-size: 13px; line-height: 1.65; margin: 2px 0; }
.footer-bottom { margin-top: 54px; padding-top: 22px; border-top: 1px solid #161619; display: flex; justify-content: space-between; gap: 20px; color: #626269; font-size: 11px; }
.footer-bottom i { color: var(--red); font-style: normal; }

.mobile-call { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --wrap: min(100% - 32px, 820px); }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero__inner { min-height: auto; grid-template-columns: 1fr; gap: 30px; padding: 46px 0 44px; }
  .hero__logo img { max-width: 480px; }
  .hero__copy { text-align: center; }
  .hero__copy::before { margin-inline: auto; }
  .hero h1 { margin-inline: auto; }
  .hero__lede { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__rule { justify-content: center; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { border-right: 0; border-bottom: 1px solid var(--line); min-height: 270px; padding-top: 96px; }
  .process-card:last-child { border-bottom: 0; }
  .service-area__inner { grid-template-columns: 1fr; gap: 42px; }
  .coverage-note { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --wrap: calc(100% - 28px); }
  body { padding-bottom: 68px; }
  .service-strip { font-size: 8px; letter-spacing: .12em; }
  .service-strip__inner { min-height: 30px; }
  .service-strip a { font-size: 10px; }
  .site-header__inner { min-height: 62px; }
  .brand { width: 48px; height: 40px; }
  .mobile-nav { inset: 62px 0 auto 0; }
  .hero__inner { padding: 24px 0 32px; gap: 25px; }
  .hero__logo img { max-width: 330px; }
  .hero__copy { text-align: left; }
  .hero__copy::before { margin-inline: 0; margin-bottom: 15px; width: 42px; height: 3px; }
  .eyebrow { font-size: 10px; letter-spacing: .2em; }
  .hero h1 { font-size: clamp(46px, 15vw, 68px); margin-inline: 0; }
  .hero__lede { font-size: 15px; line-height: 1.65; margin: 17px 0 22px; }
  .hero__actions { justify-content: flex-start; flex-direction: column; }
  .btn { width: 100%; }
  .hero__rule { margin-top: 24px; justify-content: flex-start; font-size: 8px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 13px 8px; font-size: 10px; gap: 6px; min-height: 62px; }
  .dot-check { width: 17px; height: 17px; }
  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 30px; }
  .section h2 { font-size: clamp(46px, 14vw, 64px); }
  .red-line { width: 36px; height: 3px; margin-top: 13px; }
  .process-grid { border-bottom: 0; }
  .process-card { min-height: 300px; padding: 95px 8px 30px 0; }
  .process-number { left: 0; top: 14px; font-size: 86px; }
  .process-card h3 { font-size: 27px; }
  .process-card p { font-size: 14px; }
  .life-safe { min-height: 540px; }
  .life-safe__copy { font-size: 14px; }
  .safe-tags { gap: 8px; }
  .safe-tags span { font-size: 10px; padding: 8px 10px; }
  .service-area h2 { font-size: clamp(42px, 12.2vw, 58px); }
  .area-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .area-grid div { min-height: 52px; font-size: 11px; padding: 10px 10px; }
  .coverage-note { font-size: 12px; }
  .cta h2 { font-size: clamp(46px, 13.5vw, 64px); }
  .cta a { font-size: clamp(34px, 10vw, 46px); }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-brand img { width: 110px; }
  .footer-bottom { flex-direction: column; margin-top: 38px; }
  .mobile-call {
    position: fixed;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 58px;
    background: var(--red);
    color: white;
    text-decoration: none;
    font-family: var(--heading);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: .05em;
    box-shadow: 0 -8px 25px rgba(0,0,0,.35);
  }
  .mobile-call svg { width: 19px; fill: currentColor; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}
