:root {
  --black: #050505;
  --black-2: #090909;
  --ink: #111111;
  --white: #f4f3ef;
  --muted: #a8a6a0;
  --red: #f01b18;
  --red-deep: #a70c0b;
  --yellow: #f2dc1b;
  --line: rgba(244,243,239,.18);
  --line-soft: rgba(244,243,239,.09);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.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;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 34px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5,5,5,.94);
  backdrop-filter: blur(14px);
}
.wordmark {
  justify-self: start;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.wordmark-rr {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -2px;
  color: white;
  text-shadow: 2px 2px 0 var(--red);
}
.wordmark-copy {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.desktop-nav a {
  position: relative;
  color: #c9c7c1;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--red);
  transition: right 160ms ease;
}
.desktop-nav a:hover::after { right: 0; }

.header-action {
  justify-self: end;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
  font-family: var(--display);
  letter-spacing: .04em;
}
.header-action span { font-size: 13px; color: #bcbab4; }
.header-action strong { color: var(--red); font-size: 22px; font-style: italic; }

.menu-button, .mobile-nav { display: none; }

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: 52% 48%;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 700px;
  padding: clamp(56px, 7vw, 102px) 44px 52px max(34px, calc((100vw - 1380px) / 2));
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #b8b6af;
}
.hero-kicker > span:first-child { color: var(--red); }
.kicker-line {
  width: 42px;
  height: 1px;
  background: var(--line);
}
.hero h1 {
  margin: 48px 0 54px;
  font-family: var(--display);
  font-size: clamp(72px, 8.9vw, 152px);
  font-weight: 900;
  font-style: italic;
  line-height: .76;
  letter-spacing: -.048em;
  text-transform: uppercase;
}
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em {
  margin-top: .09em;
  color: var(--red);
  font-style: inherit;
  white-space: nowrap;
}
.hero-bottom {
  max-width: 690px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-bottom > p {
  max-width: 620px;
  margin: 0 0 26px;
  color: #b7b5ae;
  font-size: 15px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.action-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 246px;
  min-height: 56px;
  padding: 0 18px 0 20px;
  background: var(--red);
  color: white;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: .08em;
  transition: background 150ms ease, transform 100ms ease;
}
.action-primary:hover { background: #ff2623; }
.action-primary:active { transform: translateY(1px); }
.action-primary b { font-size: 22px; }
.action-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
  color: #d6d4ce;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
}
.action-secondary span { color: var(--red); transition: transform 150ms ease; }
.action-secondary:hover span { transform: translateX(4px); }

.hero-visual {
  position: relative;
  min-height: 700px;
  background: #0a0a0a;
  border-left: 1px solid var(--line-soft);
  overflow: hidden;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,5,5,.32), transparent 26%),
    linear-gradient(0deg, #050505 0, transparent 30%),
    #0a0a0a;
}
.hero-image-wrap {
  position: absolute;
  inset: 18% -4% 8% -5%;
  z-index: -1;
  display: flex;
  align-items: center;
}
.hero-image-wrap img {
  width: 116%;
  max-width: none;
  filter: contrast(1.08) saturate(.9);
  mix-blend-mode: screen;
}
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #0a0a0a 0%, transparent 21%),
    linear-gradient(0deg, #0a0a0a 0%, transparent 20%, transparent 74%, #0a0a0a 100%);
}
.slash {
  position: absolute;
  z-index: -3;
  width: 720px;
  height: 86px;
  background: var(--red);
  transform: rotate(-13deg);
  opacity: .94;
}
.slash-one { top: 22%; right: -250px; }
.slash-two { top: 36%; right: -410px; opacity: .38; }

.hero-logo {
  position: absolute;
  top: 7%;
  right: 7%;
  width: min(260px, 33%);
  mix-blend-mode: screen;
  opacity: .96;
}
.availability-stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 190px;
  min-height: 205px;
  display: grid;
  align-content: end;
  padding: 22px;
  background: var(--red);
  color: white;
  clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%, 0 28px);
}
.availability-stamp strong {
  font-family: var(--display);
  font-size: 86px;
  font-style: italic;
  line-height: .7;
  letter-spacing: -.06em;
}
.availability-stamp > span {
  margin-top: 11px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .08em;
}
.availability-stamp small {
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid rgba(255,255,255,.4);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.emergency-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  min-height: 86px;
  background: var(--red);
  color: white;
}
.emergency-band > span,
.emergency-band > a {
  display: flex;
  align-items: center;
}
.emergency-label {
  padding: 0 32px;
  background: white;
  color: #111;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}
.emergency-band a {
  gap: 18px;
  padding: 0 34px;
  font-family: var(--display);
}
.emergency-band a > span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  opacity: .8;
}
.emergency-band a strong {
  font-size: clamp(28px, 3.2vw, 47px);
  font-style: italic;
  line-height: 1;
}
.emergency-band a b {
  margin-left: auto;
  font-size: 30px;
  transition: transform 150ms ease;
}
.emergency-band a:hover b { transform: translate(3px, -3px); }
.emergency-note {
  padding: 0 30px;
  border-left: 1px solid rgba(255,255,255,.4);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
}

.services {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 38%) 1fr;
  gap: clamp(50px, 8vw, 130px);
  padding: 150px max(34px, calc((100vw - 1380px) / 2));
  border-bottom: 1px solid var(--line-soft);
}
.section-index {
  position: absolute;
  top: 76px;
  right: 4vw;
  font-family: var(--display);
  font-size: clamp(120px, 18vw, 300px);
  font-weight: 900;
  font-style: italic;
  line-height: .7;
  color: rgba(255,255,255,.025);
  pointer-events: none;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--red);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}
.services-head h2,
.dispatch-title h2,
.brand-proof-copy h2,
.contact-top h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6.5vw, 98px);
  font-weight: 900;
  font-style: italic;
  line-height: .82;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.services-head h2 em,
.dispatch-title h2 em,
.brand-proof-copy h2 em,
.contact-top h2 em {
  color: var(--red);
  font-style: inherit;
}
.services-head > p {
  max-width: 460px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.service-board {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
}
.service-row {
  min-height: 150px;
  display: grid;
  grid-template-columns: 52px minmax(190px, .8fr) 1fr 36px;
  gap: 26px;
  align-items: center;
  padding: 24px 6px 24px 0;
  border-bottom: 1px solid var(--line);
  transition: background 150ms ease, padding 150ms ease;
}
.service-row.is-primary:hover {
  padding-left: 14px;
  background: rgba(240,27,24,.07);
}
.service-no {
  align-self: start;
  padding-top: 8px;
  color: #77746d;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
}
.service-title {
  display: grid;
  align-content: center;
  line-height: .84;
}
.service-title h3 {
  margin: 0;
}
.service-title strong {
  font-family: var(--display);
  font-size: clamp(37px, 4vw, 58px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -.025em;
}
.service-title small {
  margin-top: 8px;
  color: var(--red);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .11em;
}
.service-row p {
  max-width: 430px;
  margin: 0;
  color: #9a9892;
  font-size: 13px;
  line-height: 1.65;
}
.service-arrow {
  justify-self: end;
  color: var(--red);
  font-size: 24px;
}

.dispatch {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) 1.25fr;
  gap: clamp(50px, 8vw, 120px);
  padding: 140px max(34px, calc((100vw - 1380px) / 2));
  background: #0a0a0a;
  border-bottom: 1px solid var(--line-soft);
}
.dispatch-title { align-self: start; }
.dispatch-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.dispatch-flow article {
  min-height: 330px;
  padding: 8px 26px 26px;
  border-left: 1px solid var(--line);
}
.dispatch-flow article:last-child { border-right: 1px solid var(--line); }
.flow-number {
  display: block;
  color: var(--red);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
}
.flow-rule {
  display: block;
  width: 100%;
  height: 1px;
  margin: 22px 0 90px;
  background: var(--line);
  position: relative;
}
.flow-rule::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--red);
}
.dispatch-flow h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 27px;
  line-height: .98;
  font-style: italic;
}
.dispatch-flow p {
  margin: 0;
  color: #8f8c85;
  font-size: 13px;
  line-height: 1.65;
}

.brand-proof {
  display: grid;
  grid-template-columns: 1fr minmax(400px, .82fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
  padding: 150px max(34px, calc((100vw - 1380px) / 2));
  border-bottom: 1px solid var(--line-soft);
}
.brand-proof-copy > p {
  max-width: 560px;
  margin: 34px 0 48px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.brand-proof-copy > .coverage-note {
  margin: 26px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--red);
  color: #d0cec8;
}
.brand-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.brand-facts > div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px;
  border-right: 1px solid var(--line);
}
.brand-facts > div:first-child { padding-left: 0; }
.brand-facts > div:last-child { border-right: 0; }
.brand-facts strong {
  font-family: var(--display);
  font-size: 32px;
  font-style: italic;
}
.brand-facts span {
  color: #88857f;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
}
.poster-frame {
  margin: 0;
  position: relative;
  border: 1px solid var(--line);
  background: #000;
  transform: rotate(1deg);
}
.poster-frame::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  z-index: -1;
  border: 1px solid rgba(240,27,24,.6);
}
.poster-frame img { width: 100%; }
.poster-frame figcaption {
  position: absolute;
  left: -1px;
  bottom: -38px;
  padding: 10px 15px;
  background: var(--red);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.contact {
  padding: 145px max(34px, calc((100vw - 1380px) / 2)) 110px;
}
.contact-top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: end;
  margin-bottom: 62px;
}
.contact-top .eyebrow { align-self: start; }
.contact-area-note {
  max-width: 680px;
  margin: -32px 0 44px auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.contact-list { border-top: 1px solid var(--line); }
.contact-person {
  display: grid;
  grid-template-columns: 130px 1.2fr 1fr 100px;
  gap: 22px;
  align-items: center;
  min-height: 142px;
  border-bottom: 1px solid var(--line);
  transition: color 140ms ease, padding 140ms ease, background 140ms ease;
}
.contact-person:hover {
  padding-inline: 14px;
  color: white;
  background: var(--red);
}
.contact-person:hover .contact-role,
.contact-person:hover .contact-phone { color: rgba(255,255,255,.78); }
.contact-role {
  color: var(--red);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}
.contact-person strong {
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 64px);
  font-style: italic;
  line-height: 1;
}
.contact-phone {
  color: #d3d0c9;
  font-family: var(--display);
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 700;
  font-style: italic;
  white-space: nowrap;
}
.contact-go {
  justify-self: end;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.social-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 22px;
  padding-top: 24px;
  color: #8f8c86;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.social-row a { color: white; }
.social-tagline { color: var(--red); }

footer {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 34px;
  border-top: 1px solid var(--line-soft);
  color: #77746e;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
}
footer a { color: #bbb8b1; }

.mobile-emergency { display: none; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .hero { grid-template-columns: 57% 43%; }
  .hero-copy { padding-left: 30px; }
  .services,
  .dispatch,
  .brand-proof {
    grid-template-columns: 1fr;
  }
  .services-head { max-width: 720px; }
  .dispatch-flow { max-width: 920px; }
  .brand-proof { align-items: start; }
  .poster-frame { width: min(650px, 100%); }
  .contact-person { grid-template-columns: 110px 1.2fr 1fr 80px; }
}

@media (max-width: 820px) {
  body { padding-bottom: 74px; }
  .topbar {
    min-height: 64px;
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }
  .desktop-nav, .header-action { display: none; }
  .menu-button {
    justify-self: end;
    display: block;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
    color: white;
  }
  .menu-button > span:not(.sr-only) {
    display: block;
    width: 23px;
    height: 2px;
    margin: 6px 0;
    background: currentColor;
  }
  .mobile-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 12px 18px 20px;
    background: #080808;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav.is-open { display: flex; }
  .mobile-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
    font-family: var(--display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .04em;
  }
  .mobile-nav a:last-child { color: var(--red); }

  .hero {
    min-height: auto;
    display: block;
  }
  .hero-copy {
    min-height: auto;
    padding: 56px 18px 40px;
  }
  .hero-kicker {
    flex-wrap: wrap;
    row-gap: 7px;
  }
  .hero-kicker > span:last-child { width: 100%; }
  .kicker-line { display: none; }
  .hero h1 {
    margin: 46px 0 40px;
    font-size: clamp(64px, 20vw, 105px);
    line-height: .78;
  }
  .hero h1 em { white-space: normal; }
  .hero-bottom { max-width: none; }
  .hero-actions { align-items: stretch; }
  .action-primary { width: 100%; }
  .action-secondary { width: fit-content; }

  .hero-visual {
    min-height: 520px;
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }
  .hero-image-wrap { inset: 17% -26% 6% -20%; }
  .hero-logo { width: 190px; max-width: 44%; right: 4%; top: 6%; }
  .availability-stamp {
    width: 150px;
    min-height: 170px;
    padding: 17px;
  }
  .availability-stamp strong { font-size: 66px; }

  .emergency-band {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .emergency-label, .emergency-note { display: none !important; }
  .emergency-band a { min-height: 82px; padding: 0 18px; }
  .emergency-band a strong { font-size: 34px; }

  .services, .dispatch, .brand-proof, .contact {
    padding: 96px 18px;
  }
  .section-index { display: none; }
  .services { gap: 54px; }
  .service-row {
    min-height: 170px;
    grid-template-columns: 36px 1fr 28px;
    gap: 15px;
  }
  .service-row p {
    grid-column: 2 / 4;
    margin-top: -22px;
    padding-bottom: 8px;
  }
  .service-title strong { font-size: 44px; }
  .service-arrow { grid-column: 3; grid-row: 1; }

  .dispatch { gap: 55px; }
  .dispatch-flow { grid-template-columns: 1fr; }
  .dispatch-flow article {
    min-height: auto;
    padding: 24px 0 30px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .dispatch-flow article:last-child { border-right: 0; border-bottom: 1px solid var(--line); }
  .flow-rule { margin: 18px 0 34px; }

  .brand-proof { gap: 64px; }
  .brand-facts { grid-template-columns: 1fr; }
  .brand-facts > div {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-left: 0;
  }
  .brand-facts > div:last-child { border-bottom: 0; }

  .contact-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-area-note {
    margin: -4px 0 34px;
  }
  .contact-person {
    min-height: auto;
    grid-template-columns: 1fr auto;
    gap: 7px 14px;
    padding: 27px 0;
  }
  .contact-role { grid-column: 1 / 3; }
  .contact-person strong { grid-column: 1 / 3; font-size: 45px; }
  .contact-phone { grid-column: 1; font-size: 27px; }
  .contact-go { grid-column: 2; }
  .social-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .social-tagline { margin-top: 14px; }

  footer {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 30px 18px;
  }

  .mobile-emergency {
    position: fixed;
    z-index: 60;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 18px;
    background: var(--red);
    color: white;
    font-family: var(--display);
  }
  .mobile-emergency span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .09em;
  }
  .mobile-emergency strong {
    font-size: 17px;
    font-style: italic;
    letter-spacing: .04em;
  }
}

@media (max-width: 480px) {
  .wordmark-copy { font-size: 11px; }
  .wordmark-rr { font-size: 29px; }
  .hero-visual { min-height: 430px; }
  .hero-image-wrap { inset: 20% -42% 10% -34%; }
  .availability-stamp { width: 128px; min-height: 146px; }
  .availability-stamp strong { font-size: 55px; }
  .availability-stamp > span { font-size: 20px; }
  .availability-stamp small { font-size: 9px; }
  .services-head h2,
  .dispatch-title h2,
  .brand-proof-copy h2,
  .contact-top h2 { font-size: 58px; }
  .poster-frame::before { display: none; }
}

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