:root {
  --ink: #18252b;
  --ink-soft: #314149;
  --paper: #f7f3ec;
  --paper-deep: #ece4d7;
  --surface: #ffffff;
  --copper: #a8451f;
  --copper-dark: #7d2f12;
  --sage: #2c6b5d;
  --sage-light: #dce9e4;
  --line: #d9d1c6;
  --muted: #657177;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(24, 37, 43, .12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  margin: 0;
  overflow-wrap: break-word;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

body,
input,
textarea,
button {
  font-size: 17px;
}

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

a {
  color: inherit;
}

p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -.025em;
  line-height: 1.12;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 5.8vw, 5.7rem);
  margin-bottom: 26px;
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.site-header {
  background: rgba(24, 37, 43, .97);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: 1480px;
  min-height: 82px;
  padding: 12px 32px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.brand-name {
  font-size: 1.45rem;
  font-weight: 800;
}

.brand-place {
  color: #d7e0dd;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .09em;
  margin-top: 7px;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2.2vw, 34px);
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #e5ebe8;
  font-size: .92rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.header-phone {
  background: var(--copper);
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  padding: 11px 19px;
  text-decoration: none;
  white-space: nowrap;
}

main > section {
  margin: 0 auto;
  max-width: 1480px;
  padding: 100px 32px;
  width: 100%;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(45px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  min-height: calc(100vh - 82px);
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow {
  color: var(--copper-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #f0b895;
}

.hero-lead {
  color: var(--ink-soft);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.5;
}

.hero-copy > p:not(.eyebrow):not(.phone-line) {
  max-width: 780px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

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

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

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

.button-secondary {
  border-color: var(--ink);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.phone-line {
  color: var(--muted);
  font-size: .95rem;
  margin: 22px 0 0;
}

.phone-line a {
  color: var(--ink);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero-visual {
  margin: 0;
  position: relative;
}

.hero-visual::before {
  background: var(--sage);
  border-radius: var(--radius);
  content: "";
  inset: -18px 20px 32px -18px;
  position: absolute;
  transform: rotate(-2deg);
}

.hero-visual img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  position: relative;
  width: 100%;
}

.hero-visual figcaption {
  background: var(--surface);
  border-left: 5px solid var(--copper);
  border-radius: 12px;
  bottom: -28px;
  box-shadow: 0 16px 40px rgba(24, 37, 43, .18);
  font-size: .92rem;
  font-weight: 700;
  left: 28px;
  max-width: 82%;
  padding: 15px 18px;
  position: absolute;
}

.section-heading {
  max-width: 850px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
}

.symptoms-section {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(24, 37, 43, .08);
  padding-right: clamp(24px, 4vw, 64px);
  padding-left: clamp(24px, 4vw, 64px);
}

.symptom-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.symptom-card {
  background: var(--surface);
  min-width: 0;
  padding: clamp(26px, 3vw, 42px);
}

.symptom-card:hover {
  background: #fbf8f3;
}

.card-number {
  color: var(--copper);
  display: block;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: 28px;
}

.symptom-card p {
  color: var(--muted);
  font-size: .98rem;
  margin-bottom: 0;
}

.prepare-section {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
}

.prepare-image {
  min-height: 650px;
}

.prepare-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.prepare-copy {
  background: var(--paper-deep);
  padding: clamp(36px, 6vw, 88px);
}

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

.check-list li {
  align-items: start;
  border-top: 1px solid rgba(24, 37, 43, .14);
  display: grid;
  gap: 18px;
  grid-template-columns: 42px 1fr;
  min-width: 0;
  padding: 22px 0;
}

.check-list li > span {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: .83rem;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.check-list strong {
  display: block;
  margin-bottom: 5px;
}

.check-list p {
  color: var(--muted);
  font-size: .95rem;
  margin: 0;
}

.garage-index-section {
  display: grid;
  gap: clamp(38px, 7vw, 100px);
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  max-width: none;
  color: var(--white);
  background: var(--ink);
  padding-right: max(32px, calc((100vw - 1416px) / 2));
  padding-left: max(32px, calc((100vw - 1416px) / 2));
}

.garage-index-copy h2 {
  color: var(--white);
}

.garage-index-copy > p:not(.eyebrow) {
  color: #cbd5d1;
}

.garage-index-copy strong {
  color: var(--white);
}

.maker-index {
  align-self: center;
  padding: clamp(28px, 5vw, 52px);
  color: var(--ink);
  background: var(--paper-deep);
  border-left: 8px solid var(--copper);
}

.maker-index-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.maker-index-grid span {
  display: grid;
  min-height: 76px;
  align-content: center;
  gap: 3px;
  padding: 11px;
  background: var(--surface);
  font-weight: 800;
  text-align: center;
}

.maker-index-grid b {
  color: var(--copper);
  font-size: .67rem;
  letter-spacing: .08em;
}

.maker-index-note {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: .8rem;
}

.maker-index-note strong {
  color: var(--ink);
}

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

.service-card {
  background: var(--ink);
  border-radius: 18px;
  color: var(--white);
  min-width: 0;
  overflow: hidden;
  padding: clamp(30px, 4vw, 52px);
}

.service-card p {
  color: #ced8d4;
  margin-bottom: 0;
}

.service-card-image {
  background: var(--surface);
  color: var(--ink);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(170px, .7fr) minmax(0, 1.3fr);
  padding: 0;
}

.service-card-image img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  width: 100%;
}

.service-card-image > div {
  align-self: center;
  padding: 34px 34px 34px 0;
}

.service-card-image p {
  color: var(--muted);
}

.service-symbol {
  align-items: center;
  background: var(--copper);
  border-radius: 50%;
  color: var(--white) !important;
  display: flex;
  font-size: 1.2rem;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  margin-bottom: 30px !important;
  width: 54px;
}

.safety-section {
  background: var(--sage);
  color: var(--white);
  display: grid;
  gap: clamp(45px, 8vw, 120px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, .85fr);
  max-width: none;
  padding-right: max(32px, calc((100vw - 1416px) / 2));
  padding-left: max(32px, calc((100vw - 1416px) / 2));
}

.safety-section h2 {
  color: var(--white);
}

.safety-section > div > p:not(.eyebrow) {
  color: #dce9e4;
  font-size: 1.12rem;
  max-width: 720px;
}

.safety-list {
  align-self: center;
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.safety-list li {
  border-top: 1px solid rgba(255, 255, 255, .25);
  padding: 20px 0 20px 34px;
  position: relative;
}

.safety-list li::before {
  color: #f0b895;
  content: "—";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.decision-section {
  display: grid;
  gap: clamp(30px, 7vw, 100px);
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
}

.decision-grid {
  align-self: end;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.decision-grid p {
  border-top: 4px solid var(--copper);
  color: var(--ink-soft);
  font-size: 1.08rem;
  padding-top: 20px;
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 48px;
  max-width: 1050px;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding: 21px 62px 21px 24px;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--copper);
  content: "+";
  font-size: 1.6rem;
  font-weight: 500;
  position: absolute;
  right: 24px;
  top: 12px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  color: var(--muted);
  margin: 0;
  max-width: 850px;
  padding: 0 24px 24px;
}

.opinions-method {
  border-top: 1px solid var(--line);
}

.opinion-method-list {
  display: grid;
  gap: 0;
  margin: 46px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.opinion-method-list li {
  display: grid;
  gap: 20px;
  grid-template-columns: 46px minmax(0, 1fr);
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.opinion-method-list li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--sage);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 900;
}

.opinion-method-list strong {
  display: block;
  margin-bottom: 5px;
}

.opinion-method-list p {
  margin: 0;
  color: var(--muted);
}

.opinion-method-action {
  margin-top: 30px;
}

.contact-section {
  align-items: start;
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: clamp(45px, 8vw, 120px);
  grid-template-columns: minmax(0, .8fr) minmax(440px, 1.2fr);
  max-width: none;
  padding-right: max(32px, calc((100vw - 1416px) / 2));
  padding-left: max(32px, calc((100vw - 1416px) / 2));
}

.contact-copy {
  position: sticky;
  top: 125px;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p:not(.eyebrow):not(.coverage-note) {
  color: #cbd5d1;
}

.contact-number {
  color: var(--white);
  display: inline-block;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -.04em;
  margin: 24px 0;
  text-decoration-color: var(--copper);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.coverage-note {
  color: #aebcb7;
  font-size: .9rem;
}

.contact-form {
  background: var(--surface);
  border-radius: var(--radius);
  color: var(--ink);
  padding: clamp(28px, 5vw, 58px);
}

.form-field {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  min-width: 0;
}

.form-field label {
  font-size: .9rem;
  font-weight: 800;
}

.form-field label span {
  color: var(--muted);
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  background: #fbfaf7;
  border: 1px solid #bfc4c2;
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  max-width: 100%;
  padding: 13px 14px;
  width: 100%;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(168, 69, 31, .2);
  outline: none;
}

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

.legal-row {
  align-items: flex-start;
  display: grid;
  gap: 12px;
  grid-template-columns: 24px 1fr;
  margin-top: 8px;
}

.legal-row input {
  height: 22px;
  margin: 3px 0 0;
  width: 22px;
}

.legal-row label {
  color: var(--muted);
  font-size: .88rem;
}

.legal-row a {
  color: var(--ink);
}

.submit-button {
  background: var(--copper);
  color: var(--white);
  margin-top: 24px;
  width: 100%;
}

.submit-button:hover {
  background: var(--copper-dark);
}

.honeypot {
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.form-status {
  background: var(--sage-light);
  border: 1px solid var(--sage);
  border-radius: 10px;
  color: var(--ink);
  margin: 18px 0 0;
  padding: 13px 15px;
}

.site-footer {
  align-items: center;
  background: #0e181d;
  color: #d7dfdc;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding: 38px max(32px, calc((100vw - 1416px) / 2));
}

.site-footer > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a {
  color: var(--white);
  font-weight: 750;
  text-underline-offset: 4px;
}

.mobile-call {
  display: none;
}

.not-found {
  align-items: center;
  display: grid;
  min-height: 100vh;
  padding: 48px 24px;
}

.not-found-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 760px;
  padding: clamp(34px, 6vw, 72px);
  text-align: center;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  box-shadow: 0 0 0 6px #214f68;
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 18px;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: .84rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr);
  }

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

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

  .service-card-image img {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .service-card-image > div {
    padding: 0 30px 34px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 130px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-inner nav {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
    width: 100%;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 0 7px;
    scrollbar-width: thin;
  }

  .nav-links li {
    flex: 0 0 auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-visual {
    margin-top: 20px;
    max-width: 760px;
  }

  .prepare-section {
    grid-template-columns: 1fr;
  }

  .prepare-image {
    min-height: 0;
  }

  .prepare-image img {
    aspect-ratio: 16 / 9;
  }

  .service-grid,
  .garage-index-section,
  .safety-section,
  .decision-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .decision-grid {
    max-width: 850px;
  }

  .maker-index {
    max-width: 850px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  body,
  input,
  textarea,
  button {
    font-size: 16px;
  }

  .header-inner {
    min-height: 74px;
    padding: 12px 18px;
  }

  .brand-name {
    font-size: 1.24rem;
  }

  .header-phone {
    font-size: .86rem;
    padding: 9px 13px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 7px 16px;
    justify-content: center;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .nav-links a {
    font-size: .78rem;
  }

  main > section {
    padding: 72px 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual::before {
    inset: -10px 12px 22px -10px;
  }

  .hero-visual figcaption {
    bottom: -38px;
    left: 16px;
    max-width: calc(100% - 32px);
  }

  .symptoms-section {
    border-radius: 0;
  }

  .symptom-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .prepare-copy {
    padding: 48px 22px;
  }

  .garage-index-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .maker-index {
    padding: 28px 20px;
  }

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

  .maker-index-grid span {
    min-height: 68px;
    padding-inline: 7px;
  }

  .check-list li {
    grid-template-columns: 38px 1fr;
  }

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

  .service-card {
    padding: 30px 24px;
  }

  .service-card-image {
    padding: 0;
  }

  .service-card-image > div {
    padding: 0 24px 30px;
  }

  .safety-section {
    grid-template-columns: 1fr;
  }

  .decision-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .opinion-method-list li {
    gap: 14px;
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .opinion-method-action {
    width: 100%;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .contact-number {
    overflow-wrap: anywhere;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 18px;
  }

  .site-footer > div {
    flex-direction: column;
  }

  .mobile-call {
    align-items: center;
    background: var(--copper);
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 10px 30px rgba(24, 37, 43, .35);
    color: var(--white);
    display: flex;
    font-weight: 900;
    justify-content: center;
    left: 10px;
    min-height: 52px;
    padding: 12px 18px;
    position: fixed;
    right: 10px;
    text-decoration: none;
    z-index: 30;
  }
}

@media (max-width: 380px) {
  .header-inner {
    gap: 12px;
  }

  .brand-place {
    font-size: .66rem;
  }

  .header-phone {
    font-size: .78rem;
    padding: 8px 10px;
  }

  .symptom-card,
  .service-card {
    padding-right: 20px;
    padding-left: 20px;
  }

  .check-list li {
    gap: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
