.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 196, 0, 0.15);
}

.site-nav .nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-nav .nav-logo img {
  display: block;
  width: auto;
  height: 44px;
}

.site-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav .nav-anchor,
.nav-drawer .nav-anchor {
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.site-nav .nav-anchor:hover,
.nav-drawer .nav-anchor:hover {
  color: var(--gold);
}

.site-nav .btn,
.nav-drawer .btn {
  display: inline-block;
  padding: 14px 36px;
  border: 0;
  cursor: pointer;
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transform: skewX(var(--skew));
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.site-nav .btn span,
.nav-drawer .btn span {
  display: inline-block;
  transform: skewX(var(--unskew));
}

.site-nav .btn-sm {
  padding: 10px 24px;
  font-size: 13px;
}

.site-nav .btn-gold,
.nav-drawer .btn-gold {
  color: var(--black);
  background: var(--gold);
}

.site-nav .btn-gold:hover,
.nav-drawer .btn-gold:hover {
  background: var(--gold-dark);
}

.site-nav .btn-outline,
.nav-drawer .btn-outline {
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.site-nav .btn-outline:hover,
.nav-drawer .btn-outline:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 4px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: none;
  cursor: pointer;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}

.nav-hamburger span:nth-child(2) { width: 70%; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { width: 100%; opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 24px 24px 32px;
  flex-direction: column;
  gap: 8px;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 196, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s;
}

.nav-drawer.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-drawer .nav-anchor {
  display: block;
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-drawer .btn {
  width: 100%;
  margin-top: 8px;
  text-align: center;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 60px 0 32px;
  background: var(--black-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer .footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.site-footer .footer-brand img {
  display: block;
  width: auto;
  height: 52px;
}

.site-footer .footer-brand p {
  max-width: 220px;
  margin-top: 16px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer .footer-col h4 {
  margin-bottom: 20px;
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.site-footer .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer .footer-col ul li {
  margin: 0;
}

.site-footer .footer-col a,
.site-footer address a {
  color: var(--gray);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer .footer-col a:hover,
.site-footer address a:hover {
  color: var(--white);
}

.site-footer .footer-col address {
  color: var(--gray);
  font-size: 14px;
  font-style: normal;
  line-height: 1.8;
}

.site-footer address .footer-email {
  color: var(--gold);
  font-size: 13px;
}

.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer .footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer .footer-bottom p,
.site-footer .footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.25);
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer .footer-bottom a:hover {
  color: var(--gold);
}

.site-footer .footer-legal {
  display: flex;
  gap: 24px;
}

@media (max-width: 900px) {
  .site-nav { padding: 0 20px; }
  .site-footer .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .site-nav .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }
  .site-footer .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .site-footer .footer-bottom { align-items: flex-start; flex-direction: column; gap: 20px; }
  .site-footer .footer-legal { flex-wrap: wrap; }
}
