/* ===== VARIABLES ===== */
:root {
    --color-bg: #1a1410;
    --color-bg-light: #2a2420;
    --color-text: #ffffff;
    --color-text-muted: #b0a8a0;
    --color-gold: #d4a574;
    --color-pink: #d68ba8;
    --color-coral: #e8957a;
    --color-rose: #d9849e;
    --border-color: #3a3430;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

a {
    text-underline-offset: 3px;
}

section[id] {
    scroll-margin-top: 100px;
}

:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    padding: 10px 16px;
    border-radius: 6px;
    background: var(--color-text);
    color: var(--color-bg);
    text-decoration: none;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    background-color: rgba(26, 20, 16, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav a:hover {
    color: var(--color-gold);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.phone:hover {
    color: var(--color-gold);
}

.btn-booking {
    background-color: var(--color-gold);
    color: var(--color-bg);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 2px solid var(--color-gold);
}

.btn-booking:hover {
    background-color: transparent;
    color: var(--color-gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 6rem 0;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-label::before,
.hero-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--color-gold);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .gold {
    color: var(--color-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

/* ===== SERVICES SHOWCASE ===== */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-box {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.02);
}

.service-box:hover {
    border-color: var(--color-gold);
    background: rgba(212, 165, 116, 0.05);
    transform: translateY(-5px);
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
}

.service-type {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-cta {
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background-color: var(--color-text);
    color: var(--color-bg);
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 2px solid var(--color-text);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-text);
}

.btn-submit {
    width: 100%;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    padding: 6rem 0;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--border-color);
}

.section-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-item {
    background-color: var(--color-bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s;
}

.portfolio-item:hover {
    border-color: var(--color-gold);
    transform: scale(1.03);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: 6rem 0;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--border-color);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.why-item {
    position: relative;
    padding: 3rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.why-item:nth-child(2n) {
    border-right: none;
}

.why-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.why-marker {
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--color-gold);
}

.why-marker.pink {
    background-color: var(--color-pink);
}

.why-marker.coral {
    background-color: var(--color-coral);
}

.why-marker.rose {
    background-color: var(--color-rose);
}

.why-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-text);
}

.why-item p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 6rem 0;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--border-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.review-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.review-stars {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.author-name {
    color: var(--color-text);
    font-weight: 600;
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    padding: 6rem 0;
    background-color: var(--color-bg);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.booking-info {
    display: flex;
    flex-direction: column;
}

.contact-details {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1rem;
}

.detail-value:hover {
    color: var(--color-gold);
}

.booking-map {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.booking-map iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
}

.map-external-link {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--color-gold);
    font-size: 0.9rem;
}

/* ===== BOOKING FORM ===== */
.booking-form-wrapper {
    display: flex;
    flex-direction: column;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--color-bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px;
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background-color: rgba(212, 165, 116, 0.05);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4a574' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 35px;
}

.form-group select option {
    color: #1a1410;
    background-color: #fff;
}

.form-group select optgroup {
    color: #7b4f2c;
    background-color: #f3ece5;
    font-weight: 700;
}

.form-hint {
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

.form-honey {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.form-status {
    min-height: 1.5rem;
    color: var(--color-text-muted);
    text-align: center;
}

.form-status.success { color: #8fd19e; }
.form-status.error { color: #ff9b91; }

.consent-field {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 0.75rem;
    align-items: start;
    color: var(--color-text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.consent-field input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-gold);
}

.consent-field a {
    color: var(--color-gold);
}

.btn-submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: rgba(26, 20, 16, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-contact a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.78rem;
}

.footer-legal a {
    color: var(--color-text-muted);
}

/* ===== SERVICES PAGE ===== */
.services-page {
    padding: 4rem 0;
    background-color: var(--color-bg);
}

.services-page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-page-header .section-label {
    display: block;
    margin-bottom: 1rem;
}

.services-page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.services-page-header p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    display: none;
}

.services-list {
    margin-bottom: 3rem;
}

.services-category-block {
    margin-bottom: 4rem;
    scroll-margin-top: 110px;
}

.category-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--color-text);
    margin: 0 0 1.5rem 0;
    font-weight: 600;
    display: inline-block;
}

.services-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-item-card {
    background: rgba(212, 165, 116, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s;
    cursor: pointer;
}

.service-item-card:hover {
    border-color: var(--color-gold);
    background: rgba(212, 165, 116, 0.05);
}

.service-item-card:focus-visible {
    border-color: var(--color-gold);
    background: rgba(212, 165, 116, 0.05);
}

.service-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
}

.service-marker.hair {
    background-color: var(--color-gold);
}

.service-marker.nails {
    background-color: var(--color-pink);
}

.service-marker.makeup {
    background-color: var(--color-coral);
}

.service-marker.brows {
    background-color: #98a8a8;
}

.service-marker.depilation {
    background-color: #7a9b7a;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.service-content p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.service-price {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
}

.price-note {
    max-width: 620px;
    margin: 1.25rem auto 0;
    color: var(--color-text-muted);
    font-size: 0.82rem;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 4rem 0 6rem;
}

.legal-document {
    max-width: 860px;
}

.legal-document h1 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
}

.legal-updated,
.legal-notice {
    color: var(--color-text-muted);
}

.legal-notice {
    margin: 1.5rem 0 2.5rem;
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--color-gold);
    background: var(--color-bg-light);
}

.legal-document section {
    margin-top: 2.25rem;
}

.legal-document h2 {
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
}

.legal-document p,
.legal-document li {
    color: var(--color-text-muted);
}

.legal-document ul {
    margin: 0.75rem 0 0 1.25rem;
}

.legal-document li + li {
    margin-top: 0.45rem;
}

.legal-document a {
    color: var(--color-gold);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .booking-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav {
        gap: 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--color-bg-light);
        border-bottom: 1px solid var(--border-color);
        padding: 1rem 0;
        gap: 0;
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 1rem 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .services-showcase {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .why-grid,
    .reviews-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        border-right: none !important;
        border-bottom: 1px solid var(--border-color) !important;
        padding: 2rem;
    }

    .why-item:last-child {
        border-bottom: none !important;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-page-header h1 {
        font-size: 2rem;
    }

    .services-category-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-category {
        grid-template-columns: 1fr;
    }

    .category-label {
        writing-mode: horizontal-tb;
        text-align: left;
        transform: none;
        font-size: 1.3rem;
        display: block;
        margin-bottom: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-contact,
    .footer-legal {
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-label {
        font-size: 0.8rem;
    }

    .hero-label::before,
    .hero-label::after {
        width: 20px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .header-right {
        gap: 1rem;
    }

    .phone {
        display: none;
    }

    .btn-booking {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .services-showcase {
        gap: 1rem;
    }

    .service-box {
        padding: 1.5rem;
    }

    .service-name {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .why-item {
        padding-left: 2.5rem;
    }

    .services-page-header h1 {
        font-size: 1.5rem;
    }

    .booking-map iframe {
        height: 300px;
    }
}
