/* ── FONTS ── */
@font-face {
    font-family: "DM Serif Display";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(/DMSerifDisplay-Regular.ttf);
}

@font-face {
    font-family: "DM Serif Display";
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url(/DMSerifDisplay-Italic.ttf);
}

@font-face {
    font-family: "DM Sans";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(/DMSans-Regular.ttf);
}

@font-face {
    font-family: "DM Sans";
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
    src: url(/DMSans-Italic.ttf);
}

/* ── RESET ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-wrap: balance;
}

a {
    color: #c85a2a;
}

body {
    background: #f7f4ef;
    color: #1a1714;
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
    line-height: 1.6;
    font-size: 18px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.main-container {
    text-align: center;
    max-width: 600px;
    margin: 0 20px;
}

.logo {
    margin-bottom: 1rem;
}

.logo img {
    height: 6rem;
    width: auto;
}

h1 {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.subtitle {
    color: #7a7368;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.powered-by {
    font-size: 1rem;
    color: #7a7368;
    margin-top: 1rem;
}
