html, body {
  overflow-x: hidden;
}

.topbar {
  background: #1f1a17;
  color: #f1e7da;
  font-size: 14px;
  padding: 10px 0;
}

.topbar .row,
nav .row {
  display: grid;
  gap: 22px;
}

.topbar .row {
  grid-template-columns: 1fr auto auto;
  align-items: center;
}

nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(248,243,236,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

nav .row {
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  padding: 16px 0;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #c69a4b 0%, #a97e35 100%);
  color: #fff;
  border: 0;
  border-radius: 14px;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.menu {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-weight: 700;
  color: #4a392c;
}

.menu a:hover {
  color: #a97e35;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c69a4b 0%, #a97e35 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

@media (max-width: 980px) {
  .topbar {
    display: none !important;
  }

  nav {
    position: relative !important;
    top: auto !important;
    z-index: 9999 !important;
    background: #f8f3ec !important;
  }

  nav .row {
    grid-template-columns: 1fr auto !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .logo img {
    height: 38px !important;
  }

  nav .row > .btn {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    justify-self: end;
  }

  .menu {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    width: 100%;
    background: #fff;
    margin-top: 12px;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
  }

  .menu.show {
    display: flex !important;
  }

  .menu a {
    width: 100%;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 18px;
    font-weight: 700;
    color: #4a392c !important;
    background: #fff;
  }

  .menu a:last-child {
    border-bottom: none;
  }
}