/* ===== Design Tokens ===== */
:root {
  /* Colors */
  --color-bg: #faf9f5;
  --color-white: #ffffff;
  --color-text-default: #1e1e1e;
  --color-text-secondary: #757575;
  --color-text-brand: #2c2c2c;
  --color-text-on-brand: #f5f5f5;
  --color-border-default: #d9d9d9;
  --color-border-brand: #2c2c2c;
  --color-bg-brand: #2c2c2c;
  --color-badge-bg: #130041;

  /* Shadows */
  --shadow-card:
    0px 16px 32px 0px rgba(12, 12, 13, 0.1),
    0px 4px 4px 0px rgba(12, 12, 13, 0.05);

  /* Typography */
  --font-heading: "Source Serif Pro", "Georgia", serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  /* Spacing */
  --page-width: 1200px;
  --content-width: 1100px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-default);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
