/* ===== CONTACTS PAGE ===== */

.contacts-hero {
    background: var(--color-graphite);
    padding: 140px 0 80px;
    text-align: center;
}

.contacts-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.contacts-hero-title {
    font-family: var(--font-accent);
    font-size: clamp(36px, 5vw, 56px);
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contacts-hero-lead {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.contacts-hero-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

/* Sections */
.contacts-section {
    padding: 80px 0;
}

.contacts-section--light {
    background: #f5f2ee;
}

.contacts-section--white {
    background: #fff;
}

.contacts-section-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.contacts-section-title {
    font-family: var(--font-accent);
    font-size: clamp(22px, 3vw, 32px);
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--color-graphite);
}

.contacts-section-lead {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(36,35,36,0.7);
    margin-bottom: 28px;
}

/* Contact cards */
.contacts-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contacts-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.contacts-section--white .contacts-card {
    background: #f5f2ee;
}

.contacts-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-graphite);
    border-radius: 12px;
}

.contacts-card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-beige);
}

.contacts-card-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(36,35,36,0.5);
    margin-bottom: 8px;
    font-weight: 500;
}

.contacts-card-value {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-graphite);
    text-decoration: none;
    transition: color 0.2s;
}

.contacts-card-value:hover {
    color: var(--color-beige);
}

/* Requisites */
.contacts-requisites {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(36, 35, 36, 0.8);
}

.contacts-requisites-row strong {
    color: var(--color-graphite);
    font-size: 17px;
}

/* List */
.contacts-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contacts-list li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(36,35,36,0.8);
}

.contacts-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-beige);
}

.contacts-list a {
    color: var(--color-graphite);
    font-weight: 600;
    text-decoration: none;
}

.contacts-list a:hover {
    color: var(--color-beige);
}

/* Schedule */
.contacts-schedule {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contacts-schedule-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 12px;
    padding: 20px 28px;
    max-width: 480px;
}

.contacts-schedule-day {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-graphite);
}

.contacts-schedule-time {
    font-size: 15px;
    color: var(--color-beige);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .contacts-hero {
        padding: 100px 0 60px;
    }

    .contacts-section {
        padding: 60px 0;
    }

    .contacts-cards {
        grid-template-columns: 1fr;
    }

    .contacts-schedule-row {
        max-width: 100%;
    }
}
