@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&amp;family=Inter:wght@300;400;500;600&amp;display=swap');

:root {
    --wood-brown: #5C4033;
}

body {
    font-family: 'Inter', system_ui, sans-serif;
}

.heading-serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.1;
}

.section-header {
    font-size: 2.75rem;
    line-height: 1.1;
    font-weight: 700;
    color: #3F2A1D;
}

.wood-bg {
    background-color: #F8F1E9;
}

.nav-active {
    color: #5C4033;
    font-weight: 600;
}

.project-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgb(92 64 51 / 0.25);
}

.gallery-img {
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.project-card:hover .gallery-img {
    transform: scale(1.08);
}

.form-input {
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(92, 64, 51, 0.15);
    border-color: #5C4033;
}

.hero-image {
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4),
                0 10px 10px -6px rgb(0 0 0 / 0.4);
    transition: transform 0.5s ease;
}

.nav-scrolled {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.wood-grain {
    background-image: url('data:image/svg+xml,%3Csvg width=%2260%22 height=%2260%22 viewBox=%220 0 60 60%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cg fill-rule=%22evenodd%22%3E%3Cpath fill=%22%23EDE4D9%22 d=%22M0 60L60 0v60H0z%22/%3E%3Cpath fill=%22%23D4C4A8%22 d=%22M0 60l60-60v60H0z%22/%3E%3C/g%3E%3C/svg%27');
    background-size: 80px 80px;
    opacity: 0.08;
}

.stat-number {
    font-variant-numeric: tabular-nums;
}