:root {
    --red: #c40000;
    --dark-red: #920000;
    --black: #111111;
    --dark: #1b1b1b;
    --gray: #f4f4f4;
    --text: #1f1f1f;
    --muted: #666666;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(0,0,0,.12);
    --radius: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: #fff;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.screen-reader-text { position: absolute; left: -9999px; }
.top-bar { background: linear-gradient(90deg, var(--dark-red), var(--red)); color: #fff; font-weight: 700; }
.top-bar-inner { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 15px; }
.top-link, .top-address { text-decoration: none; }
.site-header { background: #fff; position: sticky; top: 0; z-index: 99; box-shadow: 0 3px 22px rgba(0,0,0,.08); }
.main-header { min-height: 120px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.brand img, .custom-logo { width: 390px; max-height: 135px; object-fit: contain; }
.primary-navigation { display: flex; align-items: center; }
.mad-menu { list-style: none; display: flex; align-items: center; gap: 32px; margin: 0; padding: 0; }
.mad-menu a { text-decoration: none; text-transform: uppercase; font-weight: 800; color: #111; font-size: 15px; letter-spacing: .02em; }
.mad-menu a:hover { color: var(--red); }
.menu-toggle { display: none; border: 0; background: var(--black); color: #fff; padding: 11px 15px; border-radius: 8px; font-weight: 800; }
.hero { min-height: 570px; display: flex; align-items: center; color: #fff; background-size: cover; background-position: center; }
.hero-content { padding: 100px 0; max-width: 1180px; }
.eyebrow, .section-kicker { color: var(--red); text-transform: uppercase; font-weight: 900; letter-spacing: .12em; margin: 0 0 8px; }
.hero .eyebrow { color: #fff; }
h1, h2, h3 { line-height: 1.1; margin-top: 0; }
h1 { font-size: clamp(46px, 7vw, 86px); max-width: 780px; margin-bottom: 22px; text-transform: uppercase; }
.hero-text { max-width: 610px; font-size: 22px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 22px; border-radius: 4px; text-decoration: none; text-transform: uppercase; font-weight: 900; border: 2px solid transparent; cursor: pointer; font-size: 15px; }
.btn.primary { background: var(--red); color: #fff; }
.btn.primary:hover { background: var(--dark-red); }
.btn.secondary { background: #fff; color: #111; }
.btn.secondary:hover { background: #eee; }
.feature-strip { background: #fff; border-bottom: 1px solid #e6e6e6; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-card { padding: 32px 24px; display: grid; grid-template-columns: 64px 1fr; gap: 14px; align-items: center; border-right: 1px solid #e6e6e6; }
.feature-card:last-child { border-right: 0; }
.feature-card span { color: var(--red); font-size: 44px; line-height: 1; }
.feature-card h3 { margin: 0 0 6px; font-size: 17px; text-transform: uppercase; }
.feature-card p { margin: 0; color: #555; font-size: 15px; }
.section { padding: 76px 0; }
.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 42px; align-items: center; }
.split.reverse { grid-template-columns: .8fr 1.2fr; }
h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 20px; text-transform: uppercase; }
.about-section { background: #fff; }
.info-box, .hours-card, .map-card, .request-form { border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); padding: 28px; border-top: 6px solid var(--red); }
.services-section, .request-section { background: var(--gray); }
.tires-section { background: #111; color: #fff; }
.tires-box { border-radius: var(--radius); background: linear-gradient(135deg, #1b1b1b, #000); padding: 34px; border: 2px solid rgba(255,255,255,.12); box-shadow: var(--shadow); }
.tires-box h2 { color: #fff; }
.tires-badge { display: inline-block; background: var(--red); color: #fff; padding: 8px 14px; border-radius: 999px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 15px; }
.tires-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.tires-list div { background: rgba(255,255,255,.08); border-radius: 12px; padding: 18px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.service { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: 0 10px 30px rgba(0,0,0,.06); border-left: 5px solid var(--red); }
.service h3 { text-transform: uppercase; margin-bottom: 10px; }
.request-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.request-form label { display: grid; gap: 7px; font-weight: 800; font-size: 14px; }
.request-form label:nth-of-type(5), .request-form label:nth-of-type(6), .request-form button { grid-column: 1 / -1; }
input, textarea { width: 100%; border: 1px solid #d8d8d8; border-radius: 8px; padding: 13px 14px; font: inherit; }
input:focus, textarea:focus { outline: 2px solid rgba(196,0,0,.25); border-color: var(--red); }
.mad-alert { padding: 14px 16px; border-radius: 8px; font-weight: 700; margin: 18px 0; }
.mad-alert.success { background: #e9f8ed; color: #116329; }
.mad-alert.error { background: #fff1f1; color: #950000; }
.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr .9fr 1.1fr; gap: 28px; align-items: stretch; }
.hours-card table { width: 100%; border-collapse: collapse; }
.hours-card td { padding: 12px 0; border-bottom: 1px solid #eee; }
.hours-card td:last-child { text-align: right; font-weight: 800; }
.map-card { padding: 0; overflow: hidden; }
.map-card iframe { width: 100%; height: 100%; min-height: 330px; border: 0; display: block; }
.site-footer { background: #111; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr 1fr; gap: 34px; padding: 54px 0; }
.footer-logo { width: 260px; background: #fff; border-radius: 6px; padding: 7px; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links a { color: #fff; text-decoration: none; }
.footer-links a:hover { color: #ffcccc; }
.footer-bottom { background: var(--red); padding: 14px 0; text-align: center; font-size: 14px; }
.floating-call { position: fixed; right: 20px; bottom: 20px; z-index: 100; background: var(--red); color: #fff; text-decoration: none; padding: 14px 20px; border-radius: 999px; font-weight: 900; box-shadow: 0 15px 35px rgba(0,0,0,.28); }
.content-wrap { max-width: 850px; }
.post-card { padding: 28px 0; border-bottom: 1px solid #eee; }
.entry-meta { color: var(--muted); margin-bottom: 20px; }
@media (max-width: 960px) {
    .top-bar-inner { flex-direction: column; align-items: flex-start; padding: 10px 0; gap: 4px; }
    .main-header { min-height: auto; padding: 18px 0; }
    .menu-toggle { display: inline-flex; }
    .primary-navigation { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-top: 1px solid #eee; display: none; }
    .primary-navigation.is-open { display: block; }
    .mad-menu { flex-direction: column; align-items: flex-start; gap: 0; width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 12px 0; }
    .mad-menu li { width: 100%; }
    .mad-menu a { display: block; padding: 13px 0; }
    .feature-grid, .services-grid, .contact-grid, .split, .split.reverse, .footer-grid { grid-template-columns: 1fr; }
    .feature-card { border-right: 0; border-bottom: 1px solid #e6e6e6; }
    .hero { min-height: 520px; }
}
@media (max-width: 620px) {
    .container { width: min(100% - 28px, 1180px); }
    .brand img, .custom-logo { width: 280px; max-height: 120px; }
    .hero { min-height: 560px; }
    .hero-content { padding: 70px 0; }
    .hero-text { font-size: 18px; }
    .request-form { grid-template-columns: 1fr; }
    .floating-call { left: 14px; right: 14px; text-align: center; justify-content: center; }
}

@media (max-width: 960px) { .tires-list { grid-template-columns: 1fr; } }
