@font-face {
  font-family: 'Archivo';
  src: url('/assets/fonts/archivo-variable.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --site-shell-gold: #f2b233;
  --site-shell-gold-hover: #caa033;
  --site-shell-bg: #0b0b0d;
  --site-shell-ink: #f3f3f5;
  --site-shell-muted: #9a9aa3;
  --site-shell-line: rgba(255, 255, 255, 0.26);
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background .35s ease, border-color .35s ease, padding .35s ease;
}

.site-nav.scrolled,
.site-nav--solid {
  padding-top: 11px;
  padding-bottom: 11px;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: rgba(11, 11, 13, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--site-shell-ink);
  text-decoration: none;
}

.site-brand img {
  display: block;
  width: auto;
  height: 34px;
}

.site-brand picture {
  display: contents;
}

.site-brand__name {
  color: var(--site-shell-ink);
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__links a {
  color: var(--site-shell-muted);
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible {
  color: var(--site-shell-ink);
}

.site-nav__actions {
  display: flex;
  align-items: stretch;
  gap: 9px;
}

.site-nav__call,
.site-nav__quote {
  min-height: 42px;
  font-family: 'Archivo', system-ui, sans-serif;
  text-decoration: none;
}

.site-nav__call {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  padding: 7px 13px;
  border: 1px solid var(--site-shell-line);
  color: var(--site-shell-ink);
  line-height: 1;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}

.site-nav__call:hover,
.site-nav__call:focus-visible {
  border-color: var(--site-shell-ink);
  background: var(--site-shell-ink);
  color: var(--site-shell-bg);
}

.site-nav__call-label {
  font-size: 13px;
  font-weight: 700;
}

.site-nav__call-meta {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .055em;
  white-space: nowrap;
  opacity: .72;
}

.site-nav__quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--site-shell-gold);
  color: var(--site-shell-bg);
  font-size: 14px;
  font-weight: 700;
  transition: background .25s ease;
}

.site-nav__quote:hover,
.site-nav__quote:focus-visible {
  background: var(--site-shell-gold-hover);
}

.site-nav__quote-arrow {
  font-size: 12px;
}

@media (max-width: 1120px) {
  .site-nav__links { gap: 18px; }
  .site-nav__links a { font-size: 13px; }
}

@media (max-width: 860px) {
  .site-nav__links { display: none; }
}

@media (max-width: 520px) {
  .site-nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-brand img { height: 30px; }
  .site-brand__name { display: none; }
  .site-nav__actions { gap: 7px; }
  .site-nav__call { padding: 7px 9px; }
  .site-nav__call-label { font-size: 11.5px; }
  .site-nav__call-meta { font-size: 7.5px; letter-spacing: .035em; }
  .site-nav__quote { padding: 9px 11px; font-size: 12px; }
  .site-nav__quote-arrow { display: none; }
}
