:root {
    --primary: #705563;
    --secondary: #f7e6f7;
    --bg: #fff6fa;
    --glass: rgba(255, 255, 255, 0.85);
    --glow: 0 0 24px 4px #c2398944;
    --radius: 2.5rem;
    --transition: 0.5s cubic-bezier(.77,0,.18,1);
}
* { box-sizing: border-box; }
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff6fa 0%, #7e5f6f 40%, #f7e6f7 100%);
    background-attachment: fixed;
    color: #5a3b4c;
    font-family: 'Inter', Arial, sans-serif;
    min-height: 100%;
    scroll-behavior: smooth;
    transition: background 1.2s cubic-bezier(.77,0,.18,1);
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s cubic-bezier(.77,0,.18,1);
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 3vw;
    background: var(--glass);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 2px 24px 0 #e48abf22;
    transform: translateZ(0) translateY(0) scaleX(1);
    transform-origin: center top;
    transition: transform 0.55s cubic-bezier(.77,0,.18,1), border-radius 0.55s cubic-bezier(.77,0,.18,1), background 0.55s cubic-bezier(.77,0,.18,1), box-shadow 0.55s cubic-bezier(.77,0,.18,1);
    will-change: transform, border-radius, box-shadow, backdrop-filter;
    -webkit-font-smoothing: antialiased;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.navbar.scrolled {
    transform: translateY(18px) scaleX(0.96);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.97);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
    backdrop-filter: blur(22px) saturate(1.2);
    box-shadow: 0 8px 40px 0 #e48abf55;
}
.navbar .logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    color: var(--primary);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 8px #e48abf33;
    user-select: none;
}
.navbar nav {
    display: flex;
    gap: 2rem;
}
.navbar nav a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5a3b4c;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    transition: background 0.35s cubic-bezier(.77,0,.18,1), color 0.35s cubic-bezier(.77,0,.18,1), box-shadow 0.35s cubic-bezier(.77,0,.18,1), transform 0.35s cubic-bezier(.77,0,.18,1);
    position: relative;
}
.navbar nav a:hover, .navbar nav a.active {
    background: linear-gradient(90deg, #e48abf33 0%, #e48abf11 100%);
    color: var(--primary);
    box-shadow: 0 0 18px 4px #e48abf88;
    transform: translateY(-3px) scale(1.08);
    animation: navGlow 0.7s cubic-bezier(.77,0,.18,1);
}
@keyframes navGlow {
    0% { box-shadow: 0 0 0 #e48abf00; }
    100% { box-shadow: 0 0 18px 4px #da84b688; }
}
.navbar nav a i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: color 0.35s cubic-bezier(.77,0,.18,1);
}
.navbar .menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
}
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
    padding-top: 7rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, #fff6fa 0%, #f7e6f7 100%);
    background-size: cover;
    background: none;
    background-attachment: fixed;
    animation: heroBgFade 2.2s cubic-bezier(.77,0,.18,1);
}
@keyframes heroBgFade {
    from { background: none;}
    to { background: none;}
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    animation: heroFadeIn 1.5s cubic-bezier(.77,0,.18,1);
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(60px) scale(0.96);}
    to { opacity: 1; transform: translateY(0) scale(1);}
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--primary);
    letter-spacing: 2px;
    text-shadow: 0 0 32px #705563, 0 2px 8px #705563, 0 0 48px  #705563;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    animation: titlePopIn 1.2s cubic-bezier(.77,0,.18,1);
}
@keyframes titlePopIn {
    0% { opacity: 0; transform: scale(0.92) translateY(30px);}
    80% { opacity: 1; transform: scale(1.08) translateY(-8px);}
    100% { opacity: 1; transform: scale(1) translateY(0);}
}
.hero-tagline {
    font-size: 1.5rem;
    color: #5a3b4c;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #dd6eaf 0%, #fff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: taglineFade 2.5s cubic-bezier(.77,0,.18,1);
}
@keyframes taglineFade {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: linear-gradient(90deg, #7e556d 0%, #f7e6f7 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 2rem;
    box-shadow: 0 0 24px 4px #63445655;
    cursor: pointer;
    transition: box-shadow 0.4s cubic-bezier(.77,0,.18,1), transform 0.4s cubic-bezier(.77,0,.18,1), background 0.4s cubic-bezier(.77,0,.18,1);
    margin-top: 1.5rem;
    text-shadow: none;
    animation: btnPopIn 1.3s cubic-bezier(.77,0,.18,1);
}
@keyframes btnPopIn {
    0% { opacity: 0; transform: scale(0.9);}
    80% { opacity: 1; transform: scale(1.12);}
    100% { opacity: 1; transform: scale(1);}
}
.hero-btn:hover {
    box-shadow: 0 0 36px 8px #fcfcfccc;
    background: linear-gradient(90deg, #f7e6f7 0%, #6b4b5e 100%);
    color: var(--primary);
    transform: scale(1.09) translateY(-3px) rotate(-1deg);
    animation: none;
}
section {
    padding: 5rem 0 4rem 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.section-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 2.2rem;
    text-shadow: 0 0 12px #d886b633;
    animation: sectionHeaderFade 1.1s cubic-bezier(.77,0,.18,1);
}
@keyframes sectionHeaderFade {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}
.section-content {
    background: rgba(255, 255, 255, 0.88);
    border-radius: var(--radius);
    box-shadow: 0 0 32px #e48abf22;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.4s cubic-bezier(.77,0,.18,1), transform 0.4s cubic-bezier(.77,0,.18,1);
    animation: sectionContentFade 1.2s cubic-bezier(.77,0,.18,1);
}
@keyframes sectionContentFade {
    from { opacity: 0; transform: scale(0.98) translateY(40px);}
    to { opacity: 1; transform: scale(1) translateY(0);}
}
.section-content:hover {
    box-shadow: 0 0 48px #e48abf99;
    transform: scale(1.012) translateY(-2px);
}

.about-icons, .treatments-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}
.about-icon, .treatment-card {
    background: rgba(196, 191, 191, 0.88);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 16px #e48abf22;
    transition: box-shadow 0.4s cubic-bezier(.77,0,.18,1), transform 0.4s cubic-bezier(.77,0,.18,1);
    text-align: center;
    animation: cardFadeIn 1.2s cubic-bezier(.77,0,.18,1);
    overflow: hidden;
}

@keyframes cardFadeIn {
    from { opacity: 0; transform: scale(0.96) translateY(30px);}
    to { opacity: 1; transform: scale(1) translateY(0);}
}
.about-icon:hover, .treatment-card:hover {
    box-shadow: 0 0 32px #e48abfcc;
    transform: translateY(-8px) scale(1.06) rotate(-1.5deg);
}
.about-icon i, .treatment-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 18px #e48abf88;
    animation: iconPop 1.1s cubic-bezier(.77,0,.18,1);
}
@keyframes iconPop {
    0% { opacity: 0; transform: scale(0.7);}
    80% { opacity: 1; transform: scale(1.18);}
    100% { opacity: 1; transform: scale(1);}
}
.about-icon span, .treatment-card span {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #5a3b4c;
    font-family: 'Playfair Display', serif;
}
.about-icon p, .treatment-card p {
    color: #7d5c6b;
    font-size: 1rem;
    margin: 0;
}

.treatment-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 12px #e48abf44;
    transition: transform 0.4s cubic-bezier(.77,0,.18,1);
    display: block;
    background: #fff6fa;
}
.treatment-card:hover img {
    transform: scale(1.05);
}
#treatments {
    margin-top: -2rem;
}


@media (max-width: 900px) {
    .navbar nav {
        display: none;
        position: absolute;
        top: 100%; right: 2vw;
        background: var(--glass);
        border-radius: var(--radius);
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 2rem;
        box-shadow: 0 8px 32px #e48abf33;
        animation: navMenuFadeIn 0.5s cubic-bezier(.77,0,.18,1);
    }
    .navbar nav.open {
        display: flex;
    }
    .navbar .menu-toggle {
        display: block;
    }
}
@keyframes navMenuFadeIn {
    from { opacity: 0; transform: translateY(-20px);}
    to { opacity: 1; transform: translateY(0);}
}


@media (max-width: 800px) {
    .about-icons, .treatments-list {
        gap: 1.5rem;
    }
    .about-icon, .treatment-card {
        padding: 1.2rem 0.7rem;
    }
}
@media (max-width: 700px) {
    .hero-title { font-size: 2.2rem; }
    .section-header { font-size: 1.3rem; }
    .section-content { padding: 1.2rem 0.7rem; }
    section { padding: 3rem 0 2rem 0; }
    .footer-socials a { font-size: 1.3rem; width: 2rem; height: 2rem;}
}
@media (max-width: 700px) {
    .hero-title {
        font-size: 2rem;
        text-shadow: 0 0 10px rgba(112,85,99,0.5);
    }
    .hero-tagline {
        font-size: 1.1rem;
        background: none;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: initial;
        color: #5a3b4c;
        text-shadow: 0 0 6px rgba(255,255,255,0.8);
    }
}
@media (max-width: 500px) {
    .navbar { padding: 0.5rem 2vw; }
    .navbar.scrolled { transform: translateY(12px) scaleX(0.94); }
    .footer-socials { gap: 1rem; }
}
       footer {
            margin-top: auto;
            padding: 2.5rem 0 1.2rem 0;
            background: linear-gradient(90deg, #fff6fa 0%, #f7e6f7 100%);
            text-align: center;
            color: #7d5c6b;
            font-size: 1.08rem;
            border-top: 1px solid #e48abf33;
            box-shadow: 0 -2px 32px #e48abf22;
            position: relative;
            z-index: 2;
            border-radius: var(--radius) var(--radius) 0 0;
            animation: footerFadeIn 1.2s cubic-bezier(.77,0,.18,1);
        }
        @keyframes footerFadeIn {
            from { opacity: 0; transform: translateY(40px);}
            to { opacity: 1; transform: translateY(0);}
        }
        .footer-socials {
            margin-bottom: 1.1rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            align-items: center;
        }
        .footer-socials a {
            color: var(--primary);
            font-size: 2rem;
            background: #fff6fa;
            border-radius: 50%;
            width: 2.7rem;
            height: 2.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 12px #e48abf22;
            transition: 
                color 0.4s cubic-bezier(.77,0,.18,1), 
                background 0.4s cubic-bezier(.77,0,.18,1),
                box-shadow 0.4s cubic-bezier(.77,0,.18,1),
                transform 0.4s cubic-bezier(.77,0,.18,1);
            text-decoration: none;
        }
        .footer-socials a:hover {
            color: #fff;
            background: var(--primary);
            box-shadow: 0 0 18px #e48abfcc;
            transform: scale(1.13) translateY(-2px);
        }
        footer span#year {
            font-weight: 700;
            color: var(--primary);
        }













