/* NINA Medical Design System v1.0 — Design Tokens */
:root {
  /* Documentation theme (NINA) */
  --nina-cream: #F3F0EB;
  --nina-beige: #C8C4B0;
  --nina-turquoise: #6EDBD6;
  --nina-teal: #35A9A8;
  --nina-blue: #329CBF;
  --nina-black: #000000;

  /* Functional text colors — fixed */
  --text-primary: #1F1F1F;
  --text-secondary: #555555;
  --text-inverse: #FFFFFF;

  /* Default client theme — replace per physician */
  --primary: #329CBF;
  --primary-contrast: #FFFFFF;
  --secondary: #F3F0EB;
  --secondary-contrast: #1F1F1F;
  --accent: #6EDBD6;
  --surface-1: #FFFFFF;
  --surface-2: #F7F5F1;
  --surface-3: #EAF7F7;
  --border: #E3E3E3;
  --focus-ring: #329CBF;

  /* Typography */
  --font-body: Inter, Arial, sans-serif;
  --font-heading: Inter, Arial, sans-serif; /* Client variable */
  --body-lg: 20px;
  --body-md: 17px;
  --body-sm: 14px;
  --body-line: 1.65;
  --body-lg-line: 1.6;
  --body-sm-line: 1.55;

  --h1: 56px;
  --h2: 42px;
  --h3: 28px;
  --h4: 22px;
  --h1-line: 1.10;
  --h2-line: 1.15;
  --h3-line: 1.25;
  --h4-line: 1.30;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10: 96px;

  /* Containers */
  --container-default: 1200px;
  --container-text: 720px;
  --container-medium: 860px;
  --container-wide: 1360px;
  --page-gutter: 24px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.10);

  /* Component measurements */
  --button-min-height: 52px;
  --header-height: 80px;
  --card-padding: 32px;
  --section-y: 96px;
  --section-y-compact: 64px;
  --grid-gap: 24px;
  --column-gap: 48px;
}

@media (max-width: 1024px) {
  :root {
    --h1: 48px;
    --h2: 36px;
    --h3: 26px;
    --h4: 20px;
    --section-y: 64px;
    --section-y-compact: 48px;
    --column-gap: 32px;
    --card-padding: 24px;
  }
}

@media (max-width: 767px) {
  :root {
    --page-gutter: 16px;
    --h1: 38px;
    --h2: 30px;
    --h3: 22px;
    --h4: 18px;
    --body-lg: 18px;
    --body-md: 16px;
    --section-y: 48px;
    --section-y-compact: 32px;
    --grid-gap: 16px;
    --column-gap: 24px;
    --header-height: 64px;
  }
}
