:root {
  --ink: #191919;
  --muted: #66615d;
  --paper: #fffaf4;
  --panel: #f2eee8;
  --line: #ded8d2;
  --orange: #ff6633;
  --teal: #007f73;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
  padding: 14px clamp(20px, 4vw, 54px);
  background: rgba(255, 250, 244, 0.94);
  border-bottom: 1px solid rgba(25, 25, 25, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a[aria-current="page"] {
  color: var(--ink);
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  opacity: 0.7;
}

.social-links a:hover,
.social-links a:focus-visible {
  opacity: 1;
}

.social-links img {
  display: block;
  max-width: 17px;
  max-height: 17px;
}

@media (max-width: 720px) {
  .site-header {
    display: block;
    height: 104px;
    padding: 14px 20px;
  }

  .header-brand {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
  }

  nav {
    margin-top: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    font-size: 13px;
  }
}
