:root {
  --navy: #071422;
  --panel: #0d2131;
  --ink: #eee8d9;
  --muted: #9bb2bf;
  --gold: #e6c37a;
  --brass: #c8923a;
  --cyan: #6ee0e8;
}

html {
  background: var(--navy);
  color: var(--ink);
  font-family: Barlow, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

html body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 75% 12%, rgba(30, 119, 133, 0.28), transparent 30rem),
    linear-gradient(180deg, #071422, #091a28 62%, #06101a);
}

a {
  color: var(--cyan);
}

body > .site-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid rgba(200, 146, 58, 0.35);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body > .site-head .brand,
body > .site-head nav {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

body > .site-head .brand {
  color: var(--gold);
  font-size: 21px;
  letter-spacing: 0.15em;
  text-decoration: none;
}

body > .site-head nav,
body > footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px;
}

body > footer nav {
  font-family: Barlow, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

body > .site-head nav a,
body > footer nav a {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: none;
}

body > .site-head nav a:hover,
body > footer nav a:hover,
body > .site-head nav a[aria-current="page"],
body > footer nav a[aria-current="page"] {
  background: transparent;
  color: var(--cyan);
}

body > .site-head nav a:focus-visible,
body > footer nav a:focus-visible,
body > .site-head .brand:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.button {
  display: inline-block;
  padding: 12px 20px;
  border: 1px solid #6a5228;
  border-radius: 8px;
  background: rgba(20, 17, 14, 0.75);
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  background: var(--brass);
  color: var(--navy);
}

.site-panel {
  padding: 24px;
  border: 1px solid rgba(106, 82, 40, 0.72);
  border-radius: 10px;
  background: rgba(13, 33, 49, 0.78);
}

body > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 26px 0 36px;
  border: 0;
  border-top: 1px solid rgba(200, 146, 58, 0.35);
  color: var(--muted);
  font-size: 14px;
  text-align: left;
}

body > footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-shadow: none;
}

@media (max-width: 760px) {
  body > .site-head,
  body > footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}
