* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ГОЛУБОЙ ФОН — свежий и приятный */
body {
    background: linear-gradient(135deg, #c1dcf0 0%, #7bb3db 100%);
    font-family: 'Inter', sans-serif;
    color: #2c2b28;
    line-height: 1.5;
    padding: 40px 24px;
}

.page-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

/* Герой-заголовок */
.hero {
    text-align: center;
    margin-bottom: 40px;
}

.club-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #2a5c4a;
    text-transform: uppercase;
    background: rgba(255,255,240,0.85);
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.club-title span {
    font-weight: 800;
    color: #c49a2b;
}

.hero-accent {
    width: 80px;
    height: 3px;
    background: #c49a2b;
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Цитата */
.modern-quote {
    background: #ffffffcc;
    backdrop-filter: blur(8px);
    border-radius: 48px;
    padding: 32px 40px;
    margin: 32px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(196,154,43,0.2);
}

.quote-symbol {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: #c49a2b;
    line-height: 1;
    opacity: 0.6;
}

.quote-text-wrapper {
    flex: 2;
}

.quote-text {
    font-size: 1.2rem;
    font-weight: 450;
    color: #2c3e2b;
    line-height: 1.5;
    margin-bottom: 12px;
    font-style: normal;
}

.quote-author {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1rem;
    color: #7e6b3c;
    letter-spacing: 0.5px;
}

.quote-icon {
    width: 85px;
    height: auto;
    opacity: 0.8;
    border-radius: 20px;
}

/* Контактная плашка */
.contact-bar {
    background: #2a5c4a;
    border-radius: 60px;
    text-align: center;
    padding: 16px 24px;
    margin: 20px 0 40px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.contact-phone {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff3e0;
}

.contact-phone strong {
    font-weight: 800;
    background: #c49a2b;
    padding: 6px 16px;
    border-radius: 40px;
    margin-left: 12px;
    color: #2a5c4a;
}

/* Секции с картинкой и текстом */
.text-with-pic {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 48px 0;
    background: #ffffffb3;
    border-radius: 32px;
    padding: 20px 28px;
    backdrop-filter: blur(2px);
    transition: all 0.2s;
}

.text-with-pic.reverse {
    flex-direction: row-reverse;
}

.highlight {
    flex: 1;
    font-size: 1.45rem;
    font-weight: 500;
    color: #1f3b31;
    background: rgba(255,245,225,0.7);
    padding: 28px 24px;
    border-radius: 28px;
    line-height: 1.4;
    border-left: 4px solid #c49a2b;
}

.in-text {
    width: 45%;
    max-width: 450px;
    height: 300px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    transition: transform 0.25s ease;
}

.in-text:hover {
    transform: scale(1.01);
}

/* Локация: две карточки адресов */
.location-section {
    margin: 60px 0 30px;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.metro-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.address-card {
    flex: 1;
    min-width: 260px;
    background: #ffffffcc;
    backdrop-filter: blur(4px);
    border-radius: 32px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid #e6ddcf;
}

.address-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #c49a2b;
    margin-bottom: 12px;
}

.address-card p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c5a48;
    margin-bottom: 16px;
}

.metro-stations {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.metro-stations span {
    background: #e9e2d4;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.metro-stations img {
    width: 28px;
    vertical-align: middle;
}

/* Карты рядом */
.maps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0 60px;
}

.map-card {
    flex: 1;
    background: #fff6ea;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    transition: all 0.2s;
}

.map-iframe {
    width: 100%;
    height: 320px;
    border: none;
    display: block;
}

.map-label {
    display: block;
    text-align: center;
    padding: 14px;
    background: #fef7e6;
    font-weight: 500;
    color: #2a5c4a;
    border-top: 1px solid #e4d9c8;
}

/* Услуги — карточки */
.services-main {
    margin: 40px 0 50px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffffdb;
    backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 28px 24px 32px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    border: 1px solid #f1e7db;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    border-bottom: 2px solid #e9cf9e;
    padding-bottom: 16px;
}

.card-icon {
    width: 52px;
    height: auto;
    border-radius: 20px;
    background: #f3ede4;
    padding: 6px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: #2a5c4a;
    margin: 0;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 4px;
    border-bottom: 1px dashed #ddd2c0;
}

.service-name {
    font-weight: 500;
    font-size: 1.1rem;
    color: #3a3a37;
}

.service-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #c49a2b;
    background: #fff2e2;
    padding: 4px 12px;
    border-radius: 40px;
}

.group-note {
    margin-top: 24px;
    font-size: 0.85rem;
    color: #8b7652;
    text-align: center;
    font-style: italic;
    background: #fbf5ea;
    padding: 10px;
    border-radius: 30px;
}

/* Соцблок */
.social-block {
    text-align: center;
    margin: 60px 0 40px;
    background: rgba(255,255,240,0.3);
    backdrop-filter: blur(4px);
    padding: 32px 20px;
    border-radius: 48px;
}

.social-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #2a5c4a;
    color: white;
    padding: 14px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-btn img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.social-btn:hover {
    background: #c49a2b;
    color: #1f3b31;
    transform: scale(1.02);
}

.social-footnote {
    margin-top: 18px;
    font-size: 0.9rem;
    color: #f0f4fa;
    font-weight: 500;
}

/* Футер */
.footer {
    text-align: center;
    padding: 24px;
    margin-top: 40px;
    color: #fff3e0;
    border-top: 1px solid rgba(255,255,210,0.3);
    font-size: 0.9rem;
}
/* Стиль для кнопки звонка */
.phone-call-btn {
    display: inline-block;
    background: #c49a2b;        /* золотистый, как акценты на сайте */
    color: #2a5c4a;             /* тёмно-зелёный текст — хороший контраст */
    font-weight: 800;
    font-size: 1.3rem;
    padding: 8px 24px;
    border-radius: 60px;
    text-decoration: none;      /* убираем стандартное подчёркивание */
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
}

.phone-call-btn:hover {
    background: #e0b354;        /* светлее при наведении */
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.phone-call-btn:active {
    transform: scale(0.98);
}

/* подсказка "(нажмите, чтобы позвонить)" */
.copy-hint {
    font-size: 0.75rem;
    color: #fff3e0;
    background: rgba(255,255,240,0.2);
    padding: 4px 12px;
    border-radius: 30px;
    margin-left: 12px;
    white-space: nowrap;
}

/* на мобильных устройствах подсказку можно перенести на новую строку */
@media (max-width: 560px) {
    .copy-hint {
        display: block;
        margin-left: 0;
        margin-top: 8px;
        white-space: normal;
    }
    .phone-call-btn {
        font-size: 1.1rem;
        padding: 6px 18px;
    }
}

/* Адаптивность */
@media (max-width: 860px) {
    body {
        padding: 20px 16px;
    }

    .club-title {
        font-size: 2.2rem;
        padding: 0.4rem 1rem;
    }

    .text-with-pic, .text-with-pic.reverse {
        flex-direction: column !important;
        padding: 20px;
    }

    .in-text {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 280px;
    }

    .highlight {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
    }

    .modern-quote {
        flex-direction: column;
        text-align: center;
    }

    .quote-symbol {
        display: none;
    }

    .contact-phone {
        font-size: 1rem;
        user-select: all;  
    }

    .contact-phone strong {
        display: inline-block;
        margin-top: 8px;
        margin-left: 0;
    }

    .maps-grid {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .social-links {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .social-links .social-btn {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        text-align: center;
    }
}