/* ===================================================
   WIGGY'S LAWN CARE — STYLES
   Rugged outdoor trade-brand aesthetic:
   near-black forest green + electric lime + amber gold
   =================================================== */

:root {
    --black:   #0a120c;
    --dark:    #101c13;
    --panel:   #182a1c;
    --forest:  #1f3a26;
    --green:   #2f6b22;
    --green-md:#3f8c2a;
    --lime:    #8fe636;
    --lime-dk: #6cc524;
    --gold:    #ffc522;
    --gold-dk: #e0a800;
    --cream:   #f6f3e9;
    --white:   #ffffff;
    --ink:     #14210f;
    --ink-mid: #3d4a35;
    --ink-lt:  #6b7763;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: "Barlow", sans-serif;
    background: var(--cream);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

a { color: inherit; }

.eyebrow {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-md);
    margin-bottom: 10px;
}

.eyebrow-lime { color: var(--lime); }

.section-title {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-size: clamp(30px, 5.5vw, 46px);
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 36px;
    letter-spacing: 0.5px;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 6px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    border: 2px solid transparent;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 0 var(--gold-dk);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--gold-dk);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.55);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn-green {
    background: var(--green-md);
    color: var(--white);
}

.btn-green:hover {
    background: var(--green);
    transform: translateY(-2px);
}

.btn-lg {
    font-size: 22px;
    padding: 20px 40px;
}

.see-all {
    display: block;
    width: fit-content;
    margin: 8px auto 0;
}

/* ===================================================
   HEADER
   =================================================== */
.site-header {
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 500;
    border-bottom: 3px solid var(--lime);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    width: 52px;
    height: auto;
    border-radius: 6px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text {
    font-family: "Anton", sans-serif;
    font-size: 19px;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.brand-text small {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--lime);
}

.nav-toggle { display: none; }

.nav-toggle-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-label span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}

.nav-toggle:checked ~ .nav-links { display: flex; }

.nav-links a {
    padding: 15px 24px;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-links a:hover { background: rgba(255,255,255,0.06); }

.nav-call {
    color: var(--lime) !important;
    font-weight: 700 !important;
}

/* ===================================================
   HERO (mowing-stripe texture)
   =================================================== */
.hero {
    background:
        linear-gradient(160deg, rgba(8,16,10,0.88) 0%, rgba(10,28,15,0.65) 100%),
        url("images/hero-bg.jpeg");
    background-size: cover;
    background-position: center 40%;
    padding: 64px 24px 56px;
    position: relative;
}

.hero-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.tag-pill {
    display: inline-block;
    background: rgba(143,230,54,0.14);
    border: 1px solid var(--lime);
    color: var(--lime);
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.hero-title {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-size: clamp(40px, 10vw, 64px);
    line-height: 1.04;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.check-list li {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check {
    color: var(--lime);
    font-weight: 800;
}

/* ===================================================
   TRUST STRIP
   =================================================== */
.trust-strip {
    background: var(--green-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.trust-item {
    padding: 16px 12px;
    text-align: center;
    color: var(--white);
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border-right: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.trust-ico { font-size: 20px; }

/* ===================================================
   SERVICES OVERVIEW
   =================================================== */
.services-overview {
    background: var(--cream);
    padding: 64px 0;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 8px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 22px;
    text-align: left;
    box-shadow: 0 2px 14px rgba(20,33,15,0.06);
    border-bottom: 4px solid var(--lime);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(20,33,15,0.12);
}

.service-ico {
    font-size: 30px;
    margin-bottom: 12px;
}

.service-card h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.service-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ink-mid);
}

/* ===================================================
   STORM BANNER
   =================================================== */
.storm-banner {
        background:
        linear-gradient(160deg, rgba(8,16,10,0.90) 0%, rgba(10,28,15,0.80) 100%),
        url("images/storm.jpg");
    background-size: cover;
    background-position: center 40%;
    padding: 56px 24px;
    text-align: center;
}

.storm-inner { position: relative; z-index: 2; }

.storm-text { max-width: 560px; }

.storm-title {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-size: clamp(34px, 8vw, 52px);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 22px;
}

.storm-list {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.storm-list li {
    color: rgba(255,255,255,0.88);
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bullet-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--lime);
    flex-shrink: 0;
}

.storm-note {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    margin-bottom: 26px;
    line-height: 1.6;
    font-style: italic;
}

/* ===================================================
   WHY US
   =================================================== */
.why-us {
    background: var(--white);
    padding: 64px 0;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.why-item { text-align: left; }

.why-num {
    font-family: "Anton", sans-serif;
    font-size: 38px;
    color: var(--lime-dk);
    display: block;
    margin-bottom: 6px;
}

.why-item h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 8px;
}

.why-item p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ink-mid);
}

/* ===================================================
   FINAL CTA
   =================================================== */
.final-cta {
    background:
        linear-gradient(155deg, var(--forest) 0%, var(--black) 100%);
    padding: 64px 24px;
    text-align: center;
}

.final-cta-inner h2 {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-size: clamp(28px, 6vw, 42px);
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.1;
}

.final-cta-inner p {
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    margin-bottom: 28px;
}

/* ===================================================
   PAGE HERO (services / gallery)
   =================================================== */
.page-hero {
    background:
        linear-gradient(160deg, rgba(8,16,10,0.90) 0%, rgba(10,28,15,0.80) 100%),
        url("images/hero-bg.jpeg");
    background-size: cover;
    background-position: center 40%;
    padding: 56px 24px;
    text-align: center;
}

.page-hero-title {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-size: clamp(38px, 9vw, 58px);
    color: var(--white);
    margin: 14px 0 12px;
    letter-spacing: 1px;
}

.page-hero-sub {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto;
}

/* ===================================================
   SERVICES DETAIL
   =================================================== */
.services-detail {
    background: var(--cream);
    padding: 56px 0;
}

.svc-row {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(20,33,15,0.10);
    align-items: flex-start;
}

.svc-row:last-child { border-bottom: none; }

.svc-num {
    font-family: "Anton", sans-serif;
    font-size: 36px;
    color: var(--lime-dk);
    flex-shrink: 0;
    width: 60px;
}

.svc-body h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.svc-body p {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ink-mid);
    max-width: 640px;
}

/* ===================================================
   GALLERY PLACEHOLDERS
   =================================================== */
.gallery-grid-section {
    background: var(--cream);
    padding: 56px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
}

.ph-card {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.92);
    text-align: center;
    padding: 12px;
    transition: transform 0.2s;
}

.ph-card:hover { transform: scale(1.03); }

.ph-ico { font-size: 32px; }

.ph-label {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ph-1 { background: linear-gradient(155deg, #2f6b22, #1d3a22); }
.ph-2 { background: linear-gradient(155deg, #5a4324, #2e2110); }
.ph-3 { background: linear-gradient(155deg, #1a2e1c, #0a120c); }
.ph-4 { background: linear-gradient(155deg, #3f8c2a, #234423); }
.ph-5 { background: linear-gradient(155deg, #4a7a2e, #1d3a22); }
.ph-6 { background: linear-gradient(155deg, #265c34, #102015); }
.ph-7 { background: linear-gradient(155deg, #6c5a2a, #2e2110); }
.ph-8 { background: linear-gradient(155deg, #1f3a26, #0a120c); }

.gallery-note {
    text-align: center;
    color: var(--ink-mid);
    font-size: 15px;
    font-style: italic;
    margin-top: 12px;
}

.gallery-section-label {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-md);
    margin: 40px 0 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gallery-section-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(20,33,15,0.12);
}

.gallery-grid-half {
    grid-template-columns: 1fr 1fr !important;
}

.gallery-grid-half .gallery-photo {
    aspect-ratio: 3 / 4;
}

.photo-label-before {
    background: linear-gradient(to top, rgba(180,30,30,0.85) 0%, transparent 100%) !important;
}

.photo-label-after {
    background: linear-gradient(to top, rgba(20,100,30,0.85) 0%, transparent 100%) !important;
}

/* ===================================================
   OWNER BIO
   =================================================== */
.owner-bio {
    background: var(--dark);
    padding: 64px 0;
    color: var(--white);
}

.bio-inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center;
}

.bio-logo-col {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.bio-logo {
    width: 200px;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    background: var(--white);
    padding: 8px;
}

.bio-name {
    font-family: "Anton", sans-serif;
    font-size: 32px;
    letter-spacing: 0.5px;
    color: var(--lime);
    margin-bottom: 18px;
}

.bio-body {
    font-size: 15.5px;
    line-height: 1.75;
    color: rgba(255,255,255,0.78);
    margin-bottom: 14px;
}

.bio-cta {
    margin-top: 8px;
}

/* ===================================================
   GALLERY — REAL PHOTOS
   =================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
}

.gallery-photo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--panel);
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-photo:hover img {
    transform: scale(1.04);
}

.photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    color: var(--white);
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 24px 14px 10px;
}

/* ===================================================
   LIGHTBOX
   =================================================== */
.gallery-photo {
    cursor: zoom-in;
}

.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
    backdrop-filter: blur(4px);
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lightbox-img {
    max-height: 88vh;
    max-width: 100%;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0,0,0,0.7);
    user-select: none;
}

.lightbox-caption {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 22px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    line-height: 1;
    z-index: 10000;
}

.lightbox-close:hover { background: rgba(255,255,255,0.22); }

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    font-size: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    z-index: 10000;
}

.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.22); }

.lightbox-counter {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.45);
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 44px 0 20px;
    border-top: 3px solid var(--lime);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 28px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 56px;
    height: auto;
    border-radius: 6px;
    object-fit: contain;
}

.footer-name {
    font-family: "Anton", sans-serif;
    font-size: 19px;
}

.footer-tag {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    color: var(--lime);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col h4 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 10px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    text-decoration: none;
    display: block;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 18px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 6px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.18s, transform 0.15s;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.06);
}

.social-link:hover {
    transform: translateY(-2px);
    color: white;
}

.social-link.fb:hover  { background: #1877f2; border-color: #1877f2; }
.social-link.ig:hover  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; }

.social-icon { font-size: 16px; line-height: 1; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (min-width: 480px) {
    .trust-strip { grid-template-columns: repeat(4, 1fr); }
    .trust-item { border-bottom: none; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 640px) {
    .hero-actions { flex-direction: row; justify-content: center; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
    .site-header { padding: 12px 48px; }
    .nav-toggle-label { display: none; }

    .nav-links {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        align-items: center;
        gap: 4px;
    }

    .nav-links a {
        padding: 8px 16px;
        border-bottom: none;
        border-radius: 6px;
        font-size: 16px;
    }

    .nav-links a:hover { background: rgba(255,255,255,0.08); }

    .hero { padding: 100px 48px; }
    .hero-inner { text-align: left; margin: 0; }
    .hero-actions { justify-content: flex-start; }
    .check-list { align-items: flex-start; }

    .service-grid { grid-template-columns: repeat(3, 1fr); }

    .why-grid { grid-template-columns: repeat(4, 1fr); }

    .gallery-grid { grid-template-columns: repeat(4, 1fr); }

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

    .bio-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 52px;
    }

    .bio-logo { width: 240px; }



    .svc-row { gap: 32px; }
    .svc-num { font-size: 44px; width: 80px; }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 72px; }
}
