* {
    box-sizing: border-box;
}

:root {
    color-scheme: dark;
    color: #fff;
    background: radial-gradient(circle at top, rgba(255, 215, 150, 0.16), transparent 35%),
        radial-gradient(circle at bottom left, rgba(240, 160, 80, 0.12), transparent 28%),
        linear-gradient(180deg, #1d1812 0%, #281e13 45%, #3d2d16 100%);
}

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

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    padding-bottom: 5.5rem;
    min-height: 100vh;
    background: linear-gradient(180deg, #f5e4c8 0%, #f8eddf 40%, #f2d8b1 100%);
    position: relative;
    overflow: hidden;
}

.logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 48px;
    height: auto;
    z-index: 2;
}

.footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Old Standard TT", serif;
    color: #8b6b4f;
    opacity: 0.95;
    font-size: 0.95rem;
    background: rgba(239, 224, 199, 0.9);
    border-top: 1px solid rgba(165, 124, 85, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    z-index: 1;
}

body::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.65), transparent 20%),
        radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.35), transparent 18%),
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.12), transparent 26%);
    pointer-events: none;
}

body::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 55%;
    background: linear-gradient(180deg, transparent 0%, rgba(241, 208, 151, 0.45) 10%, rgba(218, 166, 103, 0.35) 40%, rgba(214, 158, 94, 0.2) 60%, rgba(255, 255, 255, 0) 100%);
    clip-path: polygon(0 40%, 10% 44%, 18% 38%, 28% 45%, 38% 42%, 50% 48%, 60% 43%, 70% 47%, 80% 42%, 90% 46%, 100% 41%, 100% 100%, 0 100%);
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    padding: 1rem 1.5rem;
}

.title {
    font-family: "Old Standard TT", serif;
    font-style: normal;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    margin: 0;
    /* color: #6c3f16; */
    color: #7e1414;
    text-transform: uppercase;
}

.subtitle {
    margin: 1.5rem 0 0;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-family: "Old Standard TT", serif;
    font-style: italic;
    /* color: #7b5031; */
    color: #7e1414;
}

@media (max-width: 600px) {
    .container {
        padding: 1.8rem 1.4rem;
    }

    .title {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }
}