:root {
  --fortress-tan: #EAE0C8;
  --fortress-black: #0A0A0A;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--fortress-tan);
  color: var(--fortress-black);
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(28px, 5vw, 72px);
}

.content {
  width: min(920px, 100%);
  margin: auto;
  text-align: center;
}

.logo {
  display: block;
  width: min(820px, 94vw);
  height: auto;
  margin: 0 auto;
}

.divider {
  width: min(240px, 48vw);
  height: 2px;
  margin: clamp(20px, 3vw, 34px) auto;
  background: var(--fortress-black);
}

h1 {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: clamp(22px, 3vw, 34px);
  font-style: normal;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.contact a {
  width: fit-content;
  margin: 0 auto;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.contact a:hover,
.contact a:focus-visible {
  border-bottom-color: currentColor;
}

footer {
  padding-top: 42px;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .page {
    padding: 28px 20px 22px;
  }

  .logo {
    width: min(560px, 100%);
  }

  footer {
    padding-top: 30px;
  }
}
