@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700&display=swap');

:root {
  color-scheme: dark;
  font-family: 'Inter', sans-serif;
  background: #0c0c10;
  color: #f2f0ed;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; line-height: 1.7; }
a { color: #d7b27a; }
a:hover { color: #f3d6a7; }
a:focus-visible { outline: 2px solid #d7b27a; outline-offset: 4px; border-radius: 2px; }

.wrap { width: min(100% - 40px, 820px); margin-inline: auto; }
.site-header {
  border-bottom: 1px solid #ffffff1a;
  background: #101014;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}
.brand {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  white-space: nowrap;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  margin-right: 7px;
  border-radius: 50%;
  background: #c39d63;
  color: #0c0c10;
}
.site-header nav { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: .9rem; }
.site-header nav a { text-decoration: none; }
.site-header nav a[aria-current="page"] { color: #fff; }

main { padding-block: 70px 100px; }
.eyebrow { color: #c39d63; font-size: .75rem; letter-spacing: .19em; text-transform: uppercase; font-weight: 700; }
h1, h2 { font-family: 'Outfit', sans-serif; line-height: 1.2; }
h1 { margin: 12px 0; font-size: clamp(2rem, 7vw, 3.7rem); overflow-wrap: anywhere; }
h2 { margin: 0 0 14px; font-size: clamp(1.35rem, 4vw, 1.75rem); }
.intro { max-width: 670px; color: #c5c0bb; font-size: 1.05rem; }
.updated { margin-top: 22px; color: #a9a39f; font-size: .88rem; }
section { padding: 30px 0; border-top: 1px solid #ffffff1c; }
section:first-of-type { margin-top: 48px; }
p, ul { margin: 0 0 16px; color: #c8c4c0; }
li + li { margin-top: 8px; }
strong { color: #f2f0ed; }
.site-footer { border-top: 1px solid #ffffff1a; padding: 28px 0 42px; color: #a9a39f; font-size: .85rem; }
.site-footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.site-footer a { margin-left: 18px; }

@media (max-width: 600px) {
  .site-header .wrap { align-items: flex-start; flex-direction: column; padding-block: 18px; }
  h1 { font-size: clamp(1.65rem, 7.3vw, 1.85rem); }
  main { padding-block: 44px 60px; }
  .site-footer a { margin: 0 18px 0 0; }
}