/* ── NAV ── */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 66px;
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 1px 8px rgba(92,60,40,0.06);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-logo span { color: var(--gold-d); }
.nav-logo-dot {
  width: 8px; height: 8px;
  background: var(--rose-d);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
  font-weight: 400;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.nav-link:hover, .nav-link.active { color: var(--dark); background: var(--bg); }

/* ══ BOTTOM NAV ══ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px 20px;
  background: transparent;
}
.bottom-nav-inner {
  display: flex;
  gap: 10px;
  width: 100%;
}
.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: #A89880;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  height: 58px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #EDE5D8;
  box-shadow: 0 4px 16px rgba(92,60,40,0.12);
  transition: all 0.2s;
}
.bottom-nav-item.active {
  background: #D4B483;
  border-color: #D4B483;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(212,180,131,0.45);
}
.bottom-nav-icon { font-size: 22px; line-height: 1; }

body.has-bottom-nav { padding-bottom: 100px; }

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 52px 0 28px; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-col h4 { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 10px; transition: color 0.2s; text-decoration: none; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-langs { display: flex; gap: 16px; }
.footer-lang { font-size: 12px; color: rgba(255,255,255,0.3); background: none; border: none; cursor: pointer; font-family: var(--sans); transition: color 0.2s; }
.footer-lang:hover, .footer-lang.active { color: var(--gold); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner { padding: 0 16px; }
  .bottom-nav { display: block; }
  .footer { display: none; }
}
