@font-face {
  font-family: 'Libre Baskerville';
  src: url('/fonts/LibreBaskerville-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0B1220; /* deep navy */
  --fg: #E6E8EB; /* soft off-white */
  --muted: rgba(230, 232, 235, 0.45); /* muted tone */
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 1.5rem;
  gap: 2rem;
}

h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.01em;
}

.mailto {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--fg);
  text-decoration: underline;
  letter-spacing: 0.01em;
}

.mailto:hover,
.mailto:focus {
  text-decoration: underline;
}

.copyright {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  font-size: 12px;
  color: var(--muted);
}
