/* ─── Home page ───────────────────────────────────────────────────────────── */
.main-content {
    flex: 1;
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Background image in ::after so it can be rotated without affecting layout */
.main-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/background-removed-1769739222456.png');
    background-size: cover;
    background-position: center 12%;
    background-repeat: no-repeat;
    transform: translateY(6%) rotate(6deg) scale(1.12);
    transform-origin: center;
    z-index: 0;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-text {
    position: absolute;
    top: 10%;
    left: 6%;
    z-index: 2;
    text-align: left;
    max-width: 52ch;
}

.hero-headline {
    font-size: clamp(1.1rem, 2vw + 0.6rem, 1.8rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.05;
    margin: 0 0 1.1rem;
    color: #fff;
}

.hero-emphasis {
    color: #fff;
    font-weight: 600;
    font-size: clamp(1.4rem, 3.2vw + 0.9rem, 2.6rem);
    display: inline-block;
    margin-top: 0.18em;
    letter-spacing: 0.03em;
}

.hero-sub {
    font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.05rem);
    font-weight: 300;
    color: #ccc;
    line-height: 1.65;
    margin: 0 0 1.25rem;
    letter-spacing: 0.02em;
}

.hero-tagline {
    font-size: clamp(0.75rem, 0.9vw + 0.3rem, 0.88rem);
    font-weight: 300;
    color: #777;
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.01em;
    border-left: 2px solid #333;
    padding-left: 0.85rem;
    font-style: italic;
}

.hero-callout {
    margin: 0;
    padding: 2px 0 2px 20px;
    border-left: 2px solid #c8922a;
    font-size: clamp(0.85rem, 1vw + 0.35rem, 1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, .86);
    font-weight: 400;
    font-style: normal;
    max-width: 48ch;
}

@media (max-width: 768px) {
    .hero-text {
        top: 6%;
        left: 4%;
        max-width: 90%;
    }
    .hero-headline {
        font-size: clamp(1.4rem, 5.5vw + 0.5rem, 2rem);
    }
}
