:root {
  /* Colors - Studia-54 Inspired */
  --bg-primary: #0f0f0f; /* Deep Charcoal/Black */
  --bg-secondary: #1a1a1a;
  --bg-overlay: rgba(15, 15, 15, 0.95); /* Solid, less glass */
  
  --text-primary: #fcf5ee; /* Off-white / Cream for warmth */
  --text-secondary: #a0a0a0;
  
  --accent-primary: #dc8f34; /* Bronze/Gold */
  --accent-hover: #b67323;
  --accent-glow: rgba(220, 143, 52, 0.3);

  --border-color: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-main: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-heading: 'Montserrat', system-ui, sans-serif; /* Can distinguish if needed later */
  
  --font-size-sm: 0.8125rem; /* 13px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-md: 1.125rem;  /* 18px */
  --font-size-lg: 1.5rem;    /* 24px */
  --font-size-xl: 2.25rem;   /* 36px */
  --font-size-2xl: 3.5rem;   /* 56px - Hero */
  --font-size-3xl: 4.5rem;   /* 72px - Big Headlines */
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1.5rem;
  --spacing-md: 3rem;
  --spacing-lg: 6rem;
  --spacing-xl: 10rem;

  /* Components */
  --border-radius-sm: 2px; /* Sharper corners for seriousness */
  --border-radius-md: 4px;
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.3);
  
  /* Transitions */
  --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-weight: 300; /* Light by default */
  line-height: 1.7;
  overflow-x: hidden;
  letter-spacing: 0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
