/* Navigation Styles */
:root {
  --gold: #C8922A;
  --gold-light: #F2C96B;
  --gold-pale: #FBF0D9;
  --red: #8B1A1A;
  --red-deep: #5C0E0E;
  --ink: #1A140D;
  --ink-mid: #4A3828;
  --white: #FFFFFF;
  --ff-display: 'Cormorant Garamond', serif;
  --ff-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(26, 20, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 146, 42, 0.2);
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-decoration: none;
}
.nav-logo img {
  height: 2rem;
  vertical-align: middle;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.5rem 1.4rem;
  background: var(--gold); color: var(--ink);
  border: none; border-radius: 2px; cursor: pointer;
  text-decoration: none; transition: background 0.25s;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-right {
  display: flex; align-items: center; gap: 1rem;
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(200,146,42,0.35);
  border-radius: 3px;
  cursor: pointer; padding: 0;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.hamburger:hover { border-color: var(--gold); }
.ham-bar {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}
.hamburger.is-open .ham-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open .ham-bar:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open .ham-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  background: #110D07;
  border-left: 1px solid rgba(200,146,42,0.2);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  will-change: transform;
}
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-overlay.is-open { opacity: 1; pointer-events: all; }
.drawer-inner {
  display: flex; flex-direction: column;
  height: 100%; padding: 0 0 2.5rem;
  overflow-y: auto;
}
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid rgba(200,146,42,0.12);
}
.drawer-logo {
  font-family: var(--ff-display); font-weight: 600;
  font-size: 1rem; color: var(--gold-light);
  letter-spacing: 0.06em;
}
.drawer-logo img {
  height: 1rem;
  vertical-align: middle;
}
.drawer-close {
  background: transparent; border: none;
  color: rgba(255,255,255,0.5); font-size: 1.1rem;
  cursor: pointer; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px; transition: color 0.2s, background 0.2s;
  line-height: 1;
}
.drawer-close:hover { color: var(--gold-light); background: rgba(200,146,42,0.1); }
.drawer-links { list-style: none; padding: 1.5rem 0; flex: 1; }
.drawer-links li { border-bottom: 1px solid rgba(200,146,42,0.07); }
.drawer-links a {
  display: flex; align-items: center;
  padding: 1rem 1.8rem;
  font-size: 0.85rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}
.drawer-links a:hover { color: var(--gold-light); background: rgba(200,146,42,0.06); padding-left: 2.2rem; }
.drawer-cta {
  display: block; margin: 0.5rem 1.8rem;
  text-align: center;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 1rem;
  background: var(--gold); color: var(--ink);
  border-radius: 2px; text-decoration: none;
  transition: background 0.25s;
}
.drawer-cta:hover { background: var(--gold-light); }
.drawer-meta {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.2rem; margin-top: 2rem; padding: 0 1.8rem;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  nav { padding: 0.8rem 1rem; }
  .nav-logo img { height: 1.6rem; }
}
