:root {
  color-scheme: light;
  --background: #ffffff;
  --ink: #050505;
  --muted: #535353;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  text-rendering: geometricPrecision;
}

.landing {
  min-height: 100svh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.25rem;
  padding: clamp(2rem, 6vw, 4rem);
}

.logo {
  width: min(64vw, 440px);
  height: auto;
  display: block;
}

.contact {
  color: var(--muted);
  font-family: Didot, "Bodoni 72", "Bodoni 72 Oldstyle", "Bodoni MT", "Times New Roman", serif;
  font-size: clamp(0.72rem, 1.5vw, 0.95rem);
  line-height: 1.2;
  text-decoration: none;
  letter-spacing: 0;
  margin-top: -0.55rem;
}

.contact:hover,
.contact:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.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;
}
