/* Quiet Luxury Design System - SvetSalonPro */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;800&display=swap');

:root {
    /* Color Palette */
    --luxury-white: #ffffff;
    --luxury-cream: #faf9f6;
    --luxury-rose: #fdf2f8;
    --luxury-accent: #c19a83; /* Пыльная роза со скриншота */
    --luxury-gold-muted: #e5c9b1;
    --luxury-text: #1a1a1a;
    --luxury-text-muted: #666666;
    /* Dark Theme (for contact block) */
    --luxury-dark: #121212;
    --luxury-dark-text: #ffffff;
    --luxury-dark-muted: #888888;
    
    /* Fonts */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 50px rgba(212, 165, 116, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-blur: blur(15px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--luxury-white);
    color: var(--luxury-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, .serif-text {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
}

/* Floating Bubble Navigation (Updated based on screenshot) */
.nav-bubble {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 0.65rem 1rem 0.65rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(134, 212, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 1.15rem;
    z-index: 2000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo-circle {
    width: 42px;
    height: 42px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    overflow: hidden;
    text-decoration: none;
}

.nav-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--luxury-text);
    letter-spacing: -0.01em;
    text-decoration: none;
}

.nav-btn-black {
    background: #1a1a1a;
    color: white;
    padding: 0.8rem 2.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-btn-black:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.detail-nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 0.5rem;
    border: 0;
    background: transparent;
}

.burger-line {
    width: 28px;
    height: 2px;
    background: #1a1a1a;
    transition: 0.3s;
}

/* Fullscreen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-overlay-links {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}

.menu-overlay-link {
    font-family: var(--font-serif);
    font-size: 3rem;
    text-decoration: none;
    color: var(--luxury-text);
    transition: 0.3s;
    font-weight: 500;
}

.menu-overlay-link:hover {
    color: var(--luxury-accent);
}

.close-menu {
    position: absolute;
    top: 3rem;
    right: 3rem;
    font-size: 3.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--luxury-text);
}


/* Premium Buttons */
.btn-luxury {
    display: inline-block;
    padding: 0.9rem 2.25rem;
    background: var(--luxury-text);
    color: white;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-luxury:hover {
    background: transparent;
    border-color: var(--luxury-text);
    color: var(--luxury-text);
    transform: translateY(-2px);
}

.btn-luxury-outline {
    background: transparent;
    border-color: rgba(26, 26, 26, 0.18);
    color: var(--luxury-text);
}

.btn-luxury-outline:hover {
    background: rgba(255, 255, 255, 0.72);
    color: var(--luxury-text);
}

/* Sections */
.section-full {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-luxury {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(193, 154, 131, 0.18);
    color: var(--luxury-text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--luxury-text-muted);
    max-width: 42rem;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(26, 26, 26, 0.08);
    color: var(--luxury-text);
    font-size: 0.86rem;
    line-height: 1;
    white-space: nowrap;
    box-shadow: var(--shadow-soft);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    padding: 1rem 1.1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(26, 26, 26, 0.06);
    box-shadow: var(--shadow-soft);
}

.stat-card strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-card span {
    color: var(--luxury-text-muted);
    font-size: 0.9rem;
}

.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.detail-page {
    padding: 9rem 1.25rem 6rem;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
    margin-bottom: 7rem;
}

.detail-portrait {
    aspect-ratio: 4 / 5;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

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

.detail-role {
    display: block;
    color: var(--luxury-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
}

.detail-title {
    font-size: clamp(3.6rem, 7vw, 6rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.detail-lead {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--luxury-text-muted);
    max-width: 46rem;
}

.detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.detail-stat {
    min-width: 120px;
    padding: 0.9rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(26, 26, 26, 0.06);
    box-shadow: var(--shadow-soft);
}

.detail-stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.detail-stat span {
    color: var(--luxury-text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.detail-section-head {
    margin-bottom: 2rem;
}

.detail-section-head h2 {
    font-size: clamp(2.6rem, 5vw, 4rem);
}

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

.portfolio-img {
    aspect-ratio: 1;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
}

.legal-page {
    padding: 9rem 1.25rem 6rem;
}

.legal-shell {
    max-width: 960px;
    margin: 0 auto;
}

.legal-card {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(26, 26, 26, 0.06);
    box-shadow: var(--shadow-soft);
    margin-top: 1rem;
}

.legal-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.legal-card p {
    color: var(--luxury-text-muted);
    margin-top: 0.75rem;
}

@media (max-width: 900px) {
    .detail-hero {
        grid-template-columns: 1fr;
        margin-bottom: 4rem;
    }
    .detail-portrait {
        max-width: 520px;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .nav-bubble {
        top: 0.75rem;
        width: calc(100% - 1rem);
        padding: 0.55rem 0.65rem;
        gap: 0.55rem;
    }
    .nav-logo-circle {
        width: 38px;
        height: 38px;
    }
    .nav-logo-text,
    .detail-nav-links {
        display: none;
    }
    .nav-btn-black {
        margin-left: auto;
        padding: 0.7rem 1rem;
        font-size: 0.7rem;
    }
    .detail-page,
    .legal-page {
        padding-top: 7rem;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .detail-portrait {
        border-radius: 28px;
    }
}

.soft-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(26, 26, 26, 0.06);
    box-shadow: var(--shadow-soft);
    border-radius: 28px;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-link:hover {
    transform: translateY(-1px);
}

.contact-link-dark {
    background: white;
    color: var(--luxury-text);
    box-shadow: var(--shadow-soft);
}

.contact-link-light {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Dark Contact Block Section */
.section-dark {
    background: var(--luxury-dark);
    color: var(--luxury-dark-text);
    padding: 6rem 2rem;
    border-radius: 60px;
    margin: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-form-luxury {
    background: white;
    padding: 3rem;
    border-radius: 40px;
    color: var(--luxury-text);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--luxury-text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #eee;
    padding: 0.8rem 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.booking-selected {
    display: none;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(193, 154, 131, 0.14), rgba(229, 201, 177, 0.12));
    border: 1px solid rgba(193, 154, 131, 0.18);
}

.booking-selected.active {
    display: block;
    animation: bookingPulse 0.35s ease;
}

.booking-selected-label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--luxury-text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.booking-selected-value {
    color: var(--luxury-text);
    font-family: var(--font-serif);
    font-size: 1.35rem;
    line-height: 1.15;
}

.booking-status {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.45;
}

.booking-status.active {
    display: block;
}

.booking-status.success {
    background: rgba(34, 197, 94, 0.12);
    color: #166534;
}

.booking-status.error {
    background: rgba(239, 68, 68, 0.12);
    color: #991b1b;
}

.booking-status.info {
    background: rgba(193, 154, 131, 0.13);
    color: var(--luxury-text);
}

.booking-note {
    margin-top: 0.8rem;
    color: var(--luxury-text-muted);
    font-size: 0.82rem;
}

@keyframes bookingPulse {
    from {
        transform: translateY(6px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-input:focus {
    border-color: var(--luxury-gold);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .section-dark {
        margin: 1rem;
        padding: 4rem 1.5rem;
        border-radius: 40px;
    }
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* New Footer Luxury (based on client screenshot) */
.footer-luxury {
    background-color: #121212;
    color: #ffffff;
    padding: 6rem 0 3rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: #BFAE84; /* Золотой акцент */
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: #888;
    max-width: 350px;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
}

.footer-col-title {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-link {
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-contacts p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.footer-contacts a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contacts a:hover {
    color: #ffffff;
}

.footer-social-link {
    display: inline-flex;
    margin-top: 2rem;
    color: #ffffff;
    font-size: 1.3rem;
    transition: 0.3s;
}

.footer-social-link:hover {
    transform: translateY(-3px);
    color: var(--luxury-accent);
}

.footer-divider {
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.footer-legal {
    display: flex;
    gap: 2.5rem;
}

.footer-legal a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: #888;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-legal {
        justify-content: center;
        gap: 1.5rem;
    }
}
