/* ─────────────────────────────────────────
   header.css — drawer + brand bar
───────────────────────────────────────── */

/* ── BRAND BAR ── */
.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 58px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo-img {
  height: 38px;
  width: auto;
}
.icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: background .18s;
  text-decoration: none;
}
.icon-btn:hover { background: var(--rose-pale); }
.icon-btn svg { width: 16px; height: 16px; }

/* ── DRAWER ── */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(28,20,16,.45);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
  z-index: 200;
  backdrop-filter: blur(2px);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 78vw; max-width: 300px;
  background: var(--white);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: 4px 0 24px rgba(0,0,0,.12);
}
.drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.drawer-logo { height: 34px; width: auto; }

.drawer-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: background .18s;
}
.drawer-close:hover { background: var(--rose-pale); color: var(--rose-dark); }
.drawer-close svg { width: 15px; height: 15px; }

.drawer-links { list-style: none; padding: 8px 0; flex: 1; overflow-y: auto; }
.drawer-links li a {
  display: flex; align-items: center;
  padding: 13px 20px;
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background .15s, color .15s;
  border-left: 3px solid transparent;
}
.drawer-links li a:hover {
  background: var(--rose-pale);
  color: var(--rose-dark);
  border-left-color: var(--rose);
}
.drawer-links li a.active {
  background: var(--rose-pale);
  color: var(--rose-dark);
  border-left-color: var(--rose);
  font-weight: 500;
}

.drawer-footer {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border);
}
.drawer-social { display: flex; gap: 12px; margin-bottom: 12px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all .18s;
  text-decoration: none;
}
.social-btn:hover { background: var(--rose-pale); border-color: var(--rose); color: var(--rose-dark); }
.social-btn svg { width: 16px; height: 16px; }
.drawer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
}
