* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080808;
    color: #f5f5f5;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================= HEADER ================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.97);
    border-bottom: 1px solid #302817;
}

.header-container {
    max-width: 1250px;
    margin: auto;
    min-height: 76px;
    padding: 10px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 50%;
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name strong {
    color: #d7b56d;
    font-size: 19px;
    letter-spacing: 3px;
}

.brand-name span {
    color: #aaa;
    font-size: 10px;
    letter-spacing: 4px;
    margin-top: 6px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 27px;
}

.navigation a {
    color: #ddd;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.navigation a:hover,
.navigation a.active {
    color: #d7b56d;
}

/* ================= HERO ================= */

.hero {
    min-height: 570px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("assets/spa-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px 20px;
}

.hero-symbol {
    color: #d7b56d;
    font-size: 32px;
    margin-bottom: 12px;
}

.hero-small {
    color: #d7b56d;
    font-size: 12px;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.hero h1 {
    color: #fff;
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero-subtitle {
    color: #d7b56d;
    margin: 20px 0 30px;
    font-size: 15px;
    letter-spacing: 4px;
}

.gold-button {
    display: inline-block;
    padding: 13px 28px;
    border: 1px solid #d7b56d;
    color: #d7b56d;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.gold-button:hover {
    background: #d7b56d;
    color: #080808;
}

/* ================= COMMON SECTIONS ================= */

.about-section,
.therapists-section,
.benefits-section,
.contact-section {
    max-width: 1250px;
    margin: auto;
    padding: 80px 25px;
}

.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
}

.section-title span {
    color: #d7b56d;
    font-size: 16px;
}

.section-title h2 {
    color: #fff;
    font-size: clamp(25px, 4vw, 38px);
    font-weight: 400;
    text-align: center;
}

.section-description,
.about-description {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
    color: #999;
    font-size: 15px;
}

.about-description {
    margin-bottom: 0;
}

/* ================= THERAPISTS ================= */

.therapists-section {
    background: #0b0b0b;
}

.therapist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.therapist-card {
    overflow: hidden;
    background: #111;
    border: 1px solid #2b2519;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.therapist-card:hover {
    transform: translateY(-5px);
    border-color: #9d7b3f;
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}

.profile-image {
    position: relative;
    height: 330px;
    overflow: hidden;
    background: #181818;
}

.profile-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.available {
    position: absolute;
    top: 12px;
    right: 12px;

    padding: 5px 9px;
    background: rgba(0,0,0,0.78);
    color: #b9d89b;

    border: 1px solid #53683f;
    border-radius: 20px;

    font-size: 10px;
    letter-spacing: 0.5px;
}

.available:first-letter {
    color: #7bc15b;
}

.profile-content {
    padding: 20px 18px 22px;
    text-align: center;
}

.profile-content h3 {
    color: #d7b56d;
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 5px;
}

.age-city {
    color: #ddd;
    font-size: 12px;
}

.age-city b {
    color: #75613c;
    margin: 0 6px;
}

.profession {
    color: #888;
    font-size: 11px;
    margin: 6px 0 15px;
}

/* ================= PROFILE BUTTONS ================= */

.profile-content a {
    width: 100%;
    display: block;
    margin-top: 8px;
    padding: 10px 12px;

    border-radius: 3px;
    font-size: 11px;
    letter-spacing: 0.5px;

    transition: 0.3s;
}

.details-button {
    background: #1b1b1b;
    border: 1px solid #65502e;
    color: #d7b56d;
}

.details-button:hover {
    background: #d7b56d;
    color: #111;
}

.details-button span {
    float: right;
    font-size: 17px;
    line-height: 12px;
}

.whatsapp-button {
    background: #152719;
    border: 1px solid #315b3b;
    color: #8fd39b;
}

.whatsapp-button:hover {
    background: #245d31;
    color: #fff;
}

.telegram-button {
    background: #15232d;
    border: 1px solid #31566d;
    color: #86c8eb;
}

.telegram-button:hover {
    background: #17618b;
    color: #fff;
}

/* ================= BENEFITS ================= */

.benefits-section {
    background: #0a0a0a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #2b2519;
    background: #111;
}

.benefit-card > span {
    color: #d7b56d;
    font-size: 25px;
}

.benefit-card h3 {
    margin: 12px 0 8px;
    color: #d7b56d;
    font-size: 18px;
    font-weight: 400;
}

.benefit-card p {
    color: #888;
    font-size: 13px;
}

/* ================= CONTACT ================= */

.contact-section {
    text-align: center;
}

.contact-section p {
    color: #999;
    margin: 20px 0 25px;
}

.contact-button {
    display: inline-block;
    padding: 12px 30px;
    background: #d7b56d;
    color: #080808;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.contact-button:hover {
    background: #fff;
}

/* ================= FOOTER ================= */

.footer {
    text-align: center;
    padding: 45px 20px;
    border-top: 1px solid #292319;
    background: #050505;
}

.footer-brand {
    color: #d7b56d;
    font-size: 20px;
    letter-spacing: 4px;
}

.footer-brand span {
    display: block;
    color: #777;
    font-size: 9px;
    letter-spacing: 5px;
    margin-top: 5px;
}

.footer p {
    margin-top: 18px;
    color: #666;
    font-size: 11px;
}

/* ================= FLOATING TELEGRAM ================= */

.floating-telegram {
    position: fixed;
    bottom: 18px;
    z-index: 999;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 10px 14px;
    border-radius: 30px;

    background: #168ac1;
    color: #fff;

    box-shadow: 0 5px 25px rgba(0,0,0,0.45);

    font-size: 11px;
    transition: 0.3s;
}

.floating-telegram:hover {
    transform: translateY(-3px);
    background: #1a9bd8;
}

.floating-left {
    left: 18px;
}

.floating-right {
    right: 18px;
}

.telegram-icon {
    font-size: 18px;
}

.floating-telegram small {
    display: block;
    font-size: 7px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* ================= TABLET ================= */

@media (max-width: 1050px) {

    .therapist-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .navigation {
        gap: 16px;
    }

}


/* ================= MOBILE ================= */

@media (max-width: 760px) {

    .header-container {
        min-height: auto;
        padding: 12px 16px;
        flex-direction: column;
    }

    .navigation {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .navigation a {
        font-size: 10px;
    }

    .hero {
    min-height: 570px;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("assets/spa-background.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

@media (max-width:600px) {

.hero {
    min-height:570px;
    height:570px;
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

}
    .about-section,
    .therapists-section,
    .benefits-section,
    .contact-section {
        padding: 60px 15px;
    }

    .therapist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .profile-image {
        height: 270px;
    }

    .profile-content {
        padding: 15px 10px 18px;
    }

    .profile-content h3 {
        font-size: 17px;
    }

    .profession {
        font-size: 10px;
    }

    .profile-content a {
        font-size: 10px;
        padding: 9px 7px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .floating-telegram {
        padding: 9px 11px;
    }

}


/* ================= SMALL MOBILE ================= */

@media (max-width: 430px) {

    .brand-logo {
        width: 44px;
        height: 44px;
    }

    .brand-name strong {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .therapist-grid {
        grid-template-columns: 1fr;
    }

    .profile-image {
        height: 390px;
    }

    .floating-left {
        left: 8px;
    }

    .floating-right {
        right: 8px;
    }

}
/* ==============================
   FIXED TELEGRAM BUTTONS
   ============================== */

.fixed-telegram-buttons {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 18px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;

    z-index: 9999;
    pointer-events: none;
}

.fixed-telegram-buttons .floating-telegram {
    position: static !important;

    width: 180px;
    min-width: 180px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;
    box-sizing: border-box;

    background: linear-gradient(135deg, #0088cc, #229ed9);
    color: #fff;

    text-decoration: none;
    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);

    pointer-events: auto;
}
@media (max-width: 480px) {
    .fixed-telegram-buttons {
        gap: 12px;
        bottom: 14px;
    }

    .fixed-telegram-buttons .floating-telegram {
        width: 145px;
        min-width: 145px;
        height: 54px;
        padding: 8px 12px;
        font-size: 13px;
    }
}
.fixed-telegram-buttons .floating-telegram:hover {
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 480px) {

    .fixed-telegram-buttons {
        gap: 12px;
        bottom: 14px;
    }

    .fixed-telegram-buttons .floating-telegram {
        width: 145px;
        min-width: 145px;
        height: 54px;

        padding: 8px 12px;
        font-size: 13px;
    }
}
/* ================= AGE VERIFICATION ================= */

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.78);
    padding: 20px;

    overflow-y: auto;
}

.age-gate-box {
    width: 100%;
    max-width: 650px;

    background: #ffffff;
    color: #222;

    text-align: center;

    padding: 55px 45px;
    border-radius: 8px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-gate-box h1 {
    margin: 0 0 55px;

    font-size: 42px;
    line-height: 1.25;
    font-weight: 800;

    color: #050505;
}

.age-gate-box p {
    margin: 0 0 45px;

    font-size: 23px;
    line-height: 1.65;

    color: #444;
}

.age-gate-box strong {
    color: #222;
}

.terms-link {
    color: #d43d2f;
    text-decoration: none;
    font-weight: 600;
}

.age-accept {
    display: block;

    margin: 15px auto 25px;

    min-width: 275px;
    padding: 20px 35px;

    border: none;
    border-radius: 28px;

    background: #ed3020;
    color: #fff;

    font-size: 25px;
    font-weight: 500;

    cursor: pointer;
}

.age-accept:hover {
    background: #c92518;
}

.age-decline {
    border: none;
    background: transparent;

    color: #d43d2f;

    font-size: 23px;

    cursor: pointer;
}

.age-decline:hover {
    text-decoration: underline;
}


/* MOBILE */
@media (max-width: 600px) {

    .age-gate {
        padding: 12px;
    }

    .age-gate-box {
        padding: 35px 22px;
        max-height: 95vh;
        overflow-y: auto;
    }

    .age-gate-box h1 {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .age-gate-box p {
        font-size: 18px;
        line-height: 1.55;
        margin-bottom: 30px;
    }

    .age-accept {
        min-width: 210px;
        padding: 16px 25px;
        font-size: 21px;
    }

    .age-decline {
        font-size: 19px;
    }
}
@media (max-width: 600px) {
    .hero {
        min-height: 500px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}
/* ================= TERMS & CONDITIONS ================= */

.terms-section {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 25px;
    background: #080808;
    color: #eeeeee;
    box-sizing: border-box;
    line-height: 1.7;
}

.terms-section h2 {
    text-align: center;
    color: #d7b56d;
    font-size: 30px;
    margin: 0 0 30px;
}

.terms-section h3 {
    color: #d7b56d;
    font-size: 20px;
    margin: 28px 0 10px;
}

.terms-section p {
    color: #dddddd;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 18px;
}

/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .terms-section {
        width: 100%;
        padding: 35px 20px;
        margin: 0;
        overflow: hidden;
    }

    .terms-section h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .terms-section h3 {
        font-size: 18px;
        margin-top: 22px;
    }

    .terms-section p {
        font-size: 14px;
        line-height: 1.7;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}