:root {
  --graphite: #08090B;
  --asphalt: #15171A;
  --asphalt-2: #1B1E23;
  --silver: #C9CED6;
  --silver-soft: rgba(201, 206, 214, .72);
  --silver-muted: rgba(201, 206, 214, .48);
  --red: #D71920;
  --white: #F4F6F8;
  --blue: #8FAEC7;
  --line: rgba(201, 206, 214, .16);
  --glass: rgba(21, 23, 26, .58);
  --max: 1200px;
  --radius: 28px;
  --font: Inter, "Neue Haas Grotesk Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--graphite);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--silver);
  background:
    radial-gradient(circle at 75% 10%, rgba(143, 174, 199, .12), transparent 32rem),
    radial-gradient(circle at 18% 35%, rgba(215, 25, 32, .07), transparent 22rem),
    var(--graphite);
  line-height: 1.65;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.home-page {
  position: relative;
  isolation: isolate;
}

.page-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, .68), rgba(8, 9, 11, .93) 55%, rgba(8, 9, 11, .98)),
    radial-gradient(circle at 78% 20%, rgba(143, 174, 199, .20), transparent 34rem),
    url("../images/hero-black-glass-garage.webp") center top / cover no-repeat;
  opacity: .38;
  filter: saturate(.86) contrast(1.08);
}

.home-page main,
.home-page .site-footer {
  position: relative;
  z-index: 1;
}

body.nav-open,
body.alert-open {
  overflow: hidden;
}

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

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

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

::selection {
  background: rgba(215, 25, 32, .35);
  color: var(--white);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 9999;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--graphite);
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

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

.section-pad {
  padding: clamp(84px, 10vw, 150px) 0;
}

.section-dark {
  background: var(--graphite);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(201, 206, 214, .1);
  background: linear-gradient(180deg, rgba(8, 9, 11, .86), rgba(8, 9, 11, .58));
  backdrop-filter: blur(24px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 9, 11, .88);
  border-color: rgba(201, 206, 214, .18);
}

.header-grid {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 206, 214, .24);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(201, 206, 214, .13), rgba(8, 9, 11, .7));
  box-shadow: inset 0 0 24px rgba(143, 174, 199, .08);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 10px 8px 14px 9px;
  border: 2px solid var(--silver);
  border-left: 0;
  border-bottom: 0;
  transform: skewX(-18deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 9px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(215, 25, 32, .72);
}

.brand strong,
.brand em {
  display: block;
  line-height: 1.05;
  letter-spacing: .02em;
}

.brand strong {
  color: var(--white);
  font-size: .96rem;
  font-weight: 650;
}

.brand em {
  margin-top: 4px;
  color: var(--silver-muted);
  font-style: normal;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(244, 246, 248, .72);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.main-nav a {
  position: relative;
  transition: color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--red);
  transition: right .28s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(201, 206, 214, .18);
  padding: .78rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(201, 206, 214, .13), rgba(201, 206, 214, .03) 44%, rgba(215, 25, 32, .14)),
    rgba(21, 23, 26, .76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 25, 32, .55);
  box-shadow: 0 0 28px rgba(215, 25, 32, .12), inset 0 1px 0 rgba(255,255,255,.16);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201, 206, 214, .2);
  border-radius: 999px;
  background: rgba(21, 23, 26, .78);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .22s ease, opacity .22s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 84px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  filter: saturate(.82) contrast(1.08);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, .92), rgba(8, 9, 11, .58) 42%, rgba(8, 9, 11, .28)),
    linear-gradient(0deg, rgba(8, 9, 11, .96), transparent 40%),
    radial-gradient(circle at 72% 28%, rgba(143, 174, 199, .12), transparent 38rem);
}

.hero-glass {
  position: absolute;
  inset: 110px 7vw 80px auto;
  width: min(520px, 36vw);
  border: 1px solid rgba(201, 206, 214, .12);
  background: linear-gradient(145deg, rgba(244,246,248,.04), rgba(143,174,199,.02));
  backdrop-filter: blur(12px);
  border-radius: 36px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  opacity: .72;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--silver-muted);
  font-size: .76rem;
  font-weight: 560;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow span,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(215, 25, 32, .7);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(32px, 6vw, 92px);
  align-items: end;
}

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

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 30px;
  padding: .54rem .82rem;
  border: 1px solid rgba(143, 174, 199, .22);
  border-radius: 999px;
  background: rgba(21, 23, 26, .54);
  color: rgba(244, 246, 248, .74);
  backdrop-filter: blur(18px);
  font-size: .78rem;
  letter-spacing: .04em;
}

.status-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 16px rgba(215, 25, 32, .9);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--white);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 590;
}

h1 {
  max-width: 880px;
  font-size: clamp(4rem, 9vw, 4.9rem);
}

h2 {
  font-size: clamp(2.6rem, 5.2vw, 2.95rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  letter-spacing: -.035em;
}

.lead {
  max-width: 720px;
  margin: 32px 0 0;
  color: rgba(244, 246, 248, .82);
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  line-height: 1.55;
}

.hero-sub {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--silver-soft);
  font-size: .98rem;
}

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

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .95rem 1.28rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 206, 214, .18);
  overflow: hidden;
  cursor: pointer;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 650;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -35%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
  z-index: -1;
}

.btn:hover::after {
  left: 112%;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(255,255,255,.10), rgba(255,255,255,.02) 38%, rgba(0,0,0,.18)),
    var(--red);
  border-color: rgba(215, 25, 32, .82);
  box-shadow: 0 0 34px rgba(215, 25, 32, .18), inset 0 1px 0 rgba(255,255,255,.2);
}

.btn-ghost {
  color: var(--white);
  background: rgba(21, 23, 26, .54);
  backdrop-filter: blur(16px);
}

.btn-ghost:hover {
  border-color: rgba(143, 174, 199, .45);
  box-shadow: 0 0 26px rgba(143, 174, 199, .1);
}

.hero-panel {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(201, 206, 214, .14);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(244,246,248,.06), rgba(143,174,199,.02)),
    rgba(21, 23, 26, .54);
  backdrop-filter: blur(22px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 22px 60px rgba(0,0,0,.28);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 206, 214, .13);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--silver-muted);
}

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

.metric-list {
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
}

.metric-list li {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 206, 214, .08);
}

.metric-list li:last-child {
  border-bottom: 0;
}

.metric-list span {
  color: var(--silver-muted);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.metric-list strong {
  color: rgba(244, 246, 248, .88);
  font-weight: 540;
}

.scroll-line {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 1px;
  height: 66px;
  overflow: hidden;
  background: rgba(201, 206, 214, .13);
}

.scroll-line::before {
  content: "";
  position: absolute;
  inset: -40% 0 auto;
  height: 40%;
  background: var(--red);
  animation: scanDown 2.8s ease-in-out infinite;
}

@keyframes scanDown {
  0% { transform: translateY(-100%); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(260%); opacity: 0; }
}

.trust-strip {
  border-block: 1px solid rgba(201, 206, 214, .12);
  background:
    linear-gradient(90deg, rgba(143, 174, 199, .04), transparent 28%, rgba(215, 25, 32, .035)),
    rgba(8, 9, 11, .92);
}

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

.trust-grid article {
  position: relative;
  min-height: 138px;
  padding: 28px 24px;
  border-right: 1px solid rgba(201, 206, 214, .11);
  display: grid;
  align-content: center;
  gap: 7px;
}

.trust-grid article:first-child {
  border-left: 1px solid rgba(201, 206, 214, .11);
}

.trust-grid i {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(201, 206, 214, .36);
  border-radius: 50%;
  position: relative;
  margin-bottom: 7px;
}

.trust-grid i::before,
.trust-grid i::after {
  content: "";
  position: absolute;
  background: rgba(201, 206, 214, .7);
}

.trust-grid i::before {
  width: 12px;
  height: 1px;
  top: 12px;
  left: 6px;
}

.trust-grid i::after {
  width: 1px;
  height: 12px;
  top: 6px;
  left: 12px;
}

.trust-grid strong {
  color: var(--white);
  font-weight: 560;
}

.trust-grid span {
  color: var(--silver-muted);
  font-size: .88rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, .58fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
}

.protocol-card {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(201, 206, 214, .14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(143,174,199,.065), transparent 42%),
    rgba(21, 23, 26, .65);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.protocol-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(143, 174, 199, .1);
  border-radius: calc(var(--radius) - 12px);
  pointer-events: none;
}

.protocol-card p {
  margin: 0;
  color: rgba(244, 246, 248, .74);
}

.protocol-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(201, 206, 214, .1);
}

.protocol-grid span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 14px;
  border-right: 1px solid rgba(201, 206, 214, .1);
  border-bottom: 1px solid rgba(201, 206, 214, .1);
  color: var(--silver-muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.protocol-grid span:nth-child(even) {
  border-right: 0;
}

.protocol-grid span:nth-last-child(-n+2) {
  border-bottom: 0;
}

.lab-grid {
  margin-top: clamp(48px, 7vw, 90px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(201, 206, 214, .13);
  background:
    linear-gradient(rgba(143,174,199,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143,174,199,.04) 1px, transparent 1px);
  background-size: 46px 46px;
}

.lab-note {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid rgba(201, 206, 214, .12);
}

.lab-note:last-child {
  border-right: 0;
}

.lab-note span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--red);
  font-size: .82rem;
  letter-spacing: .16em;
}

.lab-note strong {
  display: block;
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.15;
}

.lab-note p {
  margin: 18px 0 0;
  color: var(--silver-muted);
}

.image-band {
  background:
    linear-gradient(180deg, rgba(21,23,26,.72), rgba(8,9,11,.95)),
    radial-gradient(circle at 80% 50%, rgba(143,174,199,.10), transparent 32rem);
  border-block: 1px solid rgba(201,206,214,.1);
}

.image-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.image-frame,
.cinematic-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(201, 206, 214, .16);
  background: var(--asphalt);
  box-shadow: 0 36px 90px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.06);
}

.image-frame::after,
.cinematic-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(244,246,248,.05), transparent 28%, rgba(215,25,32,.04)),
    linear-gradient(0deg, rgba(8,9,11,.28), transparent 48%);
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.image-band-copy p {
  color: var(--silver-soft);
}

.line-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  border-top: 1px solid rgba(201, 206, 214, .12);
}

.line-list li {
  position: relative;
  padding: 16px 0 16px 26px;
  border-bottom: 1px solid rgba(201, 206, 214, .1);
  color: rgba(244, 246, 248, .76);
}

.line-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(215,25,32,.7);
}

.section-head {
  max-width: 840px;
  margin-bottom: clamp(36px, 5vw, 66px);
}

.section-head p:not(.section-kicker) {
  margin: 24px 0 0;
  color: var(--silver-soft);
  font-size: 1.02rem;
}

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

.service-card,
.package-card,
.road-grid article,
.testimonial-grid figure {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 206, 214, .13);
  background:
    linear-gradient(145deg, rgba(244,246,248,.045), transparent 38%),
    var(--asphalt);
  border-radius: 26px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.service-card {
  min-height: 410px;
  padding: 28px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.service-card::before,
.package-card::before,
.testimonial-grid figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 12%, rgba(143,174,199,.12), transparent 18rem);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 206, 214, .26);
  box-shadow: 0 26px 70px rgba(0,0,0,.32), 0 0 0 1px rgba(143,174,199,.08);
}

.service-card:hover::before,
.package-card:hover::before,
.testimonial-grid figure:hover::before {
  opacity: 1;
}

.featured-service {
  border-color: rgba(215, 25, 32, .38);
  background:
    linear-gradient(145deg, rgba(215,25,32,.09), transparent 36%),
    var(--asphalt);
}

.red-dot {
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(215, 25, 32, .86);
}

.service-card small {
  display: block;
  margin-bottom: 12px;
  color: var(--silver-muted);
  text-transform: uppercase;
  letter-spacing: .14em;
}

.service-card p,
.package-card p,
.road-grid p,
.testimonial-grid figcaption {
  color: var(--silver-soft);
}

.service-card ul,
.package-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.service-card li,
.package-card li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-top: 1px solid rgba(201,206,214,.08);
  color: rgba(244, 246, 248, .66);
  font-size: .92rem;
}

.service-card li::before,
.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 8px;
  height: 1px;
  background: var(--red);
}

.process {
  background:
    linear-gradient(90deg, rgba(8,9,11,.95), rgba(21,23,26,.58)),
    radial-gradient(circle at 78% 10%, rgba(143,174,199,.09), transparent 36rem);
  border-block: 1px solid rgba(201, 206, 214, .1);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(300px, .52fr) minmax(0, .9fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 130px;
}

.sticky-copy p {
  color: var(--silver-soft);
}

.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(var(--red), rgba(201,206,214,.16), rgba(143,174,199,.22));
}

.timeline li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 0 0 48px;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li > span {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 206, 214, .18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(8, 9, 11, .92);
  box-shadow: 0 0 0 8px rgba(8,9,11,.76), inset 0 0 20px rgba(143,174,199,.08);
  letter-spacing: .12em;
}

.timeline h3 {
  margin-top: 8px;
}

.timeline p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--silver-soft);
}

.cinematic-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.split-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 22px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(201,206,214,.12);
  border-radius: 18px;
  background: rgba(8,9,11,.58);
  backdrop-filter: blur(14px);
  color: rgba(244,246,248,.76);
  font-size: .82rem;
  letter-spacing: .04em;
}

.split-caption strong {
  display: block;
  width: 2px;
  height: 26px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(215,25,32,.75);
}

.split-caption span:last-child {
  text-align: right;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.package-card {
  min-height: 600px;
  padding: 30px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,206,214,.25);
}

.package-signature {
  border-color: rgba(215,25,32,.45);
  background:
    linear-gradient(145deg, rgba(215,25,32,.10), rgba(143,174,199,.05) 45%, transparent),
    var(--asphalt);
  box-shadow: 0 28px 90px rgba(215,25,32,.075), inset 0 1px 0 rgba(255,255,255,.08);
}

.signature-ribbon {
  display: inline-flex;
  margin-bottom: 22px;
  padding: .42rem .7rem;
  border: 1px solid rgba(215,25,32,.5);
  border-radius: 999px;
  color: var(--white);
  background: rgba(215,25,32,.14);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.package-head {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(201,206,214,.12);
}

.package-head span,
.fit {
  color: var(--silver-muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.package-head h3 {
  margin-top: 12px;
}

.fit {
  margin-top: 22px;
  padding: 16px 0;
  border-block: 1px solid rgba(201,206,214,.1);
  color: rgba(244,246,248,.62);
}

.result {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,206,214,.1);
  color: var(--white);
  font-weight: 520;
}

.local {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(143,174,199,.035) 1px, transparent 1px),
    linear-gradient(110deg, transparent 0 44%, rgba(201,206,214,.07) 44% 44.2%, transparent 44.2%),
    linear-gradient(70deg, transparent 0 58%, rgba(215,25,32,.12) 58% 58.16%, transparent 58.16%);
  background-size: 72px 72px, 100% 100%, 100% 100%;
}

.local-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .74fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(201,206,214,.14);
  border-radius: 36px;
  background: rgba(8,9,11,.72);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.local-panel p {
  color: var(--silver-soft);
}

.road-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.road-grid article {
  min-height: 190px;
  padding: 22px;
  border-radius: 22px;
}

.road-grid span {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 48px;
  background: linear-gradient(90deg, var(--red), rgba(201,206,214,.1));
}

.road-grid strong {
  display: block;
  color: var(--white);
  line-height: 1.15;
}

.road-grid p {
  margin: 12px 0 0;
  font-size: .9rem;
}

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

.testimonial-grid figure {
  margin: 0;
  min-height: 260px;
  padding: 26px;
}

.testimonial-grid blockquote {
  margin: 0;
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.testimonial-grid figcaption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(201,206,214,.1);
  font-size: .88rem;
}

.contact {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201,206,214,.1);
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,9,11,.95), rgba(8,9,11,.72)),
    url("../images/hero-black-glass-garage.webp") center / cover no-repeat;
  opacity: .78;
}

.contact-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 36%, rgba(215,25,32,.16), transparent 28rem),
    linear-gradient(0deg, rgba(8,9,11,.96), transparent 62%);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(380px, .58fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.contact-copy p {
  color: var(--silver-soft);
}

.contact-details {
  margin-top: 36px;
  display: grid;
  gap: 9px;
  padding-top: 28px;
  border-top: 1px solid rgba(201,206,214,.14);
}

.contact-details a {
  color: var(--white);
  width: fit-content;
  border-bottom: 1px solid rgba(215,25,32,.45);
}

.contact-details address {
  color: rgba(244,246,248,.76);
  font-style: normal;
}

.contact-details p {
  margin: 4px 0 0;
  color: var(--silver-muted);
  font-size: .9rem;
}

.booking-form {
  padding: 28px;
  border: 1px solid rgba(201,206,214,.16);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(244,246,248,.06), transparent 38%),
    rgba(21,23,26,.74);
  backdrop-filter: blur(22px);
  box-shadow: 0 32px 90px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  color: rgba(244,246,248,.74);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid rgba(201,206,214,.14);
  border-radius: 16px;
  background: rgba(8,9,11,.7);
  color: var(--white);
  padding: 14px 15px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-row textarea {
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(201,206,214,.34);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: rgba(143,174,199,.55);
  box-shadow: 0 0 0 4px rgba(143,174,199,.08);
  background: rgba(8,9,11,.88);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--silver-muted);
  font-size: .8rem;
}

.site-footer {
  border-top: 1px solid rgba(201,206,214,.12);
  background: #07080a;
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(32px, 7vw, 100px);
  align-items: start;
  padding-bottom: 40px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 420px;
  color: var(--silver-muted);
  margin: 0;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: .78rem;
  line-height: 1;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  color: var(--silver-muted);
  margin: 8px 0;
  transition: color .2s ease;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(201,206,214,.1);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--silver-muted);
  font-size: .86rem;
}

.mobile-sticky-cta {
  display: none;
}

.alert-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3,4,6,.76);
  backdrop-filter: blur(14px);
}

.alert-overlay[hidden] {
  display: none;
}

.alert-card {
  position: relative;
  width: min(520px, 100%);
  padding: 34px;
  border: 1px solid rgba(201,206,214,.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 10%, rgba(215,25,32,.16), transparent 20rem),
    linear-gradient(145deg, rgba(244,246,248,.075), transparent 42%),
    var(--asphalt);
  box-shadow: 0 40px 110px rgba(0,0,0,.62), inset 0 1px 0 rgba(255,255,255,.08);
  animation: alertIn .42s cubic-bezier(.2,.85,.2,1) both;
}

@keyframes alertIn {
  from { opacity: 0; transform: translateY(22px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.alert-close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,206,214,.16);
  border-radius: 50%;
  background: rgba(8,9,11,.45);
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.alert-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border: 1px solid rgba(215,25,32,.62);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 35px rgba(215,25,32,.17), inset 0 0 24px rgba(215,25,32,.1);
}

.alert-icon::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 28px;
  width: 22px;
  height: 10px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.alert-card h2 {
  font-size: clamp(2rem, 6vw, 3.2rem);
}

.alert-card p {
  color: var(--silver-soft);
}

.legal-page {
  background:
    linear-gradient(rgba(143,174,199,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143,174,199,.025) 1px, transparent 1px),
    var(--graphite);
  background-size: 72px 72px;
}

.site-header.compact {
  position: sticky;
}

.legal-main {
  padding: 68px 0 110px;
}

.legal-hero {
  padding: 56px 0;
  border-bottom: 1px solid rgba(201,206,214,.12);
}

.legal-hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
}

.legal-hero p:last-child {
  color: var(--silver-muted);
}

.legal-content {
  max-width: 880px;
  padding-top: 44px;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  letter-spacing: -.035em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--silver-soft);
}

.legal-content a {
  color: var(--white);
  border-bottom: 1px solid rgba(215,25,32,.5);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

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

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

@media (max-width: 1080px) {
  .header-grid {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 82px 18px auto;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(201,206,214,.15);
    border-radius: 24px;
    background: rgba(8,9,11,.95);
    backdrop-filter: blur(24px);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 16px 10px;
    border-bottom: 1px solid rgba(201,206,214,.09);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .hero-layout,
  .two-col,
  .image-band-grid,
  .process-layout,
  .local-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

  .trust-grid,
  .service-grid,
  .package-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-copy {
    position: static;
  }

  .hero-glass {
    width: 54vw;
    opacity: .5;
  }
}

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

  .section-pad {
    padding: 74px 0;
  }

  .site-header {
    border-bottom-color: rgba(201,206,214,.15);
  }

  .header-grid {
    min-height: 72px;
  }

  .brand {
    grid-template-columns: 38px auto;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand em {
    font-size: .58rem;
    letter-spacing: .13em;
  }

  .main-nav {
    inset: 72px 14px auto;
  }

  .hero {
    min-height: auto;
    padding: 122px 0 74px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(8, 9, 11, .92), rgba(8, 9, 11, .62)),
      linear-gradient(0deg, rgba(8, 9, 11, .98), transparent 48%);
  }

  .hero-glass,
  .scroll-line {
    display: none;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5.6rem);
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }

  .lead {
    font-size: 1.02rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-grid,
  .service-grid,
  .package-grid,
  .testimonial-grid,
  .lab-grid,
  .road-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article,
  .trust-grid article:first-child,
  .lab-note {
    border-left: 1px solid rgba(201,206,214,.11);
    border-right: 1px solid rgba(201,206,214,.11);
    border-bottom: 1px solid rgba(201,206,214,.11);
  }

  .two-col {
    gap: 30px;
  }

  .protocol-card,
  .booking-form,
  .package-card,
  .service-card {
    border-radius: 22px;
  }

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

  .protocol-grid span {
    border-right: 0;
  }

  .protocol-grid span:nth-last-child(2) {
    border-bottom: 1px solid rgba(201, 206, 214, .1);
  }

  .process-layout {
    gap: 34px;
  }

  .timeline::before {
    left: 24px;
  }

  .timeline li {
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding-bottom: 36px;
  }

  .timeline li > span {
    width: 50px;
    height: 50px;
    font-size: .76rem;
    box-shadow: 0 0 0 6px rgba(8,9,11,.76), inset 0 0 16px rgba(143,174,199,.08);
  }

  .split-caption {
    position: static;
    grid-template-columns: 1fr;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .split-caption strong {
    width: 100%;
    height: 1px;
  }

  .split-caption span:last-child {
    text-align: left;
  }

  .local-panel {
    padding: 26px;
    border-radius: 26px;
  }

  .contact-grid {
    gap: 28px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-bottom {
    gap: 10px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: block;
  }

  .mobile-sticky-cta a {
    min-height: 52px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--white);
    background:
      linear-gradient(120deg, rgba(255,255,255,.13), transparent 38%),
      var(--red);
    box-shadow: 0 16px 48px rgba(0,0,0,.4), 0 0 30px rgba(215,25,32,.22);
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .78rem;
    font-weight: 700;
  }

  .site-footer {
    padding-bottom: 88px;
  }
}


.home-page .philosophy,
.home-page .services,
.home-page .packages,
.home-page .testimonials {
  background: linear-gradient(180deg, rgba(8, 9, 11, .86), rgba(8, 9, 11, .74));
}

.home-page .before-after {
  background: linear-gradient(180deg, rgba(8, 9, 11, .78), rgba(8, 9, 11, .9));
}


/* Safe isolated cookie banner — does not alter base mobile layout */
.cookie-banner {
  position: fixed;
  z-index: 250;
  left: 50%;
  bottom: 18px;
  width: min(1040px, calc(100vw - 40px));
  transform: translateX(-50%);
  border: 1px solid rgba(201, 206, 214, .18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 14%, rgba(215, 25, 32, .13), transparent 18rem),
    linear-gradient(145deg, rgba(244, 246, 248, .07), transparent 42%),
    rgba(8, 9, 11, .94);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 90px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 18px;
}

.cookie-text {
  min-width: 0;
}

.cookie-label {
  margin: 0 0 5px;
  color: rgba(201, 206, 214, .52);
  font-size: .68rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.cookie-text h2 {
  margin: 0 0 7px;
  color: var(--white, #F4F6F8);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.cookie-text p:not(.cookie-label) {
  margin: 0;
  max-width: 660px;
  color: rgba(201, 206, 214, .74);
  font-size: .88rem;
  line-height: 1.5;
}

.cookie-controls {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-action {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(201, 206, 214, .18);
  padding: .72rem .92rem;
  cursor: pointer;
  color: var(--white, #F4F6F8);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.cookie-action:hover {
  transform: translateY(-1px);
}

.cookie-accept {
  background: var(--red, #D71920);
  border-color: rgba(215, 25, 32, .78);
  box-shadow: 0 0 24px rgba(215,25,32,.16), inset 0 1px 0 rgba(255,255,255,.15);
}

.cookie-necessary {
  background: rgba(21, 23, 26, .72);
}

@media (max-width: 760px) {
  .cookie-banner {
    width: min(390px, calc(100vw - 28px));
    bottom: 14px;
    border-radius: 18px;
  }

  .cookie-inner {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 14px;
  }

  .cookie-text h2 {
    font-size: 1.18rem;
  }

  .cookie-text p:not(.cookie-label) {
    font-size: .82rem;
    line-height: 1.45;
  }

  .cookie-controls {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-content: stretch;
  }

  .cookie-action {
    width: 100%;
    min-height: 41px;
    padding: .68rem .8rem;
    white-space: normal;
    text-align: center;
  }

  body.cookie-visible .mobile-sticky-cta {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .cookie-banner {
    width: calc(100vw - 22px);
  }
}


/* Viewport stability fix for mobile local preview */
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  min-width: 0;
}

.site-header,
main,
section,
footer,
.container,
.header-grid,
.hero,
.hero-content,
.hero-layout,
.trust-grid,
.two-col,
.lab-grid,
.image-band-grid,
.service-grid,
.process-layout,
.package-grid,
.local-panel,
.road-grid,
.testimonial-grid,
.contact-grid,
.footer-grid {
  max-width: 100%;
  min-width: 0;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

.hero-media,
.contact-bg,
.page-background {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.cookie-banner,
.mobile-sticky-cta,
.alert-overlay {
  max-width: 100vw;
}

@media (max-width: 760px) {
  :root {
    --mobile-safe-x: 14px;
  }

  body {
    position: relative;
  }

  .container {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .header-grid {
    width: 100%;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    min-width: 0;
  }

  .brand strong,
  .brand em {
    max-width: calc(100vw - 98px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    width: 100%;
    min-width: 0;
  }

  .hero-content,
  .hero-copy,
  .hero-panel,
  .protocol-card,
  .service-card,
  .package-card,
  .booking-form,
  .local-panel,
  .testimonial-grid figure,
  .image-frame,
  .cinematic-frame {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  h1,
  h2,
  h3,
  .lead,
  .hero-sub,
  .section-head,
  .contact-copy {
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .cookie-controls {
    width: 100%;
    min-width: 0;
  }

  .main-nav {
    left: var(--mobile-safe-x);
    right: var(--mobile-safe-x);
    width: auto;
    max-width: calc(100vw - (var(--mobile-safe-x) * 2));
  }

  .cookie-banner {
    left: 50%;
    right: auto;
    width: min(390px, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    transform: translateX(-50%);
  }

  .mobile-sticky-cta {
    left: 50%;
    right: auto;
    width: min(340px, calc(100vw - 38px));
    max-width: calc(100vw - 38px);
    transform: translateX(-50%);
  }

  .split-caption {
    width: 100%;
    max-width: 100%;
  }
}
