:root {
  /* Brand Colors */
  --color-teal: #1B4D4D;
  --color-teal-dark: #163F3F;
  --color-teal-light: #2A6B6B;
  --color-copper: #96722D;
  --color-copper-dark: #7A5D24;
  --color-charcoal: #2D2D2D;
  --color-beige: #f2f2f1;
  --color-white: #FFFFFF;
  --color-black: #1A1A1A;
  --color-gray: #888888;
  --color-gray-light: #D0D0D0;

  /* Typography */
  --font-sans: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-heading: var(--font-sans);
  --font-body: var(--font-sans);

  --fs-display: 3.125rem;
  --fs-h1: 2.75rem;
  --fs-h2: 2.25rem;
  --fs-h3: 1.875rem;
  --fs-body-lg: 1.25rem;
  --fs-body: 1.0625rem;
  --fs-small: 0.8125rem;
  --fs-label: 0.875rem;
  --fs-nav: 0.75rem;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --line-height-body: 1.6;
  --line-height-heading: 1.15;

  --ls-tight: -0.03em;
  --ls-body: -0.01em;
  --ls-label: 0.12em;
  --ls-nav: 0.16em;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 2rem;
  --nav-menu-gap: 2.5rem;
  --header-height: 0px;
  --top-bar-height: 36px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.35s ease;
  --transition-slow: 0.5s ease;

  /* Image overlay (teal duotone effect — 0 = transparent, 1 = fully teal) */
  --overlay-intensity: 0.75;

  /* Shadows */
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-dropdown: 0 4px 16px rgba(0, 0, 0, 0.12);

  /* Z-index */
  --z-dropdown: 100;
  --z-navbar: 200;
  --z-top-bar: 210;
  --z-overlay: 800;
  --z-mobile-menu: 900;
}
