.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--gold);
    display: block;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--gold);
}
:root {
    --bg-main: #0d0e11;
    --bg-card: #16181d;
    --bg-card-hover: #1e2127;
    --gold: #d4af37;
    --gold-hover: #e5c158;
    --text-white: #f5f5f7;
    --text-gray: #a1a1aa;
    --whatsapp: #25d366;
    --border-color: rgba(212, 175, 55, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-white);
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 16px 0;
    background: rgba(13, 14, 17, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--gold);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--gold);
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-badge {
    font-size: 13px;
    color: var(--text-gray);
}

.btn-call-header {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-call-header:hover {
    background: var(--gold);
    color: #000;
}

/* Hero */
.hero {
    padding: 50px 0 40px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.badge-gold {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 25px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Happy Hours Banner */
.happy-hours-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(22, 24, 29, 0.9));
    border: 1px solid var(--gold);
    border-radius: 14px;
    max-width: 550px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.hh-badge {
    background: var(--gold);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 8px;
    text-transform: uppercase;
    white-space: nowrap;
}

.hh-content h3 {
    font-size: 15px;
    margin-bottom: 2px;
}

.hh-content p {
    font-size: 13px;
    color: var(--text-gray);
}

.hh-content strong {
    color: #22c55e;
}

.old-price {
    text-decoration: line-through;
    color: #ef4444;
}

/* Секция Команды */
.section-team {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 6px;
}

.section-title p {
    color: var(--text-gray);
    font-size: 13px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

/* НОВЫЙ КОД ДЛЯ СЛАЙДЕРА */
.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    background: #111;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.slide-img.active {
    opacity: 1;
    visibility: visible;
}

.slider-dots {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
    background: rgba(13, 14, 17, 0.65);
    padding: 5px 8px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    z-index: 10;
}

.dot {
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.25);
}

.status-online {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(13, 14, 17, 0.85);
    color: #22c55e;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.team-info {
    padding: 16px;
    text-align: center;
}

.team-info h3 {
    font-size: 18px;
    margin-bottom: 2px;
}

/* НОВЫЙ КОД — ВСТАВИТЬ ВМЕСТО .team-specialty */
.team-params {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.team-languages {
    color: #e4e4e7;
    font-size: 11px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.team-desc {
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-gray);
    margin-bottom: 12px;
}   

.btn-book-team {
    display: inline-block;
    width: 100%;
    padding: 8px 0;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-book-team:hover {
    background: var(--gold);
    color: #000;
}

/* Ценник */
.section-programs {
    padding: 50px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.price-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
}

.price-box.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, #1f1c16 0%, var(--bg-card) 100%);
}

.badge-featured {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

.price-box h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.price-box .time {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.price-box .cost {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.price-box .cost span {
    font-size: 15px;
    color: var(--text-white);
}

.btn-book {
    display: inline-block;
    width: 100%;
    padding: 8px 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.btn-book-gold {
    background: var(--gold);
    color: #000;
    border: none;
}

/* Додатки */
.section-addons {
    padding: 40px 0;
}

.addons-list {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 10px 20px;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.addon-item:last-child {
    border-bottom: none;
}

.addon-name {
    font-size: 13px;
    color: var(--text-white);
}

.addon-price {
    font-weight: 700;
    color: var(--gold);
    font-size: 14px;
}

/* Конфиденциальность */
.section-privacy {
    padding: 40px 0 70px;
}

.privacy-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 30px;
    text-align: center;
}

.privacy-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 20px;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    text-align: left;
}

.privacy-item h4 {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 6px;
}

.privacy-item p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-gray);
}

/* Подвал */
.footer {
    padding: 20px 0 90px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 11px;
    color: var(--text-gray);
}

.disclaimer {
    margin-top: 4px;
    color: #ef4444;
}

/* Sticky Mobile */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 14, 17, 0.95);
    padding: 10px 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    z-index: 999;
    gap: 10px;
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.sticky-whatsapp {
    background: var(--whatsapp);
    color: #fff;
}

.sticky-call {
    background: var(--gold);
    color: #000;
}

@media (max-width: 768px) {
    .header-contacts .location-badge {
        display: none;
    }
    .hero h1 {
        font-size: 24px;
    }
    .happy-hours-banner {
        flex-direction: column;
        text-align: center;
    }
    .mobile-sticky-bar {
        display: flex;
    }
    .hero-actions .btn {
        width: 100%;
    }
}
/* Карточки мастеров */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 330px;
    background: #111;
}

.team-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-online {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(13, 14, 17, 0.85);
    color: #22c55e;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    backdrop-filter: blur(4px);
}

.team-info {
    padding: 18px 15px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 2px;
}

.team-role {
    display: block;
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 14px;
}

.btn-view-profile {
    width: 100%;
    padding: 9px 0;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-card:hover .btn-view-profile {
    background: var(--gold);
    color: #000;
}

/* Модалка полного профиля */
.master-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.master-modal.active {
    display: flex;
}

.master-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
}

.master-modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 3010;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3020;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-slider-box {
    position: relative;
    width: 100%;
    height: 380px;
    background: #000;
}

.modal-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-slider-controls {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 14, 17, 0.8);
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(4px);
}

.modal-arrow {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 18px;
    cursor: pointer;
}

.modal-photo-counter {
    color: #fff;
    font-size: 12px;
}

.modal-profile-details {
    padding: 20px;
}

.modal-profile-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 8px;
}

.modal-badge-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.status-pill {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.lang-pill {
    background: rgba(255, 255, 255, 0.08);
    color: #e4e4e7;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
}

.modal-params-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.param-item span {
    display: block;
    font-size: 10px;
    color: var(--text-gray);
    margin-bottom: 2px;
}

.param-item strong {
    font-size: 13px;
    color: var(--gold);
}

.modal-bio {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.btn-modal-book {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--whatsapp);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.image-modal.active {
    display: flex;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 38px;
    font-weight: 300;
    cursor: pointer;
    z-index: 2010;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content-wrapper {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.modal-image {
    max-width: 95%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
}

.modal-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
    z-index: 2010;
}

.modal-prev, .modal-next {
    font-size: 26px;
    color: var(--gold);
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

.modal-counter {
    font-size: 14px;
    color: var(--text-gray);
    letter-spacing: 1px;
}
.disclaimer-legal {
    font-size: 0.8rem;
    color: #777;
    margin-top: 6px;
    line-height: 1.4;
}
/* Яркий красный акцент для 18+ */
.footer .disclaimer-18 {
    color: #ff3333 !important;
    font-weight: 600;
    margin: 6px 0;
    letter-spacing: 0.5px;
}

/* Юридический дисклеймер под ним */
.footer .disclaimer-legal {
    color: #888888;
    font-size: 0.8rem;
    max-width: 600px;
    margin: 6px auto 0 auto;
    line-height: 1.4;
}