
:root {
  --ink: #0b1020;
  --ink-soft: #161e33;
  --steel: #eef1f5;
  --muted: #60697a;
  --line: #dce1e9;
  --blue: #1648d8;
  --blue-bright: #2862ff;
  --blue-dark: #0b2e9a;
  --white: #ffffff;
  --warm: #f6f4ef;
  --green: #0e9267;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.topline {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.topline-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topline a,
.topline-hours {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(11, 16, 32, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.brand strong {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #30394b;
  font-size: 13px;
  font-weight: 800;
}

nav a {
  position: relative;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

.button {
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-small {
  min-height: 43px;
  padding-inline: 17px;
  font-size: 12px;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(22, 72, 216, 0.24);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(7, 12, 28, 0.25);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(7, 12, 28, 0.45);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: var(--ink);
  color: var(--white);
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 61%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, var(--ink) 43%, rgba(11, 16, 32, 0.94) 47%, rgba(11, 16, 32, 0.42) 55%, transparent 66%),
    linear-gradient(0deg, rgba(5, 9, 21, 0.25), transparent 36%);
}

.hero-shade::after {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 46%;
  width: 90px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(90deg, rgba(35, 93, 255, 0.3), transparent);
  content: "";
  transform: skewX(-10deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 92px 72px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(570px, 49%);
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  color: #8daaff;
}

.eyebrow-line {
  width: 34px;
  height: 3px;
  background: var(--blue-bright);
}

.hero h1,
.section-heading h2,
.reputation-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Arial Narrow", Impact, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  margin-top: 22px;
  font-size: clamp(62px, 5.6vw, 86px);
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy > p {
  width: min(570px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

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

.hero-proof {
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.hero-proof > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.hero-proof strong {
  font-size: 30px;
  letter-spacing: -0.04em;
}

.hero-proof small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
}

.stars,
.review-stars {
  display: flex;
  gap: 2px;
  color: #ffc94f;
}

.stars {
  margin-top: 2px;
}

.trust-strip {
  position: relative;
  z-index: 4;
  background: var(--blue);
  color: var(--white);
}

.trust-grid {
  min-height: 82px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}

.trust-grid div {
  min-height: 38px;
  padding: 0 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
}

.trust-grid div:first-child {
  padding-left: 0;
}

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

.trust-grid svg {
  flex: 0 0 auto;
  width: 20px;
}

.section {
  padding-block: 108px;
}

.section-heading h2,
.reputation-copy h2,
.contact-copy h2 {
  margin-top: 14px;
  font-size: clamp(42px, 5vw, 67px);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.split-heading p,
.work-heading p,
.reputation-copy .lead,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.services-section {
  background: var(--warm);
}

.services-grid {
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 2;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(13, 23, 45, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: #e7edff;
  color: var(--blue);
}

.service-card h3 {
  margin: 23px 0 10px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.work-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.work-section::before {
  position: absolute;
  top: 0;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(75, 118, 255, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 110px rgba(40, 98, 255, 0.035), 0 0 0 220px rgba(40, 98, 255, 0.02);
}

.kicker-light {
  color: #8daaff;
}

.work-heading {
  position: relative;
  max-width: 760px;
}

.work-heading p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.58);
}

.repair-stack {
  position: relative;
  margin-top: 62px;
  display: grid;
  gap: 28px;
}

.repair-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: #12192a;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.repair-card-heading {
  padding: 21px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.repair-card-heading span {
  color: #7f90af;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.repair-card-heading h3 {
  margin: 0;
  font-size: 17px;
}

.compare-grid {
  position: relative;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.compare-panel {
  position: relative;
  min-width: 0;
  height: 430px;
  margin: 0;
  border-radius: 7px;
  overflow: hidden;
  background: #080c16;
}

.compare-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  min-width: 72px;
  padding: 9px 13px;
  border-radius: 4px;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.18);
}

.photo-label-before {
  background: #bd2a2a;
}

.photo-label-after {
  background: var(--green);
}

.compare-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 5px solid #12192a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  transform: translate(-50%, -50%);
}

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

.reputation-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 86px;
}

.facility-mosaic {
  position: relative;
  min-height: 590px;
}

.facility-main,
.facility-secondary {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 25px 70px rgba(11, 16, 32, 0.15);
}

.facility-main {
  top: 0;
  left: 0;
  width: 82%;
  height: 430px;
  border-radius: 8px;
}

.facility-secondary {
  right: 0;
  bottom: 0;
  width: 62%;
  height: 275px;
  border: 9px solid var(--white);
  border-radius: 5px;
}

.experience-badge {
  position: absolute;
  bottom: 34px;
  left: 18px;
  z-index: 3;
  width: 150px;
  height: 150px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(22, 72, 216, 0.28);
}

.experience-badge strong {
  font-size: 47px;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.experience-badge span {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.reputation-copy h2 {
  font-size: clamp(42px, 4.6vw, 62px);
}

.reputation-copy .lead {
  margin-top: 25px;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #30394b;
  font-size: 14px;
  font-weight: 750;
}

.check-list svg {
  width: 23px;
  height: 23px;
  padding: 5px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: #e7edff;
  color: var(--blue);
}

.text-link {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.text-link:hover {
  color: var(--blue-dark);
}

.reviews-section {
  padding-block: 88px;
  background: var(--steel);
}

.review-summary {
  display: flex;
  align-items: center;
  gap: 22px;
}

.review-score {
  padding-right: 22px;
  border-right: 1px solid #cdd3dd;
  font-size: 60px;
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 1;
}

.review-summary > div:last-child {
  display: flex;
  flex-direction: column;
}

.review-summary strong {
  margin-top: 6px;
  font-size: 17px;
}

.review-summary span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.reviews-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reviews-grid blockquote {
  position: relative;
  min-height: 190px;
  margin: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.quote-mark {
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 0.65;
}

.reviews-grid p {
  margin: 17px 0 28px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.reviews-grid footer {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: 100px;
  background: var(--blue);
  color: var(--white);
}

.contact-section::before {
  position: absolute;
  top: -130px;
  right: 11%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 100px rgba(255, 255, 255, 0.025), 0 0 0 200px rgba(255, 255, 255, 0.015);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 90px;
}

.contact-copy h2 {
  max-width: 650px;
  font-size: clamp(48px, 5.5vw, 78px);
}

.contact-copy p {
  max-width: 600px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.75);
}

.button-white {
  margin-top: 30px;
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 16px 42px rgba(7, 22, 75, 0.22);
}

.contact-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: grid;
  gap: 28px;
  background: rgba(7, 29, 99, 0.34);
  backdrop-filter: blur(10px);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.contact-row > svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 6px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.12);
}

.contact-row > div {
  display: flex;
  flex-direction: column;
}

.contact-row span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-row strong {
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.55;
}

.contact-row a {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #cbd8ff;
  font-size: 12px;
  font-weight: 850;
}

.contact-row small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.site-footer {
  padding-block: 54px 24px;
  background: #070b15;
  color: var(--white);
}

.footer-main {
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-footer img {
  width: 53px;
  height: 53px;
  filter: drop-shadow(0 0 12px rgba(58, 106, 255, 0.22));
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  display: flex;
  gap: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

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

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.rich-footer {
  padding-block: 72px 24px;
}

.rich-footer-grid {
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 1fr 1.05fr;
  gap: 58px;
}

.rich-footer-brand > p {
  max-width: 390px;
  margin: 24px 0 22px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.75;
}

.footer-nap {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.footer-nap a:hover { color: var(--white); }
.footer-nap .footer-phone { color: var(--white); font-size: 17px; font-weight: 900; }
.rich-footer-brand .social-link { margin-top: 22px; }

.footer-column h3 {
  margin: 2px 0 20px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.footer-column li,
.serving-copy,
.footer-hours table,
.footer-hours > p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.55;
}

.footer-column a:hover { color: var(--white); }
.footer-column .footer-all-link { color: #9bb3ff; font-weight: 850; }
.footer-column .serving-heading { margin-top: 34px; margin-bottom: 13px; }
.serving-copy { margin: 0; line-height: 1.85; }

.footer-hours table { width: 100%; border-collapse: collapse; }
.footer-hours th, .footer-hours td { padding: 0 0 9px; font-weight: 600; text-align: left; vertical-align: top; }
.footer-hours td { color: rgba(255, 255, 255, 0.72); text-align: right; }
.footer-hours > p { margin: 16px 0 0; color: rgba(255, 255, 255, 0.36); }

.rich-footer-bottom > div { display: flex; gap: 26px; }
.rich-footer-bottom a:hover { color: var(--white); }
.footer-credit { white-space: nowrap; }
.footer-credit a { color: rgba(255, 255, 255, 0.62); text-decoration: none; }
.footer-credit a:hover { color: var(--white); text-decoration: underline; }

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #30394b;
  font-size: 12px;
  font-weight: 900;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker { display: none; }

.mobile-menu > div {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 80;
  width: 220px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  background: var(--white);
  box-shadow: 0 22px 55px rgba(11, 16, 32, 0.16);
}

.mobile-menu > div a {
  padding: 13px 12px;
  border-radius: 5px;
  color: #30394b;
  font-size: 13px;
  font-weight: 850;
}

.mobile-menu > div a:hover { background: var(--steel); color: var(--blue); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 96px 92px;
  background: var(--ink);
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  top: -260px;
  right: -120px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(75, 118, 255, 0.2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 110px rgba(40, 98, 255, 0.035), 0 0 0 220px rgba(40, 98, 255, 0.02);
}

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

.page-hero h1,
.detail-section h2,
.insurance-section h2,
.faq-section h2,
.estimate-section h2,
.confirmation-card h1 {
  margin: 14px 0 0;
  font-family: "Arial Narrow", Impact, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(54px, 7vw, 94px);
  text-transform: uppercase;
}

.page-hero-copy {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.7;
}

.page-hero-copy p { margin: 0; }
.compact-page-hero { padding-block: 78px; }

.detail-section { background: var(--warm); }
.detail-list { display: grid; }

.service-detail {
  padding-block: 50px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  scroll-margin-top: 120px;
}

.service-detail:first-child { padding-top: 0; }
.service-detail:last-child { padding-bottom: 0; border-bottom: 0; }
.service-detail-heading { display: flex; align-items: flex-start; gap: 20px; }
.service-detail-heading .service-icon { flex: 0 0 auto; }
.service-detail h2 { margin: 0; font-size: clamp(30px, 3.2vw, 45px); }
.service-detail-heading p, .service-detail-copy p { color: var(--muted); line-height: 1.75; }
.service-detail-heading p { margin: 12px 0 0; font-weight: 650; }
.service-detail-copy p { margin: 0; font-size: 16px; }
.service-detail-copy .text-link { margin-top: 22px; }

.work-page { padding-top: 86px; }
.work-page .repair-stack { margin-top: 0; }

.narrow-shell { width: min(880px, calc(100% - 48px)); }
.insurance-section { background: var(--warm); }
.insurance-section h2, .faq-section h2, .estimate-section h2 { font-size: clamp(43px, 5vw, 67px); }

.insurance-card {
  margin-top: 38px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 24px 65px rgba(11, 16, 32, 0.08);
}

.insurance-card > p:first-child { margin: 0; color: #30394b; font-size: 20px; font-weight: 700; line-height: 1.65; }
.legal-note { margin: 24px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; line-height: 1.65; }
.source-links { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 12px 24px; }
.source-links a { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: 13px; font-weight: 850; }

.faq-list { margin-top: 40px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 44px 24px 0; cursor: pointer; color: #30394b; font-size: 17px; font-weight: 850; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 21px; right: 4px; color: var(--blue); content: "+"; font-size: 26px; font-weight: 500; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { max-width: 760px; margin: -4px 0 24px; color: var(--muted); line-height: 1.75; }

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

.estimate-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; align-items: start; gap: 80px; }
.form-intro { margin: 18px 0 30px; color: var(--muted); line-height: 1.7; }
.estimate-form { display: grid; gap: 19px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.estimate-form label { display: grid; gap: 8px; color: #30394b; font-size: 12px; font-weight: 900; letter-spacing: 0.04em; }
.estimate-form input, .estimate-form select, .estimate-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cfd5df;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
}
.estimate-form textarea { min-height: 145px; resize: vertical; }
.estimate-form input:focus, .estimate-form select:focus, .estimate-form textarea:focus { outline: 3px solid rgba(40,98,255,.15); border-color: var(--blue); }
.estimate-form input[type="file"] { padding: 10px; }
.estimate-form label small { color: var(--muted); font-weight: 600; letter-spacing: 0; }
.estimate-form .button { justify-self: start; border: 0; cursor: pointer; }
.honeypot { position: absolute; left: -10000px; }
.form-note { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.form-note a { color: var(--blue); font-weight: 850; }

.visit-panel { display: grid; gap: 26px; }
.quick-call { padding: 32px; border-radius: 10px; background: var(--steel); }
.quick-call > svg { width: 45px; height: 45px; padding: 11px; border-radius: 7px; background: #dce5ff; color: var(--blue); }
.quick-call > span { margin-top: 22px; display: block; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.quick-call h2 { font-size: 42px; }
.quick-call p { color: var(--muted); line-height: 1.7; }
.quick-call .button { margin-top: 8px; }
.visit-row { padding: 0 6px 24px; border-bottom: 1px solid var(--line); display: flex; gap: 17px; }
.visit-row > svg { flex: 0 0 auto; color: var(--blue); }
.visit-row > div { display: flex; flex-direction: column; gap: 7px; color: var(--muted); line-height: 1.55; }
.visit-row strong { color: var(--ink); }
.visit-row a { display: inline-flex; align-items: center; gap: 5px; color: var(--blue); font-size: 13px; font-weight: 850; }
.visit-row small { font-size: 12px; }
.map-section { background: var(--steel); }
.map-section iframe { display: block; border: 0; }

.confirmation-section { min-height: 620px; padding-block: 100px; display: grid; place-items: center; background: var(--warm); }
.confirmation-card { max-width: 780px; padding: clamp(35px, 6vw, 72px); border: 1px solid var(--line); border-radius: 12px; background: var(--white); text-align: center; box-shadow: 0 28px 80px rgba(11,16,32,.1); }
.confirmation-card > svg { width: 62px; height: 62px; margin: 0 auto 24px; color: var(--green); }
.confirmation-card h1 { font-size: clamp(48px, 7vw, 82px); text-transform: uppercase; }
.confirmation-card p { max-width: 600px; margin: 24px auto 30px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.confirmation-card > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.button-outline { border-color: var(--line); background: var(--white); color: var(--ink); }

.legal-section h2 { margin: 34px 0 10px; font-size: 24px; }
.legal-section h2:first-child { margin-top: 0; }
.legal-section p { color: var(--muted); line-height: 1.8; }

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu { display: block; margin-left: auto; }

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

  .hero {
    min-height: 640px;
  }

  .hero-image {
    width: 64%;
  }

  .hero-shade {
    background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 46%, rgba(11, 16, 32, 0.9) 51%, rgba(11, 16, 32, 0.28) 61%, transparent 72%);
  }

  .hero-copy {
    width: min(540px, 53%);
  }

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

  .reputation-grid {
    gap: 50px;
  }

  .facility-mosaic {
    min-height: 510px;
  }

  .facility-main {
    height: 360px;
  }

  .facility-secondary {
    height: 240px;
  }

  .contact-grid {
    gap: 50px;
  }
}

@media (max-width: 780px) {
  .site-shell {
    width: min(100% - 30px, 620px);
  }

  .topline-hours {
    display: none;
  }

  .topline-inner {
    justify-content: center;
  }

  .nav-wrap {
    min-height: 72px;
    gap: 12px;
  }

  .mobile-menu summary { min-height: 40px; padding-inline: 11px; }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 8px;
  }

  .nav-wrap .button-small {
    width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .nav-wrap .button-small svg {
    width: 19px;
    height: 19px;
  }

  .hero {
    min-height: auto;
    display: block;
  }

  .hero-image {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 300px;
    object-position: center 48%;
    clip-path: none;
  }

  .hero-shade {
    display: none;
  }

  .hero-shade::after {
    display: none;
  }

  .hero-content {
    padding-block: 54px 48px;
    align-items: center;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(54px, 15vw, 74px);
  }

  .hero-copy > p {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof {
    gap: 14px;
  }

  .hero-proof strong {
    font-size: 25px;
  }

  .hero-proof small {
    font-size: 8px;
  }

  .trust-grid {
    padding-block: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid div {
    min-height: 50px;
    padding: 8px 10px;
    border-right: 0;
    font-size: 11px;
  }

  .section {
    padding-block: 76px;
  }

  .page-hero { padding-block: 68px; }
  .page-hero h1 { font-size: 52px; }
  .page-hero-copy { font-size: 16px; }
  .service-detail, .estimate-grid { grid-template-columns: 1fr; gap: 26px; }
  .service-detail { padding-block: 38px; }
  .service-detail-heading { gap: 15px; }
  .narrow-shell { width: min(100% - 30px, 620px); }
  .form-row { grid-template-columns: 1fr; }
  .estimate-grid { gap: 58px; }
  .cta-actions { display: grid; grid-template-columns: 1fr; }
  .cta-actions .button { width: 100%; }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading h2,
  .reputation-copy h2 {
    font-size: 43px;
  }

  .services-grid {
    margin-top: 40px;
    grid-template-columns: 1fr;
  }

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

  .repair-card-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

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

  .compare-panel {
    height: 360px;
  }

  .compare-arrow {
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .reputation-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .facility-mosaic {
    min-height: 485px;
  }

  .facility-main {
    width: 88%;
    height: 335px;
  }

  .facility-secondary {
    width: 68%;
    height: 220px;
  }

  .experience-badge {
    bottom: 25px;
    width: 130px;
    height: 130px;
  }

  .experience-badge strong {
    font-size: 40px;
  }

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

  .reviews-grid blockquote {
    min-height: auto;
  }

  .contact-section {
    padding-block: 76px;
  }

  .contact-grid {
    gap: 42px;
  }

  .contact-copy h2 {
    font-size: 51px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .rich-footer { padding-top: 58px; }
  .rich-footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .rich-footer-bottom > div { flex-direction: column; gap: 8px; }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px 22px;
  }
}

@media (max-width: 430px) {
  .brand span {
    max-width: 190px;
  }

  .mobile-menu { order: 3; }
  .mobile-menu > div { right: -55px; }
  .page-hero h1 { font-size: 44px; }

  .hero h1 {
    font-size: 50px;
  }

  .eyebrow {
    font-size: 9px;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof > div:last-child {
    display: none;
  }

  .compare-panel {
    height: 300px;
  }

  .facility-mosaic {
    min-height: 420px;
  }

  .facility-main {
    height: 285px;
  }

  .facility-secondary {
    height: 190px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
