/* ==========================================================================
   Ely's Tires - Retro 50s/60s Garage Theme
   Colors: Red #CC0000, Black #1a1a1a, Cream #FDF6E3, Charcoal #333
   Fonts: Alfa Slab One (display), Bebas Neue (headings), Pacifico (script), Inter (body)
   ========================================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red: #CC0000;
    --red-dark: #990000;
    --red-light: #E63333;
    --black: #1a1a1a;
    --charcoal: #333333;
    --cream: #FDF6E3;
    --cream-dark: #F0E6CC;
    --tan: #D4C5A9;
    --brown: #8B7355;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-600: #666666;

    --font-display: 'Alfa Slab One', serif;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-script: 'Pacifico', cursive;
    --font-body: 'Inter', -apple-system, sans-serif;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --shadow-retro: 4px 4px 0 var(--black);

    --radius: 6px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

/* Subtle vintage paper texture via CSS */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(139,115,85,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(139,115,85,0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

main { position: relative; z-index: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- Utility ---------- */
.icon { width: 18px; height: 18px; flex-shrink: 0; vertical-align: middle; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-cream { color: var(--cream); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 3px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    font-weight: 400;
}

.btn-red {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: var(--shadow-retro);
}
.btn-red:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--black);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
    box-shadow: var(--shadow-retro);
}
.btn-outline:hover {
    background: var(--black);
    color: var(--cream);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--charcoal);
}

.btn-cream {
    background: var(--cream);
    color: var(--black);
    border-color: var(--cream);
    box-shadow: var(--shadow-retro);
}
.btn-cream:hover {
    background: var(--cream-dark);
    border-color: var(--cream-dark);
    color: var(--black);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

/* ---------- Topbar ---------- */
.topbar {
    background: var(--black);
    color: var(--cream);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    position: relative;
    z-index: 100;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-left { display: flex; align-items: center; gap: 0.75rem; }
.topbar-item { display: flex; align-items: center; gap: 0.35rem; }
.topbar-item a { color: var(--cream); }
.topbar-item a:hover { color: var(--red-light); }
.topbar-item .icon { width: 14px; height: 14px; stroke: var(--red); }
.topbar-divider { color: var(--gray-600); }
.topbar-right { display: flex; align-items: center; }
.topbar-hours .icon { stroke: var(--red); }

/* ---------- Header / Nav ---------- */
.site-header {
    background: var(--white);
    border-bottom: 4px solid var(--red);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.logo-link { flex-shrink: 0; }
.logo-img { height: 55px; width: auto; }

.main-nav {
    display: flex;
    gap: 0.25rem;
}
.main-nav a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--red);
    transition: all var(--transition);
    transform: translateX(-50%);
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--red);
}
.main-nav a:hover::after,
.main-nav a.active::after {
    width: 70%;
}

.header-cta { font-size: 0.95rem; padding: 0.5rem 1.25rem; }

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ---------- Section Styles ---------- */
.section {
    padding: 5rem 0;
}
.section-dark {
    background: var(--black);
    color: var(--cream);
}
.section-red {
    background: var(--red);
    color: var(--white);
}
.section-cream {
    background: var(--cream);
}
.section-white {
    background: var(--white);
}

/* Retro section header with badge style */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-badge {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.1rem;
    color: var(--red);
    margin-bottom: 0.5rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}
.section-dark .section-title { color: var(--cream); }
.section-dark .section-badge { color: var(--red-light); }
.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}
.section-dark .section-subtitle { color: var(--tan); }

/* Retro divider */
.retro-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}
.retro-divider::before,
.retro-divider::after {
    content: '';
    height: 2px;
    width: 60px;
    background: var(--red);
}
.retro-divider .diamond {
    width: 10px;
    height: 10px;
    background: var(--red);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* Checkerboard pattern */
.checkerboard {
    height: 20px;
    background-image:
        linear-gradient(45deg, var(--black) 25%, transparent 25%),
        linear-gradient(-45deg, var(--black) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--black) 75%),
        linear-gradient(-45deg, transparent 75%, var(--black) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}
.checkerboard-red {
    height: 20px;
    background-image:
        linear-gradient(45deg, var(--red) 25%, transparent 25%),
        linear-gradient(-45deg, var(--red) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--red) 75%),
        linear-gradient(-45deg, transparent 75%, var(--red) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: var(--black);
    color: var(--white);
    padding: 6rem 0 5rem;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(204,0,0,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(204,0,0,0.1) 0%, transparent 40%);
    pointer-events: none;
}
/* Retro diagonal stripes accent */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(204,0,0,0.05) 10px,
        rgba(204,0,0,0.05) 20px
    );
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--red-light);
    margin-bottom: 0.75rem;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}
.hero h1 .text-red { color: var(--red-light); }
.hero-sub {
    font-size: 1.2rem;
    color: var(--tan);
    margin-bottom: 2rem;
    max-width: 500px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255,255,255,0.1);
    aspect-ratio: 4/3;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Vintage photo border effect */
.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(253,246,227,0.2);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

/* ---------- Services Grid ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-retro);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--black);
}
/* Retro corner accent */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--red);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border: 3px solid var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.service-card-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    color: var(--black);
    margin-bottom: 0.5rem;
}
.service-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Pricing table inside service card */
.price-list {
    list-style: none;
}
.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--tan);
    font-size: 0.95rem;
}
.price-list li:last-child { border-bottom: none; }
.price-name { color: var(--charcoal); }
.price-amount {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--red);
    white-space: nowrap;
}
.price-note {
    font-size: 0.8rem;
    color: var(--gray-600);
}
.service-promo {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: var(--red);
    color: var(--white);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-align: center;
}

/* ---------- Reviews ---------- */
.reviews-section { overflow: hidden; }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.review-card {
    background: var(--cream);
    border: 3px solid var(--black);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-retro);
    position: relative;
}
.review-stars {
    color: #FFB800;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}
.review-text {
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}
.review-author {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--black);
    letter-spacing: 0.03em;
}
.review-date {
    font-size: 0.8rem;
    color: var(--gray-600);
}
/* Big quote mark */
.review-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--red);
    opacity: 0.15;
    line-height: 1;
    pointer-events: none;
}

/* Google rating badge */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-retro);
    margin-bottom: 2rem;
}
.google-badge-rating {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--black);
    line-height: 1;
}
.google-badge-stars { color: #FFB800; font-size: 1.2rem; }
.google-badge-count { font-size: 0.85rem; color: var(--gray-600); }

/* ---------- About / Photo Gallery ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}
.about-text .years-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.photo-grid .photo-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid var(--black);
    box-shadow: var(--shadow-retro);
    aspect-ratio: 4/3;
}
.photo-grid .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.photo-grid .photo-item:hover img {
    transform: scale(1.05);
}
.photo-grid .photo-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

/* ---------- Locations ---------- */
.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.location-card {
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-retro);
}
.location-card-map {
    height: 250px;
    background: var(--gray-200);
}
.location-card-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.location-card-info {
    padding: 1.75rem;
}
.location-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--black);
    margin-bottom: 0.75rem;
}
.location-card-info address {
    font-style: normal;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}
.location-card-info .phone-link {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--red);
    display: block;
    margin-bottom: 1rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.hours-table tr { border-bottom: 1px dashed var(--tan); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.4rem 0; }
.hours-table td:first-child { font-weight: 600; color: var(--black); }
.hours-table td:last-child { text-align: right; color: var(--charcoal); }
.hours-table .today td { color: var(--red); font-weight: 600; }
.hours-table .today { background: rgba(204, 0, 0, 0.08); border-radius: 4px; }

/* ---------- Contact Form ---------- */
.contact-form {
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-retro);
}
.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--black);
    margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--tan);
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--black);
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
    background: #E8F5E9;
    border: 2px solid #4CAF50;
    color: #2E7D32;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-weight: 500;
}
.form-error {
    background: #FFEBEE;
    border: 2px solid var(--red);
    color: var(--red-dark);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-weight: 500;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: var(--red);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
    position: relative;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(0,0,0,0.05) 20px,
        rgba(0,0,0,0.05) 40px
    );
    pointer-events: none;
}
.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 0.5rem;
    position: relative;
}
.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
}
.cta-banner .btn { position: relative; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
    background: var(--black);
    color: var(--white);
    padding: 3.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 15px,
        rgba(204,0,0,0.04) 15px,
        rgba(204,0,0,0.04) 30px
    );
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    position: relative;
    margin-bottom: 0.5rem;
}
.page-hero p {
    font-size: 1.1rem;
    color: var(--tan);
    position: relative;
}

/* ---------- Cross-Sell Banners ---------- */
.crosssell-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.crosssell-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.25rem 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
}
.crosssell-card:hover {
    transform: translateY(-3px);
}

/* AllOEMRims — dark skeuomorphic with cyan accents */
.crosssell-aor {
    background: #0a0a0f;
    border: 1px solid rgba(0,212,255,0.15);
    box-shadow:
        0 2px 8px rgba(0,0,0,0.4),
        0 8px 24px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.05);
    color: #dcdce5;
}
.crosssell-aor:hover {
    color: #dcdce5;
    border-color: rgba(0,212,255,0.35);
    box-shadow:
        0 4px 16px rgba(0,0,0,0.5),
        0 12px 32px rgba(0,0,0,0.35),
        0 0 30px rgba(0,212,255,0.08);
}
.crosssell-aor .crosssell-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(0,212,255,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(219,0,0,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.crosssell-aor .crosssell-badge {
    background: rgba(0,212,255,0.12);
    color: #00d4ff;
    border: 1px solid rgba(0,212,255,0.25);
}
.crosssell-aor h3 {
    color: #f0f0f5;
    background: linear-gradient(180deg, #f0f0f5 30%, #8888a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.crosssell-aor .crosssell-cta {
    color: #00d4ff;
    border-color: rgba(0,212,255,0.3);
}
.crosssell-aor:hover .crosssell-cta {
    background: rgba(0,212,255,0.1);
    border-color: rgba(0,212,255,0.5);
}

/* MMD Tires — industrial dark with red accents + noise texture */
.crosssell-mmd {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"),
        #141414;
    border: 1px solid rgba(238,62,53,0.15);
    box-shadow:
        0 2px 8px rgba(0,0,0,0.3),
        0 8px 24px rgba(0,0,0,0.25);
    color: #d4d4d4;
}
.crosssell-mmd:hover {
    color: #d4d4d4;
    border-color: rgba(238,62,53,0.35);
    box-shadow:
        0 4px 16px rgba(0,0,0,0.4),
        0 12px 32px rgba(0,0,0,0.3),
        0 0 30px rgba(238,62,53,0.06);
}
.crosssell-mmd .crosssell-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(238,62,53,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.crosssell-mmd .crosssell-badge {
    background: rgba(238,62,53,0.12);
    color: #EE3E35;
    border: 1px solid rgba(238,62,53,0.25);
}
.crosssell-mmd h3 {
    color: #f0f0f0;
}
.crosssell-mmd .crosssell-cta {
    color: #EE3E35;
    border-color: rgba(238,62,53,0.3);
}
.crosssell-mmd:hover .crosssell-cta {
    background: rgba(238,62,53,0.1);
    border-color: rgba(238,62,53,0.5);
}

/* Shared crosssell elements */
.crosssell-content {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}
.crosssell-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}
.crosssell-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.crosssell-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.75;
    margin-bottom: 1rem;
    max-width: 380px;
}
.crosssell-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border: 1px solid;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}
.crosssell-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    width: 90px;
    height: 90px;
    opacity: 0.4;
    pointer-events: none;
}
.crosssell-card:hover .crosssell-icon {
    opacity: 0.7;
}
.crosssell-icon svg {
    width: 90px;
    height: 90px;
    max-width: 90px;
    max-height: 90px;
}

@media (max-width: 1024px) {
    .crosssell-grid { grid-template-columns: 1fr; }
    .crosssell-icon { display: none; }
}

/* ---------- Footer ---------- */
.footer-checkerboard {
    height: 20px;
    background-image:
        linear-gradient(45deg, var(--red) 25%, transparent 25%),
        linear-gradient(-45deg, var(--red) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--red) 75%),
        linear-gradient(-45deg, transparent 75%, var(--red) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.site-footer {
    background: var(--black);
    color: var(--cream);
    padding: 0;
    margin-top: 0;
}
.site-footer > .container {
    padding-top: 3rem;
}
/* Close any gap between CTA and footer */
.cta-banner + footer,
main + .site-footer {
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}
.footer-logo { height: 45px; margin-bottom: 1rem; }
.footer-tagline {
    font-family: var(--font-script);
    font-size: 1.1rem;
    color: var(--red-light);
    margin-bottom: 0.5rem;
}
.footer-since {
    font-size: 0.85rem;
    color: var(--tan);
}
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}
.footer-col address {
    font-style: normal;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--tan);
}
.footer-col a { color: var(--cream); }
.footer-col a:hover { color: var(--red-light); }
.footer-hours { font-size: 0.9rem; color: var(--tan); margin-bottom: 0.5rem; }
.footer-directions {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    color: var(--red-light) !important;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.9rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--tan);
}

/* ---------- About Values List ---------- */
.values-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
    margin-top: 1.5rem;
}
.values-list li {
    position: relative;
    padding-left: 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--black);
}
.values-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
}

/* ---------- Contact Grid ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* ---------- Contact Info Card ---------- */
.contact-info-card {
    background: var(--white);
    border: 3px solid var(--black);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-retro);
}
.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--black);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--red);
}
.contact-info-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    color: var(--black);
    margin-bottom: 0.25rem;
}
.contact-info-item {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed var(--tan);
}
.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.contact-info-item p {
    font-size: 0.9rem;
    color: var(--charcoal);
    margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { margin: 0 auto 2rem; }
    .hero-btns { justify-content: center; }
    .hero-image { max-width: 500px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .topbar-left { flex-wrap: wrap; }
    .topbar-right { display: none; }
    .topbar-divider { display: none; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 4px solid var(--red);
        box-shadow: var(--shadow-lg);
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 0.75rem 1rem; }
    .header-cta { display: none; }
    .mobile-toggle { display: flex; }

    .hero { padding: 3rem 0; }
    .hero h1 { font-size: 2.2rem; }
    .section { padding: 3rem 0; }
    .services-grid { grid-template-columns: 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.25rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .photo-grid { grid-template-columns: 1fr; }
    .photo-grid .photo-item.tall { grid-row: auto; aspect-ratio: 4/3; }
}
