:root {
  /* Colors */
  --color-bg: #F7F2EA;
  --color-text: #111111;
  --color-gold: #B9924A;
  --color-gold-light: #D8BF7A;
  --color-dark: #181613;
  --color-sand: #E8DDCC;
  --color-beige: #D9C8AE;
  --color-taupe: #A89B8C;
  --color-white: #F7F2EA;
  --color-wa: #25D366;

  /* Typography */
  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1.0625rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.75rem;
  --text-4xl: 3.5rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 5rem;
  --section-gap: 3rem;
  --container-max: 1200px;
  --container-padding: 1.25rem;

  /* Borders & shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-pill: 999px;
  --shadow-soft: 0 2px 12px rgba(17, 17, 17, 0.06);
  --shadow-header: 0 1px 0 rgba(17, 17, 17, 0.08);

  /* Transitions */
  --transition: 0.25s ease;

  /* Z-index */
  --z-header: 100;
  --z-menu: 110;
  --z-float: 120;
}

@media (min-width: 768px) {
  :root {
    --section-gap: 5rem;
    --container-padding: 2rem;
    --text-3xl: 3.25rem;
    --text-4xl: 4rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --section-gap: 6rem;
  }
}
