:root {
    --primary-red: #af172d;
    --primary-gold: #d2901f;
    --background: #f7f3ef;
    --surface: #ffffff;
    --text-dark: #2a1f1b;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter, system-ui, sans-serif;
    background: linear-gradient(180deg, #f8f4f1 0%, #f0ebe7 100%);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: var(--primary-red);
    color: white;
    padding: 2rem 1rem 1rem 1rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 6px solid var(--primary-gold);
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
}

.brand img {
    width: 140px;
    max-width: 100%;
    height: auto;
    margin-bottom: -70px;
    position: relative;
    z-index: 10;
}

.brand-title {
    text-align: left;
}

.brand-title strong {
    display: block;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
}

.brand-title span {
    font-size: 0.95rem;
    color: #ffe7d3;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    margin-top: 2rem;
}

.hero-card {
    width: min(980px, 100%);
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.hero-card h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.hero-card p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4d4038;
}

footer {
    background: var(--primary-red);
    color: white;
    text-align: center;
    padding: 1.1rem 1rem;
    font-size: 0.8rem;
    border-top: 6px solid var(--primary-gold);
}

footer a {
    color: white;
    text-decoration: none;
}

.hero-card a {
    color: inherit;
    text-decoration: none;
}

.footer-note {
    max-width: 900px;
    margin: 0 auto;
    color: #ffe7d3;
}

@media (max-width: 640px) {
    .hero-card {
        padding: 2rem 1.2rem;
    }

    .brand-title strong {
        font-size: 1.25rem;
    }
}
