:root {
  --bg: darkgray;
  --fg: #2a6075;        /* "blue mustang" — muted teal (per swatch) */
  --muted: #5a8595;     /* faded blue mustang for copyright */
  --accent: orange;
  --heading: #3a3a3a;   /* darker gray for the "Enemies of Toil" heading */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: "Genos", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--fg);
}

body {
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  padding-bottom: calc(3rem + env(safe-area-inset-bottom));
  line-height: 1.5;
}

header h1 {
  font-size: clamp(3.63rem, 11.62vw, 6.534rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
  color: var(--heading);
}

footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  font-size: 1.512rem;
  color: var(--muted);
}

.contact a {
  color: var(--accent);
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: right;
}

@media (max-width: 480px) {
  body {
    padding: 1rem;
    padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
  }

  footer {
    font-size: 1.296rem;
  }
}
