:root {
  color-scheme: light;
  background: #f6f2eb;
  color: #665b52;
  font-family: ui-rounded, "Avenir Next", Avenir, "Trebuchet MS", sans-serif;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }

body { margin: 0; }

.page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(2rem, 5vw, 3.25rem);
}

.page::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 14px;
  border: 1px dashed #c8a870;
  border-radius: 20px;
  opacity: .65;
  z-index: -1;
}

.wordmark {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .18em;
  line-height: 1.5;
  color: #76562d;
}

.wordmark span { font-weight: 500; }

main {
  display: grid;
  place-items: center;
  min-width: 0;
  padding-block: 1.25rem;
}

.logo {
  display: block;
  width: min(100%, 650px, 72svh);
  height: auto;
  mix-blend-mode: multiply;
}

footer {
  text-align: center;
  font-size: .8125rem;
  letter-spacing: .04em;
  line-height: 1.5;
}

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

@media (max-width: 480px) {
  .page { padding: 2.25rem 1.75rem; }
  .page::before { inset: 10px; border-radius: 16px; }
  .logo { width: 100%; }
}
