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

html,
body {
    min-height: 100%;
}

body {
    background: #09040f;
    color: #f4ecff;
}

.page {
    min-height: 100vh;
    min-height: 100svh;

    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;

    background:
    radial-gradient(circle at 50% 15%, #21112e 0%, #0c0712 55%, #060309 100%);
}

.artwork {
    min-height: 56vh;

    background-image: url("sadvampire-artwork.webp");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.content {
    position: relative;
    z-index: 1;

    padding: 2rem 1.5rem 3rem;

    text-align: center;

    background:
    linear-gradient(
        180deg,
        rgba(9, 4, 15, 0.88) 0%,
                    #09040f 22%,
                    #09040f 100%
    );

    text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.85),
    0 0 16px rgba(0, 0, 0, 0.35);
}

h1 {
    font-family: "Cinzel Decorative", Georgia, serif;
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: 1;
    letter-spacing: 0.025em;
    text-transform: uppercase;

    color: #c7a3e8;
}

.tagline {
    margin-top: 1rem;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.25;

    color: #eee2fb;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;

    width: min(19rem, 75%);
    margin: 1.6rem auto;

    color: rgba(185, 132, 234, 0.75);
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(192, 147, 235, 0.7)
    );
}

.divider::after {
    background: linear-gradient(
        90deg,
        rgba(192, 147, 235, 0.7),
                                transparent
    );
}

.divider span {
    font-size: 0.55rem;
}

.coming-soon {
    font-family: "Cinzel Decorative", Georgia, serif;
    font-size: clamp(1.4rem, 2.7vw, 2.3rem);
    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: #f3e9ff;

    animation: breathe 5s ease-in-out infinite;
}

.subtitle {
    margin-top: 1rem;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    line-height: 1.3;

    color: rgba(235, 220, 249, 0.86);
}

@keyframes breathe {
    0%,
    100% {
        opacity: 0.75;
    }

    50% {
        opacity: 1;
    }
}

@media (max-width: 700px) {
    .page {
        grid-template-rows: 48vh auto;
    }

    .artwork {
        min-height: 48vh;

        background-position: 48% bottom;
        background-size: cover;
    }

    .content {
        padding: 1.7rem 1.2rem 2.5rem;
    }

    h1 {
        font-size: clamp(2.7rem, 13vw, 4.5rem);
    }

    .tagline {
        font-size: clamp(1.2rem, 5vw, 1.55rem);
    }

    .coming-soon {
        font-size: clamp(1.25rem, 6vw, 1.8rem);
        letter-spacing: 0.1em;
    }
}

@media (max-width: 420px) {
    .page {
        grid-template-rows: 44vh auto;
    }

    .artwork {
        min-height: 44vh;
        background-position: 46% bottom;
    }

    .content {
        padding-top: 1.4rem;
    }

    .divider {
        margin: 1.2rem auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .coming-soon {
        animation: none;
    }
}
/* ---------- Footer ---------- */

.site-footer {

    padding: 1rem 1rem 1.5rem;

    text-align: center;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.75rem;
    line-height: 1.5;

    color: rgba(230, 220, 240, 0.55);

    text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.75);
}
