@font-face {
  font-family: "Roboto";
  src: url("/static/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/static/fonts/Roboto-SemiBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #141414;
  --ink-soft: #3b3b3b;
  --paper: #ffffff;
  --surface: #f7f6f2;
  --concrete: #efede8;
  --line: #ded8d0;
  --steel: #161616;
  --red: #b3120b;
  --red-dark: #7d0e09;
  --red-soft: #fff1ef;
  --graphite: #222222;
  --shadow: 0 18px 50px rgba(20, 20, 20, 0.12);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover,
a:focus-visible {
  color: var(--red);
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 10px 28px;
  color: var(--ink);
  background: var(--paper);
  border-top: 4px solid var(--red);
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
  box-shadow: 0 10px 30px rgba(21, 21, 21, 0.08);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 24px;
  height: 24px;
  pointer-events: none;
  background: var(--red);
}

.site-header::before {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.site-header::after {
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.site-header.is-scrolled,
.legal-header {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(21, 21, 21, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  min-width: 144px;
  height: 68px;
  padding: 0;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.primary-nav {
  position: relative;
  isolation: isolate;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.primary-nav::after {
  display: none;
}

.primary-nav a {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  box-shadow: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.primary-nav a + a {
  border-left-color: transparent;
}

.primary-nav .fa {
  width: 16px;
  color: var(--red);
  text-align: center;
  font-size: 0.95rem;
  transition: color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  border-color: transparent;
  background: transparent;
  color: var(--red);
  box-shadow: none;
}

.primary-nav a:focus-visible {
  outline: 2px solid rgba(181, 17, 10, 0.36);
  outline-offset: 3px;
}

.primary-nav a:active {
  box-shadow: inset 0 -3px 0 var(--red);
}

.primary-nav a:hover .fa,
.primary-nav a:focus-visible .fa {
  color: var(--red);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-weight: 700;
  color: currentColor;
  white-space: nowrap;
}

.header-call .fa {
  color: var(--red);
  font-size: 1rem;
}

.header-call:hover,
.header-call:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

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

.mobile-menu {
  position: fixed;
  z-index: 45;
  inset: 82px 0 auto 0;
  display: none;
  padding: 18px 20px 24px;
  background: var(--paper);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-menu .fa {
  width: 18px;
  color: var(--red);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 150px 0 120px;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.52) 42%, rgba(0, 0, 0, 0.24) 100%),
    linear-gradient(0deg, rgba(179, 18, 11, 0.28) 0%, transparent 34%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56) 0%, transparent 48%);
}

.hero-content {
  position: relative;
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2d2cd;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 4.3rem;
  line-height: 1.03;
}

.hero h1 {
  max-width: 1100px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.18em;
  font-size: clamp(3.35rem, 4.7vw, 4.15rem);
  line-height: 1.04;
  text-wrap: balance;
}

.hero-title-prefix {
  display: inline-flex;
  align-items: baseline;
  flex: 0 0 auto;
}

.hero-title-logo {
  display: block;
  width: auto;
  height: 0.72em;
  transform: translateY(0.06em);
}

.hero-title-company {
  position: relative;
  display: inline-block;
  padding: 0 0.12em 0.045em 0.03em;
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: 0;
  transform: skewX(-4deg);
  transform-origin: left 72%;
  text-shadow:
    0.025em 0 0 rgba(255, 255, 255, 0.18),
    0.045em 0.04em 0 rgba(179, 18, 11, 0.16);
}

.hero-title-company::before,
.hero-title-company::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-title-company::before {
  left: 0.02em;
  right: auto;
  bottom: 0;
  width: 38%;
  height: 0.055em;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
  opacity: 0.95;
}

.hero-title-company::after {
  right: 0;
  bottom: 0.03em;
  width: 0.14em;
  height: 0.14em;
  background: var(--red);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform: skewX(4deg);
}

@media (min-width: 1120px) {
  .hero h1 {
    white-space: nowrap;
    flex-wrap: nowrap;
  }
}

h2 {
  margin-bottom: 18px;
  font-size: 2.45rem;
  line-height: 1.14;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.22;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
}

.hero-copy-short {
  display: none;
}

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

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 700;
  border: 1px solid transparent;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button::before,
.button::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.button::before {
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.button::after {
  left: 0;
  bottom: 0;
  width: 26px;
  height: 10px;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

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

.button.button-primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.24), 0 10px 22px rgba(179, 18, 11, 0.22);
}

.button.button-primary::before {
  background: var(--ink);
}

.button.button-primary::after {
  background: rgba(255, 255, 255, 0.18);
}

.button.button-primary:hover,
.button.button-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--paper);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.28), 0 12px 26px rgba(179, 18, 11, 0.26);
}

.button.button-secondary {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(20, 20, 20, 0.18);
  color: var(--paper);
  box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.12);
}

.button.button-secondary::before {
  background: var(--red);
}

.button.button-secondary::after {
  background: rgba(255, 255, 255, 0.5);
}

.button.button-secondary:hover,
.button.button-secondary:focus-visible {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper);
}

.hero-facts {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 620px;
}

.hero-facts span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  background: rgba(20, 20, 20, 0.58);
  font-size: 0.86rem;
}

.hero-facts .fa {
  color: #f2d2cd;
}

.intro-band {
  position: relative;
  padding: 66px 0;
  background: var(--surface);
  border-top: 5px solid var(--red);
  border-bottom: 1px solid var(--line);
}

.intro-band::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: min(18vw, 180px);
  height: 44px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
}

.intro-grid,
.split-grid,
.benefits-grid,
.contact-top,
.footer-grid {
  display: grid;
  gap: 42px;
}

.intro-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-text {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section,
.split-section,
.contact-section {
  padding: 86px 0;
}

section[id] {
  scroll-margin-top: 108px;
}

.muted {
  background:
    linear-gradient(90deg, rgba(179, 18, 11, 0.08) 0 10px, transparent 10px 100%),
    var(--surface);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-heading.compact {
  max-width: 720px;
}

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

.service-card,
.feature-card,
.person-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.service-card::before,
.feature-card::before,
.person-card::before,
.faq-list details::before,
.legal-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 26px;
  height: 26px;
  background: var(--red);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.service-card {
  min-height: 252px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 16px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(156, 20, 13, 0.35);
}

.service-index {
  width: fit-content;
  padding: 2px 9px;
  border-left: 3px solid var(--red);
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  font-size: 0.92rem;
}

.service-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: inset 0 -3px 0 var(--red);
}

.service-icon .fa {
  font-size: 1.28rem;
}

.service-card p,
.feature-card p,
.person-card p {
  color: var(--ink-soft);
}

.split-section {
  position: relative;
  background: var(--ink);
  color: var(--paper);
}

.split-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: var(--red);
}

.split-grid {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
}

.split-section p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

.media-panel {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 4px solid var(--red);
  background:
    linear-gradient(135deg, rgba(179, 18, 11, 0.34), transparent 38%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.08), transparent 34%),
    var(--graphite);
  overflow: hidden;
}

.media-panel img {
  width: 260px;
  height: 260px;
  object-fit: contain;
}

.media-caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  min-height: 42px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 14px;
}

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

.feature-card {
  min-height: 162px;
  padding: 24px;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 18px;
  box-shadow: inset 0 4px 0 var(--ink);
}

.feature-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: inset 0 -3px 0 var(--red);
}

.benefits {
  background: var(--paper);
}

.benefits-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.benefits-grid > div:first-child {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-left: 6px solid var(--red);
  background: var(--ink);
}

.benefits-grid > div:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  background: var(--red);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.benefits h2 {
  color: var(--paper);
}

.benefits .section-kicker {
  color: #f2d2cd;
}

.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.benefit-list li {
  min-height: 58px;
  position: relative;
  padding: 16px 18px 16px 22px;
  border-left: 4px solid var(--red);
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(21, 21, 21, 0.08);
}

.benefit-list li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background: var(--ink);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.local-section {
  background: var(--surface);
}

.local-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.local-text,
.faq-list {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.local-text p:last-child {
  margin-bottom: 0;
}

.faq-section {
  background: var(--concrete);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(21, 21, 21, 0.06);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 700;
}

.faq-list summary::marker {
  color: var(--red);
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(179, 18, 11, 0.24), transparent 36%),
    linear-gradient(90deg, #101010 0%, var(--steel) 58%, #202020 100%);
  color: var(--paper);
  border-top: 6px solid var(--red);
}

.contact-section::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: min(28vw, 320px);
  height: 78px;
  background: var(--red);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 0);
  opacity: 0.95;
}

.contact-section > .container {
  position: relative;
}

.contact-section .section-kicker {
  color: #f0d2cd;
}

.contact-top {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  margin-bottom: 34px;
}

.contact-top p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
}

.company-address {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 24px 24px 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-style: normal;
  display: grid;
  gap: 6px;
}

.contact-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-line .fa {
  width: 18px;
  color: #f2d2cd;
  text-align: center;
}

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

.person-card {
  min-height: 310px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--ink);
  box-shadow: inset 0 4px 0 var(--red);
}

.person-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  padding: 7px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.person-card p {
  min-height: 74px;
  margin-bottom: 6px;
}

.person-card a {
  color: var(--red);
  overflow-wrap: anywhere;
}

.partner-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(179, 18, 11, 0.05), rgba(179, 18, 11, 0) 34%),
    var(--paper);
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.partner-section::before,
.partner-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: var(--red);
}

.partner-section::before {
  top: 0;
  left: 0;
  width: 76px;
  height: 76px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.95;
}

.partner-section::after {
  right: 0;
  bottom: 0;
  width: 96px;
  height: 96px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.08;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}

.partner-logo {
  position: relative;
  overflow: hidden;
  min-height: 108px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(179, 18, 11, 0.07), rgba(179, 18, 11, 0) 38%),
    #ffffff;
  box-shadow:
    inset 0 4px 0 rgba(179, 18, 11, 0.88),
    0 12px 28px rgba(20, 20, 20, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.partner-logo::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  background: var(--ink);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.88;
}

.partner-logo-priority {
  min-height: 118px;
  border-color: rgba(179, 18, 11, 0.26);
  box-shadow:
    inset 0 5px 0 var(--red),
    0 16px 36px rgba(20, 20, 20, 0.08);
}

.partner-logo-priority::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.partner-logo:is(a):hover,
.partner-logo:is(a):focus-visible {
  color: inherit;
}

.partner-logo:hover,
.partner-logo:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(179, 18, 11, 0.48);
  box-shadow:
    inset 0 5px 0 var(--red),
    0 18px 34px rgba(20, 20, 20, 0.11);
}

.partner-logo:focus-visible {
  outline: 2px solid rgba(179, 18, 11, 0.35);
  outline-offset: 3px;
}

.logo-grid img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 92px;
  object-fit: contain;
  filter: grayscale(0.12);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 50px 0 34px;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(179, 18, 11, 0.26) 0%, rgba(20, 20, 20, 0) 42%),
    linear-gradient(180deg, #101010 0%, var(--ink) 56%, #260b09 100%);
  border-top: 6px solid var(--red);
}

.site-footer::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: min(38vw, 440px);
  height: 120px;
  background: var(--red);
  clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 0);
  opacity: 0.72;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(28vw, 320px);
  height: 56px;
  background: rgba(179, 18, 11, 0.95);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
}

.footer-logo {
  position: relative;
  display: inline-flex;
  width: 190px;
  padding: 0;
}

.footer-logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 74px;
  height: 4px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.site-footer address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.footer-company {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 0 8px;
  padding: 0 32px 7px 0;
  color: var(--paper);
  font-size: clamp(1.22rem, 1.6vw, 1.55rem);
  line-height: 1.08;
  font-weight: 700;
  text-shadow: 0.045em 0.04em 0 rgba(179, 18, 11, 0.28);
}

.footer-company::before,
.footer-company::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.footer-company::before {
  left: 0;
  bottom: 0;
  width: 52%;
  height: 4px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.footer-company::after {
  right: 10px;
  bottom: 7px;
  width: 14px;
  height: 14px;
  background: var(--red);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.site-footer nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.84);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #f2d2cd;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  border-color: rgba(242, 210, 205, 0.6);
  background: rgba(179, 18, 11, 0.18);
}

.legal-page {
  background: var(--surface);
}

.legal-main {
  min-height: 70vh;
  padding: 136px 20px 76px;
}

.legal-content {
  position: relative;
  overflow: hidden;
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(21, 21, 21, 0.08);
}

.legal-content h1 {
  font-size: 3rem;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.legal-content h2 {
  margin-top: 32px;
  font-size: 1.7rem;
}

.legal-content h3 {
  margin-top: 24px;
  font-size: 1.18rem;
}

.legal-content h4 {
  margin: 18px 0 6px;
  font-size: 1rem;
}

.legal-content a {
  color: var(--red);
  overflow-wrap: anywhere;
}

.legal-content ul {
  padding-left: 22px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  font-weight: 700;
}

.not-found {
  text-align: center;
}

.not-found img {
  margin: 0 auto 24px;
}

@media (max-width: 1100px) {
  .site-header {
    gap: 16px;
    padding-inline: 20px;
  }

  .primary-nav a {
    gap: 6px;
    padding: 0 11px;
    font-size: 0.9rem;
  }

  .primary-nav .fa {
    width: 14px;
    font-size: 0.88rem;
  }

  .service-grid,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .people-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  h1 {
    font-size: 3.3rem;
  }

  .hero h1 {
    max-width: 780px;
    font-size: 3.05rem;
    white-space: normal;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    height: 82px;
    padding: 8px 18px;
  }

  .brand {
    width: 118px;
    min-width: 118px;
    height: 60px;
  }

  .primary-nav,
  .header-call {
    display: none;
  }

  .nav-toggle {
    display: grid;
    grid-column: 3;
  }

  .mobile-menu {
    inset: 82px 0 auto 0;
  }

  .hero {
    min-height: 78svh;
    padding: 116px 0 74px;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.32) 100%);
  }

  h1 {
    font-size: 2.75rem;
  }

  .hero h1 {
    max-width: 640px;
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-facts {
    left: 20px;
    right: 20px;
    justify-content: flex-start;
  }

  .intro-grid,
  .split-grid,
  .benefits-grid,
  .local-grid,
  .faq-grid,
  .contact-top,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .split-section,
  .contact-section {
    padding: 64px 0;
  }

  .feature-grid,
  .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits {
    background: var(--concrete);
  }

  .footer-grid {
    gap: 22px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .legal-main {
    padding-top: 112px;
  }

  .legal-content {
    padding: 30px 24px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-content {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    min-height: 72svh;
    align-items: end;
    padding: 100px 0 24px;
  }

  .hero .eyebrow {
    display: none;
  }

  h1 {
    font-size: 2.2rem;
  }

  .hero h1 {
    max-width: none;
    margin-bottom: 8px;
    font-size: clamp(1.23rem, 5.55vw, 1.46rem);
    line-height: 1.08;
    white-space: nowrap;
    flex-wrap: nowrap;
    gap: 0.16em;
  }

  .hero-title-logo {
    height: 0.7em;
    transform: translateY(0.055em);
  }

  .hero-title-company {
    padding-right: 0.1em;
    padding-bottom: 0.045em;
    transform: skewX(-3deg);
    text-shadow:
      0.02em 0 0 rgba(255, 255, 255, 0.16),
      0.035em 0.035em 0 rgba(179, 18, 11, 0.14);
  }

  .hero-title-company::before {
    width: 36%;
    height: 0.05em;
  }

  .hero-title-company::after {
    width: 0.12em;
    height: 0.12em;
  }

  .hero-copy-long {
    display: none;
  }

  .hero-copy-short {
    display: block;
    max-width: 320px;
    margin-bottom: 14px;
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .hero-facts {
    display: none;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-actions {
    width: auto;
  }

  .button {
    width: auto;
    min-height: 46px;
  }

  .hero-actions .button-primary {
    min-width: 210px;
    padding-inline: 18px;
  }

  .hero-actions .button-secondary {
    display: none;
  }

  .service-grid,
  .feature-grid,
  .people-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .media-panel {
    min-height: 300px;
  }

  .media-panel img {
    width: 190px;
    height: 190px;
  }

  .person-card p {
    min-height: 0;
  }

  .logo-grid img {
    height: 84px;
  }

  .legal-content h1 {
    font-size: 2.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
