/* ==========================================================================
   Публичная визитка.
   ========================================================================== */

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(70px, 16vh, 130px) 0 clamp(50px, 10vh, 80px);
    text-align: center;
    border-bottom: 1px solid var(--line);
}

.hero::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink), var(--gold), transparent);
    opacity: .55;
}

.hero-inner { position: relative; z-index: 2; }

.hero-eyebrow {
    font-size: 12.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 18px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 9vw, 68px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.01em;
    margin-bottom: 14px;
}

.hero-sub {
    font-size: clamp(16px, 2.4vw, 19px);
    color: var(--text-2);
    margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- Секции -------------------------------------------------------------- */
.section { padding: clamp(42px, 8vh, 66px) 0; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(25px, 4.5vw, 33px);
    font-weight: 600;
    margin-bottom: 14px;
}

.lead {
    font-size: clamp(16.5px, 2.2vw, 18.5px);
    line-height: 1.7;
    color: var(--text-2);
    margin-bottom: 34px;
}

/* --- Факты --------------------------------------------------------------- */
.facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 14px;
}

.fact {
    padding: 22px 16px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
}

.fact-value {
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 600;
    color: var(--pink-2);
    line-height: 1.1;
}

.fact-label { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* --- Районы -------------------------------------------------------------- */
.district-list { display: grid; gap: 10px; margin-top: 22px; }

.district {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, .25);
    flex-wrap: wrap;
}

.district-dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.district-name { font-weight: 600; }
.district-days { color: var(--pink-2); font-size: 14.5px; }

@media (max-width: 560px) {
    .district-days { width: 100%; padding-left: 22px; font-size: 13.5px; }
}

/* --- Подвал -------------------------------------------------------------- */
.site-footer {
    padding: 26px 0 34px;
    border-top: 1px solid var(--line);
    margin-top: 40px;
}

/* --- Контакты ------------------------------------------------------------ */
.contact-list { display: grid; gap: 10px; margin-top: 22px; }

.contact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
    color: var(--text);
    transition: border-color .15s, transform .1s;
}

.contact:hover { border-color: var(--pink-soft); color: var(--text); }
.contact:active { transform: translateY(1px); }

.contact-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: none;
    border-radius: 12px;
    background: var(--wine-soft);
    color: var(--pink-2);
}

.contact-icon svg { width: 20px; height: 20px; }

.contact-title { display: block; font-weight: 600; font-size: 15.5px; }
.contact-note  { display: block; font-size: 13.5px; color: var(--muted); margin-top: 2px; }

@media (hover: none) {
    .contact { padding: 16px 18px; }
}
