/* ACA Tree Care LLC — forest green, Florida orange, clean outdoor pro */
:root {
    --green-dark: #1b4332;
    --green: #2d6a4f;
    --green-bright: #40916c;
    --green-soft: #d8f3dc;
    --orange: #e85d04;
    --orange-bright: #f48c06;
    --orange-dark: #c44900;
    --cream: #f8f6f0;
    --white: #ffffff;
    --black: #0f1410;
    --text-dark: #1a2e22;
    --text-muted-dark: #4a5f52;
    --text-muted: #9db5a8;
    --border: rgba(45, 106, 79, 0.28);
    --border-light: rgba(26, 46, 34, 0.12);
    --shadow-lg: 0 16px 40px rgba(15, 20, 16, 0.35);

    --font-display: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--white);
    background: var(--green-dark);
    font-size: 16px;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 5rem 0; position: relative; }
.section-light {
    background: var(--cream);
    color: var(--text-dark);
}
.section-light .section-title { color: var(--text-dark); }
.section-light .title-underline { background: var(--orange); }
.section-light a:not(.btn) { color: var(--green); }
.section-light a:not(.btn):hover { color: var(--orange-dark); }
.section-light .btn-secondary {
    color: var(--text-dark);
    border-color: rgba(26, 46, 34, 0.28);
}
.section-light .btn-secondary:hover {
    border-color: var(--green);
    color: var(--green-dark);
}
.section-dark {
    background: var(--green-dark);
    color: var(--white);
}
a { color: var(--orange-bright); transition: var(--transition); text-decoration: none; }
a:hover { color: var(--white); }

/* Header — clear over hero, green after scroll past hero */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(27, 67, 50, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid var(--border);
}
.header-content {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.55rem 0; gap: 1rem;
}
.logo {
    display: flex; align-items: center; gap: 0.65rem;
    color: var(--white); text-decoration: none;
}
.logo:hover { color: var(--white); }
.logo-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid var(--orange);
    background: var(--white);
    padding: 2px;
    flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-title {
    font-family: var(--font-display);
    font-size: clamp(0.92rem, 2.4vw, 1.15rem);
    font-weight: 700;
}
.logo-sub {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}
.nav-list { display: flex; list-style: none; gap: 1rem; }
.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.nav-link:hover, .nav-link.active { color: var(--orange-bright); }
.header-cta { white-space: nowrap; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.8rem; }

.mobile-menu-toggle, .mobile-menu-close {
    display: none; flex-direction: column;
    background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.hamburger { width: 24px; height: 3px; background: var(--orange); margin: 3px 0; }
.mobile-menu-close { font-size: 2rem; color: var(--orange); line-height: 1; }

/* Hero — full client artwork with centered overlay (JX standard) */
.hero--art {
    position: relative;
    overflow: hidden;
    background: var(--green-dark);
}
.hero-bg {
    width: 100%;
    background-color: var(--green-dark);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}
.hero-bg-desktop {
    display: block;
    aspect-ratio: 3 / 2;
    min-height: 420px;
    max-height: min(88vh, 820px);
    background-image: url('heropage.png');
}
.hero-bg-mobile {
    display: none;
    aspect-ratio: 852 / 1846;
    min-height: 520px;
    max-height: min(90vh, 900px);
    background-image: url('heromobileversion2.png');
}
.hero-scrim {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 85% 55% at 50% 42%,
        rgba(15, 20, 16, 0.58) 0%,
        rgba(15, 20, 16, 0.24) 52%,
        transparent 78%);
    z-index: 1;
    pointer-events: none;
}
.hero-content-wrap {
    position: absolute;
    inset: 0;
    top: 3.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    pointer-events: none;
}
.hero-content {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
    pointer-events: auto;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
}
.badge {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.38rem 0.75rem;
    border-radius: 2px;
    line-height: 1.2;
}
.badge-orange {
    background: linear-gradient(135deg, var(--orange-bright), var(--orange-dark));
    color: var(--white);
}
.badge-outline {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
    background: rgba(0, 0, 0, 0.28);
}
.hero-kicker {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-soft);
    margin-bottom: 0.55rem;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 5.5vw, 3.15rem);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
    margin-bottom: 0.65rem;
}
.hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.88rem, 2.2vw, 1rem);
    max-width: 480px;
    margin: 0 auto 1.15rem;
    line-height: 1.55;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.75rem 1.35rem;
    border-radius: 2px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary {
    background: linear-gradient(135deg, var(--orange-bright), var(--orange-dark));
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-1px);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

/* CTA band */
.cta-band {
    position: relative;
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    background-image: url('image.jpg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}
.cta-band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 20, 16, 0.72), rgba(27, 67, 50, 0.82));
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band-content {
    max-width: 42rem;
    margin: 0 auto;
}
.cta-band-content .section-label { color: var(--orange-bright); }
.cta-band-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.6rem);
    line-height: 1.15;
    margin: 0.5rem 0 0.85rem;
    color: var(--white);
}
.cta-band-text {
    color: var(--green-soft);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}
.cta-band-actions {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 640px) {
    .cta-band {
        background-attachment: scroll;
    }
    .cta-band-actions .btn {
        width: 100%;
        max-width: 20rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .cta-band { background-attachment: scroll; }
}

/* Trust bar */
.trust-bar {
    background: var(--black);
    color: var(--green-soft);
    border-bottom: 3px solid var(--orange);
}
.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 0.85rem 0;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.trust-icon { margin-right: 0.35rem; }

/* Section typography */
.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--orange);
    margin-bottom: 0.5rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.section-title-left { text-align: left; }
.title-underline {
    width: 56px;
    height: 3px;
    background: var(--orange);
    margin: 0 auto 1.25rem;
}
.title-underline-left { margin-left: 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-header .title-underline { margin-left: auto; margin-right: auto; }
.section-lead, .portfolio-lead {
    color: var(--text-muted-dark);
    font-size: 1rem;
    line-height: 1.65;
}

/* About */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.about-visual {
    width: 100%;
    max-width: min(100%, 26rem);
    margin-inline: auto;
}
.about-copy p { margin-bottom: 1rem; color: var(--text-muted-dark); }
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    list-style: none;
    margin-top: 1.25rem;
}
.service-tags li {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.75rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 2px;
    color: var(--green-dark);
}
.about-photo {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}
.about-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.about-photo-caption {
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
    color: var(--text-muted-dark);
    background: var(--white);
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    list-style: none;
    margin-top: 1rem;
}
.about-stats li {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--orange);
    padding: 0.85rem;
    text-align: center;
    border-radius: 2px;
}
.about-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--green-dark);
}
.about-stats span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted-dark);
    margin-top: 0.2rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.service-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-3px);
    border-color: var(--orange);
}
.service-card-image {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}
.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-bright);
}
.service-icon svg {
    width: 40px;
    height: 40px;
}
.service-card:hover .service-icon { color: var(--green-soft); }
.service-card-body { padding: 1.15rem; }
.service-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
    color: var(--white);
}
.service-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
}
.services-cta { text-align: center; margin-top: 2rem; }

/* Portfolio — 2 columns always */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 920px;
    margin: 0 auto;
}
.portfolio-item {
    max-width: none;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--white);
}
.portfolio-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: transform 0.35s ease;
}
.portfolio-item:hover img {
    transform: scale(1.04);
}
.portfolio-caption {
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: clamp(1rem, 4vw, 3rem);
    background: rgba(12, 20, 12, 0.92);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.lightbox[hidden] {
    display: none;
}
.lightbox.open {
    opacity: 1;
}
.lightbox-content {
    max-width: min(1100px, 100%);
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.lightbox-img {
    max-width: 100%;
    max-height: 82vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    transform: scale(0.97);
    transition: transform 0.25s ease;
}
.lightbox.open .lightbox-img {
    transform: scale(1);
}
.lightbox-caption {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.lightbox-close,
.lightbox-nav {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.06);
}
.lightbox-close {
    position: absolute;
    top: clamp(0.75rem, 2.5vw, 1.5rem);
    right: clamp(0.75rem, 2.5vw, 1.5rem);
}
@media (max-width: 640px) {
    .lightbox-nav {
        position: absolute;
        bottom: 1.25rem;
        width: 44px;
        height: 44px;
    }
    .lightbox-prev { left: 1rem; }
    .lightbox-next { right: 1rem; }
    .lightbox-img { max-height: 74vh; }
}
@media (prefers-reduced-motion: reduce) {
    .lightbox,
    .lightbox-img,
    .lightbox-close,
    .lightbox-nav {
        transition: none;
    }
}

/* FAQ */
.faq { background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 4px;
    margin-bottom: 0.65rem;
    background: var(--cream);
}
.faq-item summary {
    padding: 1rem 1.15rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    color: var(--text-dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
    padding: 0 1.15rem 1rem;
    color: var(--text-muted-dark);
    font-size: 0.92rem;
}

/* Contact */
.contact {
    background: var(--green-dark);
    background-image: linear-gradient(160deg, var(--green-dark) 0%, #163828 100%);
}
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.contact-info p { color: var(--text-muted); margin-bottom: 1rem; }
.contact-details {
    list-style: none;
    margin: 1.25rem 0;
}
.contact-details li {
    margin-bottom: 0.55rem;
    color: var(--green-soft);
}
.contact-details a { color: var(--orange-bright); }
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
    color: var(--green-soft);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.25);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.45); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
}
.form-group select option { color: var(--text-dark); }
.btn-submit { width: 100%; margin-top: 0.25rem; }
.form-submit-error {
    margin-top: 0.75rem;
    font-size: 0.88rem;
    color: #ffb4a2;
}

/* Footer */
.footer-banner {
    background: var(--orange-dark);
    color: var(--white);
    padding: 1.25rem 0;
}
.footer-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-banner span { opacity: 0.9; }
.footer {
    background: var(--black);
    padding: 2.5rem 0 1.5rem;
    color: var(--text-muted);
}
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.footer-contact { margin: 0.65rem 0; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--orange-bright); }
.footer-section h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.25rem;
    text-align: center;
    font-size: 0.85rem;
}

/* Scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.scroll-reveal.stagger-children .service-card,
.scroll-reveal.stagger-children .portfolio-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.scroll-reveal.stagger-children.visible .service-card,
.scroll-reveal.stagger-children.visible .portfolio-item {
    opacity: 1;
    transform: translateY(0);
}
.scroll-reveal.stagger-children .service-card:nth-child(1) { transition-delay: 0.05s; }
.scroll-reveal.stagger-children .service-card:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal.stagger-children .service-card:nth-child(3) { transition-delay: 0.15s; }
.scroll-reveal.stagger-children .service-card:nth-child(4) { transition-delay: 0.2s; }
.scroll-reveal.stagger-children .service-card:nth-child(5) { transition-delay: 0.25s; }
.scroll-reveal.stagger-children .service-card:nth-child(6) { transition-delay: 0.3s; }
.scroll-reveal.stagger-children .portfolio-item:nth-child(1) { transition-delay: 0.05s; }
.scroll-reveal.stagger-children .portfolio-item:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal.stagger-children .portfolio-item:nth-child(3) { transition-delay: 0.15s; }
.scroll-reveal.stagger-children .portfolio-item:nth-child(4) { transition-delay: 0.2s; }
.scroll-reveal.stagger-children .portfolio-item:nth-child(5) { transition-delay: 0.25s; }
.scroll-reveal.stagger-children .portfolio-item:nth-child(6) { transition-delay: 0.3s; }
.scroll-reveal.stagger-children .portfolio-item:nth-child(7) { transition-delay: 0.35s; }
.scroll-reveal.stagger-children .portfolio-item:nth-child(8) { transition-delay: 0.4s; }
.scroll-reveal.stagger-children .portfolio-item:nth-child(9) { transition-delay: 0.45s; }
.scroll-reveal.stagger-children .portfolio-item:nth-child(10) { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal, .scroll-reveal.visible,
    .scroll-reveal.stagger-children .service-card,
    .scroll-reveal.stagger-children .portfolio-item {
        opacity: 1; transform: none; transition: none;
    }
}

/* Responsive */
@media (max-width: 960px) {
    .nav { display: none; }
    .header-cta { display: none; }
    .mobile-menu-toggle { display: flex; }
    .nav {
        display: block;
        position: fixed;
        top: 0; right: -100%;
        width: min(85vw, 320px);
        height: 100vh;
        background: var(--green-dark);
        padding: 5rem 1.5rem 2rem;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.35);
        transition: var(--transition);
    }
    .nav.active { right: 0; }
    .nav-list { flex-direction: column; gap: 1.1rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-split, .contact-wrap, .footer-content { grid-template-columns: 1fr; }
    .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-bg-desktop { display: none; }
    .hero-bg-mobile { display: block; }
    .hero-scrim {
        background: radial-gradient(ellipse 90% 48% at 50% 42%,
            rgba(15, 20, 16, 0.58) 0%,
            rgba(15, 20, 16, 0.22) 50%,
            transparent 72%);
    }
    .hero-content-wrap {
        align-items: center;
        justify-content: center;
        padding: 3.75rem 0.85rem 1rem;
    }
    .hero-content {
        max-width: 340px;
        margin: 0 auto;
    }
    .hero-badges { gap: 0.3rem; margin-bottom: 0.45rem; }
    .hero-badges .badge {
        font-size: 0.54rem;
        padding: 0.26rem 0.5rem;
        letter-spacing: 0.06em;
    }
    .hero-kicker {
        font-size: 0.62rem;
        letter-spacing: 0.08em;
        margin-bottom: 0.35rem;
    }
    .hero-title {
        font-size: clamp(1.05rem, 4.8vw, 1.35rem);
        margin-bottom: 0.35rem;
    }
    .hero-subtitle {
        font-size: 0.72rem;
        line-height: 1.4;
        margin: 0 auto 0.65rem;
        max-width: 280px;
    }
    .hero-buttons { gap: 0.4rem; }
    .hero-buttons .btn {
        padding: 0.48rem 0.75rem;
        font-size: 0.68rem;
    }
}

@media (max-width: 640px) {
    .section { padding: 3.5rem 0; }
    .trust-bar--desktop { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .about-visual { max-width: 100%; }
    .portfolio-grid { gap: 0.65rem; }
    .portfolio-item img { height: 140px; }
    .logo-sub { display: none; }
}

@media (min-width: 768px) {
    .portfolio-item img { height: 200px; }
    .about-visual {
        max-width: 100%;
        margin-inline: 0;
    }
}
