:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --surface-muted: #efede7;
  --border: #e5e2da;
  --border-strong: #d2cec3;
  --ink: #03222b;
  --text: #161d2a;
  --text-muted: #5a6372;
  --text-faint: #8b93a1;
  --primary: #0d9488;
  --primary-hover: #0b8478;
  --primary-soft: #e2f6f2;
  --accent: #eab308;
  --success: #128a5b;
  --warning: #c77800;
  --danger: #d93838;
  --shadow-sm: 0 1px 2px rgba(3, 34, 43, 0.05);
  --shadow: 0 1px 2px rgba(3, 34, 43, 0.04), 0 14px 34px rgba(3, 34, 43, 0.08);
  --shadow-lg: 0 2px 4px rgba(3, 34, 43, 0.05), 0 26px 60px rgba(3, 34, 43, 0.12);
  --radius: 14px;
  --radius-lg: 24px;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-body: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(13, 148, 136, 0.18);
  color: var(--ink);
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
