
:root {
    /* Primary Colors */
    --soft-lavender: #E6E6FA;
    --muted-sage: #8A9A86;
    --dusty-peach: #F0D9C8;
    --warm-sand: #F5F1E7;
    --cloud-white: #FAFAFA;
    --soft-eucalyptus: #B2C8B8;
    
    /* Accent Colors */
    --sunrise-coral: #F2A68D;
    --aqua-mist: #A7E0E0;
    --rose-warmth: #EEBFBC;
    
    /* Gradients */
    --healing-sky: linear-gradient(120deg, #e0f2fe, #fdf4ff);
    --calm-gradient: linear-gradient(to right, var(--warm-sand), var(--soft-lavender));
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito', sans-serif;
    
    /* Transitions */
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-soft: 0.4s ease-in-out;
}

body {
    font-family: var(--font-body);
    background-color: var(--cloud-white);
    color: #4A4A4A;
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #333333;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--muted-sage);
    transition: var(--transition-soft);
}

a:hover {
    color: var(--sunrise-coral);
}

/* Utilities */
.bg-sand { background-color: var(--warm-sand); }
.bg-sage { background-color: var(--muted-sage); color: var(--cloud-white); }
.bg-peach { background-color: var(--dusty-peach); }
.bg-lavender { background-color: var(--soft-lavender); }
.text-sage { color: var(--muted-sage) !important; }
.text-coral { color: var(--sunrise-coral) !important; }

/* Buttons */
.btn-heal {
    background-color: var(--muted-sage);
    color: var(--cloud-white);
    border-radius: 50px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    transition: var(--transition-soft);
    position: relative;
    overflow: hidden;
}
.btn-heal:hover {
    background-color: var(--soft-eucalyptus);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(138, 154, 134, 0.2);
}
.btn-outline-heal {
    border: 1px solid var(--muted-sage);
    color: var(--muted-sage);
    border-radius: 50px;
    padding: 12px 32px;
    background: transparent;
    transition: var(--transition-soft);
}
.btn-outline-heal:hover {
    background-color: var(--muted-sage);
    color: var(--cloud-white);
}

/* Navbar */
.navbar {
    background-color: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(138, 154, 134, 0.1);
    padding: 20px 0;
    transition: var(--transition-soft);
}
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.navbar-brand img {
    height: 40px;
}
.nav-link {
    color: #4a4a4a !important;
    font-weight: 500;
    font-size: 15px;
    margin: 0 10px;
    position: relative;
}
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--muted-sage);
    transition: var(--transition-soft);
}
.nav-link:hover::before, .nav-link.active::before {
    width: 100%;
}
.dropdown-toggle::after {
    display: none !important;
}

.hero-wrap {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--healing-sky);
    overflow: hidden;
    padding-top: 80px;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}
.ambient-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: breathe 10s infinite alternate ease-in-out;
}
.ac-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: var(--soft-lavender); }
.ac-2 { bottom: -20%; right: -10%; width: 60vw; height: 60vw; background: var(--dusty-peach); animation-delay: -5s; }

@keyframes breathe {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(20px, -20px); }
}

/* Sections */
.section-padding { padding: 120px 0; }
.section-title { font-size: 3rem; margin-bottom: 20px; }
.section-subtitle { font-size: 1.1rem; color: var(--muted-sage); text-transform: uppercase; letter-spacing: 2px; }

/* Cards */
.healing-card {
    background: var(--cloud-white);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition-slow);
    border: 1px solid rgba(138,154,134,0.1);
    height: 100%;
}
.healing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 154, 134, 0.08);
}
.healing-icon {
    width: 60px;
    height: 60px;
    background: var(--warm-sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--muted-sage);
    margin-bottom: 20px;
}

/* Image organic */
.img-organic {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: organicMorph 15s ease-in-out infinite alternate;
    width: 100%;
    object-fit: cover;
}
@keyframes organicMorph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.gallery-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform var(--transition-soft);
}
.gallery-img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--warm-sand);
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: var(--calm-gradient);
}
.footer-title { font-size: 1.5rem; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(0,0,0,0.05); margin-top: 50px; padding-top: 20px; font-size: 0.9rem; }

/* Cursor */
.custom-cursor {
    width: 20px; height: 20px; border: 1px solid var(--muted-sage);
    border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999;
    transition: transform 0.2s; mix-blend-mode: multiply;
}
.custom-cursor.hover { transform: scale(2); background: rgba(138, 154, 134, 0.1); }

/* Lenis Fix */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
