* {
    box-sizing: border-box;
}

:root {
    color-scheme: light;
    --background: #f3efe8;
    --surface: rgba(255, 255, 255, 0.88);
    --text: #252525;
    --muted: #6f6a63;
    --accent: #b76b3c;
    --accent-soft: #e7c7b1;
    --border: rgba(37, 37, 37, 0.12);
    --shadow: 0 24px 70px rgba(59, 45, 34, 0.14);
}

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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(183, 107, 60, 0.18), transparent 34rem),
        linear-gradient(145deg, #f7f3ed 0%, var(--background) 100%);
}

.redesign-page {
    display: grid;
    flex: 1;
    place-items: center;
    width: 100%;
    padding: 40px 20px;
}

.redesign-card {
    width: min(720px, 100%);
    padding: clamp(32px, 7vw, 72px);
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.redesign-mark {
    display: grid;
    width: 82px;
    height: 82px;
    margin: 0 auto 26px;
    place-items: center;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 12px 26px rgba(183, 107, 60, 0.28);
}

.eyebrow {
    margin: 0 0 18px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

h1 {
    max-width: 610px;
    margin: 0 auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 6vw, 4.4rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.intro {
    max-width: 560px;
    margin: 28px auto 0;
    font-size: clamp(1rem, 2.2vw, 1.18rem);
    line-height: 1.75;
    color: var(--muted);
}

.divider {
    width: 72px;
    height: 3px;
    margin: 34px auto 26px;
    background: var(--accent-soft);
    border-radius: 999px;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--muted);
}

.status::before {
    width: 10px;
    height: 10px;
    content: "";
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(183, 107, 60, 0.12);
}

.site-footer {
    padding: 0 20px 24px;
    font-size: 0.82rem;
    text-align: center;
    color: var(--muted);
}

@media (max-width: 520px) {
    .redesign-page {
        padding: 20px 14px;
    }

    .redesign-card {
        padding: 36px 22px;
        border-radius: 22px;
    }

    .redesign-mark {
        width: 68px;
        height: 68px;
        margin-bottom: 22px;
        font-size: 1.18rem;
    }

    .intro {
        line-height: 1.62;
    }
}
