:root {
    --onyx-gold: #d4af37;
    --onyx-black: #050505;
    --onyx-bg: #050505;
    --onyx-bg-alt: #0e0e0e;
    --onyx-bg-deep: #0b0c12;
    --onyx-card: #121212;
    --onyx-card-alt: #141414;
    --onyx-border: #2a2a2a;
    --onyx-text: #ffffff;
    --onyx-muted: #cfcfcf;
    --onyx-muted-2: #c7c7c7;
    --onyx-shadow: 0px 5px 16px 0px rgba(8, 15, 52, 0.06);
    --container-max: 1200px;
    --container-pad: 120px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --font-montserrat: 'Montserrat', system-ui, sans-serif;
    --font-michroma: 'Michroma', 'Montserrat', system-ui, sans-serif;
    --font-inter: 'Inter', system-ui, sans-serif;
    --font-lato: 'Lato', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--onyx-bg);
    color: var(--onyx-text);
    font-family: var(--font-montserrat);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button { font-family: inherit; cursor: pointer; border: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-michroma); font-weight: 400; }

p { margin: 0; }

.onyx-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1024px) {
    .onyx-container {
        padding: 0 var(--container-pad);
        max-width: 1440px;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--onyx-gold);
    color: #000;
    font-family: var(--font-montserrat);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: transform 0.2s ease, filter 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-primary:disabled,
.btn-primary.is-disabled {
    background: #3a3a3a;
    color: rgba(255, 255, 255, 0.45);
    cursor: not-allowed;
    pointer-events: none;
    filter: none;
    transform: none;
}
.btn-primary .btn-arrow { font-size: 1.1em; line-height: 1; }

@media (max-width: 767px) {
    .btn-primary { padding: 14px 24px; font-size: 16px; }
}

.section-eyebrow {
    color: var(--onyx-muted);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-family: var(--font-michroma);
    color: var(--onyx-text);
    font-size: 48px;
    line-height: 1.2;
    margin: 0;
}

@media (max-width: 1023px) {
    .section-title { font-size: 40px; }
}
@media (max-width: 767px) {
    .section-title { font-size: 28px; }
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px; width: 1px; overflow: hidden;
}

.no-scroll { overflow: hidden; }

.error-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
}
.error-404__inner { max-width: 560px; }
.error-404__eyebrow { color: var(--onyx-gold); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.error-404__title { font-family: var(--font-michroma); font-size: 48px; margin-bottom: 24px; }
.error-404__text { color: var(--onyx-muted); margin-bottom: 32px; line-height: 1.6; }
@media (max-width: 767px) {
    .error-404__title { font-size: 32px; }
}
