:root {
  color-scheme: dark;
  --bg: #0b0c0f;
  --fg: #e8e6e3;
  --muted: #9a9690;
  --line: #23252b;
  --accent: #c4b59a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, #1a1c24 0%, transparent 55%),
    var(--bg);
}

.wrap {
  flex: 1;
  max-width: 34rem;
  margin: 0 auto;
  padding: 22vh 1.5rem 4rem;
}

.mark {
  margin: 0 0 1.75rem;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}

.contact a {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.15rem;
}

.contact a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

footer {
  padding: 1.5rem;
  text-align: center;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
}

footer p { margin: 0; }
