/* Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    overflow-x: hidden;
}

/* Section Labels */
.section-label {
    display: inline-block;
}

/* Section Titles */
.section-title {
    font-weight: 300;
}

/* Hero Animations */
.hero-subtitle {
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-headline {
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-body {
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-cta {
    animation: fadeUp 0.8s ease forwards 0.8s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(1.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar Scroll State */
nav.scrolled {
    background: rgba(253, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(44, 44, 44, 0.08);
}

nav.scrolled .text-charcoal {
    color: #2C2C2C;
}

/* Mobile Menu */
.mobile-link {
    font-size: 1.5rem;
}

#mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

#mobile-menu.close {
    opacity: 0;
    pointer-events: none;
}

/* Hamburger Animation */
#menu-btn.active #menu-line-1 {
    transform: translateY(8px) rotate(45deg);
}

#menu-btn.active #menu-line-2 {
    opacity: 0;
}

#menu-btn.active #menu-line-3 {
    transform: translateY(-8px) rotate(-45deg);
}

/* Service Cards */
.service-card {
    transition: border-color 0.5s ease, transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

/* Area Items */
.area-item {
    cursor: pointer;
}

/* Testimonial Cards */
.testimonial-card {
    transition: box-shadow 0.3s ease;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #FDF8F5;
}

::-webkit-scrollbar-thumb {
    background: #E07A5F;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C96A52;
}

/* Selection */
::selection {
    background: #E07A5F;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.75rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    #hero {
        padding-top: 6rem;
    }
    
    .order-1 {
        order: 1 !important;
    }
    
    .order-2 {
        order: 2 !important;
    }
    
    .hero-image-container {
        max-width: 100% !important;
        margin-left: 0 !important;
    }
    
    .lg\:pr-16 {
        padding-right: 0 !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-headline {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 4rem;
    }
}

@media (min-width: 1280px) {
    .hero-headline {
        font-size: 4.5rem;
    }
}

/* Print Styles */
@media print {
    nav, #contact-form, button {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
