.mdgh {
  --mdgh-navy: #15172d;
  --mdgh-gold: #cdb190;
  --mdgh-hover: #b9a183;
  --mdgh-gold-light: #f0e0bc;
  --mdgh-cream: #f7f2ea;
  --mdgh-submenu: #eee3d4;
  --mdgh-active: #eadbc7;
  --mdgh-ink: #171827;
  --mdgh-button-bg: #15172d;
  --mdgh-button-text: #e2e2e2;
  --mdgh-button-border: #b9a183;
  --mdgh-button-hover-bg: #b9a183;
  --mdgh-button-hover-text: #fff;
  --mdgh-button-hover-border: #fff;
  --mdgh-menu-button-bg: transparent;
  --mdgh-menu-button-text: #15172d;
  --mdgh-menu-button-border: #b9a183;
  --mdgh-menu-button-hover-bg: #b9a183;
  --mdgh-menu-button-hover-text: #fff;
  --mdgh-menu-button-hover-border: #fff;
  --mdgh-line: rgba(205, 177, 144, 0.28);
  --mdgh-sticky-bg: rgba(21, 23, 45, 0.92);
  position: relative;
  z-index: 9999;
  width: 100%;
  background: var(--mdgh-navy);
  color: #fff;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  box-shadow: 0 8px 30px rgba(7, 8, 19, 0.14);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.mdgh--sticky {
  background: var(--mdgh-sticky-bg);
  -webkit-backdrop-filter: blur(12px) saturate(125%);
  backdrop-filter: blur(12px) saturate(125%);
  box-shadow: 0 10px 34px rgba(7, 8, 19, 0.2);
}

.mdgh,
.mdgh * { box-sizing: border-box; }

html.mdgh-menu-open { overflow: hidden; }

.mdgh a,
.mdgh button { font-family: inherit; }

.mdgh button { cursor: pointer; }

.mdgh [hidden] { display: none !important; }

.mdgh__inner {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(100%, 1440px);
  min-height: 112px;
  margin: 0 auto;
  padding: 0 clamp(24px, 3vw, 46px);
  border-bottom: 1px solid var(--mdgh-line);
  transition: min-height 220ms ease;
}

.mdgh--sticky .mdgh__inner { min-height: 72px; }

.mdgh__logo {
  display: inline-flex;
  align-items: center;
  width: max-content;
  text-decoration: none;
}

.mdgh__logo img {
  display: block;
  width: 142px;
  height: auto;
  max-height: 96px;
  transition: width 220ms ease, max-height 220ms ease;
}

.mdgh--sticky .mdgh__logo img {
  width: 104px;
  max-height: 64px;
}

.mdgh__nav { min-width: 0; }

.mdgh__menu,
.mdgh__menu .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mdgh__menu {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: clamp(0px, 0.35vw, 6px);
  min-height: 112px;
  transition: min-height 220ms ease;
}

.mdgh--sticky .mdgh__menu { min-height: 72px; }

.mdgh__menu > li {
  position: relative;
  display: flex;
  align-items: center;
}

.mdgh__menu > li > a,
.mdgh__nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 clamp(7px, 0.75vw, 12px);
  border: 0;
  background: transparent;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 500;
  letter-spacing: 0.015em;
  transition: color 180ms ease;
}

.mdgh__nav-parent {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
}

.mdgh__parent-link,
.mdgh__submenu-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border: 0;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 500;
  letter-spacing: 0.015em;
  transition: color 180ms ease;
}

.mdgh__parent-link {
  padding: 0 4px 0 clamp(7px, 0.75vw, 12px);
  white-space: nowrap;
}

.mdgh__submenu-toggle {
  justify-content: center;
  width: 30px;
  padding: 0 8px 0 4px;
}

.mdgh__nav-parent::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 3px;
  left: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--mdgh-gold);
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mdgh__nav-parent:hover .mdgh__parent-link,
.mdgh__nav-parent:hover .mdgh__submenu-toggle,
.mdgh__nav-parent:focus-within .mdgh__parent-link,
.mdgh__nav-parent:focus-within .mdgh__submenu-toggle {
  color: var(--mdgh-hover);
}

.mdgh__nav-parent:hover::after,
.mdgh__nav-parent:focus-within::after,
.mdgh-submenu-open > .mdgh__nav-parent::after,
.mdgh__menu > .current-menu-item > .mdgh__nav-parent::after,
.mdgh__menu > .current-menu-ancestor > .mdgh__nav-parent::after {
  opacity: 1;
  transform: scaleX(1);
}

.mdgh-submenu-open > .mdgh__nav-parent .mdgh__parent-link,
.mdgh-submenu-open > .mdgh__nav-parent .mdgh__submenu-toggle,
.mdgh__menu > .current-menu-item > .mdgh__nav-parent .mdgh__parent-link,
.mdgh__menu > .current-menu-item > .mdgh__nav-parent .mdgh__submenu-toggle,
.mdgh__menu > .current-menu-ancestor > .mdgh__nav-parent .mdgh__parent-link,
.mdgh__menu > .current-menu-ancestor > .mdgh__nav-parent .mdgh__submenu-toggle {
  color: var(--mdgh-gold-light);
}

.mdgh__menu > li:not(.mdgh-menu-contact) > a::after,
.mdgh__nav-trigger::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 3px;
  left: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--mdgh-gold);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mdgh__menu > li:not(.mdgh-menu-contact) > a:hover,
.mdgh__menu > li:not(.mdgh-menu-contact) > a:focus-visible,
.mdgh__nav-trigger:hover,
.mdgh__nav-trigger:focus-visible {
  color: var(--mdgh-hover);
}

.mdgh__menu > .current-menu-item:not(.mdgh-menu-contact) > a,
.mdgh__menu > .current-menu-ancestor > .mdgh__nav-trigger,
.mdgh__nav-trigger[aria-expanded="true"] {
  color: var(--mdgh-gold-light);
}

.mdgh__menu > li:not(.mdgh-menu-contact) > a:hover::after,
.mdgh__menu > li:not(.mdgh-menu-contact) > a:focus-visible::after,
.mdgh__menu > .current-menu-item:not(.mdgh-menu-contact) > a::after,
.mdgh__menu > .current-menu-ancestor > .mdgh__nav-trigger::after,
.mdgh__nav-trigger:hover::after,
.mdgh__nav-trigger:focus-visible::after,
.mdgh__nav-trigger[aria-expanded="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.mdgh__chevron {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: margin 180ms ease, transform 180ms ease;
}

.mdgh__nav-trigger[aria-expanded="true"] .mdgh__chevron,
.mdgh__submenu-toggle[aria-expanded="true"] .mdgh__chevron {
  margin-top: 4px;
  transform: rotate(225deg);
}

.mdgh__menu .sub-menu {
  position: absolute;
  top: calc(100% - 11px);
  left: 0;
  z-index: 20;
  min-width: 272px;
  padding: 8px;
  border: 1px solid rgba(205, 177, 144, 0.38);
  border-radius: 14px;
  background: var(--mdgh-cream);
  box-shadow: 0 20px 50px rgba(7, 8, 19, 0.3);
}

.mdgh__menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 35px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(205, 177, 144, 0.38);
  border-left: 1px solid rgba(205, 177, 144, 0.38);
  background: var(--mdgh-cream);
  transform: rotate(45deg);
}

.mdgh__menu .sub-menu li { position: relative; }

.mdgh__menu .sub-menu a {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  min-height: 55px;
  padding: 6px 12px;
  border-radius: 9px;
  color: var(--mdgh-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 160ms ease;
}

.mdgh__submenu-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--mdgh-navy);
  color: var(--mdgh-gold-light);
  font-size: 12px;
  font-weight: 700;
}

.mdgh__submenu-icon::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.mdgh__submenu-icon--company::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 21V3h11v5h5v13H4Zm2-2h2v-2H6v2Zm0-4h2v-2H6v2Zm0-4h2V9H6v2Zm0-4h2V5H6v2Zm4 12h3v-2h-3v2Zm0-4h3v-2h-3v2Zm0-4h3V9h-3v2Zm0-4h3V5h-3v2Zm5 12h3v-2h-3v2Zm0-4h3v-2h-3v2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 21V3h11v5h5v13H4Zm2-2h2v-2H6v2Zm0-4h2v-2H6v2Zm0-4h2V9H6v2Zm0-4h2V5H6v2Zm4 12h3v-2h-3v2Zm0-4h3v-2h-3v2Zm0-4h3V9h-3v2Zm0-4h3V5h-3v2Zm5 12h3v-2h-3v2Zm0-4h3v-2h-3v2Z'/%3E%3C/svg%3E");
}

.mdgh__submenu-icon--people::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm8-1a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM8 13c-4.42 0-7 2.24-7 5v2h14v-2c0-2.76-2.58-5-7-5Zm8 0c-.62 0-1.2.06-1.74.17C15.93 14.38 17 16.06 17 18v2h6v-2c0-2.76-2.58-5-7-5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm8-1a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM8 13c-4.42 0-7 2.24-7 5v2h14v-2c0-2.76-2.58-5-7-5Zm8 0c-.62 0-1.2.06-1.74.17C15.93 14.38 17 16.06 17 18v2h6v-2c0-2.76-2.58-5-7-5Z'/%3E%3C/svg%3E");
}

.mdgh__submenu-icon--default::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m13.2 5.2 5.4 5.4c.8.8.8 2 0 2.8l-5.4 5.4-1.4-1.4 4.4-4.4H5v-2h11.2l-4.4-4.4 1.4-1.4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m13.2 5.2 5.4 5.4c.8.8.8 2 0 2.8l-5.4 5.4-1.4-1.4 4.4-4.4H5v-2h11.2l-4.4-4.4 1.4-1.4Z'/%3E%3C/svg%3E");
}

.mdgh__menu .sub-menu a:hover,
.mdgh__menu .sub-menu a:focus-visible,
.mdgh__menu .sub-menu .current-menu-item > a {
  background: var(--mdgh-active);
  outline: none;
}

.mdgh__menu > .mdgh-menu-contact { display: none !important; }

.mdgh__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1.5px solid var(--mdgh-button-border);
  border-radius: 999px;
  background: var(--mdgh-button-bg);
  color: var(--mdgh-button-text);
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.mdgh__contact-icon,
.mdgh__mobile-contact-icon,
.mdgh__mobile-cta-icon {
  display: block;
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 5h18v14H3V5Zm2 2v.5l7 5 7-5V7H5Zm14 10V10l-7 5-7-5v7h14Z'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 5h18v14H3V5Zm2 2v.5l7 5 7-5V7H5Zm14 10V10l-7 5-7-5v7h14Z'/%3E%3C/svg%3E");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.mdgh__contact-icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.mdgh__contact:hover,
.mdgh__contact:focus-visible {
  border-color: var(--mdgh-button-hover-border);
  background: var(--mdgh-button-hover-bg);
  color: var(--mdgh-button-hover-text);
  outline: none;
  transform: translateY(-1px);
}

.mdgh__mobile-actions,
.mdgh__mobile-cta { display: none; }

.mdgh__mobile-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 43px;
  padding: 0 13px;
  border: 1.5px solid var(--mdgh-button-border);
  border-radius: 999px;
  background: var(--mdgh-button-bg);
  color: var(--mdgh-button-text);
  text-decoration: none;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.mdgh__mobile-contact-icon {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
}

.mdgh__mobile-contact:hover,
.mdgh__mobile-contact:focus-visible {
  border-color: var(--mdgh-button-hover-border);
  background: var(--mdgh-button-hover-bg);
  color: var(--mdgh-button-hover-text);
  outline: none;
}

.mdgh__menu-toggle {
  position: relative;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--mdgh-gold);
  color: var(--mdgh-navy);
}

.mdgh__menu-toggle-line,
.mdgh__menu-toggle::before,
.mdgh__menu-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: top 200ms ease, opacity 200ms ease, transform 200ms ease;
}

.mdgh__menu-toggle::before { top: 15px; }
.mdgh__menu-toggle-line { top: 22px; }
.mdgh__menu-toggle::after { top: 29px; }

.mdgh__menu-toggle[aria-expanded="true"]::before {
  top: 22px;
  transform: rotate(45deg);
}

.mdgh__menu-toggle[aria-expanded="true"] .mdgh__menu-toggle-line { opacity: 0; }

.mdgh__menu-toggle[aria-expanded="true"]::after {
  top: 22px;
  transform: rotate(-45deg);
}

.mdgh a:focus-visible,
.mdgh button:focus-visible {
  outline: 2px solid var(--mdgh-gold-light);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .mdgh--sticky {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .mdgh__inner {
    grid-template-columns: minmax(100px, 1fr) auto;
    gap: 12px;
    min-height: 82px;
    padding: 0 clamp(14px, 4vw, 30px);
  }

  .mdgh--sticky .mdgh__inner { min-height: 74px; }

  .mdgh__logo img {
    width: 126px;
    max-height: 68px;
  }

  .mdgh--sticky .mdgh__logo img {
    width: 112px;
    max-height: 62px;
  }

  .mdgh__mobile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mdgh__contact { display: none; }

  .mdgh__nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 25;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--mdgh-cream);
    color: var(--mdgh-ink);
    box-shadow: 0 22px 50px rgba(7, 8, 19, 0.28);
  }

  .mdgh__nav:not([hidden]) { display: block; }

  .mdgh__menu {
    display: block;
    width: min(100%, 720px);
    min-height: 0;
    margin: 0 auto;
    padding: 12px clamp(18px, 5vw, 34px) 24px;
  }

  .mdgh--sticky .mdgh__menu { min-height: 0; }

  .mdgh__menu > li {
    display: block;
    margin: 0;
  }

  .mdgh__menu > li > a,
  .mdgh__nav-trigger {
    display: flex;
    width: 100%;
    min-height: 56px;
    justify-content: space-between;
    padding: 0 4px;
    border-bottom: 1px solid #ded5ca;
    color: var(--mdgh-ink);
    text-align: left;
    white-space: normal;
    font-size: 16px;
    font-weight: 600;
  }

  .mdgh__nav-parent {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 56px;
    width: 100%;
    min-height: 56px;
    border-bottom: 1px solid #ded5ca;
  }

  .mdgh__parent-link,
  .mdgh__submenu-toggle {
    min-height: 56px;
    color: var(--mdgh-ink);
    font-size: 16px;
    font-weight: 600;
  }

  .mdgh__parent-link {
    min-width: 0;
    padding: 0 4px;
    white-space: normal;
  }

  .mdgh__submenu-toggle {
    width: 56px;
    padding: 0;
  }

  .mdgh__nav-parent::after { display: none; }

  .mdgh__nav-parent:hover .mdgh__parent-link,
  .mdgh__nav-parent:hover .mdgh__submenu-toggle,
  .mdgh__nav-parent:focus-within .mdgh__parent-link,
  .mdgh__nav-parent:focus-within .mdgh__submenu-toggle {
    color: var(--mdgh-hover);
  }

  .mdgh__menu > .current-menu-item:not(.mdgh-menu-contact) > a {
    padding-right: 14px;
    padding-left: 14px;
    border-bottom-color: transparent;
    border-radius: 10px;
    background: var(--mdgh-active);
    color: var(--mdgh-navy);
    font-weight: 700;
  }

  .mdgh__menu > .current-menu-ancestor > .mdgh__nav-trigger,
  .mdgh__nav-trigger[aria-expanded="true"] {
    padding-right: 14px;
    padding-left: 14px;
    border-bottom-color: transparent;
    border-radius: 12px 12px 0 0;
    background: var(--mdgh-active);
    color: var(--mdgh-navy);
    font-weight: 700;
  }

  .mdgh__menu > .current-menu-item > .mdgh__nav-parent,
  .mdgh__menu > .current-menu-ancestor > .mdgh__nav-parent,
  .mdgh-submenu-open > .mdgh__nav-parent {
    border-bottom-color: transparent;
    border-radius: 12px 12px 0 0;
    background: var(--mdgh-active);
  }

  .mdgh__menu > .current-menu-item > .mdgh__nav-parent .mdgh__parent-link,
  .mdgh__menu > .current-menu-item > .mdgh__nav-parent .mdgh__submenu-toggle,
  .mdgh__menu > .current-menu-ancestor > .mdgh__nav-parent .mdgh__parent-link,
  .mdgh__menu > .current-menu-ancestor > .mdgh__nav-parent .mdgh__submenu-toggle,
  .mdgh-submenu-open > .mdgh__nav-parent .mdgh__parent-link,
  .mdgh-submenu-open > .mdgh__nav-parent .mdgh__submenu-toggle {
    color: var(--mdgh-navy);
    font-weight: 700;
  }

  .mdgh__menu > li:not(.mdgh-menu-contact) > a::after,
  .mdgh__nav-trigger::after,
  .mdgh__nav-parent::after { display: none; }

  .mdgh__menu .sub-menu {
    position: static;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0 0 12px 12px;
    background: var(--mdgh-submenu);
    box-shadow: none;
  }

  .mdgh__menu .sub-menu::before { display: none; }

  .mdgh__menu .sub-menu a {
    display: flex;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 0;
    font-size: 14px;
  }

  .mdgh__submenu-icon {
    display: inline;
    width: auto;
    height: auto;
    margin-right: 11px;
    border-radius: 0;
    background: transparent;
    color: #8d7358;
    font-size: 0;
  }

  .mdgh__submenu-icon::before {
    content: "→";
    display: inline;
    width: auto;
    height: auto;
    background: transparent;
    -webkit-mask-image: none;
    mask-image: none;
    font-size: 14px;
    font-weight: 800;
  }

  .mdgh__menu .sub-menu .current-menu-item > a {
    background: var(--mdgh-active);
    color: var(--mdgh-navy);
    font-weight: 700;
    box-shadow: inset 4px 0 0 var(--mdgh-gold);
  }

  .mdgh__menu .sub-menu li + li { border-top: 1px solid rgba(21, 23, 45, 0.09); }

  .mdgh__mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: calc(100% - 36px);
    min-width: 0;
    max-width: 652px;
    min-height: 55px;
    margin: 0 auto 24px;
    padding: 12px 24px;
    overflow: hidden;
    border: 2px solid var(--mdgh-menu-button-border);
    border-radius: 60px;
    background: var(--mdgh-menu-button-bg);
    color: var(--mdgh-menu-button-text);
    text-decoration: none;
    font-family: "Red Hat Display", Roboto, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.7;
    transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease;
  }

  .mdgh__mobile-cta-icon {
    flex: 0 0 17px;
    width: 17px;
    height: 17px;
  }

  .mdgh__mobile-cta-text {
    display: grid;
    overflow: hidden;
  }

  .mdgh__mobile-cta-label {
    grid-area: 1 / 1;
    white-space: nowrap;
    transform: translateY(0);
    transition: transform 200ms ease;
  }

  .mdgh__mobile-cta-label--hover {
    transform: translateY(115%);
  }

  .mdgh__mobile-cta:hover,
  .mdgh__mobile-cta:focus-visible {
    border-color: var(--mdgh-menu-button-hover-border);
    background: var(--mdgh-menu-button-hover-bg);
    color: var(--mdgh-menu-button-hover-text);
  }

  .mdgh__mobile-cta:hover .mdgh__mobile-cta-label:not(.mdgh__mobile-cta-label--hover),
  .mdgh__mobile-cta:focus-visible .mdgh__mobile-cta-label:not(.mdgh__mobile-cta-label--hover) {
    transform: translateY(-115%);
  }

  .mdgh__mobile-cta:hover .mdgh__mobile-cta-label--hover,
  .mdgh__mobile-cta:focus-visible .mdgh__mobile-cta-label--hover {
    transform: translateY(0);
  }
}

@media (min-width: 1181px) {
  .mdgh__nav[hidden] { display: block !important; }
}

@media (max-width: 390px) {
  .mdgh__inner {
    gap: 7px;
    padding-right: 10px;
    padding-left: 12px;
  }

  .mdgh__logo img { width: 108px; }
  .mdgh__mobile-actions { gap: 7px; }
  .mdgh__mobile-contact {
    gap: 5px;
    padding: 0 10px;
  }

  .mdgh__mobile-contact-icon {
    flex-basis: 13px;
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 335px) {
  .mdgh__mobile-contact { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .mdgh,
  .mdgh *,
  .mdgh *::before,
  .mdgh *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
