:root {
  --bg: #fdfbf6;
  --ink: #2a2723;
  --muted: #6b665e;
  --accent: #1f7ec1;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

main {
  width: 100%;
  max-width: 640px;
  text-align: center;
}

.logo {
  display: block;
  margin: 0 auto 2.25rem;
}

.logo img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.message {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 2rem;
  font-style: italic;
}

.contact {
  display: inline-block;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 126, 193, 0.35);
  padding-bottom: 2px;
  transition: border-color 150ms ease, color 150ms ease;
}

.contact:hover,
.contact:focus-visible {
  color: #155a8a;
  border-bottom-color: #155a8a;
  outline: none;
}

@media (max-width: 480px) {
  html, body { font-size: 17px; }
  .message { font-size: 1.1rem; }
  .logo { margin-bottom: 1.75rem; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1816;
    --ink: #ece7df;
    --muted: #a39d92;
    --accent: #6cb4e6;
  }
  .logo img {
    background: #fdfbf6;
    border-radius: 8px;
    padding: 1rem;
  }
  .contact { border-bottom-color: rgba(108, 180, 230, 0.4); }
  .contact:hover, .contact:focus-visible {
    color: #a3d2f3;
    border-bottom-color: #a3d2f3;
  }
}
