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

html, body {
    height: 100%;
}

body {
    background: #0a0a0a;
    color: #fff;
    font-family: Georgia, serif;
    display: flex;
    flex-direction: column;
}

.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.company-name {
    font-size: 14px;
    font-variant: small-caps;
    letter-spacing: 4px;
    opacity: 0.4;
    margin-bottom: 50px;
}

.headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 62px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 80px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    border: 2px solid #fff;
    transition: background 0.2s ease, color 0.2s ease;
}

.cta-button:hover {
    background: #fff;
    color: #000;
}

.footer {
    border-top: 2px solid #222;
    text-align: center;
    padding: 1.5rem;
    font-size: 11px;
    color: #666;
    letter-spacing: 0.5px;
}

@media (max-width: 720px) {
    .company-name {
        margin-bottom: 60px;
    }

    .headline {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .cta-button {
        padding: 14px 30px;
    }
}
