   /* ── NAVIGATION ── */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s;
  }

  nav.scrolled {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-logo img {
    height: 32px;
  }

  .nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--accent);
  }

  .nav-cta {
    background:#0D1B3E;
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 6px;
    transition: background 0.2s;
  }

  .nav-cta:hover {
    background: var(--blue);
  }

  .nav-hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 4px;
  }

  .nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
  }

  .nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .nav-hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
   
    
    
      @media (max-width: 768px) {
    /* Navigation mobile  */
    nav {
      padding: 0.75rem 1.25rem;
    }

    .nav-links {
      display: none;
      position: absolute;
      top: 56px;
      left: 0;
      right: 0;
      flex-direction: column;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 1rem;
      gap: 0;
      align-items: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .nav-links.mobile-open {
      display: flex;
    }

    .nav-links li {
      padding: 0;
      border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child {
      border-bottom: none;
    }

    .nav-links a {
      display: block;
      padding: 12px 0;
      font-size: 14px;
    }

    .nav-cta {
      display: inline-block;
      width: 100%;
      text-align: center;
      margin-top: 12px;
      padding: 10px 20px !important;
      font-size: 13px;
    }

    .nav-hamburger {
      display: flex;
    }

    .nav-logo-text {
      font-size: 16px;
    }

    .nav-logo img {
      height: 28px;
    }
  }