/* ═══════════════════════════════════════════
   GreenCut Landscaping — Shared Styles
═══════════════════════════════════════════ */

:root {
    --green:      #1A9E47;
    --green-dark: #157A37;
    --off-white:  #F5F5F5;
    --light-gray: #E8E8E8;
    --mid-gray:   #888;
    --text:       #111111;
    --text-soft:  #555;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Barlow', sans-serif;
    background: var(--off-white);
    color: var(--text);
    overflow-x: hidden;
}

/* ── Label ── */
.label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--green);
    display: flex; align-items: center; gap: 10px;
}
.label::before {
    content: ''; display: block;
    width: 28px; height: 3px; background: var(--green);
    flex-shrink: 0;
}

/* ── Section Head ── */
.section-head { margin-bottom: 52px; }
.section-head h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 800; text-transform: uppercase;
    color: var(--text); line-height: 1; margin-top: 14px;
}
.section-head p {
    font-size: 16px; line-height: 1.7;
    color: var(--text-soft); max-width: 540px; margin-top: 14px;
}

/* ── Top Bar ── */
.topbar {
    background: #0d0d0d;
    padding: 10px 60px;
    display: flex; align-items: center; justify-content: space-between;
}
.topbar p { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.5); }
.topbar-right { display: flex; gap: 32px; align-items: center; }
.topbar a { color: rgba(255,255,255,.7); text-decoration: none; font-size: 13px; transition: color .2s; }
.topbar a:hover { color: var(--green); }
.topbar-phone {
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 15px !important; font-weight: 700 !important;
    letter-spacing: .04em; color: white !important;
}

/* ── Navigation ── */
nav {
    position: sticky; top: 0; z-index: 100;
    background: #111111;
    padding: 0 60px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 4px solid var(--green);
}
.nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px; font-weight: 800;
    color: white; text-decoration: none;
    letter-spacing: .04em; text-transform: uppercase;
    padding: 18px 0; display: flex; align-items: center; gap: 6px;
}
.nav-logo span { color: var(--green); }
.nav-links { display: flex; align-items: stretch; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
    display: flex; align-items: center; gap: 5px;
    padding: 22px 16px;
    font-size: 11px; font-weight: 600;
    letter-spacing: .13em; text-transform: uppercase;
    color: rgba(255,255,255,.7); text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: color .2s, background .2s, border-color .2s;
    white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: white;
    background: rgba(255,255,255,.04);
    border-bottom-color: var(--green);
}
.nav-arrow { font-size: 8px; opacity: .45; margin-top: 1px; }

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%; left: 0;
    padding-top: 4px;
    background: #1a1a1a;
    min-width: 230px;
    list-style: none;
    opacity: 0; pointer-events: none;
    transform: translateY(4px);
    transition: opacity .2s, transform .2s;
    border-top: 3px solid var(--green);
    box-shadow: 0 12px 32px rgba(0,0,0,.4);
    z-index: 200;
}
.has-dropdown:hover .dropdown {
    opacity: 1; pointer-events: all;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 12px 20px;
    font-size: 11px; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: background .2s, color .2s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: rgba(255,255,255,.07); color: white; }
.dropdown li a.active { color: var(--green); }

.nav-cta-phone {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px; font-weight: 700;
    color: var(--green); text-decoration: none;
    letter-spacing: .04em; transition: color .2s;
}
.nav-cta-phone:hover { color: white; }

/* ── Buttons ── */
.btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 14px 32px; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: background .25s, color .25s, transform .15s;
    cursor: pointer; border: none; line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-green { background: var(--green); color: white; }
.btn-green:hover { background: var(--green-dark); }
.btn-black { background: #111; color: white; }
.btn-black:hover { background: #1f1f1f; }
.btn-outline-green { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline-green:hover { background: var(--green); color: white; }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,.45); }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,.08); }
.btn-lg { font-size: 16px; padding: 18px 42px; }

/* ── Page Hero (inner pages) ── */
.page-hero {
    background: #111;
    padding: 80px 60px 88px;
    position: relative; overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0;
}
.page-hero-bg img {
    width: 100%; height: 100%; object-fit: cover; opacity: .18;
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 10px; font-weight: 600;
    letter-spacing: .15em; text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { color: rgba(255,255,255,.2); }
.breadcrumb .current { color: rgba(255,255,255,.6); }
.page-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 800; text-transform: uppercase;
    color: white; line-height: 1; margin: 14px 0 18px;
}
.page-hero p {
    font-size: 17px; font-weight: 400; line-height: 1.65;
    color: rgba(255,255,255,.7);
    max-width: 560px; margin-bottom: 32px;
}
.page-hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.page-hero-watermark {
    position: absolute;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 800; text-transform: uppercase;
    color: rgba(255,255,255,.03);
    top: 50%; right: 60px; transform: translateY(-50%);
    pointer-events: none; user-select: none;
    letter-spacing: -.02em; white-space: nowrap; z-index: 1;
}

/* ── CTA Strip ── */
.cta-strip {
    background: #111111;
    padding: 72px 60px;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-strip-text h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 3.2vw, 48px);
    font-weight: 800; text-transform: uppercase;
    color: white; line-height: 1;
}
.cta-strip-text p {
    font-size: 16px; color: rgba(255,255,255,.55);
    margin-top: 10px; max-width: 480px;
}
.cta-strip .btn { flex-shrink: 0; }

/* ── Footer ── */
footer { background: #0d0d0d; padding: 72px 60px 40px; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px; font-weight: 800;
    color: white; text-decoration: none;
    text-transform: uppercase; letter-spacing: .04em;
    display: inline-flex; margin-bottom: 18px; gap: 6px;
}
.footer-logo span { color: var(--green); }
.footer-brand p { font-size: 13px; line-height: 1.85; color: rgba(255,255,255,.4); max-width: 270px; }
.footer-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--green); margin-bottom: 22px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 13px; color: rgba(255,255,255,.45);
    text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: white; }
.footer-bottom {
    padding-top: 32px;
    display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.2); }
.footer-lic { font-size: 11px; color: rgba(255,255,255,.25); }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── Mobile Navigation ── */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none; border: none;
    cursor: pointer; padding: 8px;
    margin-left: 16px;
}
.nav-burger span {
    display: block;
    width: 24px; height: 2px;
    background: white;
    transition: all .3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 85%; max-width: 360px;
    height: 100vh;
    background: #111;
    z-index: 500;
    transition: right .3s ease;
    overflow-y: auto;
    display: flex; flex-direction: column;
    border-left: 3px solid var(--green);
}
.mobile-menu.open { right: 0; }

.mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.65);
    z-index: 499;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-menu-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
}
.mobile-menu-close {
    background: none; border: none;
    color: rgba(255,255,255,.6); font-size: 22px;
    cursor: pointer; padding: 4px 8px;
    line-height: 1; transition: color .2s;
}
.mobile-menu-close:hover { color: white; }

.mobile-nav { list-style: none; padding: 8px 0; flex: 1; }
.mobile-nav > li > a,
.mobile-nav-btn {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 15px 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.7); text-decoration: none;
    background: none; border: none; border-bottom: 1px solid rgba(255,255,255,.06);
    cursor: pointer; text-align: left;
    transition: color .2s, background .2s;
}
.mobile-nav > li > a:hover,
.mobile-nav-btn:hover { color: white; background: rgba(255,255,255,.04); }
.mobile-nav > li:last-child > a { border-bottom: none; }
.mobile-arrow { font-size: 10px; opacity: .5; transition: transform .2s; }
.mobile-nav-btn.open .mobile-arrow { transform: rotate(180deg); opacity: 1; }

.mobile-sub {
    list-style: none;
    display: none;
    background: rgba(255,255,255,.03);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-sub.open { display: block; }
.mobile-sub a {
    display: block;
    padding: 12px 24px 12px 40px;
    font-size: 12px; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.5); text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: color .2s;
}
.mobile-sub li:last-child a { border-bottom: none; }
.mobile-sub a:hover { color: var(--green); }

.mobile-phone-cta {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin: 20px 24px 32px;
    padding: 16px 24px;
    background: var(--green); color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    text-decoration: none; transition: background .2s;
    flex-shrink: 0;
}
.mobile-phone-cta:hover { background: var(--green-dark); }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .topbar { padding: 10px 40px; }
    nav { padding: 0 40px; }
    .page-hero { padding: 60px 40px 72px; }
    .page-hero-watermark { display: none; }
    .cta-strip { padding: 60px 40px; }
    footer { padding: 60px 40px 36px; }
}
@media (max-width: 820px) {
    .topbar { display: none; }
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-cta-phone { display: none; }
    .nav-burger { display: flex; }
    .nav-logo { font-size: 18px; }
    .footer-logo { font-size: 18px; }
    .page-hero { padding: 52px 24px 64px; }
    .cta-strip { flex-direction: column; padding: 56px 24px; }
    footer { padding: 56px 24px 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    /* iOS input zoom fix */
    input, select, textarea { font-size: 16px !important; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}
