/* ─── TOPBAR ─── */
.topbar {
  background: rgba(108,78,224,0.12);
  border-bottom: 1px solid var(--border);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  backdrop-filter: blur(10px);
}
.tb-contacts { display: flex; align-items: center; gap: 20px; }
.tb-item {
  display: flex; align-items: center; gap: 6px;
  color: var(--muted); font-size: 12px; font-weight: 500;
  text-decoration: none; transition: color .2s; letter-spacing: .2px;
}
.tb-item:hover { color: var(--cream); }
.tb-item svg { width: 12px; height: 12px; fill: currentColor; flex-shrink: 0; }
.tb-socials { display: flex; align-items: center; gap: 16px; }
.tb-soc {
  color: var(--muted); font-size: 11px; font-weight: 500;
  text-decoration: none; letter-spacing: .5px;
  display: flex; align-items: center; gap: 5px; transition: color .2s;
}
.tb-soc:hover { color: var(--accent2); }
.tb-soc svg { width: 12px; height: 12px; fill: currentColor; }
.tb-div { width: 1px; height: 12px; background: var(--border); }

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { width: 48px; height: 48px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--cream); letter-spacing: -.2px; }
.logo-sub { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color .2s; letter-spacing: .3px; }
.nav-links a:hover { color: var(--cream); }
.btn-nav {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: .5px !important;
  transition: opacity .2s !important;
}
.btn-nav:hover { opacity: .85 !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--cream); border-radius: 2px; }
.mob-menu {
  display: none;
  position: fixed;
  top: 120px; left: 0; right: 0;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--border);
  padding: 24px 5%;
  flex-direction: column;
  gap: 18px;
  z-index: 998;
}
.mob-menu.open { display: flex; }
.mob-menu a { font-size: 15px; font-weight: 500; color: var(--muted); text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--border); }
