:root {
  --ink: #0b0c0f;
  --ink-soft: #15171b;
  --surface: #ffffff;
  --surface-alt: #f4f5f6;
  --line: #dfe2e6;
  --muted: #616771;
  --red: #e5171f;
  --red-dark: #b90e15;
  --white: #ffffff;
  --container: 1200px;
  --shadow: 0 24px 70px rgba(11, 12, 15, .12);
  --radius: 18px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

:focus-visible {
  outline: 3px solid rgba(229, 23, 31, .45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

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

.section { padding: 112px 0; }
.section-light { background: var(--surface); }
.section-dark { background: var(--ink); color: var(--white); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 84px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: background .25s ease, box-shadow .25s ease, height .25s ease, color .25s ease;
}

.site-header.scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 40px rgba(11,12,15,.08);
  border-bottom-color: rgba(11,12,15,.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  width: 250px;
  height: 56px;
  overflow: hidden;
}
.brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter .25s ease;
}
.site-header.scrolled .brand img { filter: none; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.primary-nav > a:not(.button) {
  position: relative;
  padding: 10px 0;
}
.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .25s var(--ease);
}
.primary-nav > a:not(.button):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: inherit;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .25s ease, opacity .2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .2s var(--ease), box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 32px rgba(229,23,31,.22);
}
.button-primary:hover { background: var(--red-dark); box-shadow: 0 18px 36px rgba(229,23,31,.28); }
.button-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.42);
  background: rgba(11,12,15,.18);
  backdrop-filter: blur(8px);
}
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.09); }
.button-dark { color: var(--white); background: var(--ink); }
.button-small { min-height: 42px; padding-inline: 17px; font-size: .72rem; }
.button-full { width: 100%; }

.hero {
  position: relative;
  min-height: 860px;
  height: 100svh;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transform: scale(1.02);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7,8,10,.94) 0%, rgba(7,8,10,.79) 38%, rgba(7,8,10,.22) 71%, rgba(7,8,10,.26) 100%),
    linear-gradient(0deg, rgba(7,8,10,.62) 0%, transparent 45%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: flex;
  align-items: center;
  padding-top: 84px;
}

.hero-copy { width: min(690px, 65%); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: rgba(255,255,255,.72);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--red);
}
.eyebrow-dark { color: var(--muted); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.03; letter-spacing: -.035em; }
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.45rem, 6vw, 6.6rem);
  font-weight: 850;
}
.hero-copy > p {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.76);
  font-size: clamp(1.04rem, 1.4vw, 1.25rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust {
  display: flex;
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.hero-trust div {
  min-width: 155px;
  padding: 22px 26px 0 0;
}
.hero-trust div + div { padding-left: 26px; border-left: 1px solid rgba(255,255,255,.15); }
.hero-trust strong,
.hero-trust span { display: block; }
.hero-trust strong { font-size: .9rem; }
.hero-trust span { color: rgba(255,255,255,.5); font-size: .78rem; }

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.58);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-cue svg { width: 20px; animation: bounce 1.7s ease-in-out infinite; }
@keyframes bounce { 50% { transform: translateY(6px); } }

.section-heading h2,
.why-copy h2,
.area-copy h2,
.quote-copy h2 {
  font-size: clamp(2.55rem, 4.6vw, 4.9rem);
  font-weight: 820;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}
.split-heading h2 { margin-bottom: 0; }
.split-heading > p {
  max-width: 520px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  position: relative;
  min-height: 350px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: background .28s ease, transform .28s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.service-card:hover { background: var(--surface-alt); }
.service-card:hover::before { transform: scaleX(1); }
.service-number {
  position: absolute;
  right: 30px;
  top: 23px;
  color: #d9dce0;
  font-size: 2.7rem;
  font-weight: 850;
  letter-spacing: -.06em;
}
.icon-wrap {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 46px;
  color: var(--red);
  background: rgba(229,23,31,.08);
  border-radius: 50%;
}
.icon-wrap svg { width: 27px; height: 27px; stroke-width: 1.55; }
.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.55rem;
  font-weight: 790;
}
.service-card p {
  max-width: 500px;
  margin-bottom: 28px;
  color: var(--muted);
}
.service-card a {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.service-card a span { color: var(--red); margin-left: 5px; }

.why-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 100px;
}
.why-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}
.why-copy h2 { margin-bottom: 24px; }
.why-copy > p {
  max-width: 520px;
  margin-bottom: 36px;
  color: rgba(255,255,255,.62);
  font-size: 1.08rem;
}
.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--white);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.text-link span { color: var(--red); }

.benefit-list { border-top: 1px solid rgba(255,255,255,.16); }
.benefit {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  padding: 31px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.benefit-index {
  padding-top: 4px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 850;
}
.benefit h3 { margin-bottom: 8px; font-size: 1.35rem; }
.benefit p { margin: 0; color: rgba(255,255,255,.53); }

.service-area {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  background: #f1f2f3;
  overflow: hidden;
}
.service-area-art {
  position: absolute;
  left: -6vw;
  top: 50%;
  width: 52vw;
  aspect-ratio: 1;
  transform: translateY(-50%);
}
.map-ring {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(11,12,15,.12);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.ring-one { width: 24%; height: 24%; }
.ring-two { width: 54%; height: 54%; }
.ring-three { width: 88%; height: 88%; }
.map-ring::before,
.map-ring::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: rgba(11,12,15,.1);
  transform: translate(-50%,-50%);
}
.map-ring::before { width: 1px; height: 140%; }
.map-ring::after { width: 140%; height: 1px; }
.map-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  background: var(--red);
  border: 5px solid rgba(255,255,255,.9);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(229,23,31,.13);
  transform: translate(-50%,-50%);
}

.service-area-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
}
.area-stat {
  padding-left: 8vw;
}
.area-stat span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.area-stat strong {
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.area-copy { padding: 24px 0; }
.area-copy h2 { margin-bottom: 24px; }
.area-copy p {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.06rem;
}

.quote-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(229,23,31,.18), transparent 32%),
    var(--ink);
}
.quote-shell {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.quote-copy {
  position: sticky;
  top: 110px;
}
.quote-copy h2 { margin-bottom: 24px; }
.quote-copy > p {
  max-width: 470px;
  color: rgba(255,255,255,.62);
}
.quote-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
  font-weight: 760;
}
.quote-contact a:last-child { color: rgba(255,255,255,.62); font-weight: 600; }

.quote-form {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.quote-form label {
  display: block;
  margin-bottom: 16px;
}
.quote-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #3d424a;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  border: 1px solid #d7dade;
  border-radius: 7px;
  color: var(--ink);
  background: #fafafa;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
input, select { height: 50px; padding: 0 14px; }
textarea { min-height: 118px; padding: 13px 14px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(229,23,31,.1);
}
.form-note {
  margin: 13px 0 0;
  color: #7b8088;
  font-size: .73rem;
  text-align: center;
}

.contact-section { background: var(--surface-alt); }
.centered {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}
.centered .eyebrow { justify-content: center; }
.centered h2 { margin-bottom: 16px; }
.centered p { color: var(--muted); font-size: 1.05rem; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease;
}
a.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229,23,31,.35);
  box-shadow: 0 18px 45px rgba(11,12,15,.09);
}
.contact-label {
  color: var(--red);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-card strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}
.contact-action { color: var(--muted); font-size: .78rem; font-weight: 700; }

.site-footer {
  padding: 70px 0 26px;
  color: var(--white);
  background: #08090b;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 55px;
}
.footer-brand img { width: min(330px, 85%); margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.45); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.footer-links div { display: flex; flex-direction: column; gap: 11px; }
.footer-links span {
  margin-bottom: 5px;
  color: rgba(255,255,255,.35);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-links a { color: rgba(255,255,255,.74); font-size: .9rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.38);
  font-size: .76rem;
}
.footer-bottom p { margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .section { padding: 88px 0; }

  .nav-toggle { display: block; z-index: 2; }
  .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    color: var(--white);
    background: rgba(8,9,11,.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s var(--ease);
  }
  .primary-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .primary-nav > a:not(.button) { font-size: 1.1rem; }
  .site-header.scrolled .primary-nav { color: var(--white); }
  .nav-open .nav-toggle { color: var(--white); }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: 760px; }
  .hero-copy { width: min(700px, 78%); }
  .hero-media img { object-position: 58% 40%; }

  .split-heading,
  .why-layout,
  .service-area-layout,
  .quote-shell { grid-template-columns: 1fr; gap: 48px; }
  .split-heading { align-items: start; }
  .why-copy,
  .quote-copy { position: static; }
  .service-area-art { left: auto; right: -20vw; width: 80vw; opacity: .45; }
  .area-stat { padding-left: 0; }
  .area-copy { max-width: 700px; }

  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid .contact-card:last-child { grid-column: 1 / -1; }

  .footer-main { gap: 40px; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 74px 0; }
  .site-header { height: 70px; }
  .site-header.scrolled { height: 66px; }
  .brand { width: 190px; }

  .hero {
    min-height: 760px;
    height: 100svh;
  }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7,8,10,.93) 0%, rgba(7,8,10,.72) 58%, rgba(7,8,10,.28) 100%),
      linear-gradient(90deg, rgba(7,8,10,.6), rgba(7,8,10,.15));
  }
  .hero-media img { object-position: 50% 27%; }
  .hero-layout { align-items: flex-end; padding: 120px 0 58px; }
  .hero-copy { width: 100%; }
  h1 { font-size: clamp(2.8rem, 13vw, 4.15rem); }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-trust { margin-top: 30px; overflow-x: auto; }
  .hero-trust div { min-width: 125px; padding-right: 14px; }
  .hero-trust div + div { padding-left: 14px; }
  .scroll-cue { display: none; }

  .section-heading h2,
  .why-copy h2,
  .area-copy h2,
  .quote-copy h2 { font-size: clamp(2.35rem, 10vw, 3.45rem); }

  .split-heading { gap: 24px; margin-bottom: 38px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 325px; padding: 28px; }
  .icon-wrap { margin-bottom: 34px; }

  .benefit { grid-template-columns: 42px 1fr; gap: 12px; }
  .service-area { min-height: auto; }
  .service-area-layout { gap: 32px; }
  .area-stat strong { font-size: 3.4rem; }

  .quote-form { padding: 23px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .contact-card:last-child { grid-column: auto; }
  .contact-card { min-height: 180px; }

  .footer-main,
  .footer-links { grid-template-columns: 1fr; }
  .footer-main { gap: 45px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
