/* Miami Valley Earthworks - Homepage styles */
:root {
    --bg-dark: #1a1a1a;
    --bg-dark-texture: #252525;
    --accent: #f5b800;
    --accent-dark: #d4a000;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.9);
    --border: rgba(245, 184, 0, 0.4);
    --font-heading: "veneer-three", sans-serif;
    --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: normal;
    margin: 0 0 0.5em;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.btn::after {
    content: '↗';
    font-size: 1.4em;
    font-weight: 700;
    line-height: 1;
    margin-left: 0.15rem;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    color: #000;
    border-color: var(--accent-dark);
}

.btn-secondary {
    background: var(--bg-dark);
    color: var(--text);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border-color: var(--accent);
}

.btn-lg {
    padding: 1rem 1.75rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.btn-lg::after {
    font-size: 1.5em;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Site header: 40% logo left, 60% nav box right (upper: phone+quote, lower: links) */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-dark);
    padding: 0.75rem 0;
}

.nav-bar {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 80px;
}

/* Left: logo area = 40%; logo sits on hero (no gap), rest of nav keeps margin */
.nav-logo-area {
    flex: 0 0 40%;
    display: flex;
    align-items: flex-end;
    padding-right: 0.5rem;
    margin-bottom: -0.75rem;
}

.nav-logo-wrap {
    display: block;
}

.nav-logo {
    width: 350px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
}

/* Right: 60% — top row (phone left, button right), then bordered box with nav links only */
.nav-right-area {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Top row: phone lines up left with Home edge, quote button right */
.nav-right-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 0 0 0;
    min-height: 36px;
}

/* Nav yellow: match site accent (#f5b800) so nav matches rest of site */
.nav-phone {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.65rem;
    letter-spacing: 0.06em;
    color: #f5b800;
    text-decoration: none;
}

.nav-phone:hover {
    color: #d4a000;
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background: #f5b800;
    color: #000;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-nav-cta:hover {
    background: #d4a000;
    color: #000;
}

.btn-nav-arrow {
    font-size: 1.1em;
    line-height: 1;
}

.nav-menu-toggle {
    display: none;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.nav-menu-toggle-icon {
    font-size: 1.1rem;
}

/* Bordered box: nav links only */
.nav-links-box {
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    min-height: 44px;
    background: #2a2a2a;
    border: 1px solid #f5b800;
    border-radius: 10px;
    overflow: hidden;
}

.nav-links-box a {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links-box a:hover {
    color: #f5b800;
}

.nav-divider {
    width: 1px;
    background: #f5b800;
    flex-shrink: 0;
}

.nav-links-box a:first-of-type {
    border-radius: 10px 0 0 10px;
}

.nav-links-box a:last-of-type {
    border-radius: 0 10px 10px 0;
}

/* Hero */
/* Horizontal rule between sections (img/hr.jpg) */
.section-hr {
    display: block;
    width: 100%;
    height: 18px;
    background: url("../img/hr.jpg") center / contain no-repeat;
    border: none;
    margin: 0;
}

.hero {
    position: relative;
    min-height: 520px;
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-dark);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

/* Hero container: full width of content band so hero text aligns with logo & Our Services */
.hero .container {
    width: 100%;
    max-width: 1200px;
    flex: 0 0 100%;
    box-sizing: border-box;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    text-align: left;
    padding-bottom: 3rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(2.75rem, 7vw, 4.25rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin-bottom: 0.5rem;
}

.hero-title-white {
    color: var(--text);
}

.hero-title-yellow {
    color: var(--accent);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 1rem;
}

.hero-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-buttons .btn {
    font-family: var(--font-body);
    min-height: 52px;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.hero-buttons .btn-primary {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-secondary {
    background: rgba(26, 26, 26, 0.95);
}

/* Section title */
.section-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.85rem, 3.5vw, 2.4rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-shadow: 0 0 6px #000, 0 0 12px #000, 0 0 18px #000, 0 0 3px #000;
}

.section-title::before,
.section-title::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 0;
    border-top: 2px dashed var(--accent);
}

/* Our Services */
.services {
    position: relative;
    background: var(--bg-dark-texture) center bottom / cover no-repeat;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/industrial-bg.jpg");
    padding: 3.5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(245, 184, 0, 0.2);
    transform: translateY(-2px);
}

.service-card-image-wrap {
    position: relative;
    flex-shrink: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px 10px 0 0;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-icon {
    position: absolute;
    top: 0.35rem;
    left: 0.35rem;
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0);
}

.service-card-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    background: url("../img/box-bottom.png") bottom center no-repeat;
    background-size: 100% auto;
    padding: 1rem 1.25rem 2.5rem;
    margin: 0 -1px -1px -1px;
    border-radius: 0 0 10px 10px;
    min-height: 80px;
}

.service-card-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 0;
    margin: 0 0 0.5rem;
    color: var(--text);
}

.service-card-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0;
    margin: 0;
    line-height: 1.55;
}

/* Projects in Action / Stats */
.stats {
    position: relative;
    background: var(--bg-dark) center bottom / cover no-repeat;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/dirt-bg.jpg");
    padding: 3.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stats-community-text {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    color: var(--text);
    text-align: center;
    margin: 0 auto 1rem;
    max-width: 36em;
}

.stats-community-cta {
    text-align: center;
    margin: 0;
}

/* Match hero button font for stats LEARN MORE button */
.stats-community-cta .btn {
    font-family: var(--font-body);
}

.stat-box {
    background-color: transparent;
    background-image: url("../img/box-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: none;
}

.stat-box:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 4.25rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    position: relative;
    background: var(--bg-dark) center / cover no-repeat;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../img/slate-bg.jpg");
    padding: 1.5rem 0;
}

/* Dirt spray overlays (decorative) */
.dirt-overlay {
    position: absolute;
    pointer-events: none;
    object-fit: contain;
    opacity: 1;
    z-index: 2;
}

.dirt-overlay--hero-1 {
    top: 8%;
    right: 5%;
    width:  min(320px, 38vw);
    height: auto;
}

/* dirt.png on left side of hero as design element */
.dirt-overlay--hero-left {
    left: 0;
    bottom: 10%;
    top: auto;
    width:  min(380px, 42vw);
    height: auto;
}

/* dirt2 only: bottom right of section, touching edge */
.dirt-overlay--hero-br {
    right: 0;
    bottom: 0;
    left: auto;
    top: auto;
    width:  min(280px, 35vw);
    height: auto;
}

.dirt-overlay--services-br {
    right: 0;
    bottom: 0;
    left: auto;
    top: auto;
    width:  min(280px, 35vw);
    height: auto;
}

.dirt-overlay--stats {
    top: 12%;
    left: 5%;
    width:  min(260px, 32vw);
    height: auto;
}

.dirt-overlay--footer-br {
    right: 0;
    bottom: 0;
    left: auto;
    top: auto;
    width:  min(220px, 28vw);
    height: auto;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.footer-links {
    text-align: center;
}

.footer-contact {
    text-align: center;
}

.footer-contact-item a {
    justify-content: center;
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin: 0 0 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-logo-wrap {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
}

.footer-logo {
    min-width: 500px;
    max-width: 720px;
    width: 100%;
    height: auto;
}

.footer-contact-item {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
}

.footer-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.footer-contact-item a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.icon-inline {
    flex-shrink: 0;
}

/* Copyright bar */
.copyright-bar {
    background: var(--accent);
    color: #000;
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.copyright-links a {
    color: #000;
}

.copyright-links a:hover {
    text-decoration: underline;
}

.footer-designed-by {
    text-align: center;
    padding: 0.6rem 1rem;
    background: var(--bg-dark);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-designed-by-text {
    vertical-align: middle;
    margin-right: 0.35rem;
}

.footer-designed-by-link {
    text-decoration: none;
    vertical-align: middle;
}

.footer-designed-by-link:hover {
    opacity: 0.9;
}

.footer-designed-by-logo {
    display: inline-block;
    vertical-align: middle;
    height: 1.25rem;
    width: auto;
}

.copyright-links span {
    margin: 0 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-wrap {
        order: -1;
    }

    .footer-logo {
        min-width: 0;
    }

    .footer-links {
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact-item a {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .nav-bar {
        flex-direction: column;
        min-height: 0;
    }

    .nav-logo-area {
        flex: none;
        padding-right: 0;
        padding-bottom: 0.75rem;
        justify-content: center;
    }

    .nav-right-area {
        flex: none;
        width: 100%;
    }

    /* Phone centered on its own line, quote + menu on second line */
    .nav-right-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 0.5rem;
        row-gap: 0.5rem;
    }

    .nav-phone {
        flex: 0 0 100%;
        text-align: center;
    }

    .nav-menu-toggle {
        display: inline-flex;
    }

    .nav-links-box {
        display: none;
        flex-direction: column;
        margin-top: 0.5rem;
    }

    .nav-links-box.is-open {
        display: flex;
    }

    .nav-divider {
        width: 100%;
        height: 1px;
    }

    .nav-links-box a:first-of-type,
    .nav-links-box a:last-of-type {
        border-radius: 0;
    }

    .section-title::before,
    .section-title::after {
        max-width: 40px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========== Aggregates page (inner page) ========== */
.page-hero {
    position: relative;
    min-height: 380px;
    padding: 3rem 0;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-dark);
}

.page-hero--aggregates {
    min-height: 420px;
    padding: 3.5rem 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin: 0 0 0.5rem;
    color: var(--text);
}

.page-hero-title--large {
    font-size: clamp(3rem, 8vw, 4.5rem);
    color: var(--accent);
    text-shadow: 0 0 20px rgba(0,0,0,0.6), 0 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 0.35rem;
}

.page-hero-title .accent {
    color: var(--accent);
}

.page-hero-tagline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
    max-width: 560px;
}

.page-hero--aggregates .page-hero-tagline {
    font-size: 1.2rem;
    color: var(--text);
}

.page-intro {
    padding: 3rem 0 2rem;
    background: var(--bg-dark);
}

.page-intro--textured {
    background-color: #1f1d1a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/slate-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 3.5rem 0 2.5rem;
}

.page-intro-inner {
    max-width: 720px;
    margin: 0 auto;
}

.page-intro p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 1rem;
}

.page-intro p:last-child {
    margin-bottom: 0;
}

/* Individual aggregate blocks (one section per material) */
.agg-block {
    position: relative;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    padding: 3.5rem 0;
}

.agg-block--topsoil {
    background-image: linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)), url("../img/dirt-bg.jpg");
}

.agg-block--fill-dirt {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../img/industrial-bg.jpg");
}

.agg-block--gravel {
    background-image: linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)), url("../img/slate-bg.jpg");
}

.agg-block--sand {
    background-image: linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)), url("../img/hero-bg.jpg");
}

.agg-block-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.35fr);
    gap: 2.5rem;
    align-items: center;
}

.agg-block-inner--reverse {
    direction: rtl;
}

.agg-block-inner--reverse > * {
    direction: ltr;
}

.agg-block-media {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5);
}

.agg-block-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.agg-block-content .section-title {
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.agg-block-inner--reverse .agg-block-content .section-title {
    justify-content: flex-start;
}

.agg-block-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 1.25rem;
}

.agg-block-content .btn {
    font-family: var(--font-body);
}

@media (max-width: 900px) {
    .agg-block-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .agg-block-inner--reverse {
        direction: ltr;
    }

    .agg-block-content .section-title,
    .agg-block-inner--reverse .agg-block-content .section-title {
        justify-content: center;
    }

    .agg-block-content {
        text-align: center;
    }

    .agg-block-content .btn {
        display: inline-flex;
        margin-left: auto;
        margin-right: auto;
    }
}

.aggregates-split-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.aggregate-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    min-height: 0;
}

.aggregate-row--image-right {
    direction: rtl;
}

.aggregate-row--image-right > * {
    direction: ltr;
}

.aggregate-row--image-right .aggregate-row-content {
    text-align: left;
}

.aggregate-row-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.aggregate-row-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.aggregate-row-content {
    padding: 0.5rem 0;
}

.aggregate-row-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.85rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--accent);
    margin: 0 0 0.75rem;
}

.aggregate-row-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.aggregate-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 184, 0, 0.25), transparent);
    margin: 2rem 0;
}

/* Legacy card grid (kept for consistency) */
.aggregates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.aggregate-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.aggregate-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    transform: translateY(-2px);
}

.aggregate-card-image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.aggregate-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aggregate-card-content {
    padding: 1.25rem 1.25rem 1.5rem;
    flex: 1;
}

.aggregate-card-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.65rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--accent);
    margin: 0 0 0.5rem;
}

.aggregate-card-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Why Choose section */
.why-choose {
    position: relative;
    background-color: var(--bg-dark);
    padding: 3rem 0 3.5rem;
}

body.aggregates-page .why-choose {
    background-color: #1a1a1a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)), url("../img/dirt-bg.jpg");
    background-size: cover;
    background-position: center;
    padding-bottom: 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-choose-card {
    background: var(--bg-dark-texture);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* Aggregates page: match homepage stat boxes (background image) */
body.aggregates-page .why-choose-card {
    position: relative;
    background-color: transparent;
    background-image: url("../img/box-bg.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
    padding: 2.25rem 1.75rem 2.75rem;
    min-height: 200px;
    box-shadow: none;
}

body.aggregates-page .why-choose-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    border-radius: inherit;
    pointer-events: none;
}

body.aggregates-page .why-choose-card h3,
body.aggregates-page .why-choose-card p {
    position: relative;
    z-index: 1;
}

body.aggregates-page .why-choose-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.why-choose-card:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.why-choose-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--accent);
    margin: 0 0 0.75rem;
}

.why-choose-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* CTA block (Ready to Get Started) */
.cta-block {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), var(--bg-dark-texture);
    padding: 3rem 2rem;
    text-align: center;
}

.cta-block--dark {
    background-color: #1a1a1a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../img/industrial-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 3.5rem 2rem;
    border-top: 1px solid rgba(245, 184, 0, 0.2);
}

.cta-block-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    margin: 0 0 0.5rem;
}

.cta-block-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 0 1.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.cta-block .btn {
    margin: 0;
    font-family: var(--font-body);
}

/* Aggregates page responsive */
@media (max-width: 900px) {
    .aggregate-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        direction: ltr;
    }

    .aggregate-row--image-right {
        direction: ltr;
    }

    .aggregate-row--image-right .aggregate-row-content {
        text-align: left;
    }

    .aggregate-row-image {
        max-width: 100%;
    }

    .aggregate-divider {
        margin: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 300px;
        padding: 2.5rem 0;
    }

    .page-hero--aggregates {
        min-height: 340px;
        padding: 2.5rem 0;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    /* Aggregates page: center section heading and CTA on mobile */
    .aggregates-page .why-choose .section-title {
        justify-content: center;
        text-align: center;
    }

    .aggregates-page .cta-block-title,
    .aggregates-page .cta-block-text {
        text-align: center;
    }

    .aggregates-page .cta-block .btn {
        display: inline-flex;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ========== Services page ========== */
.services-page .sv-intro {
    padding: 3rem 0 3.25rem;
    background-color: #2a2622;
    background-image: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(180, 160, 120, 0.18) 0%, transparent 60%);
}

.sv-intro-inner {
    max-width: 760px;
}

.sv-body-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 0.9rem;
}

.sv-body-text:last-child {
    margin-bottom: 0;
}

.sv-block {
    background-color: #1a1a1a;
    padding: 3rem 0;
}

.sv-block--alt {
    background-color: #23201b;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url("../img/industrial-bg.jpg");
    background-size: cover;
    background-position: center;
}

.sv-block--land {
    background-color: #1a1a1a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.86)), url("../img/services-land-clearing-bg.png");
    background-size: cover;
    background-position: center;
}

.sv-block--silt {
    background-color: #1a1a1a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.86)), url("../img/services-silt-fencing-bg.png");
    background-size: cover;
    background-position: center;
}

.sv-block--topsoil {
    background-color: #1a1a1a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.86)), url("../img/services-topsoil-bg.png");
    background-size: cover;
    background-position: center;
}

.sv-block-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.35fr);
    gap: 2.5rem;
    align-items: center;
}

.sv-block-media {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5);
}

.sv-block-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.sv-block-content .section-title {
    margin-bottom: 1rem;
}

.sv-block-content .btn {
    margin-top: 1.25rem;
    font-family: var(--font-body);
}

@media (max-width: 900px) {
    .sv-block-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

/* ========== Contact page ========== */
.contact-hero {
    padding: 3rem 0 2.5rem;
    background-color: #1a1a1a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../img/dirt-bg.jpg");
    background-size: cover;
    background-position: center;
}

.contact-hero-inner {
    max-width: 720px;
}

.contact-main {
    background-color: #23201b;
    padding: 3rem 0 3.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.contact-details .section-title,
.contact-form-wrap .section-title {
    margin-bottom: 1rem;
}

.contact-form-message {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}
.contact-form-success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #a5d6a7;
}
.contact-form-error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    color: #ef9a9a;
}

.contact-detail-line {
    margin: 0 0 0.75rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-detail-label {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 0.15rem;
}

.contact-detail-value a,
.contact-detail-value {
    color: var(--text);
}

.contact-detail-value a:hover {
    color: var(--accent);
}

.contact-map-wrap {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.contact-map-wrap iframe {
    width: 100%;
    height: 280px;
    border: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-field label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--text-muted);
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(245, 184, 0, 0.5);
}

.contact-recaptcha-wrap {
    margin-bottom: 0.25rem;
}
.contact-recaptcha-wrap .g-recaptcha {
    display: inline-block;
}

.contact-form .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
    font-family: var(--font-body);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Aggregates2 page (reference design) ========== */
.aggregates2-page .container--wide {
    max-width: 1000px;
}

/* Hero: full-bleed image, large title, subtitle */
.ag2-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-dark);
}

.ag2-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 55%, transparent 100%);
}

.ag2-hero-inner {
    position: relative;
    z-index: 1;
}

.ag2-hero-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(3rem, 9vw, 5rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    margin: 0 0 0.25rem;
    color: var(--accent);
    text-shadow: 0 0 24px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.5);
}

.ag2-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    color: var(--text);
    margin: 0;
    font-weight: 500;
}

/* Intro: light sandy/beige background */
.ag2-intro {
    background-color: #d4c8b8;
    background-image: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(220, 210, 190, 0.5) 0%, transparent 60%);
    padding: 3.5rem 0;
}

.ag2-intro-inner {
    max-width: 720px;
}

.ag2-intro-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--accent-dark);
    margin: 0 0 1rem;
    line-height: 1.25;
}

.ag2-intro-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.65;
    color: #2a2520;
    margin: 0;
}

/* Materials: image left, text right, thin dividers */
.ag2-materials {
    background-color: #c9bfb0;
    background-image: radial-gradient(ellipse 80% 50% at 80% 50%, rgba(200, 190, 175, 0.4) 0%, transparent 55%);
    padding: 2rem 0 3rem;
}

.ag2-material-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2rem 0;
}

.ag2-material-image {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.ag2-material-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.ag2-material-content {
    padding: 0.5rem 0;
}

.ag2-material-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--accent-dark);
    margin: 0 0 0.75rem;
}

.ag2-material-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: #2a2520;
    margin: 0;
}

.ag2-material-divider {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    margin: 0;
}

/* Pickup or Delivery: dark section */
.ag2-pickup {
    position: relative;
    background-color: #1a1a1a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url("/img/aggregates-why-bg.png");
    background-size: cover;
    background-position: center;
    padding: 3.5rem 2rem;
}

.ag2-pickup-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ag2-pickup-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.ag2-pickup-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text);
    margin: 0 0 0.75rem;
}

.ag2-pickup-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.ag2-pickup-btn {
    margin: 0;
}

/* Quality banner: Expect Quality... */
.ag2-quality {
    position: relative;
    background-color: #1a1a1a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("/img/aggregates-cta-bg.png");
    background-size: cover;
    background-position: center;
    padding: 3.5rem 2rem;
}

.ag2-quality-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ag2-quality-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.ag2-quality-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text);
    margin: 0 0 0.5rem;
}

.ag2-quality-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 0 1rem;
    line-height: 1.6;
}

.ag2-quality-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
}

.ag2-quality-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.35rem;
}

.ag2-quality-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1em;
}

.ag2-quality-cta-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 1.5rem;
}

.ag2-quality-inner .btn {
    margin: 0;
}

/* Aggregates2 responsive */
@media (max-width: 900px) {
    .ag2-material-block {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.5rem 0;
    }

    .ag2-material-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .ag2-hero {
        min-height: 320px;
    }

    .ag2-intro,
    .ag2-materials {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* ========== About page ========== */
.about-page main {
    display: block;
}

.ab-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-dark);
}

.ab-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.45) 55%, transparent 100%);
}

/* Match other heroes: full-width container so text aligns left with site content */
.ab-hero .container {
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.ab-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    text-align: left;
}

.ab-hero-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 0.5rem;
}

.ab-hero-title-small {
    display: block;
    font-size: 1.1rem;
    color: var(--accent);
}

.ab-hero-title-main {
    display: block;
    font-size: clamp(2.75rem, 7vw, 4.25rem);
    color: var(--text);
}

.ab-hero-tagline {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 34rem;
    margin: 0;
}

.ab-intro {
    background-color: #d4c8b8;
    background-image: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(220, 210, 190, 0.5) 0%, transparent 60%);
    padding: 3rem 0 3.25rem;
}

.ab-intro-inner {
    max-width: 760px;
}

.ab-body-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #2a2520;
    line-height: 1.7;
    margin: 0 0 0.9rem;
}

.ab-body-text:last-child {
    margin-bottom: 0;
}

.ab-profile {
    background-color: #1a1a1a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)), url("/img/about-texture-bg.png");
    background-size: cover;
    background-position: center;
    padding: 2.75rem 0;
}

.ab-profile-inner {
    max-width: 1080px;
}

.ab-profile-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 2.5rem;
    align-items: center;
}

.ab-profile-card--reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    direction: rtl;
}

.ab-profile-card--reverse > * {
    direction: ltr;
}

.ab-profile-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
}

.ab-profile-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center bottom;
}

/* Focus more on Brett's face/upper body without cutting off his head */
.ab-profile-content {
    padding: 1.25rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
}

.ab-profile-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--accent-dark);
    margin: 0 0 0.3rem;
}

.ab-profile-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0 0 0.9rem;
    font-weight: 600;
}

.ab-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.ab-profile-tags li {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 2px solid var(--accent);
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
}

.ab-profile-tags li:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}

.ab-community {
    background-color: #1a1a1a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.92)), url("../img/industrial-bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 2.75rem 0;
}

.ab-community-inner {
    display: grid;
    grid-template-columns: minmax(0, 2fr) auto;
    gap: 2rem;
    align-items: center;
}

.ab-community-badge img {
    max-width: 180px;
    height: auto;
}

/* Ensure text stays readable on dark industrial background */
.ab-community .ab-body-text {
    color: var(--text);
}

.ab-team {
    background-color: #1a1a1a;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url("/img/about-texture-bg.png");
    background-size: cover;
    background-position: center;
    padding: 3.25rem 0 3.75rem;
}

.ab-team-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 2.75rem;
    align-items: center;
}

.ab-team-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5);
}

.ab-team-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ab-profile .ab-body-text,
.ab-team .ab-body-text {
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .ab-profile-card,
    .ab-profile-card--reverse,
    .ab-team-inner,
    .ab-community-inner {
        grid-template-columns: 1fr;
    }

    .ab-profile-card--reverse {
        grid-auto-flow: row;
    }

    .ab-community-badge {
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .ab-hero {
        min-height: 320px;
    }
}