:root {
  --ink: #171717;
  --muted: #5d636c;
  --line: #d9dee5;
  --panel: #f6f7f8;
  --white: #ffffff;
  --red: #c91524;
  --red-dark: #94111b;
  --charcoal: #222831;
  --green: #1d6b57;
  --yellow: #f2b705;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--white);
}

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

a {
  color: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: #050505;
  border-bottom: 1px solid #242424;
  backdrop-filter: blur(12px);
}

.top-proof-bar {
  position: relative;
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px clamp(14px, 3vw, 34px);
  padding: 7px 18px;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  background: var(--red);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.top-proof-bar span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 18px;
}

.top-proof-bar span + span::before {
  position: absolute;
  left: calc(clamp(14px, 3vw, 34px) / -2);
  width: 4px;
  height: 4px;
  content: "";
  background: rgba(255, 255, 255, 0.78);
  border-radius: 50%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  max-width: min(260px, 52vw);
  max-height: 48px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  background: var(--red);
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.2;
}

.brand strong {
  color: var(--white);
}

.nav-wrap {
  display: flex;
  justify-content: center;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle-lines::before {
  top: -7px;
}

.menu-toggle-lines::after {
  top: 7px;
}

.nav-open .menu-toggle-lines {
  background: transparent;
}

.nav-open .menu-toggle-lines::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-toggle-lines::after {
  transform: translateY(-7px) rotate(-45deg);
}

nav a,
.nav-dropdown button,
.header-call {
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
  padding: 12px 0;
  margin: -12px 0;
}

.nav-dropdown button {
  padding: 0;
  color: inherit;
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-dropdown button::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 220px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-dropdown-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
  content: "";
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 8px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  color: var(--white);
  background: var(--red);
}

.header-call {
  padding: 10px 14px;
  color: var(--white);
  font-weight: 800;
  background: var(--red);
  border-radius: 8px;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  min-height: 650px;
  align-items: start;
  padding-top: clamp(24px, 4vw, 48px);
  isolation: isolate;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0.12));
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 0 86px clamp(18px, 5vw, 76px);
  color: var(--white);
}

.hero-logo-panel {
  position: absolute;
  top: 47%;
  right: clamp(32px, 8vw, 190px);
  z-index: 1;
  width: clamp(300px, 31vw, 760px);
  max-width: 50vw;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-logo-panel img {
  width: 100%;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
}

.eyebrow {
  position: relative;
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  isolation: isolate;
}

.eyebrow::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--red);
  transform: skewX(-14deg);
  transform-origin: center;
}

.hero .eyebrow {
  color: var(--white);
}

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

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

h1 {
  max-width: 720px;
  font-size: clamp(42px, 7vw, 78px);
}

.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
}

h2 {
  font-size: clamp(30px, 4vw, 50px);
}

h3 {
  font-size: 22px;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

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

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 28px clamp(18px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 8vw, 106px) clamp(18px, 5vw, 76px);
}

.split-section.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.split-section img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.section-text p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  display: block;
  min-height: 260px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--panel);
  text-decoration: none;
  transition: background 0.16s ease, transform 0.16s ease;
}

a.service-card:hover,
a.service-card:focus {
  background: var(--white);
  transform: translateY(-2px);
}

.service-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
}

.dark-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 76px);
  color: var(--white);
  background: var(--charcoal);
}

.dark-band p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.content-section,
.process-section,
.faq-section {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 76px);
}

.content-heading {
  max-width: 920px;
  margin-bottom: clamp(26px, 5vw, 54px);
}

.content-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 5vw, 70px);
}

.content-columns p,
.detail-section p,
.process-list p,
.faq-list p {
  color: var(--muted);
}

.detail-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-section article {
  padding: clamp(34px, 5vw, 62px);
  background: var(--white);
}

.detail-section h2 {
  font-size: clamp(27px, 3vw, 38px);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "+";
}

.area-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 76px);
  background: var(--panel);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.area-grid span {
  padding: 14px 16px;
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list article {
  min-height: 250px;
  padding: 28px;
  background: var(--panel);
}

.process-list span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  background: var(--red);
  border-radius: 8px;
}

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

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

.faq-list details {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin-bottom: 0;
}

.image-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.image-band img {
  width: 100%;
  height: clamp(260px, 38vw, 520px);
  object-fit: cover;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(24px, 4vw, 48px) clamp(18px, 5vw, 76px) clamp(58px, 8vw, 106px);
  color: var(--white);
  background: #101010;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.page-content {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 76px);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.article-content {
  max-width: 920px;
}

.article-content h2,
.article-content h3 {
  margin-top: 34px;
}

.article-content p {
  color: var(--muted);
  font-size: 18px;
}

.sidebar-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sidebar-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.sidebar-panel a {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.supporting-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.supporting-images img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  color: var(--white);
  background: #0d0d0d;
  overflow: hidden;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(201, 21, 36, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.contact-copy {
  position: relative;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(24px, 4vw, 48px) clamp(38px, 7vw, 86px) clamp(58px, 8vw, 106px) clamp(18px, 5vw, 76px);
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}

.contact-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.contact-copy .eyebrow {
  color: var(--white);
}

.phone-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--white);
  font-size: 30px;
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 16px;
  align-self: center;
  width: min(620px, calc(100% - 36px));
  margin: clamp(38px, 6vw, 82px) clamp(18px, 5vw, 76px) clamp(38px, 6vw, 82px) auto;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  border: 1px solid #c7ced8;
  border-radius: 8px;
}

.contact-form textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -100vw;
}

.site-footer {
  padding: 28px clamp(18px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.78);
  background: #111111;
}

.site-footer p {
  margin: 4px 0;
}

.site-footer a {
  color: var(--white);
}

@media (max-width: 900px) {
  .site-header,
  .trust-strip,
  .split-section,
  .split-section.reverse,
  .services,
  .content-columns,
  .detail-section,
  .hero,
  .dark-band,
  .area-section,
  .process-list,
  .page-hero,
  .page-grid,
  .supporting-images,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px 16px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-wrap {
    display: none;
    grid-column: 1 / -1;
    padding-top: 12px;
    border-top: 1px solid #242424;
  }

  .nav-open .nav-wrap {
    display: block;
  }

  nav {
    display: grid;
    justify-content: start;
    gap: 14px;
  }

  .nav-dropdown {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin-top: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
    transform: none;
  }

  .header-call {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .contact-section {
    gap: 0;
  }

  .contact-copy {
    min-height: auto;
    padding: clamp(24px, 5vw, 42px) clamp(18px, 5vw, 40px) clamp(48px, 8vw, 72px);
    clip-path: none;
  }

  .contact-form {
    width: auto;
    margin: 18px;
  }

  .sidebar-panel {
    position: static;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 999px) {
  .hero-logo-panel {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 620px;
  }

  .hero-content {
    margin: 0 18px 52px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .area-grid,
  .image-band {
    grid-template-columns: 1fr;
  }

  .phone-link {
    font-size: 26px;
  }
}
