/* Header */
.large-header {
    position: relative;
    width: 100%;
    background: #dfdfdf;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}

#large-header {
    background:
            linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35)),
            url("ny-1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#demo-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.site-logo {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: auto;
    z-index: 3;
}

.hero-text {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(90%, 1100px);
    text-align: center;
    z-index: 3;
}

.main-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-wrap: balance;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.main-subtitle {
    margin: 22px auto 0;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.01em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.main-highlight {
    margin: 18px auto 0;
    max-width: 900px;
    color: #ffffff;
    font-size: clamp(1.3rem, 2.4vw, 2rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.main-title .thin {
    font-weight: 200;
}

@media only screen and (max-width: 768px) {
    .site-logo {
        top: 50px;
        width: 220px;
    }

    .hero-text {
        top: 60%;
        width: 88%;
    }

    .main-subtitle {
        margin-top: 16px;
        line-height: 1.5;
    }

    .main-highlight {
        margin-top: 14px;
    }
}