:root {
  --page-x: clamp(18px, 5vw, 24px);
  --surface: #faf9f6;
  --surface-lowest: #ffffff;
  --surface-low: #f4f3f1;
  --surface-container: #efeeeb;
  --surface-high: #e9e8e5;
  --ink: #1a1c1a;
  --muted: #43474d;
  --outline: #73777d;
  --outline-soft: #c3c7cd;
  --primary: #485f77;
  --primary-deep: #324960;
  --primary-soft: #cfe5ff;
  --tan: #715b3c;
  --tan-soft: #fadbb4;
  --blue-soft: #d7e3ff;
  --danger: #ba1a1a;
  --danger-soft: #ffdad6;
  --green-soft: #dfead8;
  --shadow: 0 18px 45px rgba(37, 52, 79, 0.06);
  --shadow-tight: 0 8px 24px rgba(37, 52, 79, 0.05);
  --font-head: "Libre Caslon Text", Georgia, serif;
  --font-ui: "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  background: var(--surface);
  overflow-x: hidden;
  overscroll-behavior-x: none;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  min-height: 100dvh;
  margin: 0;
  background:
    radial-gradient(circle at 16% 8%, rgba(250, 219, 180, 0.28), transparent 28rem),
    radial-gradient(circle at 86% 24%, rgba(207, 229, 255, 0.28), transparent 24rem),
    var(--surface);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  letter-spacing: 0;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background-image: linear-gradient(rgba(26, 28, 26, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(26, 28, 26, 0.018) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.material-symbols-rounded {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

.material-symbols-rounded svg {
  display: block;
  width: 24px;
  height: 24px;
}

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