*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background: #111;
    overflow: hidden;
}

/* ── Full-page background photo ── */
.bg {
    position: fixed;
    inset: 0;
    background-image: url('/images/district34-villa.jpg');
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

/* ── Page shell ── */
.page {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100vh;
    min-height: 100dvh;
    width: 100%;
}

/* ── Left half: transparent, shows bg photo ── */
.photo-panel {
    flex: 0 0 58%;
}

/* ── Right half: dark overlay panel ── */
.content-panel {
    flex: 0 0 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 3.5rem;
    background: rgba(10, 10, 10, 0.78);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* ── Logo ── */
.logo-img {
    width: clamp(160px, 28vw, 360px);
    height: auto;
    display: block;
}

.logo-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #c9a96e;
    line-height: 1;
    white-space: nowrap;
}

.logo-title .pipe {
    color: #ffffff;
    margin: 0 3px;
}

.logo-divider {
    width: 100%;
    height: 1px;
    background: #c9a96e;
    opacity: 0.6;
    margin: 0.55rem 0 0.4rem;
}

.logo-sub {
    font-size: clamp(0.6rem, 0.9vw, 0.75rem);
    font-weight: 300;
    letter-spacing: 0.28em;
    color: #c9a96e;
    text-transform: uppercase;
}

/* ── Tagline ── */
.tagline {
    margin: 2rem 0 2.4rem;
    font-size: clamp(0.8rem, 1.1vw, 0.95rem);
    font-weight: 300;
    color: #e0e0e0;
    line-height: 1.75;
    max-width: 300px;
}

/* ── Store buttons ── */
.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.6rem 1.2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    min-width: 148px;
    transition: background 0.2s, border-color 0.2s;
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.75);
}

.store-btn__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.store-btn__text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.store-btn__small {
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    opacity: 0.8;
}

.store-btn__label {
    font-size: 0.8rem;
    font-weight: 500;
}

/* ── Mobile: full-screen overlay ── */
@media (max-width: 768px) {
    body {
        overflow: hidden;
    }

    .photo-panel {
        display: none;
    }

    .content-panel {
        flex: 1;
        width: 100%;
        padding: 3rem 2rem;
        align-items: center;
        text-align: center;
        justify-content: center;
        background: rgba(10, 10, 10, 0.68);
    }

    .tagline {
        max-width: 100%;
    }

    .store-buttons {
        justify-content: center;
    }

    .store-btn {
        min-width: 140px;
    }
}

@media (max-width: 380px) {
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
}
