:root {
  /* =========================================
     CORE BRAND PALETTE
     ========================================= */
  --color-bg: #ECE7E1;
  --color-surface: #F7F4F0;
  --color-surface-2: #EFE8E1;

  --color-text: #3F3A37;
  --color-text-muted: rgba(63, 58, 55, 0.78);
  --color-text-faint: rgba(63, 58, 55, 0.58);
  --color-text-inverse: #FCFCFA;

  --color-border: rgba(63, 58, 55, 0.12);
  --color-border-strong: rgba(63, 58, 55, 0.22);

  /* =========================================
     ACTIONS
     ========================================= */
  --color-primary: #4B8784;
  --color-primary-hover: #376B69;
  --color-primary-soft: rgba(75, 135, 132, 0.14);

  --color-link: #3E706E;
  --color-link-hover: #2E5654;

  /* =========================================
     SUPPORTING ACCENTS
     ========================================= */
  --color-accent-soft: #DCE5E0;
  --color-accent-warm: #D9D0C5;

  /* =========================================
     SURFACE EFFECTS
     ========================================= */
  --shadow-sm: 0 1px 3px rgba(63, 58, 55, 0.08);
  --shadow-md: 0 10px 30px rgba(63, 58, 55, 0.10);

  /* =========================================
     RADIUS
     ========================================= */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-pill: 999px;

  /* =========================================
     LAYOUT
     ========================================= */
  --container-max: 1200px;
  --section-padding-y: clamp(3.5rem, 8vw, 6rem);
  --section-padding-x: 1rem;

  /* =========================================
     TYPE
     ========================================= */
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Inter", "Segoe UI", Arial, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.9375rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: clamp(1.5rem, 2vw, 2rem);
  --text-2xl: clamp(2.25rem, 4vw, 3.75rem);

  /* =========================================
     MOTION
     ========================================= */
  --transition-standard: 0.2s ease;
}

