<header class="site-header">
  <div class="nav-wrap">
    <a href="/<%= lang %>/" class="brand">
      <svg class="drop" viewBox="0 0 32 32" fill="none">
        <path d="M16 2C16 2 6 15 6 21a10 10 0 0020 0C26 15 16 2 16 2z" fill="url(#dripgrad)"/>
        <defs>
          <linearGradient id="dripgrad" x1="6" y1="2" x2="26" y2="31" gradientUnits="userSpaceOnUse">
            <stop stop-color="#A6672B"/>
            <stop offset="1" stop-color="#1E8A5F"/>
          </linearGradient>
        </defs>
      </svg>
      <%= brand_name %>
    </a>
    <nav class="main-nav">
      <a href="#about"><%= t.nav_about %></a>
      <a href="#services"><%= t.nav_services %></a>
      <a href="#why"><%= t.nav_why %></a>
      <a href="#gallery"><%= t.nav_gallery %></a>
      <a href="#contact"><%= t.nav_contact %></a>
    </nav>
    <div class="nav-right">
      <div class="lang-switch">
        <% langs.forEach(function(l){ %>
          <a href="/<%= l %>/" class="<%= l === lang ? 'active' : '' %>"><%= l.toUpperCase() %></a>
        <% }) %>
      </div>
      <button class="hamburger" id="hamburgerBtn" aria-label="Menu">
        <span></span><span></span><span></span>
      </button>
    </div>
  </div>
  <div class="mobile-menu" id="mobileMenu">
    <a href="#about"><%= t.nav_about %></a>
    <a href="#services"><%= t.nav_services %></a>
    <a href="#why"><%= t.nav_why %></a>
    <a href="#gallery"><%= t.nav_gallery %></a>
    <a href="#contact"><%= t.nav_contact %></a>
  </div>
</header>
