:root {
  color-scheme: light;
  --surface: #ffffff;
  --surface-muted: #e1ede7;
  --surface-strong: #0f172a;
  --surface-alt: #f8fafc;
  --accent: #4d26f5;
  --accent-soft: #ece5f3;
  --text-primary: #1e293b;
  --text-muted: #475569;
  --border: #e2e8f0;
  --card-shadow: 0 16px 40px -24px rgba(15, 23, 42, 0.45);
}

@font-face {
  font-family: "Beausite Classic";
  src: url("../fonts/beausiteclassicweb-clear.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Beausite Classic";
  src: url("../fonts/beausiteclassicweb-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Beausite Classic";
  src: url("../fonts/beausiteclassicweb-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  font-family: "Beausite Classic", "Helvetica Neue", Arial, sans-serif;
  background: var(--surface);
  color: var(--text-primary);
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}
