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

:root {
    --bg: #0a0a0a;
    --surface: #141414;
    --border: #222;
    --text: #e0e0e0;
    --text-muted: #888;
    --accent: #c9a84c;
    --accent-dim: #a07d2e;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

header h1 {
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    color: #fff;
}

.tagline {
    font-size: 1.1rem;
    color: var(--accent);
    font-style: italic;
}

.mission {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.manifesto {
    margin-bottom: 3.5rem;
}

.manifesto h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.manifesto p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.stories {
    margin-bottom: 3.5rem;
}

.stories h2 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
}

.story-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    padding: 1.5rem 1.8rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.story-card:last-child {
    margin-bottom: 0;
}

.story-card .label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-dim);
    display: block;
    margin-bottom: 0.5rem;
}

.story-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: #fff;
}

.story-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.cta {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.cta p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.cta p:last-of-type {
    margin-bottom: 2rem;
    color: var(--text);
}

.btn {
    display: inline-block;
    margin: 0 0.5rem 0.5rem;
    padding: 0.8rem 2.5rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    transition: all 0.2s ease;
}

.btn:hover {
    background: var(--accent);
    color: var(--bg);
}

footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.location {
    font-style: italic;
    margin-top: 0.3rem;
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .container {
        padding: 2.5rem 1.2rem;
    }

    header h1 {
        font-size: 1.8rem;
    }

    .manifesto h2 {
        font-size: 1.25rem;
    }
}
