:root {
  /* Brand palette — pulled from Bond Babes' existing IG highlight aesthetic (cream/black/gold) */
  --color-cream: #f4ede0;
  --color-cream-deep: #e9ddc7;
  --color-ink: #1b1815;
  --color-ink-soft: #3a352f;
  --color-gold: #7a5f2e; /* darkened from #ad8a53 to clear 4.5:1 text contrast on cream */
  --color-gold-decorative: #ad8a53; /* original brand gold — non-text uses only (icons, dots, backgrounds) */
  --color-gold-soft: #d9c7a3;
  --color-rose: #c98a83;
  --color-surface: #fffaf2;
  --color-line: rgba(27, 24, 21, 0.12);

  --color-text: var(--color-ink);
  --color-text-muted: var(--color-ink-soft);
  --color-accent: var(--color-gold);

  /* Type */
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-script: "Playfair Display", serif; /* logotype only, swapped for a real script font once licensed */
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.85rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.3rem + 1vw, 2.25rem);
  --text-hero: clamp(2.75rem, 2rem + 4vw, 5.5rem);
  --text-display: clamp(2.25rem, 1.7rem + 2.5vw, 3.75rem);

  --leading-tight: 1.1;
  --leading-normal: 1.6;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  --space-section: clamp(4rem, 3rem + 5vw, 9rem);
  --space-container: clamp(1.25rem, 1rem + 2vw, 4rem);

  --max-width: 1280px;
  --max-width-narrow: 800px;

  /* Motion */
  --duration-fast: 150ms;
  --duration-normal: 350ms;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Radius / elevation */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 24px;
  --shadow-card: 0 20px 60px -30px rgba(27, 24, 21, 0.35);
  --shadow-lift: 0 30px 80px -35px rgba(27, 24, 21, 0.45);
}
