:root {
    --bg: #0a0a0a;
    --surface: #141414;
    --surface-2: #1c1c1c;
    --text: #e8e6e3;
    --text-muted: #8a8580;
    --accent: #8b1538;
    --accent-bright: #b91d4a;
    --accent-glow: rgba(139, 21, 56, 0.35);
    --border: #2a2525;
    --header-h: 4rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    text-decoration: underline;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--header-h);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(10px);
}

.site-header__inner {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo:hover {
    text-decoration: none;
}

.site-logo:focus-visible {
    outline-offset: 4px;
}

.site-logo__img {
    height: 2.5rem;
    width: auto;
    max-width: min(12rem, 70vw);
    display: block;
    object-fit: contain;
}

.hero {
    min-height: calc(100vh - var(--header-h));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.25rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero__backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.25) 0%,
        rgba(10, 10, 10, 0.45) 45%,
        rgba(10, 10, 10, 0.88) 100%
    );
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 40rem;
    text-align: center;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-bright);
    margin-bottom: 1rem;
}

.hero__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero__lead {
    margin: 0;
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: var(--surface);
    padding: 2rem 1.25rem;
}

.site-footer__inner {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    text-align: center;
}

.site-footer__copy {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}
