.home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 560px;
    overflow: hidden;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            var(--bg-main) 0%,
            rgba(247, 243, 237, 0.96) 10%,
            rgba(247, 243, 237, 0.82) 24%,
            rgba(247, 243, 237, 0.50) 42%,
            rgba(247, 243, 237, 0.15) 58%,
            rgba(247, 243, 237, 0) 72%
        ),
        url("../image/joanna-hero.png");
    background-size: cover;
    background-position: 55% center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4.25rem 4.5vw;
}

.hero-copy h1 {
    max-width: 680px;
    margin: 0.5rem 0 1.25rem;
    font-size: clamp(2.6rem, 3.6vw, 4rem);
    line-height: 1;
}

.hero-intro {
    max-width: 540px;
    font-size: clamp(1rem, 1.15vw, 1.12rem);
    line-height: 1.7;
}

.hero-image {
    position: relative;
    z-index: 1;
    min-height: 560px;
}

.hero-kicker {
    display: block;
    font-size: 0.55em;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.12em;
}

.hero-name {
    display: block;
    font-size: 1em;
    line-height: 0.95;
}

.worlds-section {
    padding: 5.25rem 5%;
    background: var(--bg-alt);
}

.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.world-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.8fr) minmax(260px, 0.8fr);
    gap: 1.5rem;
    width: min(100%, var(--container));
    margin: 0 auto;
}

.world-card {
    background: var(--bg-card);
    border: 1px solid rgba(221, 210, 193, 0.8);
    box-shadow: var(--shadow);
}

.featured-world {
    display: grid;
    grid-template-columns: 1.2fr 0.95fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem;
}

.featured-world img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    object-position: center;
    border: 1px solid var(--border);
}

.world-card-copy {
    padding: 1.25rem 1.25rem 1.25rem 0;
}

.world-card h3 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3vw, 3rem);
}

.world-card p {
    color: #333333;
}

.coming-world {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    text-align: center;
}

.world-image-placeholder {
    min-height: 225px;
    margin-bottom: 1.35rem;
    background:
        linear-gradient(rgba(255,255,255,0.08), rgba(0,0,0,0.12)),
        linear-gradient(135deg, #9d9d83, #d6c5a6);
}

.clockmaker-world .world-image-placeholder {
    background:
        linear-gradient(rgba(255,255,255,0.06), rgba(0,0,0,0.22)),
        linear-gradient(135deg, #4b4a42, #9a8061);
}

.coming-world h3 {
    margin-bottom: 0.35rem;
    font-size: 1.55rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.coming-soon {
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 1050px) {

    .home-hero,
    .world-grid,
    .featured-world {
        grid-template-columns: 1fr;
    }

    .home-hero::before {
        background:
            linear-gradient(
                to bottom,
                rgba(247, 243, 237, 0) 35%,
                rgba(247, 243, 237, 0.78) 72%,
                var(--bg-main) 100%
            ),
            url("../image/joanna-hero.png");
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }

    .hero-image {
        order: -1;
        min-height: 390px;
    }

    .hero-copy {
        padding: 3rem 7vw 4rem;
    }

    .hero-copy h1 {
        max-width: 680px;
        font-size: clamp(2.6rem, 8vw, 4rem);
    }

    .world-card-copy {
        padding: 1.25rem;
    }
}

@media (max-width: 600px) {

    .home-hero {
        min-height: unset;
    }

    .hero-image {
        min-height: 300px;
    }

    .button-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}