:root {
    --brand: #7e4a1f;
    --brand-light: #b8895a;
    --musgo: #525436;
    --paper: #f8f4ee;
    --text: #2d2a26;
    --text-soft: #655c50;
    --overlay: rgba(18, 18, 14, 0.58);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: "Nunito", Arial, sans-serif;
    color: var(--text);
    background: var(--paper);
}

img {
    display: block;
    max-width: 100%;
}

.redirect-page {
    position: relative;
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
    background: url("../imgs/bg-1.jpg") center / cover no-repeat;
}

.redirect-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
}

.redirect-card {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    padding: 42px;
    text-align: center;
    background: rgba(248, 244, 238, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.brand-logo {
    width: min(260px, 78%);
    margin: 0 auto 28px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--musgo);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    color: var(--brand);
    font-family: "Marcellus", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.12;
}

.intro {
    max-width: 430px;
    margin: 18px auto 30px;
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.45;
}

.counter-box {
    display: grid;
    justify-items: center;
    gap: 2px;
    margin-bottom: 30px;
}

.counter-box span,
.counter-box small {
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.counter-box strong {
    color: var(--musgo);
    font-size: clamp(3.6rem, 14vw, 5rem);
    line-height: 0.95;
}

.btn-brand {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    color: #fff;
    background: var(--brand);
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-brand:hover,
.btn-brand:focus-visible {
    background: var(--brand-light);
    transform: translateY(-2px);
}

.btn-brand:focus-visible {
    outline: 3px solid rgba(126, 74, 31, 0.32);
    outline-offset: 3px;
}

@media (max-width: 560px) {
    .redirect-page {
        padding: 22px 14px;
    }

    .redirect-card {
        padding: 30px 22px;
        background: rgba(248, 244, 238, 0.86);
    }

    .brand-logo {
        margin-bottom: 22px;
    }

    .intro {
        font-size: 1rem;
    }
}
