:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #171613;
  color: #e5d9bd;
}

* { box-sizing: border-box; }
body { margin: 0; }
body::before, body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 34px;
  background: #b76524 url("assets/meander.svg") repeat-x center;
  pointer-events: none;
}
body::before { top: 0; }
body::after { bottom: 0; }
body { position: relative; min-height: 100svh; display: flex; flex-direction: column; }
::selection { background: #b76524; color: #171613; }
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 104px 16px 48px;
  text-align: center;
}
h1 {
  margin: 0;
  font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
  font-size: min(6.5vw, 84px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.3;
  white-space: nowrap;
  color: #c97930;
}
.company-name {
  margin: 0 0 28px;
  color: #e5d9bd;
  font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
  font-size: clamp(14px, 2vw, 24px);
  letter-spacing: .04em;
  white-space: nowrap;
}
footer { padding: 20px 16px 58px; text-align: center; color: #b9ae97; font-size: 11px; line-height: 1.6; }
nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; margin-top: 20px; }
nav a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: #e3be57;
  font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
  font-size: 14px;
  text-decoration: none;
  text-underline-offset: 6px;
}
nav a span { color: inherit; font-family: Arial, sans-serif; font-size: 18px; }
nav a:hover { color: #ffe09a; text-decoration: underline; }
nav a:focus-visible { outline: 2px solid #e3be57; outline-offset: 6px; }
@media (max-width: 600px) {
  h1 { font-size: 6.5vw; }
  .company-name { margin-bottom: 24px; }
  nav { gap: 32px; }
}
