:root {
  color-scheme: light;
  --bg: #f7f9f5;
  --surface: #ffffff;
  --surface-2: #eef3ed;
  --ink: #151712;
  --muted: #596057;
  --line: #d8ded4;
  --rubber: #1f2421;
  --red: #d3422c;
  --red-deep: #9f2a1c;
  --yellow: #f6c343;
  --green: #2d6a4f;
  --blue: #2f5f8f;
  --shadow: 0 18px 48px rgba(31, 36, 33, 0.12);
  --radius: 8px;
  --shell: min(1120px, calc(100vw - 40px));
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0f1110;
  --surface: #171a18;
  --surface-2: #20261f;
  --ink: #f4f5ef;
  --muted: #b9c0b6;
  --line: #313831;
  --rubber: #f3f4eb;
  --red: #ff6b4a;
  --red-deep: #ff8a71;
  --yellow: #ffd86b;
  --green: #75c69d;
  --blue: #8ebbf5;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Atkinson Hyperlegible", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--yellow) 85%, white);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header[data-elevated="true"] {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--shell);
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand img,
.site-footer img {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: "League Spartan", ui-sans-serif, sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.nav-links a:hover {
  background: var(--surface-2);
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.icon-button {
  width: 42px;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 76%, transparent);
}

.button {
  padding: 0 16px;
  color: var(--ink);
  background: var(--surface);
  font-weight: 700;
}

.button svg,
.icon-button svg {
  width: 18px;
  height: 18px;
}

.button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.button.secondary {
  background: color-mix(in srgb, var(--surface) 86%, transparent);
}

.button.compact {
  padding-inline: 13px;
}

.hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 110px 0 58px;
  border-bottom: 1px solid var(--line);
}

.hero-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
  transform: scale(1.05);
}

[data-theme="dark"] .hero-map {
  filter: invert(0.94) hue-rotate(180deg) saturate(0.75) brightness(0.62) contrast(1.05);
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 91%, transparent) 36%, transparent 78%),
    linear-gradient(0deg, var(--bg) 0%, transparent 42%),
    radial-gradient(circle at 78% 26%, color-mix(in srgb, var(--yellow) 32%, transparent), transparent 30%);
}

.map-pin {
  position: absolute;
  top: 45%;
  left: 54%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--red);
  color: white;
  box-shadow: var(--shadow);
}

.map-pin svg {
  width: 27px;
  height: 27px;
}

.hero-content {
  position: relative;
  width: var(--shell);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--red-deep);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p,
dl,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "League Spartan", ui-sans-serif, sans-serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(4.1rem, 12vw, 8.6rem);
  text-wrap: balance;
}

h1 span {
  display: block;
}

h2 {
  max-width: 720px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  text-wrap: balance;
}

h3 {
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.metric-row div {
  padding: 18px;
}

.metric-row div + div {
  border-left: 1px solid var(--line);
}

.metric-row dt {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.metric-row dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-family: "League Spartan", ui-sans-serif, sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

#services,
#mechanical,
#collision,
#reviews,
#visit {
  scroll-margin-top: 92px;
}

.proof-band,
.process-band {
  border-bottom: 1px solid var(--line);
  background: var(--rubber);
  color: var(--bg);
}

.proof-band .eyebrow,
.process-band .eyebrow {
  color: var(--yellow);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 1px;
  padding: 1px;
  background: color-mix(in srgb, var(--bg) 20%, transparent);
}

.proof-grid > * {
  min-height: 245px;
  padding: 34px;
  background: var(--rubber);
}

.proof-grid h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

blockquote {
  font-family: "League Spartan", ui-sans-serif, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 0.95;
}

figcaption {
  margin-top: 20px;
  color: color-mix(in srgb, var(--bg) 68%, transparent);
  font-size: 0.95rem;
}

.service-section,
.visit-section {
  padding: 86px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  align-items: end;
  gap: 48px;
  margin-bottom: 34px;
}

.section-heading p:last-child,
.visit-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card {
  min-height: 255px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(31, 36, 33, 0.05);
}

.service-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: auto;
  color: var(--green);
}

.service-card:nth-child(2) svg {
  color: var(--blue);
}

.service-card:nth-child(3) svg {
  color: var(--red);
}

.service-card:nth-child(4) svg {
  color: #b27a00;
}

.service-card h3 {
  margin-top: 34px;
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  padding: 82px 0;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
  border-radius: 8px;
}

.process-list span {
  color: var(--yellow);
  font-family: "League Spartan", ui-sans-serif, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.process-list p {
  margin-top: 6px;
  color: color-mix(in srgb, var(--bg) 72%, transparent);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  align-items: start;
  gap: 52px;
}

.visit-copy {
  position: sticky;
  top: 104px;
}

.visit-copy p {
  margin-top: 16px;
}

.copy-status {
  min-height: 24px;
  color: var(--green);
  font-weight: 700;
}

.visit-panel {
  display: grid;
  gap: 14px;
}

.map-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  aspect-ratio: 1.2;
  box-shadow: var(--shadow);
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-dot {
  position: absolute;
  left: 52%;
  top: 45%;
  width: 24px;
  height: 24px;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.detail-list div {
  min-height: 136px;
  padding: 18px;
  background: var(--surface);
}

.detail-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-list dd {
  margin: 10px 0 0;
  font-size: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-layout {
  min-height: 118px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-layout > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.footer-layout nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-layout a {
  color: var(--muted);
  text-decoration: none;
}

.footer-layout a:hover {
  color: var(--red-deep);
}

.site-credit {
  width: 100%;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-credit a {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 900px) {
  :root {
    --shell: min(720px, calc(100vw - 28px));
  }

  .nav-shell,
  .hero-content,
  .section-shell {
    width: calc(100vw - 28px);
    max-width: 720px;
  }

  .nav-shell {
    height: 66px;
  }

  .nav-links {
    display: none;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 82svh;
    padding-top: 98px;
  }

  .hero-wash {
    background:
      linear-gradient(0deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 88%, transparent) 44%, transparent 100%),
      linear-gradient(90deg, var(--bg) 0%, transparent 100%);
  }

  .map-pin {
    top: 28%;
    left: 64%;
    width: 48px;
    height: 48px;
  }

  .metric-row,
  .proof-grid,
  .section-heading,
  .service-grid,
  .process-layout,
  .visit-section,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .metric-row div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-grid > * {
    min-height: auto;
    padding: 28px;
  }

  .service-section,
  .visit-section {
    padding: 64px 0;
  }

  .process-layout {
    gap: 32px;
    padding: 64px 0;
  }

  .visit-copy {
    position: static;
  }

  .footer-layout {
    padding: 26px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .button.compact span {
    display: none;
  }

  .map-pin {
    display: none;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 12.5vw, 3.45rem);
    line-height: 0.9;
    text-wrap: wrap;
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
    text-wrap: wrap;
    overflow-wrap: break-word;
  }

  .hero-copy {
    max-width: 100%;
  }

  .metric-row dd {
    font-size: 2rem;
  }
}

/* Current page composition */
.hero {
  min-height: initial;
  display: block;
  align-items: initial;
  overflow: visible;
  padding: 112px 0 42px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface-2) 78%, transparent), transparent 42%),
    linear-gradient(180deg, color-mix(in srgb, var(--yellow) 18%, transparent), transparent 48%),
    var(--bg);
}

[data-theme="dark"] .hero {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface-2) 72%, transparent), transparent 46%),
    linear-gradient(180deg, color-mix(in srgb, var(--red) 12%, transparent), transparent 54%),
    var(--bg);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 1.06fr);
  align-items: center;
  gap: 48px;
}

.hero-content {
  position: relative;
  width: auto;
  margin: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(3rem, 6vw, 5.45rem);
  line-height: 0.9;
  text-wrap: balance;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 4.5vw, 4.45rem);
  text-wrap: balance;
}

h3 {
  line-height: 1.02;
}

.hero-copy {
  max-width: 610px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.65vw, 1.28rem);
}

.metric-row {
  max-width: 610px;
  margin-top: 28px;
  box-shadow: 0 10px 28px rgba(31, 36, 33, 0.08);
}

.metric-row div {
  padding: 16px;
}

.metric-row dd {
  font-size: 2rem;
}

.hero-media {
  position: relative;
  min-height: 460px;
}

.hero-photo {
  width: 86%;
  height: 400px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 14px 34px rgba(31, 36, 33, 0.14);
  backdrop-filter: blur(16px);
}

.rating-card {
  left: 0;
  bottom: 38px;
  width: min(260px, 62%);
  padding: 18px;
  display: grid;
  gap: 7px;
}

.rating-card svg {
  width: 22px;
  height: 22px;
  fill: var(--yellow);
  color: #a86c00;
}

.rating-card strong {
  font-family: "League Spartan", ui-sans-serif, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.rating-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.map-mini {
  top: 24px;
  right: 18px;
  width: 210px;
  height: 142px;
  overflow: hidden;
}

.map-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-help {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.quick-help-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  padding: 1px 0;
  background: var(--line);
}

.quick-help-grid a {
  min-height: 96px;
  padding: 16px 12px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  background: var(--surface);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
}

.quick-help-grid a:hover {
  background: var(--surface-2);
}

.quick-help-grid svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.quick-help-grid a:nth-child(2n) svg {
  color: var(--blue);
}

.quick-help-grid a:nth-child(5) svg,
.quick-help-grid a:nth-child(6) svg {
  color: var(--red);
}

.quick-help-grid span {
  font-weight: 700;
  line-height: 1.15;
}

.service-section,
.visit-section {
  padding: 70px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 30px;
}

.section-heading > p,
.insurance-layout > div > p,
.review-intro p,
.visit-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.service-list-wrap {
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 8px 24px rgba(31, 36, 33, 0.04);
}

.service-list-wrap h3 {
  margin-bottom: 15px;
  font-size: 1.34rem;
}

.service-index {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  list-style: none;
  overflow: hidden;
}

.service-index li {
  min-height: 124px;
  padding: 16px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  background: var(--surface);
}

.service-index svg {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: var(--green);
}

.service-index li:nth-child(3n + 2) svg {
  color: var(--blue);
}

.service-index li:nth-child(n + 7) svg {
  color: var(--red);
}

.service-index strong,
.service-index small {
  display: block;
}

.service-index strong {
  font-size: 1rem;
  line-height: 1.12;
}

.service-index small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

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

.service-panel,
.insurance-note,
.review-cards > *,
.photo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-panel {
  min-height: 430px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(31, 36, 33, 0.05);
}

.collision-panel {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--yellow) 14%, transparent), transparent 46%),
    var(--surface);
}

.panel-title {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.panel-title > svg {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  padding: 9px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--green);
}

.collision-panel .panel-title > svg {
  color: var(--red);
}

.service-panel > p {
  max-width: 640px;
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--green);
}

.collision-panel .check-list li::before,
.insurance-note .check-list li::before {
  background: var(--red);
}

.photo-band {
  padding: 58px 0;
  border-block: 1px solid var(--line);
  background: var(--surface-2);
}

.photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.9fr);
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 14px;
}

.photo-card {
  overflow: hidden;
  min-height: 260px;
  display: grid;
  grid-template-rows: 1fr auto;
  box-shadow: 0 8px 24px rgba(31, 36, 33, 0.06);
}

.photo-card.wide {
  grid-row: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.photo-card figcaption {
  margin: 0;
  padding: 17px 18px 18px;
  color: var(--ink);
  background: var(--surface);
}

.photo-card figcaption strong,
.photo-card figcaption span {
  display: block;
}

.photo-card figcaption strong {
  font-family: "League Spartan", ui-sans-serif, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.photo-card figcaption span {
  margin-top: 6px;
  color: var(--muted);
}

.insurance-section {
  padding: 70px 0;
}

.insurance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  align-items: start;
  gap: 42px;
}

.insurance-layout h2 {
  margin-bottom: 18px;
}

.insurance-note {
  padding: 24px;
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--red) 10%, transparent), transparent 50%),
    var(--surface);
}

.process-band {
  border-block: 1px solid var(--line);
  background: var(--rubber);
  color: var(--bg);
}

.process-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  padding: 64px 0;
}

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

.process-list li {
  min-height: 165px;
  padding: 20px;
}

.review-section {
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 38px;
}

.review-intro {
  position: sticky;
  top: 104px;
}

.review-intro h2 {
  margin-bottom: 16px;
}

.review-cards {
  display: grid;
  gap: 12px;
}

.review-cards > * {
  padding: 24px;
}

.review-cards figure {
  background: var(--surface);
}

blockquote {
  color: var(--ink);
  font-family: "League Spartan", ui-sans-serif, sans-serif;
  font-size: clamp(1.75rem, 3.1vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
}

.review-cards figcaption {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.95rem;
}

.review-cards article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px 16px;
  background: var(--surface-2);
}

.review-cards article svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.review-cards article p {
  color: var(--muted);
}

.visit-section {
  align-items: start;
}

@media (max-width: 980px) {
  .hero-layout,
  .section-heading,
  .service-columns,
  .insurance-layout,
  .process-layout,
  .review-layout,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 94px;
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-photo {
    width: 100%;
    height: 360px;
  }

  .rating-card {
    left: 16px;
    bottom: 16px;
  }

  .map-mini {
    right: 16px;
    top: 16px;
  }

  .quick-help-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .photo-card.wide {
    grid-row: auto;
  }

  .photo-card img {
    min-height: 265px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .review-intro,
  .visit-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100vw - 28px, 720px);
  }

  .hero {
    padding: 88px 0 34px;
  }

  .hero-layout {
    gap: 28px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 13vw, 4rem);
    line-height: 0.9;
    text-wrap: wrap;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2rem, 9.4vw, 3rem);
    text-wrap: wrap;
  }

  .hero-media {
    min-height: 260px;
  }

  .hero-photo {
    height: 250px;
  }

  .hero-card {
    position: absolute;
  }

  .rating-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 14px;
  }

  .map-mini {
    display: none;
  }

  .rating-card span {
    display: none;
  }

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

  .quick-help-grid a {
    min-height: 86px;
  }

  .service-list-wrap {
    padding: 14px;
  }

  .service-index {
    grid-template-columns: 1fr;
  }

  .service-index li {
    min-height: auto;
    padding: 14px;
  }

  .metric-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric-row div + div {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .metric-row div {
    padding: 12px 10px;
  }

  .metric-row dt {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .metric-row dd {
    font-size: 1.48rem;
  }

  .service-section,
  .insurance-section,
  .review-section,
  .visit-section {
    padding: 52px 0;
  }

  .photo-band {
    padding: 46px 0;
  }

  .service-panel,
  .insurance-note,
  .review-cards > * {
    min-height: auto;
    padding: 22px;
  }

  .panel-title {
    gap: 12px;
  }

  .process-layout {
    padding: 52px 0;
  }

  .process-list li {
    grid-template-columns: 44px 1fr;
  }

  .review-cards article {
    grid-template-columns: 1fr;
  }

  .review-cards article svg {
    grid-row: auto;
  }
}
