

/* Start custom CSS for section, class: .elementor-element-2f69ee8 */```css
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* =========================================================
   HEADER ELEMENTOR FULL WIDTH RESET
   ========================================================= */

.elementor-section:has(.mk-header-shell),
.e-con:has(.mk-header-shell),
.elementor-column:has(.mk-header-shell),
.elementor-widget-wrap:has(.mk-header-shell),
.elementor-widget-html:has(.mk-header-shell),
.elementor-widget-container:has(.mk-header-shell) {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

.elementor-section:has(.mk-header-shell) > .elementor-container,
.e-con:has(.mk-header-shell) > .e-con-inner {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

.mk-header-shell,
.mk-header-shell * {
  box-sizing: border-box;
}

.mk-header-shell {
  width: 100vw;
  max-width: 100vw;
  margin: 0 !important;
  margin-left: calc(50% - 50vw) !important;
  padding: 0 !important;
  position: relative;
  z-index: 9999;
  font-family: "Montserrat", sans-serif;
}

/* Spacer keeps page content from hiding under fixed header */
.mk-header-spacer {
  height: 74px;
  width: 100%;
  display: block;
}

/* =========================================================
   HEADER
   ========================================================= */

.mk-header {
  --mk-bg: rgba(251, 246, 238, 0.94);
  --mk-text: #172536;
  --mk-muted: #66737d;
  --mk-navy: #18324a;
  --mk-navy-dark: #14283d;
  --mk-border: rgba(23, 37, 54, 0.08);
  --mk-beige: #f2e5d5;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;

  width: 100vw;
  max-width: 100vw;
  margin: 0 !important;
  padding: 0 !important;

  background: var(--mk-bg);
  border-bottom: 1px solid var(--mk-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  font-family: "Montserrat", sans-serif;
}

body.admin-bar .mk-header {
  top: 32px;
}

.mk-header a,
.mk-header a:hover,
.mk-header a:focus,
.mk-header a:active,
.mk-header button,
.mk-header button:hover,
.mk-header button:focus,
.mk-header button:active {
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.mk-header-inner {
  width: min(1140px, calc(100% - 48px));
  height: 74px;
  margin: 0 auto;
  padding: 0 !important;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

/* =========================================================
   BRAND
   ========================================================= */

.mk-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 255px;
  color: var(--mk-text) !important;
  text-decoration: none !important;
}

.mk-header-logo {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--mk-beige);
  color: var(--mk-navy);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  flex: 0 0 auto;
}

.mk-header-brand-text {
  display: grid;
  gap: 4px;
}

.mk-header-name {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--mk-text);
  white-space: nowrap;
}

.mk-header-role {
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mk-muted);
}

/* =========================================================
   DESKTOP NAV
   ========================================================= */

.mk-header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.mk-header-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;

  color: #53616f !important;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-decoration: none !important;

  transition: color 0.2s ease;
}

.mk-header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--mk-navy);

  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
  opacity: 0.55;
}

.mk-header-nav a:hover {
  color: var(--mk-text) !important;
  text-decoration: none !important;
}

.mk-header-nav a:hover::after {
  transform: scaleX(1);
}

/* =========================================================
   CTA
   ========================================================= */

.mk-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;
  padding: 14px 24px;
  border-radius: 999px;

  background: var(--mk-navy);
  color: #fff !important;

  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.012em;
  white-space: nowrap;
  text-decoration: none !important;

  box-shadow: 0 14px 32px rgba(24, 50, 74, 0.16) !important;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mk-header-cta:hover {
  background: var(--mk-navy-dark);
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(24, 50, 74, 0.22) !important;
}

/* =========================================================
   MOBILE TOGGLE
   ========================================================= */

.mk-header-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--mk-navy);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}

.mk-header-toggle span {
  position: relative;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  display: block;
  transition: background 0.18s ease;
}

.mk-header-toggle span::before,
.mk-header-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.18s ease, top 0.18s ease;
}

.mk-header-toggle span::before {
  top: -6px;
}

.mk-header-toggle span::after {
  top: 6px;
}

.mk-header.is-open .mk-header-toggle span {
  background: transparent;
}

.mk-header.is-open .mk-header-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.mk-header.is-open .mk-header-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* =========================================================
   MOBILE PANEL
   ========================================================= */

.mk-mobile-panel {
  display: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .mk-header-inner {
    width: min(100% - 34px, 1140px);
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 18px;
  }

  .mk-header-brand {
    min-width: 0;
  }

  .mk-header-nav,
  .mk-header-cta {
    display: none;
  }

  .mk-header-toggle {
    display: inline-flex;
  }

  .mk-mobile-panel {
    display: block;
    position: fixed;
    left: 17px;
    right: 17px;
    top: 84px;
    z-index: 99998;

    background: rgba(255, 253, 248, 0.98);
    border: 1px solid rgba(23, 37, 54, 0.08);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(35, 39, 45, 0.15);

    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.admin-bar .mk-mobile-panel {
    top: 116px;
  }

  .mk-header.is-open + .mk-mobile-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mk-mobile-panel a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;

    color: var(--mk-text) !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
  }

  .mk-mobile-panel a:hover {
    background: #f7ecdf;
    text-decoration: none !important;
  }

  .mk-mobile-panel .mk-mobile-cta {
    justify-content: center;
    margin-top: 8px;
    background: var(--mk-navy);
    color: #fff !important;
    border-radius: 999px;
    min-height: 48px;
    box-shadow: 0 14px 32px rgba(24, 50, 74, 0.16) !important;
  }

  .mk-mobile-panel .mk-mobile-cta:hover {
    background: var(--mk-navy-dark);
    color: #fff !important;
  }
}

@media (max-width: 782px) {
  body.admin-bar .mk-header {
    top: 46px;
  }

  body.admin-bar .mk-mobile-panel {
    top: 130px;
  }
}

@media (max-width: 520px) {
  .mk-header-spacer {
    height: 68px;
  }

  .mk-header-inner {
    height: 68px;
    width: min(100% - 26px, 1140px);
  }

  .mk-header-logo {
    width: 39px;
    height: 39px;
    font-size: 14px;
  }

  .mk-header-name {
    font-size: 16px;
  }

  .mk-header-role {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .mk-header-brand {
    gap: 11px;
  }

  .mk-header-toggle {
    width: 42px;
    height: 42px;
  }

  .mk-mobile-panel {
    left: 13px;
    right: 13px;
    top: 76px;
    border-radius: 19px;
  }

  body.admin-bar .mk-mobile-panel {
    top: 122px;
  }
}
```/* End custom CSS */

