@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap");

:root {
  --selfsame-ink: #211f1b;
  --selfsame-soft: #5d574e;
  --selfsame-paper: #f1ece0;
  --selfsame-card: #faf7ef;
  --selfsame-plum: #8b4570;
  --selfsame-line: #d9d1c3;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--selfsame-ink);
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  filter: drop-shadow(0 5px 10px rgba(82, 42, 67, 0.12));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.brand-line {
  color: var(--selfsame-soft);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.site-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  font: 500 13px/1.2 "Inter", system-ui, sans-serif;
}

.site-header-actions a {
  color: inherit;
  text-decoration: none;
}

.site-header-actions a:hover,
.site-header-actions a:focus-visible {
  color: var(--selfsame-plum);
}

.eyebrow {
  color: var(--selfsame-plum);
  font: 500 11px/1.2 "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--selfsame-line);
  margin-top: 56px;
  padding: 24px 0 40px;
  color: var(--selfsame-soft);
  font: 13px/1.5 "Inter", system-ui, sans-serif;
}

.brand-footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .site-header-actions {
    justify-content: flex-start;
  }
  .brand-line {
    font-size: 9px;
  }
}
