/* ====== Site Header (new nav) ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 64px;
  background: rgba(10, 13, 17, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42, 48, 64, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10, 13, 17, 0.95);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}
.header-logo-byline {
  font-size: 11px;
  color: rgba(212, 165, 116, 0.7);
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.header-nav-link {
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forge-silver);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.header-nav-link:hover { color: var(--forge-text); }

/* More dropdown */
.header-more { position: relative; }
.header-more-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forge-silver);
  transition: color 0.2s ease;
}
.header-more-btn:hover { color: var(--forge-text); }
.header-more-btn svg { transition: transform 0.2s ease; }
.header-more.open .header-more-btn svg,
.header-more:hover .header-more-btn svg { transform: rotate(180deg); }
.header-more-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 24, 32, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(42, 48, 64, 0.5);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 100;
}
.header-more:hover .header-more-menu,
.header-more.open .header-more-menu { display: block; }
.header-more-item {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: 'General Sans', 'DM Sans', sans-serif;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.header-more-item:hover {
  background: rgba(212, 165, 116, 0.1);
  color: var(--forge-copper);
}
.header-more-divider {
  height: 1px;
  background: rgba(42, 48, 64, 0.5);
  margin: 4px 0;
}

/* Right side */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  flex-shrink: 0;
}
.header-ig {
  color: var(--forge-silver);
  transition: color 0.2s ease;
  display: flex;
}
.header-ig:hover { color: var(--forge-text); }
.header-cta {
  background: linear-gradient(135deg, #F59E0B, #D4A574) !important;
  background-size: 100% 100% !important;
  color: #0A0D11 !important;
  font-family: 'General Sans', 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: inline-block !important;
}
.header-cta:hover {
  opacity: 0.9;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, #F59E0B, #D4A574) !important;
  background-size: 100% 100% !important;
}

/* Hamburger */
.header-hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--forge-text);
  flex-shrink: 0;
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 17, 0.98);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-overlay.open { transform: translateX(0); }
.mobile-overlay-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forge-text);
}
.mobile-overlay-link {
  font-family: 'Satoshi', 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forge-text);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-overlay-link:hover { color: var(--forge-copper); }
.mobile-overlay-divider {
  width: 60px;
  height: 1px;
  background: rgba(42, 48, 64, 0.5);
}
.mobile-overlay-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

/* ====== Header responsive ====== */
@media (max-width: 768px) {
  .site-header { height: 56px; }
  .header-inner { gap: 8px; flex-wrap: nowrap; }
  .header-nav { display: none !important; }
  .header-ig { display: none !important; }
  .header-right { gap: 8px; margin-left: auto; flex-shrink: 0; }
  .header-cta { font-size: 0.72rem !important; padding: 7px 12px !important; }
  .header-hamburger { display: flex !important; flex-shrink: 0; }
  .header-logo img { height: 28px !important; }
  .header-logo-byline { font-size: 0.65rem; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header-inner { gap: 20px; }
  .header-nav { gap: 16px; }
  .header-nav-link, .header-more-btn { font-size: 0.8rem; }
  .header-cta { font-size: 0.78rem; padding: 8px 16px; }
}
