@font-face {
    font-display: swap;
    font-family: "Sono";
    font-style: normal;
    font-weight: 200 800;
    src: url("../fonts/Sono/static/Sono_Proportional-Regular.ttf") format("truetype");
}

@font-face {
    font-display: swap;
    font-family: "Cormorant Garamond";
    font-style: normal;
    font-weight: 300 700;
    src: url("../fonts/Cormorant_Garamond/CormorantGaramond-VariableFont_wght.ttf") format("truetype");
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f3f0ea;
    color: #1d2730;
    font-family: "Sono", Arial, Helvetica, sans-serif;
}

.front-shell {
    display: grid;
    min-height: 100vh;
    padding: 28px;
}

.front-hero {
    align-items: end;
    background:
        linear-gradient(90deg, rgba(16, 31, 38, 0.9), rgba(16, 31, 38, 0.52)),
        url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=80") center / cover;
    border-radius: 8px;
    color: #ffffff;
    display: grid;
    min-height: calc(100vh - 56px);
    padding: 54px;
}

.front-copy {
    max-width: 760px;
}

.front-kicker {
    color: #e8c77c;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.front-copy h1 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 64px;
    line-height: 1;
    margin: 0;
}

.front-copy p {
    color: #d8e2e0;
    font-size: 19px;
    line-height: 1.7;
    margin: 22px 0 0;
    max-width: 640px;
}

.front-actions {
    margin-top: 28px;
}

.front-button {
    background: #0f766e;
    border-radius: 6px;
    color: #ffffff;
    display: inline-flex;
    font-weight: 700;
    padding: 13px 18px;
    text-decoration: none;
}

@media (max-width: 720px) {
    .front-shell {
        padding: 0;
    }

    .front-hero {
        border-radius: 0;
        min-height: 100vh;
        padding: 32px 24px;
    }

    .front-copy h1 {
        font-size: 44px;
    }
}
