* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    color: #252525;

    background:
        radial-gradient(
            circle at top,
            #ffffff 0,
            #fafafa 35%,
            #f1f1f1 100%
        );
}


/* TOP BAR */

.topbar {
    background: #ffffff;

    border-bottom:
        4px solid #c8102e;

    box-shadow:
        0 2px 15px rgba(0, 0, 0, .08);
}

.topbar-inner {
    max-width: 1200px;

    margin: 0 auto;

    padding: 18px 25px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.topbar strong {
    display: block;

    color: #a90e27;

    font-size: 18px;
}

.topbar span {
    display: block;

    margin-top: 3px;

    color: #777;

    font-size: 12px;
}

.status {
    padding: 8px 12px;

    border-radius: 20px;

    background: #f7e3e6;

    color: #a90e27;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .08em;
}


/* PAGE */

.page {
    max-width: 1200px;

    margin: 0 auto;

    padding:
        40px
        20px
        70px;
}


/* HERO */

.hero {
    margin-bottom: 30px;

    text-align: center;
}

.hero .eyebrow {
    margin-bottom: 10px;

    color: #c8102e;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.hero h1 {
    margin: 0;

    font-size:
        clamp(28px, 5vw, 48px);

    line-height: 1.1;
}

.hero > p:last-child {
    color: #777;
}


/* MAIN MENU */

.menu-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.menu-column {
    padding: 20px;

    border: 1px solid #e3e3e3;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .06);
}

.menu-column h2 {
    margin:
        0
        0
        18px;

    color: #777;

    text-align: center;

    font-size: 11px;

    letter-spacing: .12em;
}


/* BUTTONS */

.menu-button {
    position: relative;

    display: flex;

    min-height: 52px;

    margin-bottom: 11px;

    padding:
        12px
        18px;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    text-align: center;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    border:
        1px solid #8c091e;

    border-radius: 9px;

    background:
        linear-gradient(
            180deg,
            #dd2947 0%,
            #bd112f 48%,
            #9c0b24 100%
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .28),
        0 4px 8px rgba(99, 0, 18, .18);

    transition:
        transform .15s ease,
        box-shadow .15s ease;
}

.menu-button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .3),
        0 8px 16px rgba(99, 0, 18, .23);
}

.menu-button:active {
    transform:
        translateY(0);
}


/* LOWER AREA */

.bottom-menu {
    display: grid;

    grid-template-columns:
        1fr 220px 1fr;

    gap: 30px;

    align-items: center;

    margin-top: 30px;
}

.bottom-menu .menu-button {
    margin: 0;
}


/* LOGO PLACEHOLDER */

.logo {
    width: 170px;

    height: 170px;

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border:
        8px solid #f1d7dc;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .1);
}

.logo .ball {
    width: 34px;

    height: 34px;

    margin-bottom: 7px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 30% 25%,
            #ff6c7d,
            #c8102e 55%,
            #790719
        );
}

.logo strong {
    color: #b20e2a;

    font-family: Georgia, serif;

    font-size: 31px;
}

.logo span {
    margin-top: 4px;

    color: #777;

    font-size: 10px;
}


/* RECORDED */

.all-recorded {
    width: 320px;

    max-width: 100%;

    margin:
        25px auto
        0;
}

.all-recorded .menu-button {
    margin: 0;
}


/* FOOTER */

.footer {
    padding:
        25px
        20px;

    color: #888;

    text-align: center;

    font-size: 12px;
}


/* MOBILE */

@media (max-width: 800px) {

    .page {
        padding:
            25px
            14px
            50px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .bottom-menu {
        grid-template-columns: 1fr;
    }

    .logo {
        order: -1;
    }

    .topbar-inner {
        padding:
            14px
            16px;
    }

    .status {
        font-size: 9px;
    }
}