/* ═══════ NAV & FOOTER — SSI Component Styles ═══════ */

:root {
  --black: #0a0a0a;
  --deep: #0d0f14;
  --mist: #1a1d26;
  --stone: #2a2d38;
  --gold: #c9a84c;
  --amber: #d4a843;
  --fog: #8b8d95;
  --silver: #b8bac2;
  --bone: #e8e4dc;
  --white: #f5f2eb;
}

/* ── Nav bar ── */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  z-index: 400;
  background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, transparent 100%);
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

/* ── Logo ── */
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }

/* ── Links ── */
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fog);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

/* ── Messenger button ── */
.nav-messenger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #c9a84c, #e8c96a);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  outline: none;
  margin-left: 10px;
  box-shadow: 0 2px 8px rgba(201,168,76,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.nav-messenger-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(201,168,76,0.55);
}
.nav-messenger-btn svg {
  width: 18px;
  height: 18px;
  fill: #0a0a0a;
}

/* ── Phone ── */
.nav-phone {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--silver);
  text-decoration: none;
}

/* ── Burger ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-burger:focus,
.nav-burger:focus-visible {
  outline: none;
  box-shadow: none;
}
.nav-burger span {
  display: block;
  width: 100%; height: 1px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* ── Mobile menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.97);
  z-index: 10001;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0 40px;
  overflow-y: auto;
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }

/* Close button */
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
  z-index: 10;
}
.mobile-menu-close:hover { opacity: 1; color: var(--gold); }

/* Accordion nav */
.mobile-nav {
  width: 100%;
  max-width: 340px;
  padding: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
}
.mobile-nav-item {
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.mobile-nav-item:first-child {
  border-top: 1px solid rgba(201,168,76,0.15);
}
.mobile-nav-toggle {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: color 0.3s;
}
.mobile-nav-toggle:hover,
.mobile-nav-toggle.active { color: var(--gold); }
.mobile-nav-arrow {
  transition: transform 0.3s ease;
  font-size: 10px;
}
.mobile-nav-toggle.active .mobile-nav-arrow {
  transform: rotate(180deg);
}
.mobile-nav-sub {
  list-style: none;
  padding: 0 0 12px 16px;
  margin: 0;
  display: none;
}
.mobile-nav-sub.open { display: block; }
.mobile-nav-sub li { margin: 10px 0; }
.mobile-nav-sub a {
  font-family: 'Raleway', sans-serif !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: rgba(232,228,220,0.7) !important;
  text-decoration: none !important;
  transition: color 0.3s !important;
  text-align: left !important;
  display: block !important;
}
.mobile-nav-sub a:hover { color: var(--gold) !important; }
.mobile-nav-link {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 18px 0;
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--gold); }

/* Phone in menu */
.mobile-menu-phone {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--gold);
  text-decoration: none;
  margin-top: 32px;
  flex-shrink: 0;
}

/* ── Footer ── */
footer {
  background: var(--black, #0a0a0a);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white, #f5f2eb);
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: var(--fog, #8b8d95);
  line-height: 1.8;
}
.footer-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold, #c9a84c);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: var(--fog, #8b8d95);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold, #c9a84c); }
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  color: var(--fog, #8b8d95);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}

/* MOBILE RIGHT GROUP */
.nav-mobile-right {
  display: none !important;
  align-items: center;
  gap: 4px;
}

/* MOBILE PHONE ICON */
.nav-phone-icon {
  display: none !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--gold, #c9a84c);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease;
}
.nav-phone-icon:hover,
.nav-phone-icon:active { color: #fff; }
.nav-phone-icon svg { display: block; }

/* ── Mobile responsive ── */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none !important; }
  .nav-messenger-btn { display: none !important; }
  .nav-burger { display: flex !important; }
  .nav-phone-icon { display: flex !important; }
  .nav-mobile-right { display: flex !important; }
  .nav-phone { display: none !important; }
  nav a[href^="tel"]:not(.nav-phone-icon) { display: none !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { padding-left: 24px; padding-right: 24px; }
}
