:root {
  --c-coral: #F06B8A;
  --c-coral-dark: #C04060;
  --c-blush: #F9D0D0;
  --c-cream: #FFF5F8;
  --c-cream-mid: #FDE8EE;
  --c-charcoal: #1A0E14;
  --c-charcoal-mid: #2E1A22;
  --c-charcoal-soft: #4A2E38;
  --c-white: #FFFFFF;

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Montserrat', system-ui, sans-serif;

  --fs-10: 0.625rem;
  --fs-11: 0.6875rem;
  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-32: 2rem;
  --fs-40: 2.5rem;
  --fs-48: 3rem;
  --fs-56: 3.5rem;
  --fs-72: 4.5rem;
  --fs-88: 5.5rem;

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  --t-fast: 200ms ease;
  --t-base: 400ms ease;
  --t-spring: 600ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-slow: 900ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 2px 8px rgba(26, 14, 20, 0.06);
  --shadow-md: 0 4px 24px rgba(26, 14, 20, 0.08);
  --shadow-lg: 0 8px 48px rgba(26, 14, 20, 0.12);
  --shadow-coral: 0 8px 40px rgba(240, 107, 138, 0.22);
  --shadow-coral-lg: 0 16px 64px rgba(240, 107, 138, 0.32);

  --nav-height: 76px;
  --container-max: 1200px;
  --container-pad: clamp(1.5rem, 5vw, 5rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-body);
  font-weight: 300;
  color: var(--c-charcoal);
  background: var(--c-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
