/* Theme Park — minimal container hero (aligned with modular-house) */

body.tp-page .tp-hero {
    background: #fff;
    padding-top: 2rem;
}

/* Slightly tighter horizontal pad so the image reads larger inside the same max-width */
body.tp-page .tp-hero > .site-container {
    padding-left: clamp(1rem, 2.5vw, 1.5rem);
    padding-right: clamp(1rem, 2.5vw, 1.5rem);
}

.tp-hero-stage {
    position: relative;
    width: 100%;
    line-height: 0;
}

.tp-hero-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.tp-hero-copy {
    position: absolute;
    top: clamp(6.25rem, calc(3.5vw + 6.25rem), 10rem);
    left: clamp(1rem, 3vw, 1.75rem);
    z-index: 2;
    max-width: min(52%, 34rem);
    line-height: normal;
    text-align: left;
}

.tp-hero-title {
    margin: 0;
    font-family: 'DM Sans', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.625rem, 3.4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #111;
}

.tp-hero-tagline {
    margin: clamp(0.75rem, 1.8vw, 1rem) 0 0;
    font-family: 'DM Sans', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.0625rem, 2vw, 1.375rem);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: #111;
    max-width: 26rem;
}

.tp-hero-lead {
    margin: 0.875rem 0 0;
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    line-height: 1.7;
    color: #111;
    max-width: 28rem;
}

/* —— Intro + space photo cards —— */
.tp-intro {
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    background: #fff;
}

.tp-intro-head {
    max-width: 42rem;
}

.tp-intro-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: clamp(1rem, 2vw, 1.25rem);
}

.tp-intro-body .mh-sec-desc {
    margin: 0;
}

.tp-space-cards {
    list-style: none;
    margin: clamp(2rem, 4vw, 2.75rem) 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.25rem);
}

.tp-space-card {
    margin: 0;
}

.tp-space-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 0.375rem;
    background: #f3f3f3;
    border: 1px dashed #d4d4d4;
    overflow: hidden;
}

.tp-space-card-placeholder {
    display: block;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    .tp-space-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .tp-space-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    body.tp-page .tp-hero > .site-container {
        padding-left: clamp(0.875rem, 4vw, 1.25rem);
        padding-right: clamp(0.875rem, 4vw, 1.25rem);
    }

    .tp-hero-copy {
        max-width: min(78%, 360px);
        left: clamp(0.75rem, 3.5vw, 1rem);
    }

    .tp-hero-title {
        font-size: clamp(1.375rem, 5.5vw, 1.75rem);
    }

    .tp-hero-tagline {
        font-size: clamp(0.9375rem, 4vw, 1.0625rem);
        max-width: 100%;
    }

    .tp-hero-lead {
        font-size: 13px;
        max-width: 100%;
    }
}
