:root {
  --red: #e1262f;
  --red-dark: #b81620;
  --carbon: #0d1117;
  --steel: #171d25;
  --graphite: #252d37;
  --ink: #11151b;
  --muted: #69727f;
  --line: #dde2e9;
  --paper: #fbfbfa;
  --soft: #f1f3f5;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(13, 17, 23, 0.14);
  --radius: 8px;
  --header-height: 104px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(90deg, rgba(13, 17, 23, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(13, 17, 23, 0.028) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    rgba(9, 12, 17, 0.68);
  backdrop-filter: blur(22px) saturate(1.18);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(13, 17, 23, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.nav {
  width: min(1320px, calc(100% - 44px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 46px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-weight: 850;
}

.brand-logo {
  width: 156px;
  max-height: 76px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.28));
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #8f0d15);
  border-radius: 4px;
  font-size: 17px;
  letter-spacing: 0;
  box-shadow: 0 16px 34px rgba(225, 38, 47, 0.24);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
}

.brand-copy {
  display: none;
  line-height: 1.1;
}

.brand-copy span {
  font-size: 18px;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15.5px;
  font-weight: 800;
}

.nav-menu a {
  position: relative;
  padding: 30px 0;
  transition: color 180ms ease;
}

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

.nav-menu a:hover {
  color: #fff;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-phone {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 12px 19px;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(225, 38, 47, 0.18), 0 18px 42px rgba(225, 38, 47, 0.28);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-phone:hover,
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(225, 38, 47, 0.36);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--carbon);
}

.hero-image,
.cta-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(225, 38, 47, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(7, 10, 14, 0.94) 0%, rgba(7, 10, 14, 0.78) 44%, rgba(7, 10, 14, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 10, 14, 0.88), rgba(7, 10, 14, 0.04) 48%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: block;
  padding: 180px 0 72px;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow,
.cta .eyebrow,
.dark-section .eyebrow {
  color: #ff5d65;
}

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

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(48px, 7.6vw, 104px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  margin: 30px 0 0;
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  padding: 15px 25px;
  font-weight: 850;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #f03640, var(--red-dark));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 18px 40px rgba(225, 38, 47, 0.32);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.stats-band {
  color: #fff;
  background: var(--carbon);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  min-height: 138px;
  padding: 34px 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stat:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  color: var(--red);
  font-size: 44px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 750;
}

.section {
  padding: 124px 0;
}

.section-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
  margin-bottom: 54px;
}

.section-heading h2,
.about h2,
.contact-intro h2,
.cta h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.section-lead,
.about-copy > p,
.contact-intro p {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.service-card {
  position: relative;
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 22px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(13, 17, 23, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(246, 247, 249, 0.86)),
    #fff;
  box-shadow: 0 16px 46px rgba(13, 17, 23, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -44px -62px auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(225, 38, 47, 0.16), transparent 68%);
  opacity: 0.85;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(225, 38, 47, 0.22);
  box-shadow: 0 24px 70px rgba(13, 17, 23, 0.13), 0 0 32px rgba(225, 38, 47, 0.08);
}

.service-number {
  position: absolute;
  right: 24px;
  top: 20px;
  color: rgba(13, 17, 23, 0.055);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: var(--red);
  background: radial-gradient(circle, rgba(225, 38, 47, 0.11), rgba(225, 38, 47, 0.035) 64%);
  border: 1px solid rgba(225, 38, 47, 0.18);
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(225, 38, 47, 0.09);
}

.icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.value-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.18;
}

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

.dark-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--carbon);
  background-size: 76px 76px;
}

.dark-section .section-lead {
  color: rgba(255, 255, 255, 0.68);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.value-card {
  min-height: 310px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  transition: background 220ms ease, transform 220ms ease;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
}

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

.value-card p {
  color: rgba(255, 255, 255, 0.66);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 24px auto auto 24px;
  z-index: 1;
  width: 120px;
  height: 120px;
  border-top: 3px solid var(--red);
  border-left: 3px solid var(--red);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.08);
}

.check-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-list li {
  position: relative;
  padding: 18px 18px 18px 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-weight: 850;
  box-shadow: 0 14px 36px rgba(13, 17, 23, 0.07);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 23px;
  width: 13px;
  height: 7px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}

.cta {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 17, 23, 0.9), rgba(13, 17, 23, 0.68)),
    radial-gradient(circle at center, rgba(225, 38, 47, 0.18), transparent 38%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.cta p:not(.eyebrow) {
  margin: 26px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
}

.contact {
  background: var(--soft);
}

.contact-shell {
  padding: 54px;
  border-radius: var(--radius);
  background: var(--carbon);
  box-shadow: 0 30px 90px rgba(13, 17, 23, 0.18);
}

.contact-intro {
  max-width: 760px;
  color: #fff;
  margin-bottom: 42px;
}

.contact-intro p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.75fr);
  gap: 26px;
  align-items: stretch;
}

.contact-details,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.contact-details {
  padding: 30px;
}

dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 6px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
}

dd a {
  color: #fff;
}

dd a:hover {
  color: #ff6a70;
}

.map-frame {
  position: relative;
  min-height: 320px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: #111821;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.map-frame img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.map-link {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  color: #fff;
  background: rgba(13, 17, 23, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.map-link:hover {
  background: var(--red);
}

.contact-form {
  padding: 30px;
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  padding: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

input:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(225, 38, 47, 0.72);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(225, 38, 47, 0.14);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #080b10;
  padding: 58px 0 26px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
  gap: 48px;
}

.footer-brand {
  color: #fff;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 380px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 9px 0;
}

.site-footer a:hover {
  color: #fff;
}

.copyright {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 68% 22%, rgba(225, 38, 47, 0.18), transparent 34%),
    linear-gradient(135deg, #080b10, #151b24);
}

.thanks-card {
  width: min(720px, 100%);
  padding: clamp(32px, 7vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.thanks-card h1 {
  margin-top: 22px;
  font-size: clamp(42px, 7vw, 76px);
}

.thanks-card p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .nav {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .nav-phone {
    order: 2;
  }

  .nav-menu {
    position: absolute;
    top: var(--header-height);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(13, 17, 23, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 12px;
  }

  .nav-menu a::after {
    bottom: 8px;
  }

  .section-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  :root {
    --header-height: 86px;
  }

  .container,
  .nav {
    width: min(100% - 28px, 1180px);
  }

  .brand-logo {
    width: 104px;
    max-height: 56px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy span {
    font-size: 16px;
  }

  .nav {
    gap: 10px;
  }

  .nav-phone {
    padding: 10px 11px;
    font-size: 13px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-layout {
    padding: 124px 0 46px;
  }

  h1 {
    font-size: clamp(43px, 15vw, 72px);
  }

  .hero-copy > p:not(.eyebrow),
  .section-lead,
  .about-copy > p,
  .contact-intro p,
  .cta p:not(.eyebrow) {
    font-size: 17px;
  }

  .stats-grid,
  .service-grid,
  .value-grid,
  .check-list,
  .footer-layout,
  dl {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .section {
    padding: 86px 0;
  }

  .section-layout {
    gap: 24px;
    margin-bottom: 34px;
  }

  .section-lead {
    margin-top: 0;
  }

  .service-card {
    min-height: auto;
    gap: 16px;
    padding: 24px;
  }

  .contact-details,
  .contact-form {
    padding: 22px;
  }

  .map-frame,
  .map-frame img {
    min-height: 260px;
    height: 260px;
  }

  .service-number {
    font-size: 42px;
  }

  .value-card {
    min-height: auto;
  }

  .value-card span {
    margin-bottom: 34px;
  }

  .about-media,
  .about-media img {
    min-height: 360px;
  }

  .contact-shell {
    padding: 28px 18px;
  }
}

@media (max-width: 430px) {
  .brand-copy {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .nav-phone {
    display: none;
  }

  .hero-image {
    object-position: 68% center;
  }
}
