:root {
  color-scheme: dark;
  --black: #070707;
  --black-soft: #101010;
  --black-card: #171717;
  --white: #ffffff;
  --paper: #f6f4ef;
  --paper-soft: #ebe8df;
  --muted: #b8b8b8;
  --muted-dark: #5b5b5b;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(7, 7, 7, 0.12);
  --red: #df1f2d;
  --red-dark: #b81522;
  --radius: 8px;
  --container: min(1120px, calc(100vw - 40px));
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
}

.promo-banner {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(7, 7, 7, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(140px, 12vw, 170px);
  height: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav__menu a {
  position: relative;
  padding-block: 8px;
}

.nav__menu a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform 180ms ease;
}

.nav__menu a:hover,
.nav__menu a:focus-visible,
.nav__menu a[aria-current="page"] {
  color: var(--white);
}

.nav__menu a:hover::after,
.nav__menu a:focus-visible::after,
.nav__menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
}

.nav-toggle__bar {
  display: block;
  width: 21px;
  height: 2px;
  margin: 2px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: clamp(650px, 82svh, 790px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.95) 0%, rgba(7, 7, 7, 0.72) 42%, rgba(7, 7, 7, 0.14) 78%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.86) 0%, rgba(7, 7, 7, 0.06) 52%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-block: 86px 74px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 950;
  max-width: 920px;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  font-weight: 950;
  max-width: 820px;
}

h3 {
  font-size: 1.18rem;
}

.hero__lead,
.page-hero p,
.section__header p,
.media-split__content p,
.cta-band p,
.contact-page__content p,
.locations-page-grid p,
.prose p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
}

.hero__actions,
.button-row,
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

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

.button--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button--outline {
  border-color: currentColor;
  background: transparent;
  color: currentColor;
}

.trust-strip {
  background: var(--paper);
  color: var(--black);
  border-bottom: 1px solid var(--line-dark);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid p {
  min-height: 88px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 20px;
  border-left: 1px solid var(--line-dark);
  color: var(--black-soft);
  font-weight: 900;
}

.trust-grid p:last-child {
  border-right: 1px solid var(--line-dark);
}

.section {
  padding: 96px 0;
}

.section--white {
  background: var(--paper);
  color: var(--black);
}

.section--black {
  background: var(--black);
  color: var(--white);
}

.section__header {
  display: grid;
  justify-items: center;
  margin-bottom: 42px;
  text-align: center;
}

.section__header--left {
  justify-items: start;
  margin-bottom: 0;
  text-align: left;
}

.section__header p {
  max-width: 690px;
  margin: 18px 0 0;
}

.section--white .section__header p,
.locations-page-grid p {
  color: var(--muted-dark);
}

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

.service-card,
.process-grid article,
.service-detail-list article {
  border-radius: var(--radius);
}

.service-card {
  min-height: 280px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7, 7, 7, 0.08);
}

.service-card__kicker,
.process-grid span,
.service-detail-list span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
}

.service-card p,
.service-detail-list p {
  margin: 0;
  color: var(--muted-dark);
}

.media-section {
  padding: 82px 0;
  background: var(--black-soft);
  color: var(--white);
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 54px;
  align-items: center;
}

.media-split__image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-split__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-split__content p {
  max-width: 560px;
  margin: 20px 0 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--black-card);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 48px;
}

.process-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.locations-layout,
.locations-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 46px;
  align-items: start;
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font-weight: 900;
}

.location-list--large span {
  min-height: 50px;
  padding-inline: 18px;
}

.cta-band {
  padding: 88px 0;
  background:
    linear-gradient(135deg, rgba(223, 31, 45, 0.16), rgba(255, 255, 255, 0.02)),
    var(--black);
  color: var(--white);
}

.cta-band__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.cta-band p {
  max-width: 680px;
  margin: 18px 0 0;
}

.cta-band__actions {
  justify-content: flex-end;
  margin-top: 0;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.contact-lines a {
  color: var(--white);
}

.page-hero {
  padding: 108px 0;
  background:
    linear-gradient(135deg, rgba(223, 31, 45, 0.12), rgba(255, 255, 255, 0)),
    var(--black);
  color: var(--white);
}

.page-hero__content {
  max-width: 860px;
}

.page-hero p {
  max-width: 720px;
  margin: 20px 0 0;
}

.page-hero .button {
  margin-top: 32px;
}

.service-detail-list {
  display: grid;
  gap: 16px;
}

.service-detail-list article {
  display: grid;
  grid-template-columns: 76px minmax(220px, 0.4fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line-dark);
  background: var(--white);
}

.service-detail-list h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.contact-page {
  padding: 96px 0;
  background: var(--black);
}

.contact-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 56px;
  align-items: start;
}

.contact-page__content p {
  max-width: 560px;
  margin: 20px 0 0;
}

.contact-lines--stacked {
  display: grid;
  margin-top: 30px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--black);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  outline: none;
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 142px;
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(223, 31, 45, 0.18);
}

.form-button {
  width: fit-content;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--red-dark);
  font-weight: 900;
}

.prose {
  max-width: 820px;
}

.prose h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.prose a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
}

.footer {
  padding: 38px 0;
  background: #020202;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--line);
}

.footer__layout {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.brand--footer img {
  width: 170px;
}

.footer p {
  margin: 0;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 18px;
  font-weight: 800;
}

@media (max-width: 960px) {
  .nav {
    min-height: 76px;
  }

  .brand img {
    width: 112px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav__menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 7, 7, 0.98);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .nav__menu.is-open {
    transform: translateY(0);
  }

  .nav__menu a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav__cta {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__content {
    padding-block: 66px 56px;
  }

  .trust-grid,
  .service-grid,
  .media-split,
  .process-grid,
  .locations-layout,
  .locations-page-grid,
  .cta-band__layout,
  .contact-page__layout,
  .footer__layout {
    grid-template-columns: 1fr;
  }

  .trust-grid p {
    min-height: 66px;
    border-right: 1px solid var(--line-dark);
  }

  .service-card,
  .process-grid article {
    min-height: auto;
  }

  .section,
  .contact-page,
  .page-hero {
    padding: 74px 0;
  }

  .cta-band {
    padding: 74px 0;
  }

  .cta-band__actions {
    justify-content: flex-start;
  }

  .service-detail-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .promo-banner {
    font-size: 0.82rem;
  }

  .nav {
    min-height: 72px;
  }

  .brand img {
    width: 104px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }

  .hero {
    min-height: 690px;
  }

  .hero__lead,
  .page-hero p,
  .section__header p,
  .media-split__content p,
  .cta-band p,
  .contact-page__content p,
  .locations-page-grid p,
  .prose p {
    font-size: 1rem;
  }

  .button,
  .hero__actions,
  .button-row,
  .cta-band__actions {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .brand--footer img {
    width: 126px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
