/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
    width: 100%;
    height: 65px;
    position: absolute;
    top: 0; left: 0;
    z-index: 50;
    background: var(--burgundy);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  
  .nav-left  { display: flex; align-items: center; }
  .nav-right { display: flex; align-items: center; justify-content: flex-end; }
  
  .nav-center {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  
  .nav-center a {
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
  }
  
  .nav-center a:hover { color: var(--orange); }
  
  .logo {
    height: 46px;
    width: auto;
    display: block;
  }
  
  /* ── HAMBURGER BUTTON ────────────────────────────────────── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  /* ── MOBILE MENU ─────────────────────────────────────────── */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 200;
    padding: 2rem;
    transition: left 0.35s ease;
    display: flex;
    flex-direction: column;
  }
  
  .mobile-menu.open { right: 0; }
  
  .mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--black);
    margin-bottom: 2.5rem;
    padding: 4px;
  }
  
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  .mobile-nav a {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    padding: 1.1rem 0;
    border-bottom: 1px solid #eeeeee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
  }
  
  .mobile-nav a::after {
    content: "›";
    font-size: 1.2rem;
    color: #ccc;
  }
  
  .mobile-nav a:hover { color: var(--orange); }
  
  /* ── OVERLAY ─────────────────────────────────────────────── */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  
  .mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
  }
  
  /* ── RESPONSIVE ──────────────────────────────────────────── */
  @media (max-width: 900px) {
    .nav-inner  { padding: 0 24px; }
    .nav-center { display: none; }
    .hamburger  { display: flex; }
  }