/*============== HERO =================*/

.hero {
    position: relative;
    min-height: 78vh;

    display: flex;
    align-items: center;

    padding: 3rem 0 8rem;

    overflow: hidden;
}

.hero-picture {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(15, 39, 66, 0.88) 0%,
        rgba(15, 39, 66, 0.70) 30%,
        rgba(15, 39, 66, 0.40) 50%,
        rgba(15, 39, 66, 0.08) 72%,
        rgba(15, 39, 66, 0) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;

    width: min(100% - 4rem, 1280px);
    max-width: none;

    margin-inline: auto;

    flex: 1;

    margin-left: 2rem;
    margin-bottom: 6rem;
}

.hero-eyebrow {
    margin-bottom: 1rem;

    font-size: 0.9rem;
    font-weight: 600;

    color: #8de3d6;
}

.hero h1 {
    max-width: 11ch;
    margin-bottom: 1.5rem;

    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 0.95;

    color: var(--color-white)
}

.hero-description {
    max-width: 34rem;
    margin-bottom: 2rem;

    font-size: 1.05rem;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.85);

    margin-bottom: 1.75rem;
}

/*============== HERO TRUST ITEM =================*/

.hero-trust-bar {
    position: absolute;

    left: 50%;
    bottom: 1.5rem;

    transform: translateX(-50%);

    width: min(94%, 1400px);

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: rgba(15, 39, 66, 0.45);
    backdrop-filter: blur(16px);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-medium);

    overflow: hidden;

    z-index: 2;
}

.hero-trust-item {
    padding: 1.2rem 1.25rem;

    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-trust-item + .hero-trust-item {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-trust-title {
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
}

.hero-trust-title-rating {
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(251, 188, 4, 1);
}

.hero-trust-text {
    font-size: 0.78rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
}

/* ===== GALLERY ======= */

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

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-medium);
    min-height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 460px;
}

.gallery-item-wide {
    grid-column: span 2;
    min-height: 260px;
}

/*====== HOME GALLERY ======*/

.activity-gallery {
    padding: 3rem 0 0;
}

.activity-gallery-heading h2 {
    font-size: 3rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.activity-gallery-description {
    color: var(--color-muted);
}

.activity-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.activity-gallery-item {
    overflow: hidden;
    border-radius: var(--radius-medium);
}

.activity-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.activity-gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.activity-gallery-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 2;
}

.activity-gallery-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 2;
}

.activity-gallery-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 2;
}

.activity-gallery-item:nth-child(5) {
    grid-column: span 2;
    grid-row: span 2;
}

/* ===== WHY US ======= */

.why-us {
    padding: 4rem 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
}

.why-us-content h2 {
    font-size: 3rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.why-us-description {
    max-width: 520px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-muted);
    margin-bottom: 3rem;
}

.why-us-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-us-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.why-us-feature p {
    color: var(--color-muted);
    line-height: 1.5;
}

.why-us-image {
    overflow: hidden;
    border-radius: var(--radius-medium);
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-us-image2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 20% 50%;
}

/*============== FINAL CTA HOME =================*/

.final-cta {
    padding: 3rem 0;
}

.final-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 3rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}




/* =========================================
   HOME MOBILE
========================================= */

@media (max-width: 768px) {

    /* ========== HERO ========== */

    .hero {
        min-height: auto;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        padding: 3rem 0 2rem;
    }

    .hero-image {
        object-position: center;
    }


    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(15, 39, 66, 0.30) 0%,
            rgba(15, 39, 66, 0.55) 35%,
            rgba(15, 39, 66, 0.88) 100%
        );
    }


    .hero-content {
        width: 100%;
        max-width: none;

        margin: 0;
        padding-inline: 1.5rem;
    }


    .hero-eyebrow {
        margin-bottom: 0.8rem;

        font-size: 0.78rem;
    }


    .hero h1 {
        max-width: 9ch;

        margin-bottom: 1rem;

        font-size: clamp(2.8rem, 12vw, 4rem);
        line-height: 0.95;
    }


    .hero-description {
        max-width: 28rem;

        margin-bottom: 1.5rem;

        font-size: 0.98rem;
        line-height: 1.55;
    }


    .hero .hero-actions {
        width: 100%;

        display: flex;
        flex-direction: column;
        gap: 0.75rem;

        margin-top: 2rem;
    }


    .hero .hero-actions .button {
        width: 100%;
    }



    /* ========== HERO TRUST BAR ========== */

    .hero-trust-bar {
        position: static;

        width: calc(100% - 2rem);

        margin: 3rem auto 0;

        transform: none;

        grid-template-columns: repeat(2, 1fr);

        border-radius: var(--radius-medium);
    }


    .hero-trust-item {
        min-width: 0;
        padding: 1rem;
    }


    .hero-trust-item + .hero-trust-item {
        border-left: 0;
    }


    .hero-trust-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.16);
    }


    .hero-trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }


    .hero-trust-title,
    .hero-trust-title-rating {
        font-size: 0.85rem;
    }


    .hero-trust-text {
        font-size: 0.72rem;
    }



    /* ========== HOME GALLERY ========== */

    .activity-gallery {
        padding-top: 2rem;
    }


    .activity-gallery-heading h2 {
        font-size: 2.2rem;
    }


    .activity-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }


    .activity-gallery-item:nth-child(1),
    .activity-gallery-item:nth-child(4),
    .activity-gallery-item:nth-child(5) {
        grid-column: span 2;
    }


    .activity-gallery-item:nth-child(2),
    .activity-gallery-item:nth-child(3) {
        grid-column: span 1;
    }


    .activity-gallery-item {
        min-height: 220px;
    }



    /* ========== WHY US ========== */

    .why-us {
        padding: 3rem 0;
    }


    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .why-us-content h2 {
        font-size: 2.2rem;
    }


    .why-us-description {
        margin-bottom: 2rem;

        font-size: 1rem;
        line-height: 1.6;
    }


    .why-us-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }


    .why-us-image {
        height: 280px;
    }


    .why-us-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ========== FINAL CTA ========== */

    .final-cta {
        padding: 3rem 0;
    }

    .final-cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .final-cta-content h2 {
        font-size: 2.3rem;
        line-height: 1.05;
        margin-bottom: 1.5rem;
    }

    .final-cta-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;

        width: 100%;
        margin-bottom: 2rem;
    }

    .final-cta-actions .button {
        width: 100%;
    }

    .final-cta-contact {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .contact-item {
        gap: 0.25rem;
    }

}

