/* ELLE SALON - Luxury Editorial Design */
:root {
    --rose-gold: #D4AF87;
    --rose-gold-dark: #B89968;
    --cream: #FAF6F1;
    --beige: #E8DED2;
    --charcoal: #2C2C2C;
    --grey: #6B6B6B;
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.2; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* Nav */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(250,246,241,0.98) 0%, transparent 100%);
    transition: all 0.4s ease;
}
.nav.scrolled {
    padding: 1.5rem 3rem;
    background: rgba(250,246,241,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--charcoal);
}
.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}
.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    transition: color 0.3s ease;
}
.nav-links a:not(.nav-btn):hover { color: var(--rose-gold); }
.nav-btn {
    padding: 0.75rem 1.75rem;
    background: var(--rose-gold);
    color: var(--white);
    border-radius: 30px;
    transition: all 0.3s ease;
}
.nav-btn:hover {
    background: var(--rose-gold-dark);
    transform: translateY(-2px);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,44,44,0.6), rgba(212,175,135,0.3));
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero-content {
    max-width: 800px;
}
.hero-tag {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.3s;
}
.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 2rem;
}
.line {
    display: block;
    opacity: 0;
}
.line:nth-child(1) { animation: fadeUp 0.8s ease forwards 0.5s; }
.line:nth-child(2) { animation: fadeUp 0.8s ease forwards 0.7s; }
.hero-text {
    font-size: 1.25rem;
    color: var(--beige);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.9s;
}
.hero-actions {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1.1s;
}
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
}
.btn-primary {
    background: var(--rose-gold);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--rose-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,135,0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--rose-gold);
    color: var(--rose-gold);
}
.btn-primary.full { width: 100%; justify-content: center; }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--rose-gold), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(15px); }
}

/* Sections */
section {
    padding: 6rem 0;
}
.section-label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
}
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 2rem;
}
.lead-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--grey);
    max-width: 800px;
    margin-bottom: 3rem;
}

/* Philosophy */
.philosophy {
    background: var(--white);
}
.philosophy-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}
.feature {
    text-align: center;
}
.feature-icon {
    font-size: 2rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}
.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.feature p {
    color: var(--grey);
    line-height: 1.7;
}

/* Services */
.services {
    background: var(--cream);
}
.services-header {
    margin-bottom: 4rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 4px;
    position: relative;
    transition: all 0.4s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.service-card.featured {
    border: 2px solid var(--rose-gold);
}
.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    padding: 0.5rem 1.25rem;
    background: var(--rose-gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 20px;
}
.service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(212,175,135,0.15);
    line-height: 1;
    margin-bottom: 1rem;
}
.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}
.service-card p {
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.service-price {
    font-size: 0.875rem;
    color: var(--grey);
}
.service-price span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rose-gold);
}

/* Gallery */
.gallery {
    background: var(--white);
}
.gallery-header {
    margin-bottom: 4rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
}
.gallery-item.large {
    grid-row: span 2;
    aspect-ratio: 4/5;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}
.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}
.gallery-overlay p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

/* Team */
.team {
    background: var(--cream);
}
.team-intro {
    font-size: 1.125rem;
    color: var(--grey);
    max-width: 700px;
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    background: var(--rose-gold);
    padding: 6rem 0;
}
.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}
.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    line-height: 1;
    opacity: 0.3;
}
.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}
.client-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.client-title {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Booking */
.booking {
    background: var(--white);
}
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.booking-text {
    font-size: 1.125rem;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 3rem;
}
.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.info-item {
    display: flex;
    gap: 1.5rem;
}
.info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    color: var(--rose-gold);
}
.info-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey);
    margin-bottom: 0.25rem;
}
.info-value {
    color: var(--charcoal);
    line-height: 1.6;
}
.booking-form {
    background: var(--cream);
    padding: 3rem;
    border-radius: 4px;
}
.booking-form h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.form-field {
    margin-bottom: 1.5rem;
}
.form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--grey);
    margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 1px solid rgba(44,44,44,0.1);
    border-radius: 4px;
    color: var(--charcoal);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--rose-gold);
}
.form-field textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--charcoal);
    padding: 3rem 0;
    color: var(--beige);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--rose-gold);
    margin-bottom: 0.75rem;
}
.footer-brand p {
    color: var(--grey);
    font-size: 0.9375rem;
}
.footer-legal {
    text-align: right;
}
.footer-legal p {
    color: var(--grey);
    font-size: 0.875rem;
}
.footer-legal a {
    color: var(--rose-gold);
    transition: color 0.3s ease;
}
.footer-legal a:hover {
    color: var(--white);
}

/* Chatbot */
.chatbot {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}
.chat-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--rose-gold);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212,175,135,0.4);
    transition: all 0.3s ease;
}
.chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(212,175,135,0.5);
}
.icon-close {
    display: none;
}
.chatbot.active .icon-msg {
    display: none;
}
.chatbot.active .icon-close {
    display: block;
}
.chat-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 380px;
    height: 520px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
}
.chatbot.active .chat-window {
    display: flex;
    animation: slideUp 0.3s ease;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.chat-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--beige);
}
.chat-header h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}
.chat-status {
    font-size: 0.875rem;
    color: var(--rose-gold);
}
.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}
.chat-msg {
    margin-bottom: 1.5rem;
}
.chat-msg p {
    padding: 1rem 1.25rem;
    background: var(--cream);
    border-radius: 12px;
    margin-bottom: 0.75rem;
}
.chat-msg.user p {
    background: var(--rose-gold);
    color: var(--white);
}
.chat-quick {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.chat-quick button {
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid var(--beige);
    border-radius: 8px;
    color: var(--charcoal);
    font-size: 0.875rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}
.chat-quick button:hover {
    border-color: var(--rose-gold);
    background: var(--cream);
}
.chat-form {
    padding: 1rem;
    border-top: 1px solid var(--beige);
    display: flex;
    gap: 0.75rem;
}
.chat-form input {
    flex: 1;
    padding: 0.875rem 1.125rem;
    background: var(--cream);
    border: 1px solid transparent;
    border-radius: 25px;
    color: var(--charcoal);
    font-family: inherit;
    font-size: 0.9375rem;
}
.chat-form input:focus {
    outline: none;
    border-color: var(--rose-gold);
}
.chat-form button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rose-gold);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.chat-form button:hover {
    background: var(--rose-gold-dark);
}

/* Responsive */
@media (max-width: 1200px) {
    .philosophy-features { grid-template-columns: 1fr; gap: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .booking-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    section { padding: 4rem 0; }
    .nav { padding: 1.5rem 2rem; }
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    .hamburger { display: flex; }
    .hero-title { font-size: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    .chat-window { width: calc(100vw - 2rem); right: 1rem; }
}
