html,
body {
    min-height: 100%;
    margin: 0;
    background: #050505;
}

body {
    overflow-x: hidden;
}

.sd-home,
.sd-home * {
    box-sizing: border-box;
}

.sd-home {
    position: relative;
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    padding: clamp(18px, 5vw, 72px);
    overflow: hidden;
    color: #f0dfaa;
    font-family: Georgia, serif;
    background:
        var(--sd-home-background, linear-gradient(145deg, #12171a, #050505 62%, #150d08));
    background-position: center;
    background-size: cover;
}

.sd-home-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 24%, rgba(206, 146, 54, .22), rgba(0,0,0,0) 28%),
        radial-gradient(circle at 26% 72%, rgba(77, 100, 126, .22), rgba(0,0,0,0) 32%),
        linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.34) 42%, rgba(0,0,0,.78)),
        linear-gradient(180deg, rgba(0,0,0,.36), rgba(0,0,0,.84));
}

.sd-home-content {
    position: relative;
    z-index: 1;
    align-self: end;
    width: min(760px, 100%);
    padding: clamp(18px, 4vw, 42px);
    background:
        linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0) 18%),
        linear-gradient(rgba(34,32,28,.64), rgba(8,7,6,.5));
    border: 5px ridge rgba(93, 90, 80, .88);
    box-shadow:
        inset 0 0 0 2px rgba(20, 19, 15, .9),
        inset 0 0 34px rgba(0,0,0,.68),
        0 24px 54px rgba(0,0,0,.76);
    backdrop-filter: blur(3px);
}

.sd-home-kicker {
    margin: 0 0 8px;
    color: #d9bd63;
    font-size: clamp(13px, 1.4vw, 18px);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.sd-home h1 {
    margin: 0;
    color: #fff1bd;
    font-size: clamp(42px, 7vw, 96px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: 1px;
    text-shadow: 0 4px 5px #000;
}

.sd-home-copy {
    max-width: 640px;
    margin-top: 20px;
    color: #f1e4c7;
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.55;
    text-shadow: 0 2px 3px #000;
}

.sd-home-copy p {
    margin: 0 0 14px;
}

.sd-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.sd-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 26px;
    border: 2px ridge #7c6a49;
    background: linear-gradient(#4a4943, #141311 54%, #24201a);
    color: #fff1bd;
    font-size: 15px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
}

.sd-home-button:hover,
.sd-home-button:focus {
    border-color: #c59b48;
    color: #fff7d1;
}

@media (max-width: 700px) {
    .sd-home {
        min-height: 100vh;
        min-height: 100svh;
        padding: 14px;
        overflow: auto;
    }

    .sd-home-content {
        align-self: end;
        padding: 18px;
        border-width: 4px;
    }

    .sd-home h1 {
        font-size: clamp(38px, 14vw, 58px);
    }

    .sd-home-copy {
        font-size: 16px;
    }

    .sd-home-button {
        width: 100%;
        min-height: 48px;
    }
}
