/* === Fonts === */

@font-face {
  font-family: 'Operator Pro';
  src: url('../fonts/OperatorPro-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Operator Pro';
  src: url('../fonts/OperatorPro-BookItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Operator Pro';
  src: url('../fonts/OperatorPro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cardo';
  src: url('../fonts/Cardo-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cardo';
  src: url('../fonts/Cardo-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cardo';
  src: url('../fonts/Cardo-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === Design Tokens === */

:root {
  /* Background — warm midcentury sage (Pantone 5793 C / 5783 C territory) */
  /* --bg: #b0b788; */
  /* --bg-content: #fcfaf0; */
  --bg-content: #ffffff;
  --bg: #EED5D2;  /* misty rose 2 */
  --bg: #F0FFF0;  /* misty rose 2 */

  /* Foreground */
  --fg: #2c2525;
  --fg-muted: #72696a;
  --fg-faint: #948a8b;

  /* Ristretto accents */
  --red: #fd6883;
  --orange: #f38d70;
  --yellow: #f9cc6c;
  --green: #7cc242;
  --cyan: #85dacc;
  --purple: #a8a9eb;

  /* Semantic */
  --border-width: 4px;
  --border-idle-opacity: 0.55;
  --shadow-content: 0 2px 24px rgba(44, 37, 37, 0.08);
  --shadow-content-lg: 0 4px 40px rgba(44, 37, 37, 0.12);

  /* Typography */
  --font-shell: 'Operator Pro', 'SF Mono', 'Fira Code', monospace;
  --font-content: 'Cardo', Georgia, 'Times New Roman', serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 0.2s;
  --duration-layout: 0.4s;
}
