/* BNA header styles. All selectors are scoped to the unique header ID. */
#bna-new-header,
#bna-new-header * {
  box-sizing: border-box;
}

#bna-new-header {
  --bna-ink: #171818;
  --bna-gold: #ad8e63;
  --bna-white: #fff;
  --bna-pad: clamp(24px, 5vw, 82px);
  --bna-sticky-top: 0px;
  position: absolute !important;
  z-index: 999;
  inset: 0 0 auto;
  width: 100%;
  margin: 0;
  color: var(--bna-white);
  background: transparent;
  font-family: "Mulish", Arial, sans-serif;
}

body.admin-bar #bna-new-header { --bna-sticky-top: 32px; }

#bna-new-header.bna-is-sticky {
  position: fixed !important;
  top: var(--bna-sticky-top);
  right: 0;
  left: 0;
  color: var(--bna-white);
  background: rgba(29, 30, 30, .985);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .13);
  animation: bna-header-drop .38s ease both;
}

@keyframes bna-header-drop {
  from { top: -110px; }
  to { top: var(--bna-sticky-top); }
}

#bna-new-header .bna-header-inner {
  width: 100%;
  min-height: 124px;
  display: grid;
  grid-template-columns: 190px minmax(420px, 1fr) 350px;
  align-items: start;
  gap: 28px;
  margin: 0;
  padding: 25px var(--bna-pad);
}

#bna-new-header .bna-brand {
  position: relative;
  z-index: 1002;
  width: 142px;
  display: block;
  margin: 0;
  padding: 0;
}

#bna-new-header .bna-brand img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

#bna-new-header .bna-logo-light { display: block !important; }
#bna-new-header .bna-logo-dark { display: none !important; }

#bna-new-header.bna-is-sticky .bna-header-inner {
  min-height: 88px;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

#bna-new-header.bna-is-sticky .bna-brand { width: 112px; }
#bna-new-header.bna-is-sticky .bna-logo-light { display: block !important; }
#bna-new-header.bna-is-sticky .bna-logo-dark { display: none !important; }

#bna-new-header .bna-primary-nav {
  display: block;
  margin: 0;
  padding: 13px 0 0;
  background: transparent;
}

#bna-new-header.bna-is-sticky .bna-primary-nav { padding-top: 0; }

#bna-new-header .bna-primary-nav > .bna-primary-menu {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.8vw, 48px);
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

#bna-new-header .bna-primary-nav li {
  position: relative;
  float: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

#bna-new-header .bna-primary-nav a,
#bna-new-header .bna-language-switcher a {
  color: inherit;
  font-family: "Mulish", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

#bna-new-header .bna-primary-nav > .bna-primary-menu > li > a {
  position: relative;
  display: block;
  padding: 10px 0;
  white-space: nowrap;
  transition: color .25s ease;
}

#bna-new-header .bna-primary-nav > .bna-primary-menu > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--bna-gold);
  transform: translateX(-50%);
  transition: width .28s ease;
}

#bna-new-header .bna-primary-nav a:hover,
#bna-new-header .bna-primary-nav a:focus-visible,
#bna-new-header .bna-primary-nav a[aria-current="page"],
#bna-new-header .bna-primary-nav .current-menu-item > a,
#bna-new-header .bna-primary-nav .current_page_item > a,
#bna-new-header .bna-primary-nav .current-menu-ancestor > a {
  color: var(--bna-gold) !important;
}

#bna-new-header .bna-primary-nav > .bna-primary-menu > li > a:hover::after,
#bna-new-header .bna-primary-nav > .bna-primary-menu > li > a:focus-visible::after,
#bna-new-header .bna-primary-nav > .bna-primary-menu > li > a[aria-current="page"]::after,
#bna-new-header .bna-primary-nav > .bna-primary-menu > .current-menu-item > a::after,
#bna-new-header .bna-primary-nav > .bna-primary-menu > .current_page_item > a::after,
#bna-new-header .bna-primary-nav > .bna-primary-menu > .current-menu-ancestor > a::after {
  width: 100%;
}

#bna-new-header .bna-primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 10px;
  color: var(--bna-white);
  background: rgba(24, 25, 25, .98);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}

#bna-new-header .bna-primary-nav .sub-menu a {
  display: block;
  padding: 10px 13px;
  color: inherit;
  white-space: nowrap;
}

@media (min-width: 901px) {
  #bna-new-header .bna-primary-nav .sub-menu a {
    position: relative;
    transition: color .22s ease, padding-left .25s ease, transform .25s ease;
  }

  #bna-new-header .bna-primary-nav .sub-menu a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 13px;
    width: 9px;
    height: 2px;
    background: currentColor;
    opacity: 0;
    transform: translate(-5px, -50%) scaleX(.4);
    transform-origin: left center;
    transition: opacity .2s ease, transform .25s ease;
  }

  #bna-new-header .bna-primary-nav .sub-menu a:hover,
  #bna-new-header .bna-primary-nav .sub-menu a:focus-visible {
    padding-left: 28px;
    color: var(--bna-gold) !important;
    transform: translateX(3px);
  }

  #bna-new-header .bna-primary-nav .sub-menu a:hover::before,
  #bna-new-header .bna-primary-nav .sub-menu a:focus-visible::before {
    opacity: 1;
    transform: translate(0, -50%) scaleX(1);
  }
}

#bna-new-header .bna-primary-nav .menu-item-has-children:hover > .sub-menu,
#bna-new-header .bna-primary-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#bna-new-header .bna-submenu-toggle {
  display: none;
}

#bna-new-header.bna-is-sticky .bna-primary-nav .sub-menu {
  color: var(--bna-white);
  background: rgba(29, 30, 30, .99);
}

#bna-new-header .bna-header-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 13px 24px;
  margin: 0;
  padding: 0;
}

#bna-new-header .bna-language-switcher {
  display: flex;
  align-items: center;
  gap: 13px;
}

#bna-new-header .bna-language-switcher span {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, .55);
}

#bna-new-header.bna-is-sticky .bna-language-switcher span { background: rgba(255, 255, 255, .55); }

#bna-new-header .bna-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  border: 1px solid rgba(255, 255, 255, .15);
  color: #222 !important;
  background: linear-gradient(105deg, #bf9154, #edd09b 49%, #bd8c4d);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .11em;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  white-space: nowrap;
  transition: filter .2s ease, transform .2s ease;
}

#bna-new-header .bna-button:hover,
#bna-new-header .bna-button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

#bna-new-header .bna-header-location {
  grid-column: 2;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 8px 0 0;
  padding: 0;
  color: inherit;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .08em;
  text-transform: uppercase;
}

#bna-new-header .bna-header-location svg {
  width: 21px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

#bna-new-header.bna-is-sticky .bna-header-location { display: none; }
#bna-new-header .bna-menu-toggle { display: none; }
body.bna-menu-open { overflow: hidden !important; }

@media (max-width: 1199px) {
  #bna-new-header .bna-header-inner { grid-template-columns: 155px 1fr auto; }
  #bna-new-header .bna-primary-nav > .bna-primary-menu { gap: 20px; }
  #bna-new-header .bna-header-location { display: none; }
}

@media (max-width: 900px) {
  body.admin-bar #bna-new-header { --bna-sticky-top: 46px; }

  #bna-new-header .bna-header-inner {
    min-height: 92px;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 16px 22px;
  }

  #bna-new-header.bna-is-sticky .bna-header-inner {
    min-height: 76px;
    padding: 9px 22px;
  }

  #bna-new-header .bna-brand { width: 116px; }
  #bna-new-header.bna-is-sticky .bna-brand { width: 98px; }

  #bna-new-header .bna-menu-toggle {
    position: relative;
    z-index: 1002;
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--bna-white);
    background: transparent;
    box-shadow: none;
    cursor: pointer;
  }

  #bna-new-header .bna-menu-toggle span {
    width: 27px;
    height: 2px;
    display: block;
    margin: 0;
    background: currentColor;
    transform-origin: center;
    transition: transform .32s ease, opacity .2s ease;
  }

  #bna-new-header.bna-is-sticky .bna-menu-toggle { color: var(--bna-white); }
  body.bna-menu-open #bna-new-header .bna-logo-light { display: block !important; }
  body.bna-menu-open #bna-new-header .bna-logo-dark { display: none !important; }
  body.bna-menu-open #bna-new-header .bna-menu-toggle { color: var(--bna-white); }
  #bna-new-header .bna-menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(8px) rotate(45deg); }
  #bna-new-header .bna-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  #bna-new-header .bna-menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-8px) rotate(-45deg); }

  #bna-new-header .bna-primary-nav {
    position: fixed !important;
    z-index: 1001;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: grid;
    align-content: start;
    align-items: start;
    justify-items: start;
    margin: 0;
    padding: 105px 24px 50px;
    color: var(--bna-white);
    background: rgba(24, 25, 25, .985);
    opacity: 0;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    transition: opacity .3s ease, visibility .3s;
  }

  #bna-new-header.bna-is-sticky .bna-primary-nav {
    padding-top: calc(92px + var(--bna-sticky-top));
  }

  #bna-new-header .bna-primary-nav.bna-is-open {
    opacity: 1;
    visibility: visible;
  }

  #bna-new-header .bna-primary-nav > .bna-primary-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  #bna-new-header .bna-primary-nav > .bna-primary-menu > li {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  #bna-new-header .bna-primary-nav > .bna-primary-menu > .menu-item-has-children {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
  }

  #bna-new-header .bna-primary-nav > .bna-primary-menu > li > a {
    display: block !important;
    justify-self: start;
    color: var(--bna-white);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 8vw, 38px);
    font-weight: 400;
    text-align: left;
  }

  #bna-new-header .bna-submenu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    grid-column: 2;
    grid-row: 1;
    place-items: center;
    justify-self: end;
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--bna-white);
    background: transparent;
    box-shadow: none;
    cursor: pointer;
  }

  #bna-new-header .bna-submenu-toggle::before {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-3px) rotate(45deg);
    transition: transform .25s ease;
  }

  #bna-new-header .bna-submenu-toggle[aria-expanded="true"]::before {
    transform: translateY(3px) rotate(225deg);
  }

  #bna-new-header .bna-primary-nav .sub-menu,
  #bna-new-header.bna-is-sticky .bna-primary-nav .sub-menu,
  #bna-new-header .bna-primary-nav .menu-item-has-children:hover > .sub-menu,
  #bna-new-header .bna-primary-nav .menu-item-has-children:focus-within > .sub-menu {
    position: static;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    max-height: 0;
    grid-column: 1 / -1;
    align-items: flex-start;
    margin: 0;
    padding: 0 0 0 24px;
    color: var(--bna-white);
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height .32s ease, opacity .22s ease, visibility .22s, padding-top .32s ease;
  }

  #bna-new-header .bna-primary-nav .menu-item-has-children.bna-submenu-open > .sub-menu,
  #bna-new-header .bna-primary-nav .menu-item-has-children.bna-submenu-open:hover > .sub-menu,
  #bna-new-header .bna-primary-nav .menu-item-has-children.bna-submenu-open:focus-within > .sub-menu {
    max-height: 900px;
    padding-top: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  #bna-new-header .bna-primary-nav .sub-menu a {
    max-width: 100%;
    padding: 7px 0;
    color: var(--bna-white);
    font-size: 18px;
    line-height: 1.4;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  #bna-new-header .bna-header-actions { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  #bna-new-header,
  #bna-new-header * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* BNA consultation CTA and footer. */
#bna-footer-cta,
#bna-footer-cta *,
#bna-new-footer,
#bna-new-footer * {
  box-sizing: border-box;
}

#bna-footer-cta {
  position: relative;
  z-index: 1;
  min-height: 455px;
  width: 100%;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 72px clamp(24px, 6vw, 96px);
  color: #fff;
  background: #17191a url("../images/bna-footer-bg.png") center 64% / cover no-repeat;
  font-family: "Mulish", Arial, sans-serif;
  isolation: isolate;
  overflow: hidden;
}

#bna-footer-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(9, 12, 13, .72);
}

#bna-footer-cta .bna-footer-cta-content {
  width: min(840px, 100%);
  text-align: center;
}

#bna-footer-cta .bna-footer-cta-content h2 {
  margin: 0 0 34px;
  padding: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(43px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.02em;
}

#bna-footer-cta .bna-footer-button {
  min-width: 375px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, .15);
  color: #222 !important;
  background: linear-gradient(105deg, #bf9154, #edd09b 49%, #bd8c4d);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .12em;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: filter .2s ease, transform .2s ease;
}

#bna-footer-cta .bna-footer-button:hover,
#bna-footer-cta .bna-footer-button:focus-visible {
  filter: brightness(1.09);
  transform: translateY(-2px);
}

#bna-new-footer {
  --bna-footer-gold: #d2a667;
  width: 100%;
  margin: 0;
  padding: 72px clamp(24px, 6vw, 96px) 48px;
  color: #fff;
  background: #292a2a;
  font-family: "Mulish", Arial, sans-serif;
}

#bna-new-footer .bna-footer-main {
  width: 100%;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

#bna-new-footer .bna-footer-brand {
  width: 154px;
  display: block;
  margin: 0;
  padding: 0;
}

#bna-new-footer .bna-footer-brand img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

#bna-new-footer .bna-footer-contact {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.25fr 70px;
  align-items: center;
  margin: 0;
  padding: 0;
  color: inherit;
  font-style: normal;
}

#bna-new-footer .bna-footer-contact > * {
  min-width: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 clamp(20px, 3.5vw, 58px);
  border-left: 1px solid var(--bna-footer-gold);
  color: inherit !important;
  font-family: "Mulish", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-decoration: none !important;
}

#bna-new-footer .bna-footer-contact > *:first-child { white-space: nowrap; }

#bna-new-footer .bna-footer-contact svg {
  width: 58px;
  height: 58px;
  flex: none;
  padding: 8px 0 8px 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

#bna-new-footer .bna-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin: 72px 0 0 280px;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
}

#bna-new-footer .bna-footer-bottom nav {
  display: flex;
  margin: 0;
  padding: 0;
}

#bna-new-footer .bna-footer-bottom a {
  margin: 0;
  padding: 0 22px;
  color: inherit !important;
  text-decoration: none !important;
}

#bna-new-footer .bna-footer-bottom a:first-child { padding-left: 0; }
#bna-new-footer .bna-footer-bottom a + a { border-left: 1px solid var(--bna-footer-gold); }
#bna-new-footer .bna-footer-bottom p { margin: 0; padding: 0; color: inherit; }

@media (max-width: 1200px) {
  #bna-new-footer .bna-footer-main { grid-template-columns: 180px minmax(0, 1fr); }
  #bna-new-footer .bna-footer-contact > * { padding-right: 22px; padding-left: 22px; }
  #bna-new-footer .bna-footer-bottom { margin-left: 210px; }
}

@media (max-width: 900px) {
  #bna-new-footer .bna-footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  #bna-new-footer .bna-footer-contact {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #bna-new-footer .bna-footer-contact > * {
    justify-content: center;
    text-align: center;
  }

  #bna-new-footer .bna-footer-contact > *:nth-child(3),
  #bna-new-footer .bna-footer-contact svg {
    border-top: 1px solid rgba(210, 166, 103, .5);
  }

  #bna-new-footer .bna-footer-bottom {
    flex-direction: column;
    align-items: center;
    margin: 55px 0 0;
    text-align: center;
  }
}

@media (max-width: 560px) {
  #bna-footer-cta {
    min-height: 420px;
    padding: 65px 22px;
    background-size: auto 420px;
  }

  #bna-footer-cta .bna-footer-cta-content h2 {
    margin-bottom: 30px;
    font-size: 39px;
  }

  #bna-footer-cta .bna-footer-button {
    width: 100%;
    min-width: 0;
    padding-right: 18px;
    padding-left: 18px;
  }

  #bna-new-footer { padding: 58px 22px 38px; }
  #bna-new-footer .bna-footer-contact { grid-template-columns: 1fr; }

  #bna-new-footer .bna-footer-contact > * {
    min-height: 68px;
    padding-right: 12px;
    padding-left: 12px;
    border-top: 1px solid rgba(210, 166, 103, .55);
    border-left: 0;
    font-size: 15px;
  }

  #bna-new-footer .bna-footer-contact svg {
    justify-self: center;
    width: 68px;
    height: 68px;
    padding: 14px;
  }

  #bna-new-footer .bna-footer-bottom {
    margin-top: 42px;
    font-size: 12px;
  }

  #bna-new-footer .bna-footer-bottom nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 0;
  }

  #bna-new-footer .bna-footer-bottom a { padding-right: 12px; padding-left: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  #bna-footer-cta *,
  #bna-new-footer * { transition-duration: .01ms !important; }
}
