/* === BASE === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #faf4f8; }
::-webkit-scrollbar-thumb { background: #d7a0be; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #c4749e; }

/* === NAV === */
#site-header {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
#site-header.scrolled {
    background: rgba(250, 244, 248, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(107, 58, 107, 0.08);
}

.nav-link { position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E8A84C;
    border-radius: 1px;
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* Mobile menu */
#mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-link { transition: transform 0.3s ease; }
.mobile-link:hover { transform: translateY(-2px); }

/* === BUTTONS === */
.btn-primary {
    background: #6B3A6B;
    color: #fff;
    border: 2px solid #6B3A6B;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: #5c325c;
    border-color: #5c325c;
    transform: translateY(-2px);
}
.btn-secondary {
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: #6B3A6B;
    border-color: #6B3A6B;
    color: #fff;
    transform: translateY(-2px);
}

/* === BADGES === */
.badge-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f2e4ec;
    color: #6B3A6B;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid #e7c7d9;
}
.badge-label-light {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 168, 76, 0.15);
    color: #E8A84C;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(232, 168, 76, 0.3);
}

/* === SECTION TITLES === */
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #3f223f;
    line-height: 1.15;
}
.section-title-light {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
}

/* === SERVICE CARDS === */
.service-card {
    will-change: transform;
}
.service-card:hover {
    transform: translateY(-6px);
}
.service-card:hover .w-14 {
    transform: scale(1.1) rotate(-5deg);
}

/* === TESTIMONIAL CARDS === */
.testimonial-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(107, 58, 107, 0.12);
}

/* === INPUTS === */
.input-field {
    border: 1.5px solid #e7c7d9;
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.95rem;
    color: #3f223f;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    width: 100%;
}
.input-field::placeholder { color: #d7a0be; }
.input-field:focus {
    border-color: #6B3A6B;
    box-shadow: 0 0 0 3px rgba(107, 58, 107, 0.1);
}

/* === HERO BLOBS === */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
    width: 500px;
    height: 500px;
    background: #c4749e;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}
.blob-2 {
    width: 350px;
    height: 350px;
    background: #E8A84C;
    bottom: -50px;
    left: 10%;
    animation-delay: -3s;
}
.blob-3 {
    width: 200px;
    height: 200px;
    background: #d7a0be;
    top: 40%;
    left: 30%;
    animation-delay: -5s;
}

/* === PHILOSOPHY BLOBS === */
.philosophy-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: blobFloat 10s ease-in-out infinite;
}
.philosophy-blob.blob-1 {
    width: 400px;
    height: 400px;
    background: #c4749e;
    top: -100px;
    left: -100px;
    animation-delay: -2s;
}
.philosophy-blob.blob-2 {
    width: 300px;
    height: 300px;
    background: #E8A84C;
    bottom: -50px;
    right: 5%;
    animation-delay: -6s;
}

/* === CTA BLOBS === */
.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: blobFloat 9s ease-in-out infinite;
}
.cta-blob.blob-1 {
    width: 300px;
    height: 300px;
    background: #d4923a;
    top: -80px;
    right: 10%;
    animation-delay: -1s;
}
.cta-blob.blob-2 {
    width: 250px;
    height: 250px;
    background: #b87a2e;
    bottom: -60px;
    left: 5%;
    animation-delay: -4s;
}

/* === BLOB ANIMATION === */
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 10px) scale(1.02); }
}

/* === SCROLL REVEAL === */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    html { scroll-behavior: auto; }
    .hero-blob, .philosophy-blob, .cta-blob {
        animation: none;
    }
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-blob { filter: blur(60px); opacity: 0.3; }
    .blob-1 { width: 300px; height: 300px; }
    .blob-2 { width: 200px; height: 200px; }
    .blob-3 { width: 120px; height: 120px; }
}
