/* index-B-PFSzFP.css sets .nav__menu{display:grid} unconditionally, which beats the
   browser's default [hidden]{display:none} UA rule at equal specificity (author styles
   always win over UA styles) — so JS toggling menu.hidden had no visual effect and the
   Hire dropdown stayed open permanently. This attribute selector outranks the class
   selector and forces it closed. */
.nav__menu[hidden] { display: none; }

/* Testimonials slider (site.js swaps quoteEl/nameEl/roleEl text on an interval).
   .tst__dots container styling already existed in index-B-PFSzFP.css; the individual
   dot + fade-transition rules didn't, since there was only ever one static quote before. */
.tst__fade { transition: opacity 0.22s ease; }
.tst__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.tst__dot:hover { background: var(--body); }
.tst__dot.is-active { background: var(--green); transform: scale(1.15); }

@media (max-width: 1079px) {
  .nav--open {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 0.5rem clamp(1.25rem, 4vw, 3rem) 1rem;
  }
  .nav--open .nav__link {
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }
  .nav--open .nav__group {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .nav--open .nav__menu {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0 0 0.5rem 1rem;
    width: 100%;
  }
}

.cookiebanner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
}
.cookiebanner__text { flex: 1 1 420px; }
.cookiebanner__text strong {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}
.cookiebanner__text p { margin: 0; font-size: 0.88rem; color: #ffffffcc; line-height: 1.5; }
.cookiebanner__text a { color: var(--white); text-decoration: underline; }
.cookiebanner__actions { display: flex; gap: 0.75rem; flex: 0 0 auto; }
.cookiebanner .btn--outline { border-color: #ffffff55; color: var(--white); }
@media (max-width: 640px) {
  .cookiebanner { flex-direction: column; align-items: stretch; }
  .cookiebanner__actions { justify-content: flex-end; }
}
