:root {
  /* Backgrounds */
  --c-bg: #F8F5EE;
  --c-hero-bg: #1A2535;
  --c-hero-bg-alt: #222D3F;
  --c-section-alt: #EDE8DF;

  /* Text */
  --c-hero-text: #F0EDE6;
  --c-text: #1C1C1C;
  --c-text-secondary: #58574F;

  /* Accent */
  --c-accent: #872D22;
  --c-accent-hover: #A54037;
  --c-gold: #C4922A;
  --c-gold-subtle: #E8D5A3;

  /* Borders */
  --c-border: #DDD4C4;

  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-lg: 5rem;
  --space-xl: 7rem;

  /* Misc */
  --radius: 3px;
  --transition: 0.2s ease;

  /* Container widths */
  --container-max: 1100px;
  --container-reading: 720px;
}

@media (max-width: 960px) {
  :root { --space-xl: 5rem; }
}

@media (max-width: 640px) {
  :root { --space-xl: 4rem; }
}
