/**
 * Platinum Auto Body - Master Consolidated Stylesheet
 */

:root {
  --bg: #08090a;
  --surface: #111315;
  --steel: #1d2023;
  --text: #f4f5f6;
  --muted: #bec1c5;
  --line: #2a2d30;
  --gold: #cfb279;
  --radius: 3px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

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

svg {
  flex-shrink: 0;
}

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

h1, h2, h3 {
  line-height: 1.15;
}

h2 {
  font-size: clamp(36px, 3.6vw, 56px);
  font-weight: 500;
  letter-spacing: -1.9px;
}

h2 span {
  color: var(--muted);
}

h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

p {
  color: var(--muted);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.wrap {
  width: calc(100% - 112px);
  max-width: 1328px;
  margin-inline: auto;
}

.section {
  padding-block: 112px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.3px;
  color: var(--gold);
  margin-bottom: 24px;
}

.section-intro {
  max-width: 580px;
  font-size: 18px;
  margin-top: 24px;
}

/* Buttons & Links */
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background: var(--gold);
  color: #111212;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 17px 24px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.button:hover {
  background: #e4c990;
  border-color: #e4c990;
}

.button:active {
  transform: translateY(1px);
}

.button.compact {
  padding: 14px 16px;
  gap: 12px;
  font-size: 13px;
}

.button.outline {
  background: transparent;
  color: var(--text);
  border-color: #55575a;
}

.button.outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s;
}

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

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: var(--gold);
  color: #000;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 13px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 10px;
}

/* Header & Location Bar */
.location-bar {
  height: 36px;
  padding-inline: 48px;
  border-bottom: 1px solid #ffffff0b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 1.7px;
  color: #b0b0b1;
  background: #000;
}

.location-bar a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.location-bar a:hover {
  color: var(--gold);
}

.header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px minmax(0, 1fr);
  height: 140px;
  padding-inline: 48px;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 30;
  background: #000;
  border-bottom: 1px solid #ffffff10;
  align-items: center;
}

.brand {
  grid-column: 2;
  grid-row: 1;
  width: 240px;
  height: 138px;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand img {
  width: 240px;
  height: auto;
  max-height: 134px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 2.1vw, 34px);
  align-items: center;
}

.desktop-nav a {
  font-size: 16px;
  font-weight: 600;
  color: #e0e2e5;
  white-space: nowrap;
  transition: color 0.2s;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--gold);
}

.nav-left {
  grid-column: 1;
  grid-row: 1;
}

.header-right {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}

.header-cta.button.compact {
  padding: 14px 16px;
  gap: 12px;
  font-size: 13px;
}

.mobile-cta-label {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
  padding: 10px;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface);
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  z-index: 40;
}

.mobile-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: #e0e2e5;
  border-bottom: 1px solid #1d2023;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--gold);
}

/* Hero Section & Scene Fader */
.hero {
  position: relative;
  min-height: 630px;
  height: min(820px, calc(100svh - 176px));
  overflow: hidden;
  isolation: isolate;
  background: #08090a;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-media .hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 2.4s cubic-bezier(.4, 0, .2, 1);
  object-fit: cover;
}

.hero-media .hero-scene:first-child {
  opacity: 1;
}

.hero-media .hero-scene.is-active {
  opacity: 1;
}

.hero-media .scene-crash {
  object-position: center 52%;
}

.hero-media .scene-painting {
  object-position: center 48%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, #08090af5 0%, #08090ae0 27%, #08090a80 48%, #08090a10 75%),
    linear-gradient(0deg, #08090a 0%, transparent 24%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(42px, 5vh, 72px);
}

.hero .eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(36px, 4.15vw, 66px);
  font-weight: 700;
  letter-spacing: -2.5px;
  max-width: 1020px;
  line-height: 1.12;
}

.hero h1 .hero-title-lead {
  display: block;
  color: #f8f8f8;
}

.hero h1 .hero-title-finish {
  display: block;
  font-size: .49em;
  font-weight: 500;
  letter-spacing: -1.1px;
  line-height: 1.2;
  color: #e5d0a7;
  margin-top: 20px;
}

.hero-copy {
  font-size: 18px;
  line-height: 1.75;
  max-width: 550px;
  margin-top: 25px;
  color: #e1e3e5;
}

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

.hero-actions .button,
.hero-actions .text-link {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.4px;
}

.hero-actions .text-link {
  padding: 15px 0;
}

/* Trust Bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 31px;
  border-bottom: 1px solid var(--line);
}

.trust-bar div {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  border-right: 1px solid var(--line);
  font-size: 15px;
  color: #c9cbce;
}

.trust-bar div:last-child {
  border: 0;
}

.trust-bar svg {
  color: var(--gold);
}

/* Accident Band */
.accident-band {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 40px;
  border-bottom: 1px solid var(--line);
}

.accident-symbol {
  color: var(--gold);
  border: 1px solid #cfb27935;
  padding: 17px;
  display: flex;
}

.accident-band h2 {
  font-size: 28px;
  letter-spacing: -0.7px;
}

.accident-band p {
  font-size: 16px;
  margin-top: 9px;
}

.accident-band .text-link {
  margin-left: auto;
}

/* Services Section */
.service-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  margin-top: 48px;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 30px;
  border-top: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row h3 {
  font-size: 26px;
  transition: color 0.2s;
}

.service-row:hover h3,
.service-row:hover > svg {
  color: var(--gold);
}

.service-row p {
  font-size: 16px;
  margin-top: 9px;
  max-width: 360px;
  line-height: 1.7;
}

.service-row > svg {
  margin-left: auto;
}

.service-number {
  font-size: 13px;
  color: var(--gold);
  align-self: flex-start;
  margin-top: 7px;
}

.detail-image {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border-radius: var(--radius);
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.detail-image:hover img {
  transform: scale(1.035);
}

.detail-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #000e, transparent 75%);
}

.detail-caption {
  position: absolute;
  bottom: 30px;
  left: 32px;
  z-index: 1;
}

.detail-caption span {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
}

.detail-caption p {
  font-size: 30px;
  color: white;
  line-height: 1.2;
  margin-top: 16px;
  letter-spacing: -1px;
}

/* Standards / Why Platinum */
.standards {
  background: var(--surface);
  border-block: 1px solid #ffffff07;
}

.standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.standards .text-link {
  margin-top: 32px;
}

.pillars > div {
  display: block;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.pillars > div:first-child {
  padding-top: 0;
}

.pillars h3 {
  font-size: 24px;
}

.pillars p {
  font-size: 17px;
  max-width: 450px;
  margin-top: 12px;
}

.pillars > div > span,
.step-number {
  font-size: 14px;
  color: var(--gold);
  margin-top: 4px;
}

/* Journey Flow & Process */
.journey-flow {
  list-style: none;
  padding: 0;
  margin: 34px 0 42px;
  padding-bottom: 25px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid var(--line);
}

.journey-flow li {
  position: relative;
  padding: 12px 34px 12px 0;
  font-size: 15px;
  font-weight: 600;
}

.journey-flow li > span {
  display: block;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 14px;
}

.journey-flow svg {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8b7e63;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 0;
}

.process-grid > div {
  padding-top: 0;
}

.process-grid h3 {
  font-size: 24px;
  margin-top: 0;
}

.process-grid p {
  font-size: 17px;
  margin-top: 15px;
  max-width: 250px;
}

/* Location Section */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.location-copy {
  padding: 60px;
}

.location-copy > p:not(.eyebrow) {
  margin-top: 25px;
  max-width: 420px;
  font-size: 18px;
}

.location-copy address {
  font-style: normal;
  margin: 28px 0;
  font-size: 18px;
}

.brand-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #060707;
  overflow: hidden;
  padding: 40px;
}

.brand-panel img {
  width: 85%;
  height: auto;
}

/* FAQ Section */
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
}

.faq-section .text-link {
  margin-top: 30px;
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 25px;
  font-size: 18px;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.2s;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  padding: 0 30px 24px 0;
  font-size: 17px;
  line-height: 1.9;
}

/* Final CTA */
.final-cta {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 75px 85px;
  gap: 40px;
}

.final-cta > div:last-child {
  padding-right: 55px;
}

.final-cta .button {
  margin-top: 25px;
}

.final-cta p:not(.eyebrow) {
  font-size: 18px;
}

/* Footer */
.footer {
  background: #000;
  border-top: 1px solid var(--line);
  padding-top: 35px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr .8fr 1fr;
  gap: 40px;
  padding-block: 20px 50px;
}

.footer-grid > div:first-child img {
  width: 270px;
  height: auto;
  margin-top: 12px;
}

.footer-grid > div:first-child p {
  font-size: 13px;
  margin-top: 12px;
}

.footer h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 25px 0 22px;
}

.footer-grid > div > a:not(:first-child) {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-grid > div > a:not(:first-child):hover {
  color: var(--gold);
}

.footer-grid p {
  font-size: 16px;
}

.footer-grid .text-link {
  display: inline-flex !important;
  color: var(--gold) !important;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 23px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #969a9d;
  gap: 18px;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

.footer-bottom > div a:hover {
  color: var(--gold);
}

.footer-bottom > span:last-child {
  font-size: 11px;
  letter-spacing: 1.5px;
}

.mobile-sticky {
  display: none;
}

/* Page Hero & Inner Pages */
.page-hero {
  padding-block: 85px 60px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -3px;
  max-width: 950px;
}

.page-hero > p:last-child {
  max-width: 660px;
  font-size: 18px;
  margin-top: 28px;
}

.breadcrumb {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 25px;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 90px;
}

.content-grid h2 {
  font-size: 34px;
}

.content-grid p {
  margin-block: 22px;
  line-height: 1.9;
}

.content-grid ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 2.3;
}

.service-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 30px 0;
}

.service-capabilities > div {
  padding: 14px 18px;
  background: var(--surface);
  border-left: 1px solid #786646;
  font-size: 16px;
  color: #c5c7ca;
}

.related-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin: 0 0 25px;
}

.related-services a {
  color: var(--gold);
}

.content-panel {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  align-self: start;
}

.content-panel h2 {
  font-size: 26px;
}

.content-panel .button {
  margin-top: 18px;
}

.service-directory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}

.service-directory article {
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.service-directory h2 {
  font-size: 30px;
}

.service-directory p {
  margin-block: 22px;
}

.wide-faq {
  max-width: 850px;
  margin-inline: auto;
}

.empty-work {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.empty-work p {
  margin-block: 24px;
}

.work-feature-image {
  margin: 0;
  min-width: 0;
  align-self: center;
}

.empty-work .work-feature-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
}

.work-feature-image figcaption {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  padding-top: 15px;
}

.legal {
  max-width: 820px;
}

.legal h2 {
  font-size: 28px;
  margin-top: 35px;
}

.legal p {
  margin-top: 20px;
}

/* Contact & Estimate Form */
.form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 90px;
}

.form-aside h2 {
  font-size: 30px;
}

.form-aside p {
  margin-top: 20px;
}

.form-aside address {
  font-style: normal;
  margin-block: 25px;
}

.estimate-form {
  background: var(--surface);
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.form-progress span {
  height: 2px;
  background: #404448;
  flex: 1;
}

.form-progress .current {
  background: var(--gold);
}

.step-label {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.estimate-form h2 {
  font-size: 30px;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
}

.field.full {
  grid-column: 1/-1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #51555a;
  background: #080a0c;
  color: #f4f5f6;
  padding: 13px 14px;
  border-radius: var(--radius);
  font-size: 16px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: none;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #a5a7aa;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  accent-color: var(--gold);
}

input[type="file"] {
  font-size: 14px;
  padding: 14px;
}

input[type="file"]::file-selector-button {
  background: #303438;
  color: white;
  border: 0;
  padding: 8px 12px;
  margin-right: 10px;
  border-radius: 2px;
  cursor: pointer;
}

.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.service-options label {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #51555a;
  padding: 22px 16px;
  cursor: pointer;
  font-size: 16px;
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

.service-options label.is-selected,
.service-options label:has(input:checked) {
  border-color: var(--gold);
  background: #cfb2790b;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
}

.form-actions > .button:last-child {
  margin-left: auto;
}

.form-note {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
}

.notice {
  padding: 16px 18px;
  border-left: 2px solid var(--gold);
  background: #cfb2790b;
  font-size: 15px;
  color: #d7d0c3;
  margin-bottom: 26px;
}

.error {
  color: #ffc1b7;
  font-size: 15px;
  padding-top: 16px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-top: 23px;
  color: #c5c8cb;
}

.consent input {
  margin-top: 5px;
}

.consent a {
  text-decoration: underline;
}

.upload-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.upload-list li {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  overflow-wrap: anywhere;
  padding: 8px 0;
  border-bottom: 1px solid #222;
}

.upload-list button {
  background: transparent;
  border: 0;
  color: var(--gold);
  cursor: pointer;
  font-weight: 600;
}

.success-icon {
  color: var(--gold);
  margin-bottom: 20px;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

/* Responsive Media Queries */
@media (max-width: 1280px) {
  .header {
    grid-template-columns: minmax(0, 1fr) 240px minmax(0, 1fr);
    padding-inline: 30px;
  }
  .brand, .brand img {
    width: 224px;
  }
  .header-right {
    gap: 20px;
  }
  .desktop-nav {
    gap: 22px;
  }
  .header-right .header-cta {
    display: none;
  }
}

@media (max-width: 1024px) {
  .desktop-nav a {
    font-size: 15px;
  }
  .desktop-nav {
    gap: 18px;
  }
  .hero h1 {
    font-size: 68px;
  }
  .hero-copy {
    max-width: 500px;
  }
  .service-row h3 {
    font-size: 23px;
  }
  .trust-bar div {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .header {
    height: 110px;
    grid-template-columns: 1fr 180px 1fr;
    padding-inline: 24px;
  }
  .desktop-nav {
    display: none;
  }
  .brand {
    width: 172px;
    height: 108px;
  }
  .brand img {
    width: 172px;
    height: auto;
  }
  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    display: flex;
    padding: 12px;
  }
  .header-right .header-cta {
    display: inline-flex;
  }
  .desktop-cta-label {
    display: none;
  }
  .mobile-cta-label {
    display: inline;
  }
  .header-cta.button.compact {
    padding: 12px 14px !important;
    font-size: 14px !important;
  }
  .header-cta svg {
    display: none;
  }
  .hero {
    height: auto;
    min-height: 690px;
    padding-bottom: 85px;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #08090af5 0%, #08090ad9 42%, #08090a40 100%),
      linear-gradient(0deg, #08090a, transparent 40%);
  }
  .hero-content {
    padding-top: 45px;
  }
  .accident-band {
    flex-wrap: wrap;
  }
  .accident-band .text-link {
    margin-left: 0;
    max-width: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .journey-flow {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 24px;
  }
  .standards-grid,
  .faq-section {
    gap: 50px;
  }
  .form-layout {
    grid-template-columns: 1fr;
  }
  .form-aside {
    max-width: 600px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 70px;
  }
  .location-bar {
    height: 32px;
    padding-inline: 12px;
    justify-content: center;
  }
  .location-bar > span {
    display: none;
  }
  .location-bar a {
    font-size: 11px;
  }
  .header {
    grid-template-columns: 1fr 170px 1fr;
    height: 104px;
    padding-inline: 12px;
    gap: 0;
  }
  .brand {
    width: 166px;
    height: 102px;
  }
  .brand img {
    width: 166px;
    height: auto;
  }
  .header-cta.button.compact {
    font-size: 13px !important;
    padding: 10px !important;
  }
  .hero {
    min-height: 810px;
    padding-bottom: 55px;
  }
  .hero-media .scene-crash {
    object-position: 70% bottom;
  }
  .hero-media .scene-painting {
    object-position: 88% bottom;
  }
  .hero-shade {
    background: linear-gradient(180deg, #08090afa 0%, #08090ae8 24%, #08090abb 49%, #08090a10 76%, #08090a 100%);
  }
  .hero-content {
    padding-top: 32px;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 1.4px;
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 23px;
  }
  .hero h1 {
    font-size: clamp(48px, 12.7vw, 69px);
    max-width: none;
    letter-spacing: -2.2px;
    line-height: 1.05;
  }
  .hero h1 .hero-title-finish {
    font-size: 27px;
    line-height: 1.25;
    letter-spacing: -.7px;
    margin-top: 17px;
  }
  .hero-copy {
    font-size: 17px;
    line-height: 1.7;
    max-width: 370px;
    margin-top: 22px;
  }
  .hero-actions {
    gap: 12px;
    margin-top: 25px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions .button {
    padding: 16px 22px;
    font-size: 14px;
  }
  .trust-bar {
    grid-template-columns: 1fr 1fr;
    gap: 23px 12px;
  }
  .trust-bar div {
    font-size: 12px;
    line-height: 1.4;
    gap: 8px;
    border: 0;
    justify-content: flex-start;
  }
  .accident-band {
    padding-block: 30px;
    flex-wrap: wrap;
    gap: 18px;
  }
  .accident-symbol {
    display: none;
  }
  .accident-band h2 {
    font-size: 25px;
  }
  .accident-band p {
    font-size: 16px;
    max-width: none;
  }
  .accident-band .text-link {
    margin-left: 0;
    max-width: none;
  }
  h2 {
    font-size: 37px;
  }
  .section-intro {
    font-size: 17px;
  }
  .service-row h3 {
    font-size: 23px;
  }
  .service-row p {
    font-size: 16px;
  }
  .detail-image {
    min-height: 330px;
  }
  .journey-flow {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    margin: 26px 0 34px;
    padding-bottom: 20px;
  }
  .journey-flow li {
    font-size: 15px;
    padding-right: 30px;
  }
  .journey-flow svg {
    right: 12px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 22px;
  }
  .process-grid h3,
  .pillars h3 {
    font-size: 22px;
  }
  .process-grid p,
  .pillars p {
    font-size: 16px;
  }
  .location-section {
    grid-template-columns: 1fr;
  }
  .location-copy {
    padding: 28px;
  }
  .location-copy h2 {
    font-size: 35px;
  }
  .location-copy > p:not(.eyebrow),
  .location-copy address {
    font-size: 17px;
  }
  .brand-panel {
    min-height: 240px;
  }
  .brand-panel img {
    width: 75%;
    max-width: 320px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  summary {
    font-size: 17px;
  }
  details p {
    font-size: 16px;
    padding-right: 10px;
  }
  .final-cta {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 55px 65px;
    gap: 30px;
  }
  .footer-grid {
    gap: 28px 24px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-grid > div:first-child img {
    width: 270px;
    margin: 4px auto 0;
  }
  .footer-grid > div:first-child p {
    font-size: 13px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 11px;
    padding-bottom: 100px;
  }
  .footer-bottom > span:last-child {
    width: 100%;
    font-size: 10px;
  }
  .mobile-sticky {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    align-items: center;
    gap: 20px;
    background: #111315fa;
    border-top: 1px solid var(--line);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  }
  .mobile-sticky > a:first-child {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    flex: 1;
  }
  .mobile-sticky .button {
    padding: 13px 16px;
    font-size: 13px;
  }
  .page-hero {
    padding-block: 45px 40px;
  }
  .page-hero h1 {
    font-size: 44px;
    letter-spacing: -2px;
  }
  .content-grid,
  .service-directory,
  .empty-work {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-layout {
    gap: 35px;
  }
  .estimate-form {
    padding: 24px 18px;
  }
  .fields {
    grid-template-columns: 1fr;
  }
  .service-options {
    gap: 10px;
  }
  .service-options label {
    font-size: 15px;
    padding: 18px 12px;
  }
  .service-capabilities {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
