/* Home page — desktop first; mobile overrides at end */

.home-page {
    background: #ffffff;
}

.home-page .ast-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

.home-page .content-area,
.home-page #primary {
    width: 100%;
}

.home-article {
    margin: 0;
}

.entry-content {
    margin: 0;
    padding: 0;
}

.home-section {
    padding: 3rem 0;
}

.home-section--alt {
    background: #f0f5fa;
}

.home-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.home-section__inner--narrow {
    max-width: 100%;
}

.home-section__title {
    margin: 0 0 1.75rem;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    color: #000000;
}

/* Hero — 50/50 split (image | dark panel) */
.home-hero--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    width: 100%;
    min-height: min(52vw, 560px);
    max-height: 640px;
}

.home-hero__media {
    position: relative;
    min-height: 440px;
    background: #0a0f0e;
    overflow: hidden;
}

.home-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.home-hero__panel {
    background: #051614;
    color: #ffffff;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.75rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.home-hero__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffffff;
}

.home-hero__title {
    margin: 0 0 1.25rem;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: clamp(1.65rem, 2.6vw, 2.65rem);
    font-weight: 700;
    line-height: 1.12;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
}

.home-hero__lede {
    margin: 0 0 1.5rem;
    max-width: 38rem;
    font-size: 1rem;
    line-height: 1.65;
    color: #e5eae9;
    text-align: left;
}

.home-hero__lede strong {
    color: #ffffff;
    font-weight: 700;
}

.home-icon-list--hero {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.95rem;
}

.home-icon-list--hero li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
}

.home-icon-list--hero li::before {
    content: '\2713';
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #00c800;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.home-hero__cta {
    margin: 0;
    text-align: left;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.85rem;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    border: 2px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-btn--primary {
    color: #ffffff;
    background: #38a035;
    border-color: #38a035;
}

.home-btn--primary:hover,
.home-btn--primary:focus-visible {
    background: #2f8a2d;
    border-color: #2f8a2d;
    color: #ffffff;
}

.home-btn--hero {
    color: #ffffff;
    background: #a38f5d;
    border-color: #a38f5d;
}

.home-btn--hero:hover,
.home-btn--hero:focus-visible {
    background: #8f7d50;
    border-color: #8f7d50;
    color: #ffffff;
}

.home-btn--inverse {
    color: #ffffff;
    background: transparent;
    border-color: #ffffff;
}

.home-btn--inverse:hover,
.home-btn--inverse:focus-visible {
    color: #002020;
    background: #ffffff;
    border-color: #ffffff;
}

.home-btn:focus-visible {
    outline: 2px dotted #046bd2;
    outline-offset: 3px;
}

/* What we buy */
.home-buy .home-section__title {
    margin-bottom: 2rem;
}

.home-buy__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}

.home-buy__card {
    text-align: center;
}

.home-buy__image-link {
    display: block;
    margin: 0 auto 1rem;
    max-width: 368px;
    text-decoration: none;
    color: inherit;
}

.home-buy__image-link:focus-visible {
    outline: 2px dotted #046bd2;
    outline-offset: 4px;
    border-radius: 4px;
}

.home-buy__image-link img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.home-buy__label {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #000000;
}

.home-buy__subtitle {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #333333;
}

/* Process */
.home-process .home-section__title {
    margin-bottom: 1rem;
}

.home-process__intro {
    margin: 0 auto 2.5rem;
    max-width: 820px;
    font-size: 1rem;
    line-height: 1.65;
    text-align: center;
    color: #000000;
}

.home-process__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.home-step {
    text-align: left;
}

.home-step img {
    display: block;
    margin-bottom: 1rem;
    width: 100px;
    height: auto;
}

.home-step__title {
    margin: 0 0 0.65rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #000000;
}

.home-step__text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #1f2937;
}

.home-step__text a {
    color: #3d9a5c;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.home-step__text a:hover,
.home-step__text a:focus-visible {
    color: #002020;
}

/* Value */
.home-value {
    text-align: center;
}

.home-value__headline {
    margin: 0 0 0.35rem;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #000000;
}

.home-value__subhead {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #000000;
}

.home-value__copy {
    margin: 0 auto;
    max-width: 900px;
    font-size: 1rem;
    line-height: 1.65;
    text-align: left;
    color: #111111;
}

/* Reviews */
.home-reviews .home-section__title {
    margin-bottom: 2rem;
}

.home-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.home-review {
    margin: 0;
    text-align: center;
}

.home-review__stars {
    display: block;
    max-width: 250px;
    width: 100%;
    height: auto;
    margin: 0 auto 1rem;
}

.home-review__quote {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #111111;
}

.home-review__quote p {
    margin: 0;
}

/* Bottom CTA band */
.home-bottom-cta {
    padding: 3.5rem 1.5rem;
    background: #002020;
    text-align: center;
}

.home-bottom-cta__inner {
    max-width: 720px;
    margin: 0 auto;
}

.home-bottom-cta__title {
    margin: 0 0 1.5rem;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
}

@media (max-width: 1023.98px) {
    .home-buy__grid,
    .home-process__grid,
    .home-reviews__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .home-step {
        text-align: center;
    }

    .home-step img {
        margin-left: auto;
        margin-right: auto;
    }

    .home-process__intro {
        text-align: left;
    }

    .home-hero--split {
        grid-template-columns: 1fr;
        min-height: unset;
        max-height: none;
    }

    .home-hero__media {
        min-height: 0;
        aspect-ratio: 16 / 9;
        max-height: 360px;
    }
}

@media (max-width: 767.98px) {
    .home-page .ast-container {
        padding: 0 1.1rem;
    }

    .home-section {
        padding: 2.25rem 0;
    }

    .home-hero__media {
        max-height: 280px;
    }

    .home-hero__panel {
        padding: 2rem 1.25rem 2.5rem;
    }

    .home-hero__title {
        font-size: clamp(1.45rem, 6vw, 2rem);
    }

    .home-buy__subtitle {
        display: none;
    }
}
