/* ============================================
   Yesenia's Tire Shop — Premium Dark Luxury
   Forest Green + Off-White + Gold Accents
   ============================================ */

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

:root {
    --color-bg-deep: #0a1510;
    --color-bg-primary: #0d1a12;
    --color-bg-secondary: #111f16;
    --color-bg-card: #142019;
    --color-bg-card-hover: #1a2a20;
    --color-forest: #1a3a2a;
    --color-forest-light: #244d38;
    --color-forest-mid: #1e3d2c;
    --color-off-white: #f0ebe3;
    --color-off-white-muted: #c8c0b4;
    --color-off-white-dim: #9a9084;
    --color-gold: #c9a84c;
    --color-gold-light: #d4b865;
    --color-gold-dark: #b8943f;
    --color-gold-glow: rgba(201, 168, 76, 0.15);
    --color-gold-glow-strong: rgba(201, 168, 76, 0.3);
    --color-text-primary: #f0ebe3;
    --color-text-secondary: #b8b0a4;
    --color-text-muted: #7a7268;
    --color-border: rgba(201, 168, 76, 0.12);
    --color-border-strong: rgba(201, 168, 76, 0.25);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;
    --container-max: 1280px;
    --container-padding: 24px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-deep);
    color: var(--color-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 1
