/* ════════════════════════════════════════════════════════════
   NAVBAR — top nav, mobile menu, hamburger, footer
   ════════════════════════════════════════════════════════════ */

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 50px;
  transition: background .4s ease, padding .35s ease, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 7, 7, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 50px;
  border-color: rgba(255, 255, 255, 0.06);
}
.nav.menu-open {
  background: transparent !important;
  backdrop-filter: none !important;
  border-color: transparent !important;
}
/* Hero nav (transparent, absolute on landing page) */
.nav.nav-hero {
  position: absolute;
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  height: 44px;
  width: auto;
  max-width: 200px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(200, 169, 110, 0.35));
}
.nav.scrolled .logo-mark { height: 38px; }
.logo-name {
  font-family: var(--font-playfair-display), serif;
  font-size: 13px; font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em; line-height: 1;
  display: block;
}
.logo-sub {
  font-size: 8.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a.act,
.nav-links a:hover {
  color: #fff;
}
.nav-links a.act::after,
.nav-links a:hover::after {
  width: 100%;
}

/* ── DROPDOWN ── */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 0;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  padding: 12px 20px;
  font-size: 10px;
  letter-spacing: 0.15em;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.icon-b {
  width: 37px; height: 37px;
  border-radius: 50%;
  border: 1px solid var(--glass-b);
  background: var(--glass);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: border-color 0.3s, background 0.3s;
}
.icon-b:hover {
  border-color: var(--gold-dim);
  background: var(--gold-glow);
}
.icon-b svg {
  width: 14px; height: 14px;
  stroke: rgba(255, 255, 255, 0.72);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta-b {
  padding: 9px 21px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-plus-jakarta-sans), sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.cta-b:hover {
  background: var(--gold);
  color: #070707;
  box-shadow: 0 0 32px var(--gold-glow);
}

/* ── HAMBURGER ── */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 37px; height: 37px;
  border-radius: 50%;
  border: 1px solid var(--glass-b);
  background: var(--glass);
  backdrop-filter: blur(12px);
  align-items: center; justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  position: relative;
  z-index: 210;
}
.ham:hover {
  border-color: var(--gold-dim);
  background: var(--gold-glow);
}
.ham span {
  display: block;
  width: 16px; height: 1.5px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
  transition: transform 0.38s var(--ease), opacity 0.25s, background 0.3s;
}
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold); }
.ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold); }

/* ── MOBILE MENU ── */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(7, 7, 7, 0.98);
  backdrop-filter: blur(32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mob-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mob-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  overflow-y: auto;
  flex: 1;
  justify-content: center;
}
.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.mob-nav a {
  font-family: var(--font-playfair-display), serif;
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.3s, transform 0.3s;
  padding: 8px 0;
}
.mob-nav a:hover,
.mob-nav a.act {
  color: #fff;
  transform: scale(1.05);
}
.mob-nav a.mob-sub {
  font-family: var(--font-plus-jakarta-sans), sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  margin-top: 0;
  padding: 4px 0;
}
.mob-nav a.mob-sub:hover {
  color: var(--gold);
}
.mob-cta {
  font-size: 11px !important;
  padding: 11px 28px !important;
}

/* ── FOOTER ── */
.footer {
  background: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 52px 50px 36px;
  position: relative;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-tagline {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-mute);
  max-width: 280px;
  margin-bottom: 22px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-col-title {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-list a,
.footer-list span {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-mute);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s;
}
.footer-list a:hover { color: var(--gold); }

.footer-bot {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.32);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav, .nav.scrolled {
    padding-left: 32px;
    padding-right: 32px;
  }
  .footer { padding: 44px 32px 28px; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav { padding: 18px 20px; }
  .nav.scrolled { padding: 14px 20px; }
  .nav-links,
  .nav-r .cta-b,
  .nav-r .icon-b { display: none; }
  .ham { display: flex; }

  .footer { padding: 40px 20px 24px; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bot {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* --- Language switcher (was inline in Next.js Nav) --- */
.lang-switcher { display: flex; align-items: center; gap: 6px; margin-right: 20px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); }
.lang-switcher a { background: transparent; border: none; color: inherit; cursor: pointer; padding: 4px; transition: color 0.3s; text-decoration: none; }
.lang-switcher a.act { color: var(--gold); }
.lang-switcher .sep { opacity: 0.3; font-weight: 300; }
.mob-lang { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; align-items: center; }
.mob-lang a { background: transparent; border: none; color: rgba(255,255,255,0.4); font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; }
.mob-lang a.act { color: var(--gold); }
@media (max-width: 900px) { .lang-switcher { display: none; } }
