:root {
  color-scheme: dark;
  --bg: #000;
  --fg: #f4f4f4;
  --muted: #c8c8c8;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

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

html { background: var(--bg); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a { color: inherit; }

.page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 72px) 22px;
  overflow: hidden;
}

.content {
  width: min(92vw, 920px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  display: block;
  width: min(78vw, 720px);
  height: auto;
  opacity: 0;
  transform: translateY(10px) scale(.99);
  animation: logo-in 1.1s var(--ease) .08s forwards;
}

.tagline {
  margin: clamp(20px, 3vh, 34px) 0 0;
  max-width: 760px;
  font-size: clamp(15px, 1.45vw, 21px);
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  animation: fade-up .8s var(--ease) .62s forwards;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 30px);
  margin-top: clamp(26px, 4vh, 42px);
  opacity: 0;
  transform: translateY(8px);
  animation: fade-up .8s var(--ease) .82s forwards;
}

.socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--fg);
  transition: transform .25s ease, opacity .25s ease;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-2px) scale(1.06);
  opacity: .72;
  outline: none;
}

.socials svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials svg .fill { fill: currentColor; stroke: none; }

.address {
  margin-top: clamp(28px, 5vh, 52px);
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--muted);
  font-style: normal;
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.45;
  letter-spacing: .05em;
  opacity: 0;
  transform: translateY(8px);
  animation: fade-up .8s var(--ease) 1.02s forwards;
}

.address a {
  color: var(--fg);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: opacity .2s ease;
}

.address a:hover,
.address a:focus-visible { opacity: .66; }

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

@keyframes logo-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .page { padding: 30px 18px 38px; }
  .content { width: 100%; }
  .logo { width: min(92vw, 520px); }
  .tagline {
    max-width: 330px;
    font-size: 14px;
    letter-spacing: .055em;
  }
  .socials { gap: 21px; }
  .socials a { width: 25px; height: 25px; }
  .address { font-size: 13px; }
}

@media (max-height: 720px) and (min-width: 601px) {
  .page { padding-block: 24px; }
  .logo { width: min(58vw, 570px); }
  .tagline { margin-top: 12px; }
  .socials { margin-top: 20px; }
  .address { margin-top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
