@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&display=swap");

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("../fonts/inter-latin.woff2") format("woff2");
}

:root {
    --color-brand-red: #c8102e;
    --color-brand-red-dark: #9f0c24;
    --color-brand-gold: #d6a400;
    --color-text-primary: #171717;
    --color-text-secondary: #646464;
    --color-text-subtle: #92928d;
    --color-surface: #ffffff;
    --color-surface-muted: #f7f7f5;
    --color-surface-strong: #161412;
    --color-border: #e7e7e3;
    --color-success: #28713d;

    --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
    --font-body: "Inter", Arial, sans-serif;
    --font-official: var(--font-body);
    --weight-light: 500;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --line-tight: 1;
    --line-heading: 1.18;
    --line-body: 1.72;
    --tracking-tight: .005em;
    --tracking-body: .01em;
    --tracking-label: .06em;

    --text-xs: .8rem;
    --text-sm: .95rem;
    --text-md: 1.0625rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;

    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: .75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    --container-wide: 1440px;
    --container-default: 1280px;
    --container-reading: 760px;
    --gutter: clamp(1.25rem, 4vw, 3.5rem);

    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 16px;
    --shadow-soft: 0 18px 60px rgba(18, 18, 16, .07);
    --transition-fast: 160ms ease;
    --transition-default: 260ms ease;
    --z-header: 100;
    --z-overlay: 200;
}
