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

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #000000;
    min-height: 100vh;
    position: relative;
}

.overlay {
    display: none;
}

.content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

header {
    margin-bottom: 2rem;
}

h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.4),
        transparent
    );
    margin-bottom: 3rem;
}


footer {
    position: absolute;
    bottom: 2rem;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

@media (max-width: 600px) {
    .content {
        padding: 1.5rem;
    }

    footer {
        position: relative;
        bottom: auto;
        margin-top: 4rem;
    }
}
