:root {
  --bg: #f4f5f3;
  --surface: #ffffff;
  --ink: #101114;
  --muted: #62676d;
  --line: #dadbd7;
  --accent: #941827;
  --accent-strong: #73101c;
  --champagne: #c8aa6e;
  --champagne-soft: #eee4ce;
  --graphite: #15181d;
  --graphite-soft: #20252c;
  --steel: #ebeeed;
  --radius: 8px;
  --shadow: 0 28px 70px rgba(16, 17, 20, 0.16);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fbfbfa 0, var(--bg) 420px);
  color: var(--ink);
  line-height: 1.55;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 58px);
  color: #fff;
  background: rgba(12, 14, 17, 0.7);
  border-bottom: 1px solid rgba(200, 170, 110, 0.22);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.brand-word {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.8);
}

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

.nav-phone {
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 170, 110, 0.36);
  border-radius: var(--radius);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  min-height: min(760px, 94vh);
  padding: 116px clamp(18px, 5vw, 72px) 72px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(7, 8, 10, 0.92) 0%, rgba(12, 15, 18, 0.76) 42%, rgba(12, 15, 18, 0.22) 78%),
    image-set(
      url("/assets/img/hero-auto-services.webp") type("image/webp"),
      url("/assets/img/hero-auto-services.jpg") type("image/jpeg")
    );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
  min-height: calc(min(760px, 94vh) - 188px);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--champagne);
}

h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.1vw, 23px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.hero-trust span {
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(200, 170, 110, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
}

.hero-panel {
  align-self: end;
  padding: 26px;
  background: rgba(14, 16, 19, 0.72);
  border: 1px solid rgba(200, 170, 110, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.hero-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.12;
}

.hero-panel p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-panel dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.hero-panel dl div {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel dd {
  margin: 0;
  color: #fff;
  font-weight: 750;
}

.hero-actions,
.footer-links,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 16px 34px rgba(148, 24, 39, 0.28);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-ghost {
  color: #fff;
  border-color: rgba(200, 170, 110, 0.46);
  background: rgba(255, 255, 255, 0.055);
}

.button-light {
  color: #111;
  background: linear-gradient(135deg, #fff, #efe4cc);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #16191d;
}

.quick-strip div {
  display: grid;
  gap: 2px;
  min-height: 118px;
  place-items: center;
  background: #111418;
  border-right: 1px solid rgba(200, 170, 110, 0.18);
}

.quick-strip strong {
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
}

.quick-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-muted {
  background: var(--steel);
}

.section-graphite {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(201, 33, 43, 0.18), transparent 42%),
    #111820;
}

.section-graphite .section-heading p,
.section-graphite .standard-card p {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading h2,
.cta-band h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.05;
}

.section-heading p,
.service-card p,
.text-panel p,
.cta-band p,
.site-footer p,
.feature p {
  color: var(--muted);
}

.card-grid,
.content-grid,
.feature-grid,
.standard-grid {
  display: grid;
  gap: 18px;
}

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

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

.four-cols {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.text-panel,
.feature,
.trust-card,
.standard-card,
.report-card,
details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card,
.text-panel,
.trust-card,
.standard-card {
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 12px 32px rgba(16, 17, 20, 0.055);
}

.service-card h3,
.text-panel h2,
.compact-panel h3,
.trust-card h3,
.standard-card h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.compact-panel {
  min-height: 220px;
}

.criteria-section,
.link-section {
  background: #fbfbfa;
}

.local-scenario-section {
  background: #fff;
}

.city-depth-section {
  background: #fbfbfa;
}

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

.rich-copy p {
  min-height: 178px;
  margin: 0;
  padding: clamp(22px, 3vw, 34px);
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(16, 17, 20, 0.045);
}

.city-scenario-section .compact-panel {
  min-height: 250px;
}

.decision-table {
  display: grid;
  gap: 12px;
}

.decision-row {
  display: grid;
  grid-template-columns: 0.22fr 0.32fr minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.decision-row span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.decision-row strong {
  color: var(--graphite);
  line-height: 1.3;
}

.decision-row p {
  margin: 0;
  color: var(--muted);
}

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

.process-checklist li {
  position: relative;
  min-height: 132px;
  padding: 22px 22px 22px 66px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 170, 110, 0.2);
  border-radius: var(--radius);
  counter-increment: process-check;
}

.process-checklist li::before {
  content: counter(process-check, decimal-leading-zero);
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--champagne);
  font-weight: 900;
}

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

.standard-card {
  background: rgba(255, 255, 255, 0.052);
  border-color: rgba(200, 170, 110, 0.18);
  box-shadow: none;
}

.trust-section {
  background: #fff;
}

.trust-card {
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--champagne), var(--accent));
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.report-card {
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.report-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.report-top span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.report-top strong {
  color: var(--accent);
  text-align: right;
}

.report-row {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.report-row:last-child {
  border-bottom: 0;
}

.report-row span {
  color: var(--graphite);
  font-weight: 850;
}

.report-row p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  color: var(--accent);
  font-weight: 800;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 10px;
}

.city-link-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}

.city-link-group {
  padding: clamp(18px, 2.5vw, 26px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.city-link-group h3 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.city-grid a,
.inline-links a {
  padding: 11px 12px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.inline-links a {
  font-size: 14px;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.region-zone-card .inline-links {
  margin-top: 18px;
}

.city-grid a:hover,
.inline-links a:hover {
  border-color: var(--champagne);
  color: var(--accent);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--graphite);
  font-weight: 700;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 26px;
}

.feature {
  display: flex;
  gap: 12px;
  min-height: 96px;
  padding: 18px;
}

.feature span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.feature p {
  margin-bottom: 0;
  font-weight: 650;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 150px;
  padding: 62px 20px 20px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(200, 170, 110, 0.12), transparent 44%),
    var(--graphite);
  border-radius: var(--radius);
  overflow: hidden;
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 16px;
  left: 18px;
  color: var(--champagne);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.steps span {
  display: block;
  font-weight: 750;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(36px, 5vw, 56px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(200, 170, 110, 0.18), transparent 38%),
    #12161b;
  border-top: 1px solid rgba(200, 170, 110, 0.22);
  border-bottom: 1px solid rgba(200, 170, 110, 0.22);
}

.cta-band p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 32px;
  padding: 42px clamp(18px, 5vw, 72px);
  color: #fff;
  background: #0e1013;
  border-top: 1px solid rgba(200, 170, 110, 0.18);
}

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

.footer-links {
  align-content: start;
  justify-content: end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 860px) {
  .site-header {
    min-height: 64px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(17, 20, 24, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
  }

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

  .nav-phone {
    text-align: center;
  }

  .hero {
    min-height: 720px;
    background-image:
      linear-gradient(180deg, rgba(9, 12, 16, 0.94) 0%, rgba(9, 12, 16, 0.78) 52%, rgba(9, 12, 16, 0.22) 100%),
      image-set(
        url("/assets/img/hero-auto-services.webp") type("image/webp"),
        url("/assets/img/hero-auto-services.jpg") type("image/jpeg")
      );
    background-position: 58% center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-panel {
    display: none;
  }

  .quick-strip,
  .two-cols,
  .three-cols,
  .four-cols,
  .content-grid,
  .rich-copy,
  .standard-grid,
  .report-layout,
  .decision-row,
  .process-checklist,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 690px;
    padding-top: 96px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-strip {
    grid-template-columns: 1fr;
  }

  .report-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .rich-copy p,
  .process-checklist li {
    min-height: auto;
  }

  .decision-row {
    gap: 8px;
  }
}
