/* ========== BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }

/* ========== NAV ========== */
#site-header {
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
#site-header.scrolled {
    background: rgba(254, 253, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

/* ========== MOBILE MENU ========== */
.mobile-link {
    display: block;
    padding: 8px 0;
    font-size: 1rem;
    font-weight: 500;
    color: #44403c;
    transition: color 0.2s;
}
.mobile-link:hover { color: #d9431e; }

/* ========== HERO ========== */
.hero-eyebrow {
    animation: fadeUp 0.8s ease both;
}
.hero-title {
    animation: fadeUp 0.8s 0.15s ease both;
}
.hero-sub {
    animation: fadeUp 0.8s 0.3s ease both;
}
.hero-ctas {
    animation: fadeUp 0.8s 0.45s ease both;
}

/* ========== FEATURE STRIP ========== */
.feature-card {
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-2px);
}

/* ========== SECTION UTILITIES ========== */
.section-eyebrow {
    display: block;
    margin-bottom: 0.75rem;
}
.section-title {
    margin-bottom: 1.25rem;
}
.section-subtitle {
    line-height: 1.7;
}

/* ========== MENU ========== */
.menu-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}
.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ========== REVEAL ANIMATIONS (below-fold only) ========== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Default state: content is visible even without JS */
.reveal {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== KEYFRAMES ========== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #fdf9ed; }
::-webkit-scrollbar-thumb { background: #d7dbcc; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #b5bf8a; }

/* ========== RESPONSIVE ========== */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.75rem;
    }
    .section-title {
        font-size: 2.25rem;
    }
}
