.ak-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  font-family: "Gill Sans", "Helvetica Neue", Arial, sans-serif;
}
.ak-topbar {
  background: #c86b3e;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ak-topbar-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 6px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ak-topbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}
.ak-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.ak-topbar a { color: #fff; }
.ak-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.ak-phone i { font-size: 12px; }
.ak-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ak-social-link:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}
.ak-social-link i {
  font-size: 14px;
  color: #ffffff;
  transition: color 0.2s ease;
}
.ak-social-link:hover i { color: #1b1814; }

.ak-mainbar {
  background: #ffffff;
  border-bottom: 1px solid #e4e1dc;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.ak-mainbar-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.ak-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ak-hamburger {
  border: 0;
  background: transparent;
  color: #1b1814;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  cursor: pointer;
}
.ak-hamburger-lines {
  width: 18px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.ak-hamburger-lines span {
  height: 1.5px;
  width: 100%;
  background: #1b1814;
  display: block;
  transition: all 0.25s ease;
}
.ak-hamburger.is-open .ak-hamburger-lines span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.ak-hamburger.is-open .ak-hamburger-lines span:nth-child(2) {
  opacity: 0;
}
.ak-hamburger.is-open .ak-hamburger-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.ak-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  letter-spacing: 0.03em;
}
.ak-links a { color: #1b1814; text-decoration: none; }
.ak-logo {
  text-align: center;
  display: flex;
  justify-content: center;
}
.ak-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 40px;
  background: rgb(17 17 17 / 92%);
  border-radius: 999px;
}
.ak-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.ak-right {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  letter-spacing: 0.03em;
}
.ak-right a { color: #1b1814; text-decoration: none; }
.ak-search {
  width: 17px;
  height: 17px;
  border: 1.5px solid #1b1814;
  border-radius: 999px;
  display: inline-block;
  position: relative;
}
.ak-search::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 1.5px;
  background: #1b1814;
  right: -5px;
  bottom: -2px;
  transform: rotate(45deg);
}

.drawer-menu { font-family: "Source Sans 3", sans-serif; }
.drawer-panel {
  width: 100%;
  max-width: none;
  background: #fff;
  height: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-right: 1px solid #eee7dc;
}
#drawer-overlay {
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 51;
  background: rgba(0, 0, 0, 0.5);
}

/* Fallback utility classes used by navbar.js (works even without Tailwind bundle). */
.hidden { display: none !important; }
.invisible { visibility: hidden !important; }
.opacity-0 { opacity: 0 !important; }
.pointer-events-none { pointer-events: none !important; }
.drawer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.drawer-menu-item a {
  display: block;
  padding: 16px 10px;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: #1b1814;
  text-decoration: none;
  border-bottom: 1px solid #eee7dc;
}
.drawer-menu-item a:hover { background: #faf7f2; }
.drawer-menu-item--chevron a {
  position: relative;
  padding-right: 28px;
}
.drawer-menu-item--chevron a::after {
  content: "›";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: #c7b7a0;
  font-size: 20px;
}
.drawer-menu-section-title {
  margin: 22px 10px 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b05b35;
}

.ak-topbar,
.ak-mainbar,
.ak-links,
.ak-right,
.ak-hamburger,
.ak-logo {
  transition: all 0.25s ease;
}
.ak-logo { transition: transform 0.25s ease; }

@media (max-width: 900px) {
  .ak-topbar-inner,
  .ak-mainbar-inner { padding: 6px 14px; }
  .ak-topbar-right,
  .ak-links { gap: 8px; }
  .ak-mainbar-inner { gap: 0; }
  .ak-topbar-left { gap: 8px; }
  .ak-topbar-left span:last-child { display: none; }
  .ak-topbar-right { gap: 5px; }
  .ak-social-link {
    width: 24px;
    height: 24px;
  }
  .ak-social-link i { font-size: 12px; }
  .ak-links,
  .ak-right a { display: none; }
  .ak-mobile-search { display: inline-block; }
  .ak-mainbar { border-bottom: 1px solid #e4e1dc; }
  .ak-hamburger { padding: 4px 0; }
  .ak-logo img { height: 36px; }
  .ak-logo {
    justify-content: flex-end;
    grid-column: 3;
  }
  .ak-right {
    grid-column: 2;
    justify-content: flex-end;
  }
}
.ak-mobile-search { display: none; }
@media (min-width: 901px) {
  .ak-hamburger { display: none !important; }
}
