/* ============================================================
   PRACTICE INTRO
============================================================ */
.practice-intro {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(26,42,34,0.12);
}
.practice-intro__grid {
  display: grid;
  grid-template-columns: 1fr 26.25rem;
  gap: 5rem;
  align-items: center;
}
.practice-intro__eyebrow {
  color: var(--tuscany);
  margin-bottom: 1rem;
}
.practice-intro__headline {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--racing);
  margin-bottom: 1.75rem;
}
.practice-intro__body {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.practice-intro__body p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(26,42,34,0.85);
}
.practice-intro__body a {
  color: var(--tom-thumb);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.15s;
}
.practice-intro__body a:hover { opacity: 0.7; }
.practice-intro__image {
  background: var(--periglacial);
  border-radius: 0.375rem;
  height: 30rem;
  overflow: hidden;
}
.practice-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   OUR APPROACH
============================================================ */
.approach {
  background: var(--white-rock);
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(26,42,34,0.12);
}
.approach__header {
  margin-bottom: 2.5rem;
}
.approach__eyebrow {
  color: var(--tom-thumb);
  margin-bottom: 0.75rem;
}
.approach__headline {
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: var(--racing);
}
.approach__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2.5rem;
}
.approach__body p {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(26,42,34,0.85);
}

/* ============================================================
   TEAM SECTION
============================================================ */
.team-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.team-section__header {
  margin-bottom: 3.5rem;
}
.team-section__eyebrow {
  color: var(--tuscany);
  margin-bottom: 0.75rem;
}
.team-section__headline {
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: var(--racing);
  margin-bottom: 0.75rem;
}
.team-section__subhead {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: rgba(26,42,34,0.65);
}

/* ============================================================
   TEAM GRID
============================================================ */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.team-member {
  display: grid;
  grid-template-columns: 12.5rem 1fr;
  gap: 3rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(26,42,34,0.12);
  align-items: start;
}
.team-member:last-child {
  border-bottom: 1px solid rgba(26,42,34,0.12);
}

/* Photo */
.team-member__photo {
  border-radius: 0.375rem;
  overflow: hidden;
  background: var(--periglacial);
  aspect-ratio: 3 / 4;
}
.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Info column */
.team-member__info {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0.25rem;
}

/* Header row: identity only */
.team-member__header {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.team-member__identity {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.team-member__name {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--racing);
}

.team-member__title {
  font-family: var(--font-dm);
  font-size: 0.8125rem;
  color: rgba(26,42,34,0.6);
  line-height: 1.4;
}

/* Toggle button — now sits below the first paragraph */
.team-member__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid rgba(26,42,34,0.2);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: var(--font-dm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--tom-thumb);
  white-space: nowrap;
  line-height: 1;
  transition: background 0.15s, border-color 0.15s;
  margin-top: 1rem;
  align-self: flex-start;
}
.team-member__toggle:hover {
  background: rgba(47,74,58,0.06);
  border-color: var(--tom-thumb);
}
.team-member__toggle[aria-expanded="true"] {
  background: var(--tom-thumb);
  border-color: var(--tom-thumb);
  color: var(--ecru);
}

/* Toggle chevron */
.toggle-icon {
  width: 0.875rem;
  height: 0.5rem;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.toggle-icon::before,
.toggle-icon::after {
  content: '';
  position: absolute;
  width: 0.4375rem;
  height: 0.0938rem;
  background: currentColor;
  top: 50%;
  transition: transform 0.2s;
}
.toggle-icon::before {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}
.toggle-icon::after {
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: left center;
}
.team-member__toggle[aria-expanded="true"] .toggle-icon::before {
  transform: translateY(-50%) rotate(-45deg);
}
.team-member__toggle[aria-expanded="true"] .toggle-icon::after {
  transform: translateY(-50%) rotate(45deg);
}

/* Bio text */
.team-member__bio-preview {
  margin-top: 1.25rem;
}
.team-member__bio-preview p {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(26,42,34,0.85);
}

.team-member__bio-extra {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 0.875rem;
}
.team-member__bio-extra[hidden] {
  display: none;
}
.team-member__bio-extra p {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(26,42,34,0.85);
}

/* ============================================================
   ABOUT CTA
============================================================ */
.about-cta {
  background: var(--celtic);
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}
.about-cta__headline {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ecru);
  margin-bottom: 0.75rem;
}
.about-cta__subhead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: rgba(246,241,234,0.75);
  margin-bottom: 2.25rem;
}
.about-cta .btn-primary {
  background: var(--tuscany);
}

/* ============================================================
   RESPONSIVE — 64rem
============================================================ */
@media (max-width: 64rem) {
  .practice-intro__grid { grid-template-columns: 1fr 21.25rem; gap: 3.5rem; }
  .practice-intro__headline { font-size: 2.25rem; }
  .approach__headline { font-size: 2.5rem; }
  .team-section__headline { font-size: 2.5rem; }
  .team-member { grid-template-columns: 10rem 1fr; gap: 2rem; }
}

/* ============================================================
   RESPONSIVE — 48rem
============================================================ */
@media (max-width: 48rem) {
  .practice-intro { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .practice-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .practice-intro__image { height: 18.75rem; }
  .practice-intro__headline { font-size: 1.875rem; }

  .approach { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .approach__body { grid-template-columns: 1fr; gap: 1.25rem; }
  .approach__headline { font-size: 2rem; }

  .team-section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .team-section__headline { font-size: 2rem; }

  .team-member {
    grid-template-columns: 7.5rem 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .team-member__name { font-size: 1.25rem; }

  .about-cta__headline { font-size: 2.25rem; }
}

/* ============================================================
   RESPONSIVE — 30rem
============================================================ */
@media (max-width: 30rem) {
  .team-member { grid-template-columns: 1fr; }
  .team-member__photo { aspect-ratio: 4 / 3; max-height: 15rem; }
  .approach__headline { font-size: 1.75rem; }
  .about-cta__headline { font-size: 1.75rem; }
}
