/* ===================================================================
   TOKENS & RESET — pejay theme
   =================================================================== */

:root {
  /* Colors */
  --background: #ffffff;
  --foreground: #3d3d3d;
  --card: #ffffff;

  --primary: #8b9d83;
  --primary-foreground: #ffffff;
  --primary-hover: rgba(139, 157, 131, 0.88);

  --secondary: #f7f9f6;
  --secondary-foreground: #3d3d3d;

  --muted: #fafbf9;
  --muted-foreground: #737373;

  --accent: #d4ddd0;

  --border: rgba(139, 157, 131, 0.08);
  --border-visible: rgba(139, 157, 131, 0.22);
  --input-background: #fafbf9;

  /* Containers */
  --container-narrow: 48rem;
  --container-medium: 64rem;
  --container-wide: 80rem;

  /* Transitions */
  --transition: 0.2s ease;
}

/* ===== RESET ===== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

ul, ol {
  list-style: none;
}

hr {
  border: none;
  height: 1px;
  background-color: var(--border);
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
