.ww-top-nav {
  position: fixed;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(18, 24, 38, 0.6);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  z-index: 1000;
}
.ww-top-nav a,
.ww-top-nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #eef4ff;
  font: 600 14px/1 "Urbanist", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
  min-width: max-content;
  display: inline-flex !important;
  transition: background-color 150ms ease, color 150ms ease;
}
.ww-top-nav a:hover,
.ww-top-nav a:focus-visible,
.ww-top-nav button:hover,
.ww-top-nav button:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  outline: none;
}
.ww-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 8, 17, 0.6);
  z-index: 1100;
}
.ww-modal[aria-hidden="false"] {
  display: flex;
}
.ww-modal-card {
  box-sizing: border-box;
  width: min(92vw, 540px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  border-radius: 16px;
  border: 1px solid rgba(28, 40, 60, 0.2);
  background: rgba(255, 252, 245, 0.98);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  padding: 22px;
}
.ww-modal-title {
  margin: 0 0 12px;
  font: 700 26px/1.2 Georgia, "Times New Roman", serif;
  color: #1d1a16;
}
.ww-modal-copy {
  margin: 0 0 14px;
  font: 500 17px/1.6 Georgia, "Times New Roman", serif;
  color: #2f2923;
}
.ww-contact-form {
  display: grid;
  gap: 10px;
}
.ww-contact-form input,
.ww-contact-form textarea {
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(86, 63, 38, 0.32);
  border-radius: 10px;
  background: #fffdf8;
  padding: 10px 12px;
  font: 500 15px/1.4 "Urbanist", "Segoe UI", Arial, sans-serif;
  color: #2f2923;
}
.ww-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.ww-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 4px;
}
.ww-btn {
  height: 36px;
  padding: 0 14px;
  border-radius: 9px;
  border: 1px solid rgba(86, 63, 38, 0.32);
  background: #f0e4cc;
  color: #2a261f;
  font: 600 14px/1 "Urbanist", "Segoe UI", Arial, sans-serif;
  cursor: pointer;
}
.ww-btn.ww-primary {
  border-color: rgba(39, 133, 183, 0.35);
  background: #6ccce4;
  color: #0c2f3d;
}

@media (max-width: 480px) {
  .ww-modal {
    padding: 12px;
  }

  .ww-modal-card {
    width: 100%;
    max-height: calc(100dvh - 24px);
    padding: 18px;
  }
}

.ww-map-page .ww-top-nav {
  top: 2px;
  padding: 6px 10px;
  gap: 6px;
  background: rgba(18, 24, 38, 0.38);
  backdrop-filter: blur(3px);
}
.ww-map-page .ww-top-nav a,
.ww-map-page .ww-top-nav button {
  height: 28px;
  padding: 0 10px;
  font-size: 12px;
}
