:root {
    --green: #2d6a35;
    --green-light: #3a8444;
    --green-dim: #1e4a24;
    --gold: #c8922a;
    --gold-light: #d9a83d;
    --bg: #ffffff;
    --bg-alt: #f7f9f7;
    --bg-dark: #1e3521;
    --text: #1a1a1a;
    --text-secondary: #555555;
    --text-dim: #888888;
    --border: #e2e8e2;
    --radius: 10px;
    --font-head: 'Nunito', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-weight: 400;
}

/* ── Nav ─────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--green);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.nav-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    letter-spacing: 0.01em;
}

.nav-phone {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-phone:hover { color: #fff; }

/* ── Hero ────────────────────────────────────── */
.hero {
    padding: 6rem 1.5rem 4rem;
    background: linear-gradient(160deg, var(--bg-dark) 0%, #2d6a35 100%);
    color: #fff;
}

.hero-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.btn-call {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-call:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-call.large { font-size: 1.3rem; padding: 1rem 2.5rem; }

.hero-number {
    margin-top: 0.75rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-head);
}

/* ── Photo placeholders ───────────────────────── */
.photo-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(255,255,255,0.08);
    border: 2px dashed rgba(255,255,255,0.25);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    font-style: italic;
}

.photo-placeholder.tall { aspect-ratio: 3 / 4; }

.hero-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.photo-placeholder .photo-icon { font-size: 2.5rem; }
.photo-placeholder .photo-label { text-align: center; padding: 0 1rem; }

/* For light sections, override placeholder colors */
.story .photo-placeholder,
.why .photo-placeholder {
    background: var(--bg-alt);
    border-color: var(--border);
    color: var(--text-dim);
}

.story-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: left center;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.why-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* ── Containers & shared ──────────────────────── */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.5rem;
}

section h2 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-intro {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

/* ── Story ───────────────────────────────────── */
.story {
    padding: 5rem 1.5rem;
    background: var(--bg);
}

.story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

blockquote {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
    border-left: 4px solid var(--green);
    padding-left: 1.5rem;
    margin: 1.5rem 0 1rem;
    font-style: italic;
}

.story-sig {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--green);
    padding-left: 1.5rem;
}

/* ── Before & After ──────────────────────────── */
.results {
    padding: 5rem 1.5rem;
    background: var(--bg-alt);
    text-align: center;
}

.ba-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.ba-pair {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}

.ba-item { position: relative; }

.ba-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

.ba-item .photo-placeholder {
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    background: #e8e8e8;
    border: 2px dashed #ccc;
    color: var(--text-dim);
}

.ba-tag {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}
.ba-tag.before { background: #e8e8e8; color: #666; }
.ba-tag.after { background: var(--green); color: #fff; }

.ba-arrow {
    font-size: 1.8rem;
    color: var(--green);
    font-weight: 700;
    line-height: 1;
}

/* ── Services ────────────────────────────────── */
.services {
    padding: 5rem 1.5rem;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
    box-shadow: 0 4px 20px rgba(45,106,53,0.1);
    transform: translateY(-2px);
}

.service-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.75rem;
}

.service-card h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dim);
    margin-bottom: 0.4rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Why Us ──────────────────────────────────── */
.why {
    padding: 5rem 1.5rem;
    background: var(--bg-alt);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.why-intro {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.check {
    color: var(--green);
    font-weight: 800;
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

/* ── Yard Sign ───────────────────────────────── */
.sign-section {
    padding: 4rem 1.5rem;
    background: var(--bg);
    text-align: center;
}

.sign-caption {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.sign-img {
    max-width: 480px;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}

/* ── CTA ─────────────────────────────────────── */
.cta {
    padding: 5rem 1.5rem;
    background: var(--bg-dark);
    text-align: center;
    color: #fff;
}

.cta h2 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-sub {
    margin-top: 1.25rem !important;
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.45) !important;
}

/* ── Footer ──────────────────────────────────── */
.footer {
    padding: 2rem 1.5rem;
    background: #162819;
    text-align: center;
}

.footer p {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
}

.footer-sub {
    margin-top: 0.35rem;
    font-size: 0.78rem !important;
    color: rgba(255,255,255,0.3) !important;
    font-style: italic;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-photo { order: -1; max-width: 280px; margin: 0 auto; }
    .hero-photo .photo-placeholder { aspect-ratio: 1 / 1; }

    .story-inner,
    .why-inner {
        grid-template-columns: 1fr;
    }
    .story-photo { order: -1; max-width: 300px; margin: 0 auto; }
    .why-photo { max-width: 300px; margin: 0 auto; }

    blockquote { padding-left: 1rem; }
    .story-sig { padding-left: 1rem; }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ba-pair {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    .ba-arrow { transform: rotate(90deg); text-align: center; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .nav-logo { font-size: 0.9rem; }
}
