/* ── Home Hero specific ──────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.38);
    transform: scale(1.04);
    transition: transform 8s ease;
}

.hero.loaded .hero-bg {
    transform: scale(1);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to bottom, transparent 55%, var(--color-navy) 100%),
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238ABA61' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: var(--nav-height);
    width: 100%;
}

.hero-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--sp-24) var(--sp-6);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: rgba(138, 186, 97, 0.12);
    border: 1px solid rgba(138, 186, 97, 0.3);
    color: var(--color-amber);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--sp-5);
}

.hero h1 {
    color: var(--color-white);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: var(--sp-6);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero h1 .accent {
    color: var(--color-amber);
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: var(--sp-10);
}

.hero-actions {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--sp-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2.5s ease-in-out infinite;
    z-index: 2;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* About section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-img-badge {
    position: absolute;
    bottom: var(--sp-6);
    left: var(--sp-6);
    background: var(--color-amber);
    color: var(--color-navy);
    padding: var(--sp-4) var(--sp-5);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.about-img-badge strong {
    font-size: 2rem;
}

.about-text .section-title {
    margin-top: var(--sp-2);
}

.about-bullets {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    margin-top: var(--sp-6);
    margin-bottom: var(--sp-8);
}

.about-bullet {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.about-bullet-icon {
    width: 22px;
    height: 22px;
    background: var(--color-amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-bullet-icon svg {
    width: 12px;
    height: 12px;
    fill: var(--color-navy);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-wrap img {
        height: 320px;
    }
}

/* Where we work */
.states-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-top: var(--sp-6);
}

.state-tag {
    background: rgba(138, 186, 97, 0.08);
    border: 1px solid rgba(138, 186, 97, 0.22);
    color: var(--color-amber-light);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Featured projects (home) – reuses .projects-grid partial */
.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

@media (max-width: 900px) {
    .featured-projects-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Services page ───────────────────────────────────────── */
.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-8);
}

/* ── Projects page filter tags ───────────────────────────── */
.projects-filter {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-bottom: var(--sp-8);
}

.filter-btn {
    padding: 8px 18px;
    border: 2px solid var(--color-gray-200);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gray-600);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--color-amber);
    color: var(--color-amber);
    background: rgba(138, 186, 97, 0.12);
}