:root {
  color-scheme: dark;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #111512;
  color: #f1ede4;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(circle at 50% 42%, rgba(184, 143, 82, 0.075), transparent 29rem),
    #111512;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(4rem, 10vh, 7rem) 1.5rem;
  text-align: center;
}

.identity {
  display: flex;
  width: min(100%, 46rem);
  flex-direction: column;
  align-items: center;
}

.location {
  margin: 0 0 clamp(2.75rem, 7vh, 4.5rem);
  color: #c7a66a;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  line-height: 1.5;
  text-transform: uppercase;
}

.logo {
  display: block;
  width: min(100%, 37.5rem);
  height: auto;
  filter: invert(94%) sepia(8%) saturate(238%) hue-rotate(349deg) brightness(101%) contrast(91%);
}

.rule {
  width: 2.75rem;
  height: 1px;
  margin: clamp(3rem, 7vh, 4.5rem) auto clamp(2.25rem, 5vh, 3.25rem);
  background: #a67c43;
}

.message {
  margin: 0;
  color: #cbc6bd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.7;
}

@media (max-width: 34rem) {
  .hero {
    padding-inline: 1.25rem;
  }

  .location {
    letter-spacing: 0.26em;
  }

  .logo {
    width: min(100%, 27rem);
  }
}
