/* ── HEADER ─────────────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow .3s;
}
#header.scrolled {
  box-shadow: 0 2px 20px rgba(26, 14, 6, 0.08);
}

.header-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 32px; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
}

/* ── LOGO ───────────────────────────────────────────────── */
.logo-img-link { display: flex; align-items: center; }
.header-logo {
  height: 56px;
  width: auto;
  display: block;
}

/* ── DESKTOP NAV ────────────────────────────────────────── */
.nav-list {
  display: flex; gap: 36px; list-style: none;
}
.nav-list a {
  font-size: .83rem; letter-spacing: .06em;
  color: var(--muted); font-weight: 500;
  position: relative;
  padding: 5px 10px; border-radius: 2px;
  transition: color .2s, background .2s, letter-spacing .2s;
}
.nav-list a::after {
  content: ''; position: absolute; bottom: 3px; left: 10px; right: 10px;
  height: 1px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s cubic-bezier(.25,.46,.45,.94);
}
.nav-list a:hover {
  color: var(--dark);
  background: rgba(200, 82, 26, 0.06);
  letter-spacing: .09em;
}
.nav-list a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--orange); color: var(--white) !important;
  padding: 8px 22px; font-size: .83rem !important;
  letter-spacing: .06em;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-lt) !important; color: var(--white) !important; }

/* ── HAMBURGER ──────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--dark); transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV ─────────────────────────────────────────── */
.mobile-nav {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; padding: 8px 0 16px; }
.mobile-nav ul li a {
  display: block; padding: 13px 32px;
  font-size: .875rem; letter-spacing: .04em;
  color: var(--muted); transition: color .2s;
}
.mobile-nav ul li a:hover { color: var(--orange); }

@media (max-width: 768px) {
  .nav-list { display: none; }
  .hamburger { display: flex; }
}
