/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── VARIABLES ── */
:root {
  --gold:               #C9A84C;
  --gold-light:         #E8C97A;
  --gold-dim:           #9B7E3A;
  --black:              #2A2620;
  --black-soft:         #322E26;
  --dark:               #3A352C;
  --surface:            #403B30;
  --surface-alt:        #484038;
  --ink:                #F2EDE0;
  --ink-muted:          #B8A888;
  --ink-dim:            #8A7A60;
  --border:             rgba(201,168,76,0.18);
  --border-strong:      rgba(201,168,76,0.38);
  --light-bg:           #F6F1E7;
  --light-bg-alt:       #EDE6D8;
  --light-text:         #2A2620;
  --light-text-muted:   #5C5040;
  --light-text-dim:     #8C7C60;
  --light-border:       rgba(150,120,60,0.18);
  --light-border-strong:rgba(140,110,50,0.32);
  --font-display:       'Playfair Display', Georgia, serif;
  --font-body:          'Jost', sans-serif;
  --max:                1160px;
  --radius:             4px;
  --nav-h:              72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
}

.nav-logo img { height: 42px; width: auto; display: block; }

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

.nav-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

/* Active section underline indicator */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }

/* Nav CTA button overrides specificity via !important — intentional */
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius) !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s !important;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

/* ── BURGER ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(13,12,10,0.97);
  backdrop-filter: blur(16px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open {
  display: flex;
  animation: menuIn 0.25s ease both;
}

@keyframes menuIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--gold); }

/* ── RESPONSIVE NAV ── */
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .burger { display: flex; }
}
