@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  /* Color palette -- Sound Physicians inspired, muted healthcare */
  --bg: #FFFFFF;
  --bg-alt: #F7F8FA;
  --dark: #0E2439;
  --dark-deeper: #091A2C;
  --white: #FFFFFF;
  --text: #1A2B3D;
  --text-muted: #5B6B7D;
  --text-faint: #8B97A7;
  --accent: #1B6B5A;
  --accent-hover: #15574A;
  --border: #E8ECF0;
  --border-light: #EEF1F4;
  --emergency: #B84233;
  --emergency-light: rgba(184, 66, 51, 0.06);
  --emergency-border: rgba(184, 66, 51, 0.18);

  /* Dark section text */
  --dark-text: #E8ECF1;
  --dark-text-muted: rgba(232, 236, 241, 0.6);
  --dark-border: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w: 1160px;
  --content-w: 720px;
  --radius: 8px;
  --radius-sm: 6px;
  --radius-btn: 6px;

  /* Easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
