@font-face {
    font-family: 'Cormorant';
    src: url('/fonts/CormorantGaramond-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant';
    src: url('/fonts/CormorantGaramond-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

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

html, body {
    height: 100%;
    background: #f4f3f0;
    color: #2a2a2a;
    font-family: 'Cormorant', Georgia, 'Times New Roman', serif;
    font-size: 19px;
    line-height: 1.6;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

h1 {
    font-weight: 400;
    font-size: 3.6rem;
    color: #2a2a2a;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.rule {
    width: 60px;
    height: 1px;
    background: #b0aea7;
    margin-bottom: 2rem;
}

.placeholder {
    color: #6a6a6a;
    font-style: italic;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

footer {
    padding: 1.5rem;
    text-align: center;
    color: #8a8a8a;
    font-size: 0.85rem;
}

footer a {
    color: #6a6a6a;
    text-decoration: none;
    border-bottom: 1px solid #d4d2cc;
    padding-bottom: 1px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

footer a:hover {
    color: #2a2a2a;
    border-bottom-color: #2a2a2a;
}

@media (max-width: 600px) {
    h1 { font-size: 2.6rem; }
    .placeholder { font-size: 1.05rem; }
}
