/* Site-specific overrides. Layered after webflow.css. */

html.is-nav-open,
html.is-nav-open body {
  overflow: hidden;
}

button.nav_link.is-dropdown,
button.nav_menu-button {
  background: transparent;
  border: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
}

button.nav_menu-button {
  padding: 0;
}

/* Replicate Webflow's mobile-overlay behaviour: hide the menu until opened. */
@media (max-width: 991px) {
  .w-nav-menu {
    display: none;
  }
  .w-nav-menu.w--open {
    display: block;
    z-index: 800;
    top: 100%;
    left: 0;
    right: 0;
  }
}

/* Reveal contact CTA on small screens (mirrors Webflow's media query rules). */
@media (max-width: 479px) {
  .nav_link.is-contact {
    display: block;
  }
}

/* Visible focus for keyboard users. */
:focus-visible {
  outline: 2px solid var(--charcoal, #191c1b);
  outline-offset: 2px;
}

/* White hero symbol over the contact-us forest background. */
.page-hero.is-contact .symbol-medium.is-hero {
  color: #fff;
}

/* Nav "Contact Us" button: black text + border by default, --fire on hover
   and persistently on the page it currently represents. */
.button.is-secondary.is-nav:hover,
.button.is-secondary.is-nav.w--current {
  color: var(--fire);
  border-color: var(--fire);
  font-weight: 400;
}

/* "Part of the Everlasting Group" closing section — centred copy + CTA. */
.section_group .text-above.is-centred {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
