/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #1C1C1E;
    --surface: #2A2A2C;
    --primary: #D4A44C;
    --text: #F5E6C8;
    --text-secondary: #8C8077;
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

img {
    max-width: 100%;
    height: auto;
}

/* === Header === */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.header__logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.header__logo:hover {
    text-decoration: none;
}

.header__nav a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* === Hero === */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem 4rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero__mascot {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.hero__tagline {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.hero__description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero__badge {
    display: inline-block;
    transition: opacity 0.2s;
}

.hero__badge:hover {
    opacity: 0.8;
    text-decoration: none;
}

.hero__badge svg {
    height: 50px;
    width: auto;
}

/* === Footer === */
.footer {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--surface);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer__links {
    margin-bottom: 0.5rem;
}

.footer__links a {
    color: var(--text-secondary);
    margin: 0 0.5rem;
}

/* === Privacy Policy === */
.policy {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
    flex: 1;
}

.policy h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.policy__date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.policy h2 {
    font-size: 1.25rem;
    color: var(--text);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.policy p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.policy a {
    color: var(--primary);
}

/* === Responsive === */
@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__mascot {
        width: 140px;
    }

    .hero__tagline {
        font-size: 1.05rem;
    }
}
