:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #f7f7f7;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
body { margin: 0; }

.page {
  min-height: 100svh;
  padding: 0 clamp(1.5rem, 5vw, 6rem);
  display: flex;
  flex-direction: column;
}

.masthead {
  min-height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid #242424;
}

.wordmark {
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .19em;
  line-height: 1.6;
}

.brand-symbol { display: flex; align-items: center; gap: 4px; height: 24px; }
.brand-symbol i { display: block; width: 1px; background: #a1a1a1; height: 6px; }
.brand-symbol i:nth-child(2), .brand-symbol i:nth-child(6) { height: 12px; }
.brand-symbol i:nth-child(3), .brand-symbol i:nth-child(5) { height: 19px; }
.brand-symbol i:nth-child(4) { height: 26px; }

main {
  flex: 1;
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0 5rem;
}

.logo-frame {
  margin: 0;
  width: min(100%, 90rem);
  line-height: 0;
}
.logo { display: block; width: 100%; height: auto; }
.descriptor {
  margin: -1.5% 0 0;
  padding-left: .58em;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .58em;
  color: #a6a6a6;
}

footer {
  min-height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid #242424;
  color: #8f8f8f;
  font-size: .8125rem;
  letter-spacing: .025em;
  line-height: 1.6;
}
.footer-wordmark {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  color: #dedede;
  font-size: 1.65rem;
  letter-spacing: -.12em;
  padding-right: .12em;
}

@media (max-width: 600px) {
  .masthead, footer { min-height: 5.25rem; }
  main { min-height: 25rem; padding: 2rem 0 4rem; }
  .logo-frame { width: calc(100% + 3rem); }
  .descriptor { margin-top: 1.2rem; }
  .wordmark { font-size: .8125rem; letter-spacing: .14em; }
}

@media (prefers-reduced-motion: no-preference) {
  main { animation: arrive 1.2s ease-out both; }
  @keyframes arrive { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
}
