.home-page {
    flex: 1;
    min-height: 100vh;
    padding: 48px;
    box-sizing: border-box;

    color: #eee4d3;

    background:
        radial-gradient(circle at 85% 8%,
            rgba(151, 93, 43, 0.24),
            transparent 30%),
        radial-gradient(circle at 10% 75%,
            rgba(103, 43, 35, 0.18),
            transparent 30%),
        linear-gradient(145deg,
            #171310,
            #2a1d17);
}

.home-hero {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: center;
    gap: 64px;

    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 50px;
    box-sizing: border-box;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015));

    border: 1px solid rgba(213, 168, 95, 0.34);
    border-radius: 20px;

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-hero-content {
    min-width: 0;
}

.home-eyebrow,
.home-section-eyebrow {
    display: block;
    margin-bottom: 12px;

    color: #bd8d50;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.home-hero h1 {
    max-width: 760px;
    margin: 0;

    color: #f1d39a;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(3rem,
            6vw,
            5.4rem);

    line-height: 0.98;
    letter-spacing: -0.04em;
}

.home-tagline {
    max-width: 700px;
    margin: 24px 0 0;

    color: #e6d4b9;
    font-size: 1.3rem;
    line-height: 1.55;
}

.home-copy {
    max-width: 740px;
    margin: 20px 0 0;
    padding: 0;

    color: #cdbda7;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;

    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
}

.home-copy-secondary {
    max-width: 740px;
    margin: 12px 0 0;

    color: #9f8f7b;
    font-size: 0.92rem;
    line-height: 1.6;
}

.home-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;

    margin-top: 32px;
}

.home-primary-button,
.home-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 50px;
    padding: 0 22px;

    color: #21160f;

    background:
        linear-gradient(135deg,
            #e1b56c,
            #bd8441);

    border: 1px solid #efc985;
    border-radius: 9px;

    font: inherit;
    font-weight: 700;
    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);

    transition:
        transform 150ms ease,
        filter 150ms ease,
        box-shadow 150ms ease;
}

.home-primary-button:hover,
.home-secondary-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);

    background:
        linear-gradient(135deg,
            #e1b56c,
            #bd8441);

    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.home-primary-button:focus-visible,
.home-secondary-button:focus-visible {
    outline: 3px solid rgba(241, 211, 154, 0.55);
    outline-offset: 3px;
}

.home-button-arrow {
    font-size: 1.2rem;
}

.home-action-note {
    color: #9f8f7b;
    font-size: 0.86rem;
}

/* Group photo carousel */

.home-gallery-column {
    min-width: 0;
}

.home-gallery {
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;

    background: #100d0b;

    border: 1px solid rgba(233, 194, 126, 0.45);
    border-radius: 12px;

    box-shadow:
        0 20px 38px rgba(0, 0, 0, 0.45),
        10px 10px 0 rgba(150, 91, 43, 0.12);

    transform: rotate(1deg);
}

.home-gallery::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(to top,
            rgba(15, 10, 7, 0.42),
            transparent 38%);

    box-shadow:
        inset 0 0 34px rgba(0, 0, 0, 0.2);
}

.home-gallery-image {
    position: absolute;
    inset: 0;

    display: block;
    width: 100%;
    height: 100%;

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

    background: #100d0b;

    opacity: 0;
    transform: scale(1.025);

    transition:
        opacity 700ms ease,
        transform 5s ease;
}

.home-gallery-image.active {
    opacity: 1;
    transform: scale(1);
}

.home-gallery-controls {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;

    display: flex;
    gap: 8px;
}

.home-gallery-button {
    display: grid;
    place-items: center;

    width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;

    color: #f3ddb5;
    background: rgba(20, 13, 9, 0.72);

    border: 1px solid rgba(231, 188, 112, 0.48);
    border-radius: 50%;

    font-size: 1.8rem;
    line-height: 1;

    backdrop-filter: blur(7px);
}

.home-gallery-button:hover {
    color: #21160f;
    background: #e0b369;
}

.home-gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    margin-top: 18px;
}

.home-gallery-dot {
    display: block;

    width: 9px;
    height: 9px;
    min-height: 9px;
    padding: 0;

    background: rgba(239, 210, 154, 0.28);

    border: 1px solid rgba(239, 210, 154, 0.45);
    border-radius: 50%;
}

.home-gallery-dot:hover {
    background: rgba(239, 210, 154, 0.55);
}

.home-gallery-dot.active {
    width: 26px;

    background: #d6a85f;
    border-color: #edc880;
    border-radius: 999px;
}

/* Feature cards */

.home-features {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 18px;

    width: min(1180px, 100%);
    margin: 28px auto 0;
}

.home-feature-card {
    position: relative;

    min-width: 0;
    padding: 24px;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(213, 168, 95, 0.22);
    border-radius: 12px;

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.13);
}

.home-feature-number {
    display: block;
    margin-bottom: 16px;

    color: #8e6238;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.home-feature-card h2 {
    margin: 0 0 12px;

    color: #e6b86d;
    font-size: 1.2rem;
}

.home-feature-card p {
    margin: 0;

    color: #cdbda7;
    line-height: 1.65;
}

/* Current campaign card */

.home-campaign-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;

    width: min(1180px, 100%);
    margin: 64px auto 0;
    padding: 38px;
    box-sizing: border-box;

    background:
        linear-gradient(135deg,
            rgba(112, 17, 34, 0.38),
            rgba(255, 255, 255, 0.025));

    border: 1px solid rgba(213, 168, 95, 0.34);
    border-radius: 16px;
}

.home-campaign-copy {
    max-width: 760px;
}

.home-campaign-preview h2 {
    margin: 0 0 10px;

    color: #efd29a;
    font-size: 1.8rem;
}

.home-campaign-preview p {
    margin: 0;

    color: #cdbda7;
    line-height: 1.65;
}

.home-secondary-button {
    flex-shrink: 0;
}

/* Tablet */

@media (max-width: 950px) {
    .home-page {
        padding: 28px;
    }

    .home-hero {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .home-gallery-column {
        order: -1;
        width: min(440px, 100%);
        margin: 0 auto;
    }

    .home-gallery {
        aspect-ratio: 16 / 10;
        transform: none;
    }

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

/* Mobile */

@media (max-width: 650px) {
    .home-page {
        padding: 16px;
    }

    .home-hero {
        gap: 30px;
        padding: 22px;
        border-radius: 14px;
    }

    .home-hero h1 {
        font-size: clamp(2.7rem,
                14vw,
                4rem);
    }

    .home-tagline {
        font-size: 1.08rem;
    }

    .home-gallery {
        aspect-ratio: 4 / 3;
    }

    .home-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-primary-button {
        width: 100%;
    }

    .home-campaign-preview {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px 20px;
    }

    .home-secondary-button {
        width: 100%;
    }
}
