:root {
    --black: #08090b;
    --black-soft: #111318;
    --graphite: #1b1f25;
    --steel: #434a54;
    --silver: #c4c8ce;
    --paper: #f3f1ed;
    --white: #ffffff;
    --red: #d71920;
    --red-dark: #9e0d12;
    --line: rgba(255,255,255,.14);
    --shadow: 0 24px 70px rgba(0,0,0,.24);
    --radius: 6px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--black-soft);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--red); color: var(--white); }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 1000; padding: 10px 14px; background: var(--white); color: var(--black); }
.skip-link:focus { top: 12px; }

.site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    border-bottom: 1px solid rgba(255,255,255,.13);
}
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--white); letter-spacing: .04em; font-weight: 500; }
.brand strong { color: var(--red); }
.brand-mark { width: 39px; height: 39px; display: grid; place-items: center; background: var(--red); color: var(--white); font-weight: 900; font-size: 13px; transform: skew(-8deg); box-shadow: inset 0 0 0 2px rgba(255,255,255,.12); }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav a { text-decoration: none; color: rgba(255,255,255,.82); font-size: .85rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--white); }
.primary-nav .nav-cta { padding: 12px 18px; border: 1px solid rgba(255,255,255,.25); color: var(--white); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--white); }

.hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    color: var(--white);
    background:
        radial-gradient(circle at 77% 37%, rgba(215,25,32,.22), transparent 24%),
        linear-gradient(112deg, rgba(8,9,11,.96) 0 55%, rgba(16,18,22,.84) 78%, rgba(8,9,11,.96) 100%),
        repeating-linear-gradient(135deg, #16191e 0 2px, #0e1014 2px 7px);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .25;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to right, transparent, #000 70%);
}
.hero::after { content: ""; position: absolute; right: -180px; top: 140px; width: 650px; height: 430px; border: 1px solid rgba(255,255,255,.07); transform: rotate(-10deg); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; padding-top: 154px; padding-bottom: 110px; }
.hero-copy { max-width: 670px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; color: var(--red); font-size: .77rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 3px; background: currentColor; }
.eyebrow.light { color: var(--white); }
.hero h1, .section-heading h2, .special-copy h2, .appointment-intro h2, .legal-content h1, .admin-heading h1 {
    margin: 0;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-weight: 900;
    line-height: .96;
    letter-spacing: .01em;
    text-transform: uppercase;
}
.hero h1 { max-width: 720px; font-size: clamp(4.1rem, 8.2vw, 7.5rem); text-wrap: balance; }
.hero h1 em { display: block; color: var(--red); font-style: normal; }
.hero-lead { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.75); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 22px; border: 1px solid transparent; border-radius: 2px; text-decoration: none; text-transform: uppercase; letter-spacing: .07em; font-size: .78rem; font-weight: 900; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: var(--white); box-shadow: 0 12px 30px rgba(215,25,32,.22); }
.button-primary:hover { background: #ef232b; }
.button-secondary { border-color: rgba(255,255,255,.25); color: var(--white); background: rgba(255,255,255,.04); }
.button-secondary:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }
.button-light { background: var(--white); color: var(--red-dark); }
.trust-list { display: flex; flex-wrap: wrap; gap: 12px 26px; padding: 0; margin: 32px 0 0; list-style: none; color: rgba(255,255,255,.68); font-size: .82rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.trust-list li::before { content: "✓"; color: var(--red); margin-right: 8px; }
.hero-visual { min-height: 475px; display: grid; place-items: center; perspective: 1000px; }
.metal-card { position: relative; width: min(100%, 455px); min-height: 415px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border: 1px solid rgba(255,255,255,.2); background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.015)), repeating-linear-gradient(120deg, #20242a 0 2px, #111318 2px 8px); box-shadow: var(--shadow); transform: rotate(2deg); }
.metal-card::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(255,255,255,.08); }
.metal-card::after { content: ""; position: absolute; width: 250px; height: 250px; right: -80px; top: -80px; border: 38px solid rgba(215,25,32,.12); border-radius: 50%; }
.card-label { position: absolute; top: 28px; left: 28px; z-index: 2; padding: 8px 10px; background: var(--red); text-transform: uppercase; letter-spacing: .12em; font-size: .66rem; font-weight: 900; }
.vehicle-line { position: absolute; z-index: 2; left: 12%; right: 8%; top: 115px; height: 140px; border-bottom: 12px solid rgba(255,255,255,.86); clip-path: polygon(0 77%, 9% 77%, 17% 35%, 31% 17%, 63% 17%, 76% 46%, 94% 54%, 100% 77%, 100% 100%, 0 100%); background: linear-gradient(180deg, transparent 0 70%, rgba(255,255,255,.9) 70%); opacity: .9; }
.wheel { position: absolute; bottom: -26px; width: 66px; height: 66px; border: 13px solid #0b0c0e; border-radius: 50%; background: #686d74; box-shadow: inset 0 0 0 6px #1c1f24; }
.wheel-left { left: 18%; }
.wheel-right { right: 13%; }
.service-badge { position: relative; z-index: 3; margin-bottom: 4px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; line-height: .8; text-transform: uppercase; text-shadow: 0 3px 0 rgba(0,0,0,.25); }
.service-badge strong { display: block; font-size: clamp(3.4rem, 6vw, 5.2rem); color: var(--white); }
.service-badge span { font-size: clamp(3.2rem, 5.5vw, 4.8rem); color: var(--red); }
.metal-card p { position: relative; z-index: 3; margin: 18px 0 0; color: rgba(255,255,255,.65); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.hero-stripe { position: absolute; left: -5%; right: -5%; bottom: 28px; height: 44px; transform: rotate(-2deg); background: var(--red); opacity: .9; }

.quick-contact { position: relative; z-index: 5; margin-top: -30px; }
.quick-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); box-shadow: 0 18px 45px rgba(0,0,0,.13); }
.quick-contact-grid > div { min-height: 110px; display: flex; align-items: center; gap: 18px; padding: 22px 28px; border-right: 1px solid #dedbd5; }
.quick-contact-grid > div:last-child { border-right: 0; }
.quick-icon { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; background: var(--black); color: var(--red); font-family: Impact, sans-serif; font-size: 1.05rem; }
.quick-contact-grid strong, .quick-contact-grid a, .quick-contact-grid span { display: block; }
.quick-contact-grid strong { font-size: .72rem; color: #777; text-transform: uppercase; letter-spacing: .1em; }
.quick-contact-grid a, .quick-contact-grid div div > span { margin-top: 2px; color: var(--black); font-size: .92rem; font-weight: 780; text-decoration: none; overflow-wrap: anywhere; }

.section { padding: 110px 0; }
.section-heading { margin-bottom: 46px; }
.section-heading h2, .special-copy h2, .appointment-intro h2, .legal-content h1, .admin-heading h1 { font-size: clamp(2.8rem, 5.5vw, 5.2rem); }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; }
.split-heading > p { max-width: 500px; margin: 0 0 4px; color: #5d6268; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cfcac3; border-left: 1px solid #cfcac3; }
.service-card { position: relative; min-height: 310px; padding: 34px; border-right: 1px solid #cfcac3; border-bottom: 1px solid #cfcac3; background: rgba(255,255,255,.28); transition: background .2s ease, transform .2s ease; }
.service-card:hover { z-index: 2; transform: translateY(-4px); background: var(--white); box-shadow: 0 18px 45px rgba(0,0,0,.08); }
.service-number { position: absolute; top: 22px; right: 24px; color: #aaa69f; font-family: Impact, sans-serif; font-size: 1.1rem; }
.service-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 38px; background: var(--black); color: var(--red); font-family: Impact, sans-serif; letter-spacing: .05em; transform: skew(-5deg); }
.service-card h3 { margin: 0; font-size: 1.22rem; text-transform: uppercase; letter-spacing: .02em; }
.service-card p { margin: 13px 0 0; color: #676b70; }
.service-card a { display: inline-block; margin-top: 18px; color: var(--red-dark); font-weight: 850; text-decoration: none; }
.service-card-cta { background: var(--black); color: var(--white); }
.service-card-cta p { color: rgba(255,255,255,.62); }
.service-card-cta:hover { background: var(--black-soft); }

.special-section { position: relative; overflow: hidden; padding: 95px 0; color: var(--white); background: var(--red); }
.special-section::before { content: ""; position: absolute; inset: 0; opacity: .13; background: repeating-linear-gradient(135deg, transparent 0 18px, #000 18px 20px); }
.special-grid { position: relative; display: grid; grid-template-columns: minmax(280px, .75fr) 1.25fr; align-items: center; gap: 90px; }
.flyer-frame { max-width: 370px; justify-self: end; padding: 10px; background: #16181c; box-shadow: 0 24px 70px rgba(0,0,0,.32); transform: rotate(-2deg); }
.flyer-frame img { width: 100%; height: auto; }
.special-copy { max-width: 650px; }
.special-copy h2 { font-size: clamp(4rem, 8vw, 7.8rem); color: var(--white); }
.special-copy h2 strong { color: var(--black); font-size: 1.14em; }
.special-lead { max-width: 560px; margin: 26px 0; font-size: 1.25rem; font-weight: 650; }
.check-list { display: grid; gap: 10px; margin: 0 0 32px; padding: 0; list-style: none; }
.check-list li::before { content: "✓"; margin-right: 11px; color: var(--black); font-weight: 900; }
.fine-print { max-width: 580px; margin: 19px 0 0; color: rgba(255,255,255,.72); font-size: .78rem; }

.centered-heading { text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 38px; padding: 0; margin: 0; list-style: none; counter-reset: process; }
.process-grid li { position: relative; padding: 34px 20px 10px 88px; border-top: 3px solid var(--black); }
.process-grid li > span { position: absolute; left: 0; top: 24px; width: 58px; height: 58px; display: grid; place-items: center; background: var(--red); color: var(--white); font-family: Impact, sans-serif; font-size: 1.6rem; }
.process-grid h3 { margin: 0; text-transform: uppercase; font-size: 1.15rem; }
.process-grid p { margin: 10px 0 0; color: #686d73; }

.appointment-section { padding: 110px 0; color: var(--white); background: var(--black); }
.appointment-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: start; }
.appointment-intro { position: sticky; top: 30px; }
.appointment-intro > p:not(.eyebrow):not(.request-note) { color: rgba(255,255,255,.66); }
.contact-panel { display: grid; gap: 7px; margin-top: 32px; padding: 25px; border-left: 4px solid var(--red); background: rgba(255,255,255,.05); }
.contact-panel p { margin: 0 0 5px; }
.contact-panel a { color: var(--white); text-decoration: none; font-weight: 730; overflow-wrap: anywhere; }
.request-note { margin-top: 24px; color: #f3c0c2; font-size: .84rem; }
.appointment-form { padding: 38px; color: var(--black-soft); background: var(--white); box-shadow: var(--shadow); }
.appointment-form fieldset { padding: 0; margin: 0 0 32px; border: 0; }
.appointment-form legend { width: 100%; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--black); font-size: 1rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.form-grid { display: grid; gap: 17px; }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vehicle-columns { grid-template-columns: .7fr 1fr 1fr 1fr; }
.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; color: #34383d; font-size: .77rem; font-weight: 850; letter-spacing: .045em; text-transform: uppercase; }
.field label span, .consent-row strong { color: var(--red); }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; border: 1px solid #c9c7c2; border-radius: 2px; padding: 11px 13px; color: var(--black); background: #fbfaf8; outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(215,25,32,.12); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--red); }
.field-error { display: block; min-height: 17px; margin-top: 4px; color: var(--red-dark); font-size: .75rem; font-weight: 650; }
.consent-row { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; color: #4a4e53; font-size: .83rem; cursor: pointer; }
.consent-row input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); }
.consent-error { margin-left: 29px; }
.submit-button { width: 100%; margin-top: 24px; border: 0; }
.submit-button[disabled] { opacity: .65; cursor: wait; transform: none; }
.form-privacy { margin: 14px 0 0; color: #6e7277; font-size: .73rem; text-align: center; }
.form-privacy a { color: var(--red-dark); font-weight: 700; }
.form-status { margin-bottom: 24px; padding: 16px 18px; border-left: 4px solid var(--red); background: #f3f3f3; }
.form-status.success { border-color: #16853c; background: #eaf7ee; color: #145e2d; }
.form-status.error { border-color: var(--red); background: #fff0f0; color: var(--red-dark); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { padding: 66px 0 24px; color: rgba(255,255,255,.67); background: #040506; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr; gap: 70px; }
.footer-grid h2 { margin: 0 0 14px; color: var(--white); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid p { max-width: 460px; }
.footer-grid > div > a:not(.brand) { display: block; margin: 7px 0; color: rgba(255,255,255,.72); text-decoration: none; overflow-wrap: anywhere; }
.footer-grid > div > a:hover { color: var(--white); }
.footer-brand { margin-bottom: 20px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }

.simple-header { border-bottom: 1px solid #d9d6d0; background: var(--black); }
.simple-header .container { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.simple-header .container > a:last-child { color: var(--white); font-weight: 750; text-decoration: none; }
.legal-page { background: var(--paper); }
.legal-content { max-width: 820px; padding-top: 90px; padding-bottom: 110px; }
.legal-content h1 { margin-bottom: 12px; }
.legal-content h2 { margin-top: 35px; font-size: 1.25rem; text-transform: uppercase; }
.legal-content p { color: #555a60; }
.legal-content a:not(.button) { color: var(--red-dark); }
.legal-updated { font-size: .84rem; }
.legal-content .button { margin-top: 24px; }

.admin-page { background: #e8e6e1; }
.admin-content { padding-top: 60px; padding-bottom: 100px; }
.admin-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 30px; }
.admin-heading .button-secondary { color: var(--black); border-color: #999; }
.table-wrap { overflow-x: auto; background: var(--white); box-shadow: 0 10px 35px rgba(0,0,0,.08); }
table { width: 100%; min-width: 1250px; border-collapse: collapse; font-size: .78rem; }
th { padding: 13px; color: var(--white); background: var(--black); text-align: left; text-transform: uppercase; letter-spacing: .05em; }
td { vertical-align: top; padding: 14px 13px; border-bottom: 1px solid #e4e1db; }
td strong, td small, td a { display: block; }
td small { margin-top: 3px; color: #73777c; }
td a { color: var(--red-dark); text-decoration: none; }
.notes-cell { max-width: 280px; white-space: pre-wrap; }
td select { max-width: 120px; padding: 6px; }
.status-pill { display: inline-block; padding: 4px 8px; border-radius: 20px; background: #eee; font-weight: 750; }
.status-sent { color: #14612f; background: #e1f3e7; }
.status-failed { color: #8e1117; background: #fbe4e4; }
.empty-state { padding: 70px; text-align: center; background: var(--white); }

@media (max-width: 980px) {
    .primary-nav { display: none; position: absolute; left: 20px; right: 20px; top: 76px; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid rgba(255,255,255,.16); background: rgba(8,9,11,.98); box-shadow: var(--shadow); }
    .primary-nav.is-open { display: flex; }
    .primary-nav a { padding: 14px 12px; }
    .primary-nav .nav-cta { margin-top: 6px; text-align: center; }
    .menu-toggle { display: block; }
    .hero-grid { grid-template-columns: 1fr; gap: 30px; padding-top: 145px; }
    .hero-visual { display: none; }
    .hero { min-height: 700px; }
    .quick-contact-grid { grid-template-columns: 1fr; }
    .quick-contact-grid > div { min-height: 92px; border-right: 0; border-bottom: 1px solid #dedbd5; }
    .quick-contact-grid > div:last-child { border-bottom: 0; }
    .split-heading { grid-template-columns: 1fr; gap: 22px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .special-grid { grid-template-columns: .8fr 1.2fr; gap: 50px; }
    .appointment-grid { grid-template-columns: 1fr; }
    .appointment-intro { position: static; }
    .vehicle-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .nav-wrap { min-height: 72px; }
    .brand { font-size: .88rem; }
    .brand-mark { width: 34px; height: 34px; }
    .hero { min-height: 690px; }
    .hero-grid { padding-top: 125px; padding-bottom: 95px; }
    .hero h1 { font-size: clamp(3.4rem, 18vw, 5.2rem); }
    .hero-lead { font-size: .98rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .trust-list { display: grid; gap: 8px; }
    .section { padding: 78px 0; }
    .section-heading h2, .special-copy h2, .appointment-intro h2, .legal-content h1, .admin-heading h1 { font-size: clamp(2.6rem, 14vw, 4rem); }
    .service-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 260px; }
    .special-section { padding: 78px 0; }
    .special-grid { grid-template-columns: 1fr; gap: 46px; }
    .flyer-frame { max-width: 320px; justify-self: center; }
    .special-copy { text-align: center; }
    .special-copy .eyebrow { justify-content: center; }
    .check-list { text-align: left; max-width: 360px; margin-inline: auto; margin-bottom: 30px; }
    .process-grid { grid-template-columns: 1fr; gap: 28px; }
    .appointment-section { padding: 78px 0; }
    .appointment-form { padding: 24px 18px; }
    .two-columns, .vehicle-columns { grid-template-columns: 1fr; }
    .full-mobile { grid-column: 1 / -1; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-bottom { flex-direction: column; }
    .simple-header .container > a:last-child { font-size: .76rem; }
    .legal-content { padding-top: 65px; }
    .admin-heading { align-items: start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
