@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/bodoni-moda.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-400.woff2') format('woff2');
}

:root {
  color-scheme: dark;
  --ink: #0a0908;
  --iron: #15110d;
  --parchment: #ece6d8;
  --gilt: #b08a3e;
  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  background: var(--ink);
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: #0a0908;
}

body {
  color: var(--parchment);
}

* {
  box-sizing: border-box;
}

.fortibus-landing {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  overflow: hidden;
  background: var(--ink);
  color: var(--parchment);
  text-align: center;
}

.wordmark {
  margin: 0;
  color: var(--parchment);
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 108px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.tagline {
  margin: 18px 0 0;
  color: rgb(236 230 216 / 42%);
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.5vw, 11px);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.axis {
  width: 1px;
  height: 96px;
  margin: 34px 0;
  background: linear-gradient(
    180deg,
    rgb(236 230 216 / 5%),
    rgb(176 138 62 / 75%)
  );
}

.door {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 30px 56px;
  border: 1px solid rgb(176 138 62 / 55%);
  background: var(--ink);
  text-decoration: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.door:hover,
.door:focus-visible {
  border-color: var(--gilt);
  outline: none;
  background: var(--iron);
}

.door:focus-visible {
  box-shadow: 0 0 0 1px var(--gilt);
}

.door-mark {
  color: var(--parchment);
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 400;
  letter-spacing: 0.14em;
}

.door-sub {
  color: var(--gilt);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.contact {
  margin: 56px 0 0;
  color: rgb(236 230 216 / 45%);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-decoration: none;
}

.contact:hover {
  color: var(--parchment);
}

.contact:focus-visible {
  border-radius: 2px;
  outline: 1px solid var(--parchment);
  outline-offset: 6px;
}

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

.legacy-page {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  background: #0a0908;
  color: #727272;
  font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  font-size: 12px;
  line-height: 18px;
  text-align: left;
}

.legacy-page img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.legacy-page p {
  margin: 0 0 18px;
  line-height: 18px;
}

.legacy-page a {
  color: #c2c2c2;
  text-decoration: none;
}

.legacy-page a:focus-visible {
  outline: 1px solid #c2c2c2;
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .door {
    padding: 24px 32px;
  }

  .axis {
    height: 64px;
    margin: 26px 0;
  }
}
