/* /assets/css/home.css */
.home-page {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-hero {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 22px 22px;
    min-height: 620px;
    margin-top: -2px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(182, 160, 110, 0.28);
    border-top: 0;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 13, 10, 0.16) 0%, rgba(17, 13, 10, 0.12) 38%, rgba(17, 13, 10, 0.44) 62%, rgba(17, 13, 10, 0.54) 100%),
        linear-gradient(180deg, rgba(245, 230, 198, 0.03) 0%, rgba(0, 0, 0, 0.12) 100%);
    pointer-events: none;
}

.home-hero__inner {
    position: relative;
    z-index: 1;
    min-height: 620px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 24px;
    padding: 50px 60px 56px;
}

.home-hero__spacer {
    min-height: 1px;
}

.home-hero__content {
    justify-self: end;
    width: min(100%, 470px);
    margin-right: 10px;
    padding: 18px 18px 18px 24px;
    border-radius: 18px;
    background: rgba(18, 13, 10, 0.12);
    backdrop-filter: blur(1px);
}

.home-hero__title {
    margin: 0 0 14px;
    color: #f7e3b6;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3rem, 5vw, 4.65rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: 0;
    text-shadow: 0 4px 18px rgba(0,0,0,0.34);
}

.home-hero__text {
    max-width: 360px;
    margin: 0;
    color: rgba(247, 233, 205, 0.96);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.04rem;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0,0,0,0.30);
}

.home-hero__actions {
    margin-top: 22px;
}

.home-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 34px;
    border-radius: 12px;
    border: 1px solid rgba(210, 164, 90, 0.30);
    background: linear-gradient(180deg, rgba(171, 46, 35, 0.98), rgba(122, 29, 24, 0.98));
    color: #f8efdc;
    text-decoration: none;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 22px rgba(0,0,0,0.20);
}

.home-about {
    padding: 22px 24px;
}

.home-about__eyebrow,
.home-news__eyebrow,
.home-calendar__eyebrow,
.home-carousel__eyebrow {
    margin: 0 0 8px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f2efdf;
}

.home-about__title,
.home-news__title,
.home-calendar__title,
.home-carousel__title {
    margin: 0 0 12px;
    color: #fff8ea;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.05;
}

.home-about__text,
.home-carousel__text,
.home-news__card-text,
.home-calendar__card-text,
.home-news__meta,
.home-calendar__meta {
    margin: 0 0 12px;
    color: #f3f1e8;
    line-height: 1.6;
}

.home-news-calendar__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
}

.home-news,
.home-calendar {
    padding: 22px 24px;
}

@media (max-width: 1080px) {
    .home-hero,
    .home-hero__inner {
        min-height: 560px;
    }

    .home-hero__inner {
        padding-left: 42px;
        padding-right: 42px;
        grid-template-columns: 1fr 0.95fr;
    }

    .home-hero__content {
        width: min(100%, 430px);
        margin-right: 0;
    }

    .home-hero__title {
        font-size: clamp(2.7rem, 5vw, 4rem);
    }
}

@media (max-width: 900px) {
    .home-page {
        gap: 12px;
    }

    .home-hero,
    .home-hero__inner {
        min-height: 420px;
    }

    .home-hero {
        border-radius: 18px;
        border-top: 1px solid rgba(182, 160, 110, 0.28);
        margin-top: 0;
    }

    .home-hero__inner {
        grid-template-columns: 1fr;
        padding: 28px 24px 30px;
        align-items: end;
    }

    .home-hero__spacer {
        display: none;
    }

    .home-hero__content {
        justify-self: stretch;
        width: auto;
        padding: 16px 18px;
        background: rgba(18, 13, 10, 0.28);
    }

    .home-hero__title {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
    }

    .home-hero__text {
        max-width: none;
        font-size: 0.98rem;
    }

    .home-news-calendar__grid {
        grid-template-columns: 1fr;
    }
}
