/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-xl);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 20px var(--gold-glow);
}

.nav__links {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-light);
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--gold-light);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  background: var(--gold);
  color: var(--black);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.nav__cta:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-glow-gold);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--duration-normal) var(--ease-out);
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* Section */
.section {
  padding: var(--space-4xl) 0;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-md);
}

.section__subtitle {
  color: var(--gray-light);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Gold accent bar */
.accent-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: var(--space-md) auto;
  border-radius: 2px;
}

/* Footer */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: var(--space-md);
  text-shadow: 0 0 15px var(--gold-glow);
}

.footer__brand-desc {
  color: var(--gray);
  max-width: 320px;
  line-height: 1.7;
}

.footer__heading {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: var(--space-lg);
}

.footer__link {
  display: block;
  color: var(--gray-light);
  margin-bottom: var(--space-sm);
  transition: color var(--duration-fast);
}

.footer__link:hover {
  color: var(--gold-light);
}

.footer__bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray);
  font-size: 0.875rem;
}

/* Mobile */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
  }

  .nav__links--open {
    display: flex;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__link {
    font-size: 1.25rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}
