/* Design tokens: the single source of truth for colours, type, radii and shadows.
   Every other stylesheet references these; never hard-code a colour elsewhere. */
@font-face {
    font-family: "Cinzel";
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url("../../fonts/cinzel/cinzel-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Cinzel";
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url("../../fonts/cinzel/cinzel-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    /* Surfaces */
    --app-bg: #07080c;
    --app-bg-soft: #0d1018;
    --app-surface: #10131c;
    --app-surface-raised: #161a26;
    --app-surface-translucent: rgba(16, 19, 28, 0.86);

    /* Lines */
    --app-border: rgba(201, 164, 76, 0.22);
    --app-border-strong: rgba(201, 164, 76, 0.5);
    --app-border-muted: rgba(233, 226, 208, 0.08);

    /* Text */
    --app-text: #e9e2d0;
    --app-text-strong: #f7f2e6;
    --app-muted: #9a937f;

    /* Gold accent */
    --app-gold: #c9a44c;
    --app-gold-soft: #e6c977;
    --app-gold-strong: #9d7b2c;
    --app-gold-contrast: #100c04;
    --app-gold-glow: rgba(201, 164, 76, 0.18);

    /* Semantic */
    --app-success: #6cbf7a;
    --app-danger: #d9645a;
    --app-warning: #e0a94a;
    --app-info: #7fb2d9;

    /* Type */
    --app-font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --app-font-display: "Cinzel", "Times New Roman", Georgia, serif;
    --app-font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

    /* Shape */
    --app-radius-sm: 0.4rem;
    --app-radius: 0.75rem;
    --app-radius-lg: 1rem;
    --app-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    --app-shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.4);

    /* Layout */
    --app-container-max: 1120px;
    --app-container-wide-max: 1320px;
    --app-gutter: 1rem;
    --app-nav-height: 3.75rem;
}
