* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Georgia, serif;
    background: #0b0f14;
    color: #f3eadb;
}

.hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background:
            linear-gradient(rgba(8, 10, 14, 0.55), rgba(8, 10, 14, 0.78)),
            radial-gradient(circle at top, rgba(133, 173, 204, 0.22), transparent 30%),
            #0b0f14;
}

.content {
    text-align: center;
    max-width: 760px;
    padding: 2rem;
}

.eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #d8c6a3;
    margin-bottom: 1rem;
}

h1 {
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 500;
    color: #e2d4b7;
}

.subtitle {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f7f2e8;
}