/* ═══════════════════════════════════════════════
   INDIECO — NAVIGATION
   ═══════════════════════════════════════════════ */

/* ── TOP NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled {
  background: rgba(247, 246, 242, 0.96);
  border-bottom: 0.5px solid var(--rule);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav.dark {
  background: transparent;
}
.nav.dark.scrolled {
  background: rgba(14, 13, 11, 0.92);
  border-bottom: 0.5px solid rgba(245, 240, 232, 0.1);
}

.nav-logo {
  font-family: var(--font-garant);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--ink);
  transition: color 0.2s;
}
.nav.dark .nav-logo { color: #f5f0e8; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--ink-soft);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav.dark .nav-links a { color: #f5f0e8; }
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; color: var(--ink); }

.nav-cta {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 22px;
  background: var(--ink);
  color: #f5f0e8 !important;
  opacity: 1 !important;
  transition: background 0.2s ease !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--dark) !important; }
.nav.dark .nav-cta { background: #f5f0e8; color: var(--dark) !important; }

/* ── HAMBURGER (mobile) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 0.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav.dark .nav-hamburger span { background: #f5f0e8; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 199;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ── FOOTER ── */
.footer-wrap {
  background: var(--cream);
  border-top: 0.5px solid var(--rule);
  padding: 0 var(--page-pad);
}

.footer {
  font-family: var(--font-sans);
  padding: 4rem 0 2.5rem;
  max-width: var(--page-max);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 2.5rem;
  border-bottom: 0.5px solid var(--rule);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-garant);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--ink-ghost);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.footer-link {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--ink); }

.footer-link-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--ink-ghost);
  min-width: 52px;
  text-align: right;
}

.footer-link-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--rule);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 10px;
  letter-spacing: 0.06em;
  font-weight: 300;
  color: var(--ink-ghost);
  max-width: 580px;
  line-height: 1.7;
}

.footer-locations {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--gold-light);
  white-space: nowrap;
}

/* ── DARK FOOTER VARIANT ── */
.footer-wrap.dark {
  background: var(--dark);
  border-top-color: rgba(245,240,232,0.08);
}
.footer-wrap.dark .footer-logo { color: #f5f0e8; }
.footer-wrap.dark .footer-tagline { color: rgba(245,240,232,0.25); }
.footer-wrap.dark .footer-link { color: rgba(245,240,232,0.4); }
.footer-wrap.dark .footer-link:hover { color: #f5f0e8; }
.footer-wrap.dark .footer-link-label { color: rgba(245,240,232,0.2); }
.footer-wrap.dark .footer-link-dot { background: rgba(245,240,232,0.1); }
.footer-wrap.dark .footer-copy { color: rgba(245,240,232,0.2); }
.footer-wrap.dark .footer-bottom { border-top-color: rgba(245,240,232,0.08); }

@media (max-width: 760px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-links { align-items: flex-start; }
  .footer-link-label { text-align: left; }
}
