.h2 {
  font-family: var(--serif);
font-weight: 300;
  line-height: 1.2;
}

.h2 em {
  font-style: italic;
}

.h2w {
}

.h2w em {
}

.sec-lead {
line-height: 1.9;
  max-width: 600px;
  margin-top: 0.8rem;
}

/* TEAM SECTION HEADER */
.team-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.team-count {
  font-family: var(--serif);
font-weight: 300;
line-height: 1;
}

/* TEAM CARDS GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(109, 26, 52, 0.1);
}


.team-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.team-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
  display: block;
}

.team-card:hover .team-card-img {
  transform: scale(1.05);
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(40, 32, 26, 0.4) 0%, rgba(40, 32, 26, 0) 50%);
  pointer-events: none;
}

.team-card-body {
  padding: 1.5rem 1.6rem;
}

.team-badge {
letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 1px;
  border: 1px solid;
  display: inline-block;
  margin-bottom: 0.7rem;
}


.team-card-name {
  font-family: var(--serif);
font-weight: 400;
line-height: 1.2;
  margin-bottom: 0.6rem;
}

.team-card-text {
line-height: 1.8;
}

/* STAFF CARDS (small horizontal) */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 2.5rem;
}

/* STAFF CARDS (small horizontal) */
.staff-grid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2.5rem;
}



@media (max-width: 800px) {
  .staff-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }
}

.staff-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 2px;
  padding: 1.8rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.staff-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.staff-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  border: 3px solid var(--bdr);
  margin-bottom: 1.1rem;
  transition: border-color 0.2s;
}

.staff-card:hover .staff-avatar {
  border-color: var(--red);
}

.staff-role {
letter-spacing: 0.1em;
  text-transform: uppercase;
display: block;
  margin-bottom: 0.3rem;
}


.staff-name {
  font-family: var(--serif);
font-weight: 400;
margin-bottom: 0.45rem;
}

.staff-text {
line-height: 1.75;
}

/* WELLNESS TEASER */
.wellness-teaser {
  background: var(--dark);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}

.wellness-teaser-text h3 {
  font-family: var(--serif);
font-weight: 300;
margin-bottom: 0.4rem;
}

.wellness-teaser-text p {
}

.btn-wt {
  padding: 0.75rem 1.8rem;
  background: var(--red);
font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background 0.15s;
}

.btn-wt:hover {
  background: var(--red2);
}

/* MOBILE */
@media (max-width: 1024px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hbg {
    display: flex;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .nav-logo {
    margin-right: 0;
  }

  #mob-p {
    display: none;
    background: #fff;
    border-top: 1px solid var(--bdr);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  #mob-p.open {
    display: block;
  }

  .mob-it {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
border-bottom: 1px solid var(--bdr);
    cursor: pointer;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    font-family: var(--sans);
    transition: background 0.12s;
  }

  .mob-it:hover {
    background: var(--cream);
  }

  .mob-sub {
    display: none;
    background: var(--cream);
    border-bottom: 1px solid var(--bdr);
  }

  .mob-sub.open {
    display: block;
  }

  .mob-sub a {
    display: block;
    padding: 9px 20px 9px 36px;
}

  .mob-sub a:hover {
}

  .mob-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 20px;
    background: var(--cream);
  }

  .mob-cta a {
    justify-content: center;
    text-align: center;
    padding: 10px;
font-weight: 500;
    border-radius: 2px;
  }

  .mob-cb {
    background: var(--red);
}

  .mob-cg {
border: 1px solid rgba(109, 26, 52, 0.3);
  }

  .mob-arr {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--muted);
    border-bottom: 1.5px solid var(--muted);
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  .mob-it.open .mob-arr {
    transform: rotate(225deg);
    border-color: var(--acc);
  }
}

@media (max-width: 768px) {
  .banner {
    height: 100vh;
    background-attachment: scroll;
  }

  .banner-logo {
    top: 16px;
    right: 20px;
  }

  .banner-logo img {
    height: 50px;
  }
}
