/* ── Nav ─────────────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  padding: 0 40px;
}
.site-nav.scrolled {
  background: rgba(11,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(201,168,76,0.2);
}
body:not(.page-home) .site-nav {
  background: rgba(11,22,40,0.97);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  border-left: 1px solid rgba(201,168,76,0.4);
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12em;
}
.nav-logo-sub {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.nav-link:hover { color: #fff; }
.nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-cta {
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--gold-light); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(11,22,40,0.98);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 16px 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.nav-mobile.open {
  max-height: 400px;
}
.nav-mobile-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 12px 40px;
  transition: color 0.2s;
}
.nav-mobile-link:hover,
.nav-mobile-link.active { color: var(--gold); }
.nav-mobile-cta {
  color: var(--gold);
  margin-top: 8px;
}

/* ── Main offset ─────────────────────────────────────────────────────────── */
main.has-nav-offset { padding-top: 72px; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 60px 32px;
}
.footer-inner { max-width: 1300px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 56px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  max-width: 340px;
}
.footer-divider {
  height: 1px;
  background: rgba(201,168,76,0.2);
  margin: 28px 0 20px;
}
.footer-tagline {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-col { display: flex; flex-direction: column; }
.footer-col-title {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

  .site-nav { padding: 0 20px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer { padding: 48px 24px 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
