:root {
  --ink: #121417;
  --muted: #5c6470;
  --paper: #f7f3ec;
  --soft: #ebe4d8;
  --line: #d9d0c3;
  --dark: #111417;
  --dark-2: #1d2329;
  --accent: #c89b5e;
  --accent-dark: #8b6538;
  --white: #ffffff;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 76px;
  padding: 0 5vw;
  color: var(--white);
  background: rgba(17, 20, 23, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--dark);
  background: var(--accent);
  border-radius: 50%;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.header-phone {
  padding: 0.7rem 1rem;
  color: var(--dark);
  background: var(--accent);
  border-radius: 999px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 20, 23, 0.98) 0%, rgba(17, 20, 23, 0.88) 42%, rgba(17, 20, 23, 0.52) 100%),
    linear-gradient(135deg, #14181c 0%, #2b3034 48%, #0f1215 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(200, 155, 94, 0.16) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 90vw);
  margin-left: 5vw;
  padding: 5rem 0;
}

.eyebrow,
.section-label {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.35rem;
}

.hero-lead {
  max-width: 620px;
  margin: 1.2rem 0 1.8rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.form-actions,
.final-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border 180ms ease;
  cursor: pointer;
}

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

.button.primary {
  color: var(--dark);
  background: var(--accent);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(680px, 100%);
  margin-top: 2.2rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.hero-summary div {
  padding: 1rem;
  background: rgba(17, 20, 23, 0.72);
}

.hero-summary strong,
.hero-summary span {
  display: block;
}

.hero-summary span {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.hero-visual {
  position: absolute;
  right: -3vw;
  bottom: 10%;
  width: min(760px, 58vw);
  aspect-ratio: 16 / 9;
  opacity: 0.86;
}

.car-silhouette {
  position: relative;
  width: 100%;
  height: 100%;
}

.roof-line,
.body-line,
.shine {
  position: absolute;
  display: block;
  border: 3px solid var(--accent);
  border-color: var(--accent) transparent transparent transparent;
  border-radius: 50%;
}

.roof-line {
  left: 16%;
  top: 21%;
  width: 58%;
  height: 38%;
  transform: rotate(-2deg);
}

.body-line {
  left: 3%;
  top: 48%;
  width: 90%;
  height: 28%;
  border-top-width: 5px;
}

.wheel {
  position: absolute;
  bottom: 16%;
  width: 15%;
  aspect-ratio: 1;
  border: 7px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px rgba(200, 155, 94, 0.18);
}

.wheel-left {
  left: 18%;
}

.wheel-right {
  right: 18%;
}

.shine-one {
  right: 16%;
  top: 10%;
  width: 35%;
  height: 16%;
  transform: rotate(7deg);
}

.shine-two {
  right: 5%;
  top: 31%;
  width: 22%;
  height: 10%;
  opacity: 0.55;
  transform: rotate(7deg);
}

.section-pad {
  width: min(var(--max), 90vw);
  margin: 0 auto;
  padding: 6rem 0;
}

.split,
.trust,
.request-box,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.split p,
.trust-points p,
.page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.services-band,
.process,
.faq {
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

.service-card,
.steps article,
.service-detail article,
.contact-list div {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card span,
.steps strong,
.contact-list span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-dark);
  font-weight: 900;
}

.service-card p,
.steps p,
.service-detail p,
.contact-list p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--accent-dark);
  font-weight: 900;
}

.steps,
.service-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.trust {
  padding: 5rem 0;
}

.trust-points ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-points li {
  padding-left: 1.4rem;
  background: linear-gradient(90deg, var(--accent) 0 8px, transparent 8px) left 0.72em / 12px 2px no-repeat;
}

.quick-request {
  width: 100%;
  max-width: none;
  padding: 6rem 5vw;
  color: var(--white);
  background: var(--dark);
}

.request-box {
  width: min(var(--max), 100%);
  margin: 0 auto;
  align-items: center;
}

.request-box p {
  color: rgba(255, 255, 255, 0.72);
}

.mailto-form {
  display: grid;
  gap: 0.7rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.mailto-form label {
  font-weight: 800;
}

.mailto-form input,
.mailto-form select,
.mailto-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
}

.mailto-form textarea {
  resize: vertical;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

details p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.final-cta {
  display: grid;
  gap: 1rem;
  width: min(var(--max), 90vw);
  margin: 0 auto 6rem;
  padding: 3rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: 8px;
}

.final-cta p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  width: min(var(--max), 90vw);
  margin: 0 auto;
  padding: 6rem 0 4rem;
}

.page-hero.compact {
  max-width: 900px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.page-hero .button {
  margin-top: 1rem;
  color: var(--dark);
}

.contact-layout {
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-list a {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
}

.request-box-single {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem;
  color: var(--white);
  background: var(--dark);
  border-radius: 8px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 5vw;
  color: rgba(255, 255, 255, 0.78);
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
}

.reveal {
  animation: rise 700ms ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 68px;
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem 5vw 1rem;
    background: rgba(17, 20, 23, 0.98);
  }

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

  .site-nav a {
    min-height: 46px;
    padding: 0.75rem 0;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(92vw, 620px);
    margin: 0 auto;
    padding: 2.2rem 0 2.6rem;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.8rem);
  }

  .hero-lead {
    margin: 0.9rem 0 1.2rem;
  }

  .hero-summary {
    grid-template-columns: 1fr;
    margin-top: 1.25rem;
  }

  .hero-summary div {
    padding: 0.85rem 1rem;
  }

  .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 92vw;
    margin: 0 auto 1.2rem;
    aspect-ratio: 16 / 5;
  }

  .split,
  .trust,
  .request-box,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .steps,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .section-pad,
  .quick-request {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section-head {
    display: block;
  }

  .final-cta {
    padding: 2rem;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 0 4vw;
  }

  .brand {
    font-size: 0.96rem;
  }

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

  .hero-content {
    padding-top: 1.45rem;
  }

  .eyebrow,
  .section-label {
    margin-bottom: 0.55rem;
  }

  .hero-actions,
  .form-actions,
  .final-cta div {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    margin-bottom: 0.4rem;
  }

  .section-pad,
  .page-hero {
    width: 92vw;
  }

  .page-hero {
    padding-top: 3.4rem;
  }

  .service-card,
  .steps article,
  .service-detail article,
  .contact-list div {
    padding: 1.1rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
