* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0b0b0b;
    color: #f2eee5;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
}

header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

h1 {
    font-size: clamp(2.8rem, 8vw, 6rem);
    letter-spacing: 0.14em;
    font-weight: normal;
}

.tagline {
    margin-top: 24px;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #c9c1b3;
}

.button {
    margin-top: 40px;
    padding: 12px 28px;
    border: 1px solid #8b8b8b;
    color: #f2eee5;
    text-decoration: none;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.button:hover {
    background: #f2eee5;
    color: #0b0b0b;
}

section {
    padding: 80px 10%;
    max-width: 1100px;
    margin: auto;
}

h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    font-weight: normal;
    letter-spacing: 0.08em;
    color: #f2eee5;
}

.card {
    border-top: 1px solid #3a3a3a;
    padding: 28px 0;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: normal;
    color: #f2eee5;
}

.card p {
    margin-top: 8px;
    color: #c9c1b3;
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: #8b8b8b;
    border-top: 1px solid #222;
}