:root {
  --ink: #11161d;
  --ink-2: #171f2a;
  --steel: #2d3542;
  --blue: #314b86;
  --red: #c92d2f;
  --red-dark: #a62225;
  --concrete: #f3f5f7;
  --concrete-2: #e3e7ed;
  --white: #ffffff;
  --muted: #5d6572;
  --line: rgba(17, 22, 29, .16);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--concrete);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.58;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(245px, 1fr) auto minmax(190px, auto);
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 24px));
  min-height: 72px;
  padding: 11px 14px 11px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(8, 13, 20, .18);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  transform: translateX(-50%);
  animation: none;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: .02em;
}
.brand-copy { min-width: 0; }
.brand strong,
.brand small { display: block; }
.brand strong {
  overflow: hidden;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brand small {
  color: #44505d;
  font-size: 12px;
  font-weight: 700;
}
nav {
  display: flex;
  gap: 22px;
  font-size: 13px;
  font-weight: 800;
}
nav a,
.header-call { text-decoration: none; }
.header-call {
  justify-self: end;
  min-width: max-content;
  padding: 12px 17px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 10, 15, .92) 0%, rgba(7, 10, 15, .82) 34%, rgba(7, 10, 15, .42) 66%, rgba(7, 10, 15, .30) 100%),
    linear-gradient(0deg, rgba(7, 10, 15, .58) 0%, rgba(7, 10, 15, .08) 46%);
}
#hero-img,
.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  min-height: 60vh;
  object-fit: cover;
  object-position: center center;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(1180px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 132px 0 72px;
}
.hero-kicker,
.section-note {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 900;
  color: #dfe6f0;
}
h1,
h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 700;
  line-height: .96;
  letter-spacing: .01em;
}
h1 {
  max-width: 830px;
  margin-bottom: 18px;
  font-size: clamp(68px, 8.4vw, 126px);
  text-shadow: 0 3px 26px rgba(0, 0, 0, .62);
}
h2 {
  margin-bottom: 22px;
  font-size: clamp(44px, 5.8vw, 84px);
}
h3 {
  margin-bottom: 8px;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.12;
}
.hero-copy {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.42;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .72);
}
.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}
.button.primary { color: var(--white); background: var(--red); }
.button.secondary { color: var(--white); border-color: rgba(255, 255, 255, .62); background: rgba(17, 22, 29, .38); }
.button.dark { color: var(--white); background: var(--ink); }

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) 0;
}
.intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 680px;
}
.section-note {
  color: var(--red-dark);
}
.intro p:not(.section-note),
.lane-heading p,
.proof-copy p,
.visit-copy dd,
.visit-copy address {
  max-width: 69ch;
  color: var(--muted);
}
.intro p:not(.section-note) {
  margin-bottom: 18px;
  font-size: 19px;
}
.intro-media {
  display: grid;
  grid-template-rows: 1fr auto;
  margin: 0;
  min-height: 680px;
  background: var(--ink);
}
.intro-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}
.intro-media figcaption {
  padding: 15px 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  font-weight: 800;
}

.repair-lane {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  padding: clamp(58px, 7vw, 90px) clamp(20px, 6vw, 76px);
  color: var(--white);
  background: var(--ink);
}
.lane-heading {
  align-self: start;
  position: sticky;
  top: 110px;
}
.lane-heading p { color: rgba(255, 255, 255, .72); }
.lane-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.lane-list article {
  display: grid;
  grid-template-columns: minmax(210px, .42fr) minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.lane-list article::before {
  content: "";
  width: 8px;
  height: auto;
  min-height: 70px;
  background: var(--red);
  grid-row: 1 / 3;
}
.lane-list h3 {
  color: var(--white);
  grid-column: 2;
}
.lane-list p {
  grid-column: 2;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
}

.shop-proof {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  grid-auto-rows: minmax(280px, auto);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-image { min-height: 320px; background: var(--steel); }
.proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proof-image.tall { grid-row: span 2; }
.proof-image.wide { grid-column: span 2; }
.proof-copy {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
  background: var(--concrete-2);
}
.proof-copy p { font-size: 20px; }

.reviews-section {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(58px, 7vw, 92px) clamp(20px, 6vw, 76px);
  color: var(--white);
  background: var(--steel);
}
.reviews-heading { align-self: center; }
.reviews {
  display: grid;
  gap: 18px;
}
blockquote {
  margin: 0;
  padding: 0 0 0 24px;
  border-left: 5px solid var(--red);
}
blockquote p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.35;
}
cite {
  color: #dbe4ef;
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
}

.visit {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(300px, .75fr) minmax(360px, 1fr);
  min-height: 620px;
  background: var(--concrete);
}
.visit-photo,
.map-shell { min-height: 620px; }
.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-shell {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17,22,29,.92), rgba(49,75,134,.86)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.07) 0 1px, transparent 1px 64px);
}
.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 70px);
}
.visit-copy h2 { font-size: clamp(42px, 5vw, 72px); }
address { font-style: normal; }
dl {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}
dt {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}
dd { margin: 4px 0 0; }
.map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: .28;
  filter: grayscale(.4) contrast(1.08);
}
.map-fallback {
  position: relative;
  z-index: 1;
  width: min(380px, calc(100% - 48px));
  padding: 32px 0;
  text-shadow: 0 2px 18px rgba(0,0,0,.38);
}
.map-fallback span,
.map-fallback strong,
.map-fallback a { display: block; }
.map-fallback span { margin-bottom: 10px; font-size: 16px; font-weight: 900; }
.map-fallback strong { font-family: "Barlow Condensed", sans-serif; font-size: clamp(48px, 6vw, 76px); line-height: .95; }
.map-fallback p { max-width: 24ch; color: rgba(255,255,255,.8); }
.map-fallback a { width: max-content; margin-top: 20px; padding: 13px 18px; color: var(--white); background: var(--red); border-radius: 999px; font-size: 15px; font-weight: 900; text-decoration: none; }
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(20px, 4vw, 54px);
  color: rgba(255, 255, 255, .72);
  background: var(--ink);
  font-size: 16px;
}
footer p { margin: 0; }
footer a { color: var(--white); }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .intro,
  .repair-lane,
  .reviews-section,
  .visit { grid-template-columns: 1fr; }
  .intro-copy,
  .intro-media { min-height: auto; }
  .intro-media img { min-height: 460px; }
  .lane-heading { position: static; }
  .shop-proof { grid-template-columns: 1fr 1fr; }
  .proof-image.tall,
  .proof-image.wide { grid-row: auto; grid-column: auto; }
  .visit-photo, .map-shell { min-height: 420px; }
}

@media (max-width: 760px) {
  body { font-size: 18px; }
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 62px;
    padding: 9px 10px 9px 12px;
    border-radius: 17px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 13px;
    font-size: 19px;
  }
  .brand strong { font-size: 14px; }
  .brand small { display: none; }
  .header-call {
    padding: 11px 12px;
    font-size: 12px;
  }
  .hero {
    min-height: 0;
    padding-top: 86px;
  }
  .hero::after { display: none; }
  #hero-img,
  .hero-image {
    position: relative;
    z-index: auto;
    width: 100%;
    height: 39vh;
    min-height: 255px;
    object-position: 51% center;
  }
  .hero-inner {
    min-height: auto;
    width: 100%;
    padding: 30px 20px 42px;
    background: var(--ink);
  }
  .hero-kicker { margin-bottom: 14px; font-size: 16px; }
  h1 { font-size: clamp(50px, 14vw, 66px); line-height: .98; }
  h2 { font-size: clamp(42px, 12vw, 58px); line-height: 1; }
  .hero-copy { font-size: 19px; }
  .hero-actions, .visit-actions { flex-direction: column; }
  .button { width: 100%; white-space: normal; text-align: center; }
  .intro { width: calc(100% - 32px); padding: 52px 0; }
  .intro p:not(.section-note) { font-size: 18px; }
  .intro-media img { min-height: 330px; }
  .repair-lane,
  .reviews-section { padding: 52px 20px; }
  .lane-list article {
    grid-template-columns: 8px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0;
  }
  .lane-list article::before { grid-column: 1; grid-row: 1 / 3; }
  .lane-list h3,
  .lane-list p { grid-column: 2; }
  .shop-proof { grid-template-columns: 1fr; }
  .proof-image { min-height: 260px; }
  .proof-copy { min-height: auto; padding: 46px 20px; }
  .visit { min-height: 0; }
  .visit-copy { padding: 48px 20px; }
  .visit-photo, .map-shell { min-height: 330px; }
  footer { display: block; }
  footer a { display: inline-block; margin-top: 12px; }
}

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