/* ── fonts ───────────────────────────────────────────────────────────────── */
@font-face {
  font-family: "KMRWaldenburg";
  src: url("../assets/fonts/KMRWaldenburg-SemiCondensedBlack.otf")
    format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "KMRWaldenburg";
  src: url("../assets/fonts/KMRWaldenburg-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "KMRWaldenburg";
  src: url("../assets/fonts/KMRWaldenburg-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "KMRWaldenburg";
  src: url("../assets/fonts/KMRWaldenburg-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "KMRWaldenburg";
  src: url("../assets/fonts/KMRWaldenburg-Black.otf") format("truetype");
  font-weight: 1100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "KMRWaldenburg";
  src: url("../assets/fonts/KMRWaldenburg-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Aeonik — used for the inline SVG logo */
@font-face {
  font-family: "AeonikTRIAL-SemiBold";
  src: url("../assets/fonts/Aeonik-Bold.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik TRIAL";
  src: url("../assets/fonts/Aeonik-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik TRIAL";
  src: url("../assets/fonts/Aeonik-Light.ttf") format("truetype");
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik TRIAL";
  src: url("../assets/fonts/Aeonik-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
/* ── reset & box model ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── CSS variables ───────────────────────────────────────────────────────── */
:root {
  /* colors */
  --color-bg: #f6f6f6; /* page background */
  --color-main: #5f5f5f; /* primary text & ui */
  --color-second: #555555; /* secondary text, labels */
  --color-muted: #aaaaaa; /* placeholders, disabled, hints */
  --color-accent: #111111; /* interactive highlight / brand color */
  --color-border: #e0e0e0; /* lines, dividers */
  --color-surface: #f5f5f5; /* cards, panels, inset areas */
  --color-on-accent: #ffffff; /* text placed on top of --color-accent */

  /* typography — families */
  --font-display:
    "KMRWaldenburg", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "Courier New", Courier, monospace;

  /* typography — scale */
  --text-xs: 10px;
  --text-sm: 12px;
  --text-base: 16px;
  --text-md: 20px;
  --text-lg: 28px;
  --text-xl: 40px;
  --text-2xl: 64px;

  /* typography — weight */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-bold: 700;

  /* typography — line height */
  --leading-tight: 1;
  --leading-normal: 1.5;
  --leading-loose: 1.8;

  /* spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 64px;
  --space-2xl: 128px;

  /* layout */
  --nav-height: 42px;
  --max-width: 1200px;
  --gutter: 0px;
  --home-margin: 25px; /* adjust this value as needed */

  /* motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 120ms;
  --duration-base: 240ms;
}

/* ── base ────────────────────────────────────────────────────────────────── */
html,
body {
  height: 100%;
  overflow-x: hidden; /* prevent horizontal scroll from rotated hero group */
  background: var(--color-bg);
  color: var(--color-second);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}
