/* ===== ПЕРЕМЕННЫЕ ===== */
:root {
    /* ===== ШРИФТЫ ===== */
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Golos Text', sans-serif;
    
    /* ===== ЦВЕТА ===== */
    --bg-light: #FCFCFC;
    --bg-card: #FFFFFF;
    --bg-accent-light: #F8F7F4;
    --text-dark: #1E1E1E;
    --text-body: #4A4A4A;
    --text-muted: #6F6F6F;
    --accent-yellow: #F0B90B;
    --accent-yellow-hover: #D4A10A;
    --accent-yellow-bright: #FDB81E;
    --border-light: #E8E8E8;
    
    /* ===== ТЕНИ ===== */
    --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    
    /* ===== АНИМАЦИИ ===== */
    --transition: all 0.3s ease;
}

/* ===== НАСТРОЙКИ ШРИФТОВ ===== */
body, p, span, div, li, a, input, textarea, button {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .section-subhead, .btn, .stat-number, .object-price {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; }

.section-subhead {
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn, .object-tag, .stat-label {
    font-weight: 600;
    letter-spacing: 0.5px;
}

strong, b { font-weight: 700; }

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    body { font-size: 0.95rem; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.2rem; }
}

@media (max-width: 480px) {
    body { font-size: 0.9rem; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
}