/* ===== FULL-PAGE NAV OVERLAY ===== */
html.scroll-locked,
body.scroll-locked,
html.nav-open,
body.nav-open {
  overflow: hidden;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition:
    visibility 0s linear 0.55s,
    opacity 0.45s ease;
}

.mobile-nav.open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transition:
    visibility 0s,
    opacity 0.35s ease;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 8, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

[data-theme="light"] .mobile-nav-backdrop {
  background: rgba(240, 238, 234, 0.78);
}

.mobile-nav.open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav-panel {
  position: relative;
  width: min(560px, 100%);
  height: 100%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 13, 0.96);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-left: 1px solid rgba(255, 123, 0, 0.18);
  box-shadow:
    -24px 0 80px rgba(0, 0, 0, 0.55),
    inset 1px 0 0 rgba(255, 255, 255, 0.04);
  transform: translateX(105%);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

[data-theme="light"] .mobile-nav-panel {
  background: rgba(248, 246, 242, 0.97);
  border-left-color: rgba(255, 123, 0, 0.22);
  box-shadow:
    -24px 0 80px rgba(0, 0, 0, 0.12),
    inset 1px 0 0 rgba(255, 255, 255, 0.85);
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 123, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 123, 0, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
  pointer-events: none;
}

.mobile-nav-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 123, 0, 0.16), transparent 68%);
  pointer-events: none;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px 20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.mobile-nav-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-brand-tag {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.mobile-nav-brand-line {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.mobile-nav-close {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 123, 0, 0.06);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}

.mobile-nav-close:hover {
  border-color: var(--gold);
  background: rgba(255, 123, 0, 0.12);
  transform: rotate(90deg);
}

.mobile-nav-close-icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.mobile-nav-close-icon::before,
.mobile-nav-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.mobile-nav-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 8px 32px 24px;
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 123, 0, 0.45) transparent;
}

.mobile-nav-inner::-webkit-scrollbar {
  width: 6px;
}

.mobile-nav-inner::-webkit-scrollbar-thumb {
  background: rgba(255, 123, 0, 0.45);
  border-radius: 999px;
}

.mobile-nav-inner > * {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav:not(.open) .mobile-nav-inner > * {
  transition-delay: 0s !important;
}

.mobile-nav.open .mobile-nav-inner > *:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.12s;
}
.mobile-nav.open .mobile-nav-inner > *:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.17s;
}
.mobile-nav.open .mobile-nav-inner > *:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.22s;
}
.mobile-nav.open .mobile-nav-inner > *:nth-child(4) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.27s;
}
.mobile-nav.open .mobile-nav-inner > *:nth-child(5) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.32s;
}
.mobile-nav.open .mobile-nav-inner > *:nth-child(6) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.37s;
}
.mobile-nav.open .mobile-nav-inner > *:nth-child(7) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.42s;
}
.mobile-nav.open .mobile-nav-inner > *:nth-child(8) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.47s;
}
.mobile-nav.open .mobile-nav-inner > *:nth-child(9) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.52s;
}

.mobile-nav-link,
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-family: "Orbitron", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  text-decoration: none;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  transition: color 0.2s;
  text-align: left;
}

.mobile-nav-index {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--gold);
  opacity: 0.65;
  min-width: 22px;
  flex-shrink: 0;
}

.mobile-nav-label {
  flex: 1;
}

.mobile-nav-link:hover,
.mobile-nav-toggle:hover {
  color: var(--gold);
}

.mobile-nav-link:hover .mobile-nav-index,
.mobile-nav-toggle:hover .mobile-nav-index {
  opacity: 1;
}

.mobile-chevron {
  width: 10px;
  height: 6px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-group.open .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-nav-sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-sub-inner {
  overflow: hidden;
  min-height: 0;
}

.mobile-nav-group.open .mobile-nav-sub {
  grid-template-rows: 1fr;
}

.mobile-sub-head {
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 14px 0 8px 38px;
}

.mobile-nav-sub a {
  display: block;
  padding: 10px 0 10px 38px;
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text2);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition:
    color 0.2s,
    padding-left 0.25s ease;
}

.mobile-nav-sub a:last-child {
  border-bottom: none;
  padding-bottom: 16px;
}

.mobile-nav-sub a:hover {
  color: var(--gold);
  padding-left: 44px;
}

.mobile-nav-cta {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding-top: 8px;
}

.btn-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-mobile-cta:hover {
  background: var(--gold);
  color: #000;
}

.btn-mobile-cta-solid {
  background: var(--gold);
  color: #000;
}

.btn-mobile-cta-solid:hover {
  background: var(--gold2);
  color: #000;
}

[data-theme="light"] .btn-mobile-cta-solid {
  color: var(--iron4);
}

.mobile-nav-footer {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 32px 28px;
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text3);
  border-top: 1px solid var(--border);
}

.mobile-nav-footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}
/* ===== NAV (glassmorphism) ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(14, 14, 17, 0.45);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06); /* top sheen */
  transition:
    background 0.4s,
    box-shadow 0.3s,
    border-color 0.3s;
}
[data-theme="light"] #header {
  background: rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

#header.scrolled {
  background: rgba(14, 14, 17, 0.65);
  box-shadow:
    0 1px 0 rgba(206, 124, 30, 0.164),
    0 8px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
[data-theme="light"] #header.scrolled {
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 1px 0 rgba(206, 124, 30, 0.164),
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.nav-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 1 auto;
  min-width: 0;
  margin-right: 48px;
}
.logo-emblem {
  width: 46px;
  height: 46px;
  position: relative;
  flex-shrink: 0;
}
.logo-emblem svg {
  width: 100%;
  height: 100%;
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.logo-wordmark .lw1 {
  font-family: "Orbitron", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--accent);
  line-height: 1;
  white-space: nowrap;
}
.logo-wordmark .lw2 {
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text3);
  font-weight: 600;
  font-family: "Rajdhani", sans-serif;
  line-height: 1.25;
  max-width: 22em;
  white-space: normal;
}

/* Nav Links */
.nav-links {
  display: flex;
  justify-content: right;
  align-items: stretch;
  height: 72px;
  margin-right: 3rem;
  flex: 1;
  /* border: 1px solid red; */
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 15px;
  height: 37%;
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text3);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
  user-select: none;
}
[data-theme="light"] .nav-link {
  color: var(--header-links-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-item:hover .nav-link {
  color: var(--text);
}
.nav-item:hover .nav-link::after {
  transform: scaleX(1);
}
.nav-link.active {
  color: var(--text);
}
.nav-link.active::after {
  transform: scaleX(1);
}

.chairman-portal {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-chevron {
  width: 8px;
  height: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    transform 0.25s,
    stroke 0.2s;
}
.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
  stroke: var(--gold);
}

/* Mega Menu */
.mega {
  position: absolute;
  top: calc(60% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(6px) scale(0.97);
  transform-origin: top center;
  background: rgba(12, 12, 15, 0.97);
  backdrop-filter: blur(48px) saturate(200%);
  -webkit-backdrop-filter: blur(48px) saturate(200%);
  border: 1px solid var(--border-strong);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 16px 16px;
  min-width: 520px;
  max-height: calc(100dvh - 88px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0.22s;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(201, 162, 39, 0.1) inset;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 123, 0, 0.45) transparent;
}

@media (min-width: 1500px) {
  #header,
  .nav-inner,
  .nav-links,
  .nav-item {
    overflow: visible;
  }

  .mega {
    transform: none;
    left: 50%;
    margin-left: -260px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 2px solid var(--gold);
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition:
      opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s linear 0.22s;
  }

  .mega::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: rgba(14, 14, 17, 0.78);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    pointer-events: none;
  }

  [data-theme="light"] .mega {
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-top: 2px solid var(--gold);
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }

  [data-theme="light"] .mega::before {
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
  }

  .mega.wide {
    margin-left: -410px;
  }

  .mega-inner {
    position: relative;
    z-index: 1;
    max-height: calc(100dvh - 88px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 123, 0, 0.45) transparent;
  }

  .mega-inner::-webkit-scrollbar {
    width: 6px;
  }

  .mega-inner::-webkit-scrollbar-thumb {
    background: rgba(255, 123, 0, 0.45);
    border-radius: 999px;
  }
}

.mega::-webkit-scrollbar {
  width: 6px;
}

.mega::-webkit-scrollbar-thumb {
  background: rgba(255, 123, 0, 0.45);
  border-radius: 999px;
}

.mega.wide {
  min-width: 820px;
}
.nav-item:hover .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0) scale(1);
  transition:
    opacity 0.22s,
    transform 0.22s,
    visibility 0s;
}

@media (min-width: 1500px) {
  .nav-item:hover .mega {
    transform: none;
  }
}

.mega-inner {
  padding: 24px 28px 28px;
}
.mega.wide .mega-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
}

.mega-panel {
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.08), transparent);
  border-right: 1px solid var(--border);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mega-panel-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.mega-panel-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  transition:
    background 0.15s,
    color 0.15s;
  line-height: 1.3;
}
.mega-panel-link:hover {
  background: rgba(201, 162, 39, 0.1);
  color: var(--text);
}
.mpd {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}
.mega-panel-link:hover .mpd {
  opacity: 1;
}

.mega-cols-wrap {
  padding: 20px 22px;
}
.mega-cols {
  display: grid;
  gap: 20px;
}
.mega-cols.c2 {
  grid-template-columns: 1fr 1fr;
}
.mega-cols.c3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.mega-col-head {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.mega-lnk {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  margin: 1px -8px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  transition:
    color 0.15s,
    background 0.15s;
  white-space: nowrap;
}
.mega-lnk::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 0.15s,
    transform 0.15s;
}
.mega-lnk:hover {
  color: var(--text);
  background: rgba(201, 125, 39, 0.08);
}
.mega-lnk:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.btn-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-nav-cta:hover {
  background: var(--gold);
  color: #000;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  /* border: 1px solid var(--border-strong); */
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.theme-toggle:hover {
  border-color: var(--gold);
}
.theme-toggle svg {
  width: 28px;
  height: 28px;
  display: none;
}
.theme-toggle .icon-moon {
  fill: var(--text2);
}
.theme-toggle:hover .icon-moon {
  fill: var(--gold);
}
.theme-toggle .icon-sun {
  fill: none;
  stroke: var(--text2);
  stroke-width: 2;
  stroke-linecap: round;
}
.theme-toggle:hover .icon-sun {
  stroke: var(--gold);
}
[data-theme="dark"] .icon-sun,
[data-theme="light"] .icon-moon {
  display: block;
}
[data-theme="dark"] .icon-moon,
[data-theme="light"] .icon-sun {
  display: none;
}
[data-theme="light"] .btn-nav-cta {
  background: var(--gold);
  color: var(--iron4);
}

/* hamburger */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 4px;
  background: transparent;
  padding: 0;
  flex-shrink: 0;
  color: var(--text2);
  font-size: 40px;
  transition:
    color 0.2s,
    background 0.2s;
}

.hamburger svg {
  display: block;
  width: 1em;
  height: 1em;
}

.hamburger:hover,
.hamburger.active {
  color: var(--gold);
}
/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1499px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo {
    margin-right: 16px;
    gap: 10px;
  }

  .logo-wordmark .lw2 {
    max-width: 10em;
    font-size: 7px;
    letter-spacing: 1.2px;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .btn-nav-cta {
    padding: 9px 14px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 1100px) {
  .container {
    padding: 0 40px;
  }
  .nav-inner {
    padding: 0 24px;
  }
}

@media (max-width: 992px) {
  .logo-wordmark .lw2 {
    display: none;
  }

  .nav-logo {
    margin-right: 8px;
  }
}
@media (max-width: 1024px) {
  .product-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-card.featured {
    flex-direction: column;
  }
  .product-card.featured .card-image {
    width: 100%;
    height: 240px;
  }
  .product-card.featured .card-specs {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .chairman-portal,
  .btn-nav-contact {
    display: none;
  }

  .mobile-nav-cta {
    display: flex;
  }

  .mobile-nav-panel {
    width: 100%;
    border-left: none;
  }

  .product-grid.cols-3,
  .product-grid.cols-2 {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }
  .cta-buttons {
    flex-direction: row;
  }
  .modal-specs-grid {
    grid-template-columns: 1fr;
  }
  .modal-features ul {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 24px;
  }
  .cat-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .modal-actions {
    flex-direction: column;
  }
}
