/* ── Hero ────────────────────────────────────── */
.site-home {
    padding-top: 0;
}

.home-hero {
    position: relative;
    height: clamp(380px, 52vw, 580px);
}

.home-hero__track {
    position: absolute;
    inset: 0;
}

.home-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
    background: #0d3b28;
}

.home-hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.home-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.42) 55%,
        rgba(0,0,0,0.62) 100%
    );
    z-index: 1;
}

.home-hero__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 3.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    text-align: center;
}

/* Dots */
.home-hero__dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.45rem;
}

.home-hero__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, width 0.2s;
}

.home-hero__dot.is-active {
    background: #fff;
    width: 1.25rem;
}

.home-hero__dot--light.is-active {
    background: #dd8036;
    width: 1.25rem;
}

/* ── Section divider ────────────────────────── */
.home-divider {
    width: 100%;
    max-width: 7rem;
    height: 2px;
    background: #dd8036;
    border-radius: 2px;
    margin-left: auto;
    margin-right: auto;
}

.home-divider--left {
    margin-left: 0;
    margin-right: auto;
}

.home-divider--orange {
    background: #ff6600;
}

/* ── Highlights strip ───────────────────────── */
.home-highlights {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.home-highlights__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.home-highlights__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
    padding: 1.1rem 0.85rem;
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid rgba(221, 128, 54, 0.18);
    box-shadow: 0 8px 28px rgba(28, 27, 26, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-highlights__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(28, 27, 26, 0.12);
}

.home-highlights__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 9999px;
    background: color-mix(in srgb, var(--hl-color) 14%, white);
    color: var(--hl-color);
    flex-shrink: 0;
}

.home-highlights__icon .material-symbols-outlined {
    font-size: 1.65rem;
}

.home-highlights__label {
    margin: 0;
    font-family: var(--font-headline, inherit);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    color: #1c1b1a;
}

.home-highlights__label strong {
    color: #dd8036;
    font-weight: 800;
}

@media (min-width: 640px) {
    .home-highlights__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .home-highlights__grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }

    .home-highlights__item {
        padding: 1.25rem 0.75rem;
    }

    .home-highlights__label {
        font-size: 0.82rem;
    }
}

/* ── Testimonials ───────────────────────────── */
.home-testimonials,
.home-social,
.home-cta-quote {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-testimonials__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.60);
    pointer-events: none;
}

.home-testimonials__slider {
    position: relative;
    min-height: 260px;
}

.home-testimonial {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-testimonial.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.home-testimonial__photo {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.85);
    display: block;
    margin: 0 auto 1rem;
}

.home-testimonial__initial {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.92);
    color: #dd8036;
    font-family: var(--font-headline, inherit);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    object-fit: unset;
}

/* ── Social overlay ─────────────────────────── */
.home-social .home-testimonials__overlay {
    background: rgba(0,0,0,0.52);
}

/* Social icons */
.home-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background: #fff;
    color: #dd8036;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    text-decoration: none;
}

.home-social-icon:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* ── CTA Quote ──────────────────────────────── */
.home-cta-quote__overlay {
    position: absolute;
    inset: 0;
    background: rgba(40,40,40,0.80);
    pointer-events: none;
}

/* ── Product card label ─────────────────────── */
.home-product-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    text-align: center;
    padding: 0.875rem 0.5rem;
    color: #1c1b1a;
    transition: color 0.18s ease;
}

.group:hover .home-product-label {
    color: #944a00;
}

/* ── Misc ───────────────────────────────────── */
.site-home .prose p {
    margin: 0;
}

@media (min-width: 768px) {
    .home-hero {
        height: clamp(420px, 50vw, 620px);
    }

    .home-hero__content {
        padding-bottom: 4rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
