/* ===== HEADER ===== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem clamp(1.25rem, 4vw, 4rem);
    background: #fff;
  }
  
  .logo img {
    width: 180px;
    height: auto;
  }
  
  /* NAV DESKTOP */
  .nav-links {
    display: flex;
    gap: 2.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #000;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  
  /* BURGER BUTTON */
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
  }
  
  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: #000;
    display: block;
  }
  
  /* ===== MOBILE ===== */
  
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
    }
  
    .nav-links {
      position: fixed;
      inset: 0;
      background: #f6f7f5;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      transform: translateX(100%);
      transition: transform 0.3s ease;
    }
  
    .nav-links a {
      font-size: 1.4rem;
    }
  
    .nav-links.open {
      transform: translateX(0);
    }
  }
  