@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/outfit-latin-400-normal.woff2') format('woff2');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/outfit-latin-600-normal.woff2') format('woff2');
}

@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/oswald-latin-600-normal.woff2') format('woff2');
}

@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/oswald-latin-700-normal.woff2') format('woff2');
}

:root {
    --ink: #070708;
    --panel: #101114;
    --race: #e10600;
    --race-hot: #ff2a1f;
    --silver: #d5d8de;
    --font-sans: 'Outfit', ui-sans-serif, system-ui, sans-serif;
    --font-display: 'Oswald', ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(1200px 500px at 80% -10%, rgba(225, 6, 0, 0.16), transparent 55%),
        linear-gradient(180deg, #070708 0%, #0c0d10 100%);
    color: var(--silver);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, .display-title {
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    text-wrap: balance;
    margin: 0;
}

h1, .display-title {
    font-size: clamp(2.1rem, 5vw, 4.4rem);
    line-height: 0.95;
    text-transform: uppercase;
    color: #fff;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
}

h3 {
    margin: 0;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding-left: 1.1rem;
}

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

.container-site {
    margin-inline: auto;
    width: min(1120px, calc(100% - 2rem));
}

.section-pad {
    padding-block: clamp(4rem, 8vw, 6.5rem);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 80;
    border-radius: 999px;
    background: #fff;
    color: #000;
    padding: 0.6rem 1rem;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 7, 8, 0.96);
}

.nav-link {
    position: relative;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fff;
}

.nav-link.is-active::after,
.nav-link:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.45rem;
    height: 2px;
    background: var(--race);
}

.menu-toggle {
    width: 2.6rem;
    height: 2.6rem;
    display: grid;
    place-items: center;
    gap: 5px;
    background: none;
    border: 0;
    color: #fff;
}

.menu-toggle span {
    display: block;
    width: 1.3rem;
    height: 2px;
    background: #fff;
}

.menu-mobile {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0a0a0c;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: 0.2s ease;
    border: 0;
    cursor: pointer;
}

.btn-primary {
    background: var(--race);
    color: #fff;
    box-shadow: 0 0 40px rgba(225, 6, 0, 0.28);
}

.btn-primary:hover {
    background: var(--race-hot);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    background: transparent;
}

.btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.btn-text {
    color: var(--silver);
    padding-inline: 0.4rem;
    background: transparent;
}

.btn-text:hover {
    color: #fff;
}

.eyebrow {
    color: var(--race);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    inset: 10% -10% auto auto;
    width: 40rem;
    height: 22rem;
    background: radial-gradient(circle, rgba(225, 6, 0, 0.28), transparent 68%);
}

.hero-panel,
.card,
.service-card,
.faq,
.map-frame {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.hero-panel,
.card {
    border-radius: 1.4rem;
    padding: 1.5rem;
}

.breadcrumbs {
    padding-top: 1.25rem;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.82rem;
    color: rgba(213, 216, 222, 0.55);
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 0.45rem;
    color: rgba(213, 216, 222, 0.35);
}

.breadcrumbs a:hover {
    color: #fff;
}

.page-hero {
    padding-block: 5rem 2rem;
    background:
        linear-gradient(90deg, rgba(225, 6, 0, 0.16), transparent 48%),
        #08080a;
}

.section-head {
    max-width: 40rem;
}

.section-head p:last-child {
    margin-top: 0.8rem;
    color: rgba(213, 216, 222, 0.72);
}

.service-card {
    border-radius: 1.15rem;
    padding: 1.3rem;
    min-height: 100%;
}

.service-card h2,
.service-card h3 {
    font-size: 1.15rem;
    color: #fff;
}

.service-card p {
    margin-top: 0.7rem;
    color: rgba(213, 216, 222, 0.7);
    font-size: 0.94rem;
    line-height: 1.55;
}

.service-card.is-wide {
    padding: 1.6rem;
}

.service-index {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--race);
    font-family: var(--font-display);
    letter-spacing: 0.16em;
}

.brand-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.brand-logo {
    margin: 0;
    display: grid;
    place-items: center;
    min-height: 6.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: #f4f4f4;
    padding: 0.85rem 1rem;
}

.brand-logo img {
    width: auto;
    max-width: 9.5rem;
    height: 3.4rem;
    object-fit: contain;
}

@media (min-width: 768px) {
    .brand-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.map-frame {
    position: relative;
    overflow: hidden;
    border-radius: 1.3rem;
    height: 22rem;
}

@media (min-width: 1024px) {
    .map-frame-stretch {
        height: 100%;
        min-height: 22rem;
    }
}

.map-frame iframe,
.map-facade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-facade {
    display: grid;
    place-content: center;
    padding: 1.5rem;
    text-align: center;
    background:
        radial-gradient(circle at 50% 20%, rgba(225, 6, 0, 0.18), transparent 55%),
        #101114;
}

.map-facade strong {
    display: block;
    font-size: 1.05rem;
    color: #fff;
}

.map-facade span {
    display: block;
    margin-top: 0.45rem;
    color: rgba(213, 216, 222, 0.7);
    font-size: 0.9rem;
}

.faq {
    border-radius: 1rem;
    padding: 1rem 1.1rem;
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    color: #fff;
}

.faq p {
    margin-top: 0.7rem;
    color: rgba(213, 216, 222, 0.72);
    font-size: 0.95rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: rgba(213, 216, 222, 0.8);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.85rem;
    background: #0b0c10;
    color: #fff;
    padding: 0.85rem 0.95rem;
}

.field small {
    color: #ff8a80;
}

.quote-form-note {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(213, 216, 222, 0.75);
}

.field input[data-plate] {
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-title {
    margin-bottom: 1rem;
    font-family: var(--font-display);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
}

.social-btn {
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #fff;
}

.social-btn:hover {
    border-color: var(--race);
    color: var(--race);
}

.social-btn svg {
    width: 1.1rem;
    height: 1.1rem;
}

.social-links {
    display: grid;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: inherit;
}

.social-links a:hover strong {
    color: #fff;
}

.social-links strong {
    display: block;
    font-size: 0.95rem;
}

.social-links small {
    display: block;
    margin-top: 0.15rem;
    color: rgba(196, 196, 196, 0.65);
    font-size: 0.8rem;
}

.social-links .social-btn {
    flex-shrink: 0;
}

.cta-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.cta-float-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.75rem 1.05rem 0.75rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.cta-float-btn svg {
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
}

.cta-float-btn.is-whats {
    background: #1f9e4b;
}

.cta-float-btn.is-map {
    background: #1d4ed8;
}

.card-link h2 {
    margin-top: 0.6rem;
    font-size: 1.5rem;
}

.card-link p:last-child {
    margin-top: 0.6rem;
    color: rgba(213, 216, 222, 0.7);
    font-size: 0.95rem;
}

.hours-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.hours-status {
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hours-status.is-open {
    background: rgba(31, 158, 75, 0.18);
    color: #6ee7a0;
}

.hours-status.is-closed {
    background: rgba(225, 6, 0, 0.14);
    color: #ff8a80;
}

.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    overflow: hidden;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(213, 216, 222, 0.78);
    font-size: 0.95rem;
}

.hours-list li:first-child {
    border-top: 0;
}

.hours-list li.is-today {
    background: rgba(225, 6, 0, 0.1);
    color: #fff;
}

.hours-list strong {
    font-weight: 600;
    color: #fff;
}

.hours-note {
    margin-top: 0.8rem;
    font-size: 0.82rem;
    color: rgba(213, 216, 222, 0.55);
}

.card-link:hover {
    border-color: rgba(225, 6, 0, 0.45);
}

.prose-dark p {
    margin-top: 1rem;
    color: rgba(213, 216, 222, 0.75);
    line-height: 1.7;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.relative { position: relative; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.shrink-0 { flex-shrink: 0; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-18 { height: 4.5rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-inline: auto; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.py-5 { padding-block: 1.25rem; }
.py-6 { padding-block: 1.5rem; }
.py-14 { padding-block: 3.5rem; }
.py-20 { padding-block: 5rem; }
.pt-0 { padding-top: 0; }
.text-center { text-align: center; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-2xl { font-size: 1.5rem; }
.font-medium { font-weight: 600; }
.font-display { font-family: var(--font-display); }
.tracking-wide { letter-spacing: 0.04em; }
.leading-relaxed { line-height: 1.7; }
.uppercase { text-transform: uppercase; }
.text-white { color: #fff; }
.text-silver\/80 { color: rgba(213, 216, 222, 0.8); }
.text-silver\/75 { color: rgba(213, 216, 222, 0.75); }
.text-silver\/70 { color: rgba(213, 216, 222, 0.7); }
.text-silver\/60 { color: rgba(213, 216, 222, 0.6); }
.text-silver\/50 { color: rgba(213, 216, 222, 0.5); }
.border-t { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.border-y { border-top: 1px solid rgba(255, 255, 255, 0.08); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/8 { border-color: rgba(255, 255, 255, 0.08); }
.bg-black { background: #000; }
.bg-black\/40 { background: rgba(0, 0, 0, 0.4); }
.bg-ink { background: var(--ink); }
.hover\:text-white:hover { color: #fff; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.antialiased { -webkit-font-smoothing: antialiased; }
.not-italic { font-style: normal; }

@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:col-span-2 { grid-column: span 2; }
    .sm\:w-auto { width: auto; }
    .sm\:justify-between { justify-content: space-between; }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:flex-row { flex-direction: row; }
    .md\:items-center { align-items: center; }
}

@media (min-width: 1024px) {
    .cta-float { display: none; }
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:h-16 { height: 4rem; }
    .lg\:h-20 { height: 5rem; }
    .lg\:py-28 { padding-block: 7rem; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-\[1\.1fr_\.9fr\] { grid-template-columns: 1.1fr 0.9fr; }
    .lg\:grid-cols-\[\.9fr_1\.1fr\] { grid-template-columns: 0.9fr 1.1fr; }
    .lg\:col-span-2 { grid-column: span 2; }
}

@media (min-width: 1280px) {
    .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
