@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Inter:var(--6xlarge-regular-font-weight),var(--small-regular-font-weight),var(--xsmall-regular-font-weight),400,var(--large-medium-font-weight),var(--small-semi-bold-font-weight),var(--base-medium-font-weight),600,var(--base-semi-bold-font-weight),var(--large-semi-bold-font-weight),var(--base-regular-font-weight),var(--xsmall-medium-font-weight),500,var(--5xlarge-regular-font-weight),var(--large-regular-font-weight),var(--small-medium-font-weight)|Geist:500"); /* @FONTWARNING[{"type": "restricted", "family": "Switzer-Regular", "weight": "400", "style": "normal", "allowsCrossOrigin": false}] */
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

@font-face {
  font-family: "Switzer-Regular";
  src: local("Switzer-Regular");
}
/* @FONTWARNING[{"type": "restricted", "family": "Switzer-Semibold", "weight": "400", "style": "normal", "allowsCrossOrigin": false}] */

@font-face {
  font-family: "Switzer-Semibold";
  src: local("Switzer-Semibold");
}

/* ============================================================
   SHARED HAMBURGER MENU STYLES (used across all pages)
   ============================================================ */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #090a0b;
  border-radius: 2px;
  transition: all 0.25s ease;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 150;
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #ffffff;
  z-index: 160;
  flex-direction: column;
  padding: 80px 28px 40px;
  gap: 32px;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav-drawer.open {
  display: flex;
  transform: translateX(0);
}
.mobile-nav-drawer a,
.mobile-nav-drawer .mob-nav-link {
  font-family: "Inter", Helvetica;
  font-size: 18px;
  font-weight: 500;
  color: #090a0b;
  text-decoration: none;
  cursor: pointer;
}
.mobile-nav-drawer .mob-nav-link-active {
  font-weight: 700;
  color: #054948;
}
.mobile-nav-drawer .mob-nav-divider {
  width: 100%;
  height: 1px;
  background: #e5e7eb;
}
.mobile-nav-drawer .mob-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-drawer .mob-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1.5px solid #054948;
  border-radius: 48px;
  font-family: "Inter", Helvetica;
  font-size: 15px;
  font-weight: 500;
  color: #054948;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}
.mobile-nav-drawer .mob-btn-filled {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 48px;
  font-family: "Inter", Helvetica;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  background: #054948;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 640px) {
  .mobile-menu-btn { display: flex; }
}
