*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── Section Labels ─── */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #B85C38;
    padding: 0.4em 1em;
    border: 1px solid rgba(184, 92, 56, 0.3);
    border-radius: 100px;
    background: rgba(184, 92, 56, 0.06);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #241611;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 1.1rem;
    color: #7c523e;
    line-height: 1.7;
}

/* ─── Hero ─── */
.hero-title {
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 0.8s ease forwards 0.3s;
}

.hero-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 0.8s ease forwards 0.5s;
}

.hero-ctas {
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 0.8s ease forwards 0.7s;
}

.hero-trust {
    opacity: 0;
    animation: heroReveal 0.8s ease forwards 0.9s;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Service Cards ─── */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #B85C38, #dfaa44);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* ─── Why Us Cards ─── */
.why-card {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

/* ─── Testimonials ─── */
.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: rgba(184, 92, 56, 0.08);
    line-height: 1;
    pointer-events: none;
}

/* ─── Form Inputs ─── */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.15);
}

/* ─── Scroll Reveal ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.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; }

/* ─── Mobile Menu ─── */
#mobile-menu.open {
    display: flex;
}

/* ─── Grain Overlay ─── */
#grain-overlay {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    pointer-events: none;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f7f3f0;
}
::-webkit-scrollbar-thumb {
    background: #c4a996;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #B85C38;
}

/* ─── Print ─── */
@media print {
    header, #scroll-top, #grain-overlay { display: none; }
    body { color: #000; background: #fff; }
}
