@import url('base-v224.css');

main {
    display: grid;
    gap: 2rem;
    padding: 1.4rem 0 2.4rem;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
    gap: 1.5rem;
    align-items: stretch;
}

.hero-copy {
    display: grid;
    align-content: center;
    gap: 1.25rem;
    padding: clamp(1.6rem, 4vw, 3.6rem);
    border-radius: var(--radius-lg);
    border: 1px solid hsla(var(--primary-hsl), 0.12);
    background:
        linear-gradient(145deg, hsla(var(--surface-strong-hsl), 0.94), hsla(var(--primary-soft-hsl), 0.66)),
        url('images/wave green.png') right bottom / 260px no-repeat;
    box-shadow: var(--shadow-soft);
}

.eyebrow {
    width: fit-content;
    padding: 0.38rem 0.9rem;
    border-radius: 999px;
    background: hsla(var(--primary-hsl), 0.1);
    color: hsl(var(--primary-hsl));
    font-family: var(--font-headline);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.7rem, 6vw, 5.2rem);
    line-height: 0.95;
}

.hero-copy p:last-of-type {
    max-width: 42rem;
    font-size: 1.15rem;
    color: hsla(var(--foreground-hsl), 0.8);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.hero-highlights li {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: hsla(var(--primary-soft-hsl), 0.58);
    border: 1px solid hsla(var(--primary-hsl), 0.12);
    color: hsl(var(--olive-hsl));
    font-weight: 700;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.button-secondary {
    background: hsla(var(--surface-strong-hsl), 0.92);
    color: hsl(var(--primary-hsl));
    border: 1px solid hsla(var(--primary-hsl), 0.14);
    box-shadow: none;
}

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

.hero-card {
    min-height: 220px;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid hsla(var(--primary-hsl), 0.1);
    box-shadow: var(--shadow-card);
    background: linear-gradient(180deg, hsla(var(--surface-strong-hsl), 0.94), hsla(var(--primary-soft-hsl), 0.44));
}

.hero-card-tall {
    grid-row: span 2;
    min-height: 100%;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-card:hover img,
.carousel-item:hover img {
    transform: scale(1.05);
}

.carousel-container {
    padding: clamp(1.4rem, 3vw, 2.1rem);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, hsla(var(--surface-strong-hsl), 0.9), hsla(var(--primary-soft-hsl), 0.54));
    border: 1px solid hsla(var(--primary-hsl), 0.1);
    box-shadow: var(--shadow-card);
}

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

.brand-strip,
.categories-shell,
.why-shell {
    padding: 1.4rem;
    border-radius: var(--radius-lg);
}

.brand-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.brand-badges span {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: hsla(var(--primary-soft-hsl), 0.54);
    color: hsl(var(--olive-hsl));
    border: 1px solid hsla(var(--primary-hsl), 0.12);
    font-weight: 700;
}

.categories-grid,
.benefits-grid,
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.category-card,
.benefit-card,
.why-grid article {
    padding: 1.3rem;
    border-radius: 26px;
    border: 1px solid hsla(var(--primary-hsl), 0.1);
    background: linear-gradient(180deg, hsla(var(--surface-strong-hsl), 0.95), hsla(var(--primary-soft-hsl), 0.46));
    box-shadow: var(--shadow-card);
}

.category-card h3,
.benefit-card h3,
.why-grid h3 {
    margin-bottom: 0.7rem;
    font-size: 1.35rem;
}

.category-card p,
.benefit-card p,
.why-grid p {
    color: hsla(var(--foreground-hsl), 0.76);
    margin-bottom: 0.9rem;
}

.category-card a {
    color: hsl(var(--primary-hsl));
    font-family: var(--font-headline);
}

.carousel-item {
    overflow: hidden;
    min-height: 340px;
    border-radius: 26px;
    background: linear-gradient(180deg, hsla(var(--surface-strong-hsl), 0.96), hsla(var(--primary-soft-hsl), 0.36));
    display: grid;
}

.carousel-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.carousel-copy {
    display: grid;
    gap: 0.55rem;
    padding: 1rem 1rem 1.2rem;
}

.carousel-copy h3 {
    font-size: 1.35rem;
}

.carousel-copy p {
    color: hsla(var(--foreground-hsl), 0.76);
}

.benefits-shell {
    display: grid;
    gap: 1rem;
}

.location {
    padding-bottom: 0.4rem;
}

.location-card {
    padding: clamp(1.4rem, 3vw, 2rem);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, hsla(var(--surface-strong-hsl), 0.95), hsla(var(--primary-soft-hsl), 0.5));
}

.location iframe {
    width: 100%;
    min-height: 380px;
    border-radius: 28px;
    box-shadow: inset 0 0 0 1px hsla(var(--primary-hsl), 0.08);
}

footer .social-media a {
    min-width: 46px;
    min-height: 46px;
    padding: 0.55rem;
}

footer .social-media img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

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

    .categories-grid,
    .benefits-grid,
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-gallery {
        min-height: 320px;
    }

    .hero-card-tall {
        grid-row: auto;
    }
}

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

    .carousel-item {
        min-height: 250px;
    }

    .hero-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .hero-copy {
        padding: 1.3rem;
        background-size: 170px;
    }

    .categories-grid,
    .benefits-grid,
    .why-grid,
    .hero-gallery {
        grid-template-columns: 1fr;
    }

    .hero-gallery {
        gap: 0.8rem;
    }

    .hero-card,
    .hero-card-tall {
        min-height: 220px;
    }

    .location iframe {
        min-height: 300px;
    }
}
