:root {
    --lvg-ink: #101010;
    --lvg-stone: #f2f0ea;
    --lvg-moss: #69705f;
    --nav-height: 84px;
}

html { scroll-behavior: smooth; }
body { color: var(--lvg-ink); background: #fff; font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; }
.py-6 { padding-top: 6rem; padding-bottom: 6rem; }
.py-7 { padding-top: 8rem; padding-bottom: 8rem; }
.text-white-75 { color: rgba(255,255,255,.75); }
.bg-stone { background: var(--lvg-stone); }
.eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }

.site-nav { min-height: var(--nav-height); background: rgba(8,8,8,.74); backdrop-filter: blur(14px); transition: background .25s ease, box-shadow .25s ease; }
.site-nav.scrolled { background: rgba(8,8,8,.94); box-shadow: 0 1px 0 rgba(255,255,255,.08); }
.navbar-brand img, .footer-logo { width: auto; object-fit: contain; }
.navbar-brand img { height: 44px; }
.footer-logo { height: 48px; }

.hero { position: relative; min-height: 100svh; overflow: hidden; background: #090909; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 72% 30%, rgba(105,112,95,.32), transparent 35%), linear-gradient(125deg, #080808 25%, #171914 100%); transform: scale(1.06); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.38) 55%, rgba(0,0,0,.18) 100%); }
.hero h1 { letter-spacing: -.045em; }
.scroll-cue { position: absolute; bottom: 1.75rem; left: 50%; width: 28px; height: 46px; margin-left: -14px; border: 1px solid rgba(255,255,255,.45); border-radius: 16px; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: #fff; border-radius: 4px; animation: cue 1.8s infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translateY(18px); } }

.info-card { height: 100%; border-top: 1px solid #c9c7c0; padding-top: 1.5rem; }
.info-card span { display: block; color: var(--lvg-moss); font-size: .75rem; margin-bottom: 2.5rem; }
.info-card h3 { font-size: 1.2rem; }
.info-card p { color: #666; margin-bottom: 0; }

.parallax-panel { position: relative; min-height: 78vh; overflow: hidden; background-image: linear-gradient(rgba(17,18,15,.38), rgba(17,18,15,.62)), url('../img/gutter-cleaning-lune-valley-homes.jpg'); background-size: cover; background-position: center var(--parallax-y, 50%); }
.glass-panel { color: #fff; background: rgba(10,10,10,.58); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(14px); }
.area-cloud { display: flex; flex-wrap: wrap; gap: .65rem; }
.area-cloud span { border: 1px solid rgba(255,255,255,.25); padding: .55rem .8rem; font-size: .9rem; }

.cta-panel { background: #fff; }
.page-hero { min-height: 58vh; padding-top: var(--nav-height); background: radial-gradient(circle at 80% 35%, rgba(105,112,95,.45), transparent 30%), linear-gradient(125deg, #080808 30%, #262b23 100%); }
.quote-form .form-control { border-radius: 0; border-width: 0 0 1px; padding: .75rem 0; box-shadow: none; }
.quote-form textarea.form-control { border-width: 1px; padding: .9rem; }

.site-footer { background: #080808; color: #fff; }
.footer-link { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-link:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 991.98px) {
    :root { --nav-height: 72px; }
    .site-nav { min-height: var(--nav-height); }
    .navbar-brand img { height: 38px; }
    .navbar-collapse { padding: 1rem 0; }
    .hero h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
    .py-6 { padding-top: 4.5rem; padding-bottom: 4.5rem; }
    .py-7 { padding-top: 5.5rem; padding-bottom: 5.5rem; }
    .parallax-panel { min-height: 68vh; background-size: cover; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .scroll-cue span { animation: none; }
}


.area-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e6e1d8;
    box-shadow: 0 12px 32px rgba(16,16,16,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}
.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(16,16,16,.12);
}
.area-card-media {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
}
.area-card-body {
    padding: 1rem 1rem 1.05rem;
}
.area-card-body h3 {
    font-size: 1.05rem;
}
