:root {
    --beauty-bg: #fffcf9;
    --beauty-text: #2c2c2c;
    --beauty-accent: #d4a373;
    --beauty-accent-light: #faedcd;
    --beauty-accent-dark: #b08e48;
    --beauty-muted: #666666;
    --beauty-border: rgba(212, 163, 115, 0.2);
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Jost', sans-serif;
    --section-padding: 120px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--beauty-bg);
    color: var(--beauty-text);
    line-height: 1.6;
}

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

/* Header */
.beauty-header {
    padding: 25px 0;
    border-bottom: 1px solid var(--beauty-border);
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--beauty-text);
    text-decoration: none;
}

.logo span {
    display: block;
    font-size: 0.8rem;
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: 0.3em;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--beauty-text);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--beauty-accent);
}

.demo-exit {
    border-bottom: 1px solid var(--beauty-accent);
}

.nav-booking-btn {
    background: var(--beauty-text);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background 0.3s;
}

.nav-booking-btn:hover {
    background: var(--beauty-accent);
}

/* Hero */
.hero {
    height: 95vh;
    background-image: url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    padding: 80px;
    background: rgba(255, 252, 249, 0.92);
    backdrop-filter: blur(15px);
    max-width: 650px;
    margin-left: 8%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.hero-tag {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--beauty-accent);
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 45px;
    color: var(--beauty-muted);
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.booking-btn,
.outline-btn {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.booking-btn {
    background: var(--beauty-accent);
    color: white;
}

.booking-btn:hover {
    background: var(--beauty-accent-dark);
}

.outline-btn {
    border: 1px solid var(--beauty-text);
    color: var(--beauty-text);
}

.outline-btn:hover {
    background: var(--beauty-text);
    color: white;
}

/* Highlight Bar */
.highlight-bar {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid var(--beauty-border);
}

.vibe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.vibe-item {
    border-right: 1px solid var(--beauty-border);
}

.vibe-item:last-child {
    border-right: none;
}

.vibe-val {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--beauty-text);
    line-height: 1;
    margin-bottom: 10px;
}

.vibe-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--beauty-muted);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header span,
.sec-label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--beauty-accent);
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    margin-top: 15px;
}

/* Philosophy */
.philosophy-section {
    padding: var(--section-padding) 40px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.philosophy-text h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin: 20px 0;
    line-height: 1.2;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: var(--beauty-muted);
    margin-bottom: 40px;
}

.phil-features {
    display: grid;
    gap: 30px;
}

.feat {
    display: flex;
    gap: 20px;
}

.feat i {
    width: 30px;
    height: 30px;
    color: var(--beauty-accent);
}

.feat h4 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.feat p {
    font-size: 0.95rem;
}

.philosophy-image img {
    width: 100%;
    border-radius: 200px 200px 0 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

/* Services */
.services {
    padding: var(--section-padding) 0;
    background: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-item {
    text-align: center;
    background: var(--beauty-bg);
    padding: 40px;
    transition: transform 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.image-wrapper {
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 50%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Pricing Menu */
.pricing-section {
    padding: var(--section-padding) 40px;
}

.pricing-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-cat h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--beauty-border);
    padding-bottom: 15px;
}

.price-cat ul {
    list-style: none;
}

.price-cat li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--beauty-muted);
}

.price-cat li span:last-child {
    font-weight: 500;
    color: var(--beauty-text);
}

/* Team Specialists */
.team-section {
    padding: var(--section-padding) 40px;
    text-align: center;
}

.specialist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.specialist-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    margin-bottom: 20px;
    filter: sepia(0.2);
    transition: filter 0.3s;
}

.specialist-card:hover img {
    filter: sepia(0);
}

.spec-info h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
}

.spec-info span {
    text-transform: uppercase;
    color: var(--beauty-accent);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
}

/* Gallery Filter */
.gallery-section {
    padding: var(--section-padding) 40px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.filter-btn {
    background: none;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.filter-btn.active {
    border-color: var(--beauty-accent);
    color: var(--beauty-accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.hide {
    display: none;
}

/* Booking Section */
.booking-section {
    background: var(--beauty-accent-light);
    padding: 100px 0;
}

.booking-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-info h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin: 15px 0;
    font-weight: 400;
}

.booking-info p {
    max-width: 500px;
    color: var(--beauty-muted);
}

.hours {
    margin-top: 30px;
}

.booking-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.primary-btn,
.secondary-btn {
    padding: 22px 50px;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.primary-btn {
    background: var(--beauty-text);
    color: white;
}

.secondary-btn {
    border: 1px solid var(--beauty-text);
    color: var(--beauty-text);
}

/* Footer */
.beauty-footer {
    padding: 100px 0 0;
    background: white;
    border-top: 1px solid var(--beauty-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 300px;
    color: var(--beauty-muted);
}

.footer-nav h4,
.socials h4 {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    margin-bottom: 25px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a,
.socials a {
    text-decoration: none;
    color: var(--beauty-muted);
    font-size: 0.9rem;
    display: block;
    transition: color 0.3s;
}

.footer-nav a:hover,
.socials a:hover {
    color: var(--beauty-accent);
}

.socials a {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--beauty-border);
    padding: 30px 0;
    text-align: center;
    color: var(--beauty-muted);
    font-size: 0.8rem;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--beauty-text);
    transition: all 0.3s;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--beauty-bg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav-overlay.open {
    transform: translateX(0);
}

.mobile-nav-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--beauty-text);
    line-height: 1;
}

.mobile-nav-overlay ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-overlay ul a {
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--beauty-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.mobile-nav-overlay ul a:hover {
    color: var(--beauty-accent);
}

.mobile-nav-cta {
    display: inline-block;
    background: var(--beauty-accent) !important;
    color: white !important;
    padding: 14px 35px;
    font-size: 1rem !important;
    font-family: var(--font-sans) !important;
    font-weight: 500;
}

/* Tablet (1024px) */
@media (max-width: 1024px) {
    :root { --section-padding: 80px; }

    .hero-content {
        margin-left: 40px;
        padding: 60px;
    }

    .philosophy-grid,
    .pricing-menu,
    .booking-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .philosophy-image {
        order: -1;
    }

    .booking-info p {
        margin: 0 auto 30px;
    }

    .vibe-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .vibe-item {
        border-right: none;
    }

    .specialist-grid {
        gap: 25px;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    :root { --section-padding: 60px; }

    .container {
        padding: 0 20px;
    }

    /* Nav */
    .nav-links,
    .nav-booking-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        height: auto;
        min-height: 100svh;
        align-items: flex-end;
        padding-bottom: 60px;
    }

    .hero-content {
        margin: 0 20px;
        padding: 40px 30px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .booking-btn,
    .outline-btn {
        text-align: center;
        padding: 16px 30px;
    }

    /* Stats Bar */
    .vibe-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .vibe-item {
        border-right: none;
    }

    .vibe-val {
        font-size: 2.2rem;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    /* Philosophy */
    .philosophy-section {
        padding: var(--section-padding) 20px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .philosophy-image {
        order: -1;
    }

    .philosophy-text h2 {
        font-size: 2.5rem;
    }

    .feat {
        text-align: left;
    }

    /* Services */
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 30px 20px;
    }

    /* Pricing */
    .pricing-section {
        padding: var(--section-padding) 20px;
    }

    .pricing-menu {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Team */
    .team-section {
        padding: var(--section-padding) 20px;
    }

    .specialist-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    /* Gallery */
    .gallery-section {
        padding: var(--section-padding) 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-filters {
        gap: 10px;
        flex-wrap: wrap;
    }

    /* Booking */
    .booking-section {
        padding: 70px 0;
    }

    .booking-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .booking-info h2 {
        font-size: 2.5rem;
    }

    .booking-info p {
        margin: 0 auto 20px;
    }

    .booking-cta {
        width: 100%;
    }

    .primary-btn,
    .secondary-btn {
        padding: 18px 30px;
        width: 100%;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}

/* Small phones (480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .philosophy-text h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .vibe-grid {
        grid-template-columns: 1fr;
    }

    .vibe-item {
        border-bottom: 1px solid var(--beauty-border);
        padding-bottom: 20px;
    }

    .vibe-item:last-child {
        border-bottom: none;
    }
}