/* ── Meet the Doctor ─────────────────────────────────────── */

.sh-meet {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.sh-meet__inner {
  width: 100%;
  max-width: 1360px;
  background: #f7f7f7;
  border-radius: 40px;
  padding: 64px;
  display: flex;
  gap: 56px;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

/* ── Image column ───────────────────────────────────────── */

.sh-meet__image-col {
  flex: 0 0 380px;
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.sh-meet--visible .sh-meet__image-col {
  opacity: 1;
  transform: translateX(0);
}

.sh-meet__image-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.sh-meet__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.sh-meet__image-frame:hover .sh-meet__photo {
  transform: scale(1.03);
}

.sh-meet__image-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 155, 140, 0.08) 100%);
  pointer-events: none;
}

/* ── Content column ─────────────────────────────────────── */

.sh-meet__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.sh-meet--visible .sh-meet__content {
  opacity: 1;
  transform: translateY(0);
}

.sh-meet__label {
  font-family: var(--font-deuterium), sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #009b8c;
  margin-bottom: 12px;
}

.sh-meet__heading {
  font-family: var(--font-nexa-heavy), sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  color: #231f20;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
}

.sh-meet__name {
  font-size: 32px;
  font-weight: 400;
  color: #009b8c;
  margin: 0 0 20px;
  line-height: 1.2;
}

/* "Dr." in body font to avoid glyph issues in display font */
.sh-meet__name-prefix {
  font-family: var(--font-deuterium), sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
}

/* Actual name in display font */
.sh-meet__name-display {
  font-family: var(--font-san-de-more), serif;
  font-style: italic;
}

.sh-meet__bio {
  font-family: var(--font-deuterium), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
  margin: 0 0 32px;
  max-width: 540px;
}

/* ── Stats row ──────────────────────────────────────────── */

.sh-meet__stats {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
}

.sh-meet__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid #ddd;
}

.sh-meet__stat:first-child {
  padding-left: 0;
  align-items: flex-start;
  text-align: left;
}

.sh-meet__stat:last-child {
  border-right: none;
}

.sh-meet__stat-value {
  font-family: var(--font-nexa-heavy), sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #231f20;
  line-height: 1;
  margin-bottom: 4px;
}

.sh-meet__stat-label {
  font-family: var(--font-deuterium), sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
}

/* ── CTA ────────────────────────────────────────────────── */

.sh-meet__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 16px 44px;
  border: 1px solid #231f20;
  border-radius: 50px;
  background-color: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s;
}

.sh-meet__cta:hover {
  background-color: #231f20;
}

.sh-meet__cta:hover .sh-meet__cta-text {
  color: #fff;
}

.sh-meet__cta-text {
  font-family: var(--font-deuterium), sans-serif;
  font-size: 15px;
  line-height: 15px;
  color: #231f20;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.25s;
}

/* ── Responsive: Tablet ─────────────────────────────────── */

@media (max-width: 1200px) {
  .sh-meet__inner {
    padding: 48px;
    gap: 40px;
    border-radius: 30px;
  }

  .sh-meet__image-col {
    flex: 0 0 300px;
  }

  .sh-meet__heading {
    font-size: 32px;
  }

  .sh-meet__name {
    font-size: 28px;
  }

  .sh-meet__bio {
    font-size: 15px;
  }

  .sh-meet__stat-value {
    font-size: 30px;
  }

  .sh-meet__stat {
    padding: 0 24px;
  }
}

/* ── Responsive: Mobile ─────────────────────────────────── */

@media (max-width: 809px) {
  .sh-meet {
    padding: 0 16px;
  }

  .sh-meet__inner {
    flex-direction: column;
    padding: 32px 24px;
    gap: 28px;
    border-radius: 24px;
  }

  .sh-meet__image-col {
    flex: none;
    width: 100%;
    max-width: 320px;
    align-self: center;
    transform: translateY(30px);
  }

  .sh-meet--visible .sh-meet__image-col {
    transform: translateY(0);
  }

  .sh-meet__image-frame {
    border-radius: 24px;
    aspect-ratio: 3 / 3.5;
  }

  .sh-meet__heading {
    font-size: 26px;
  }

  .sh-meet__name {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .sh-meet__bio {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .sh-meet__stats {
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
  }

  .sh-meet__stat {
    flex: 1;
    min-width: 80px;
    padding: 0 16px;
    border-right: none;
    border-bottom: none;
    align-items: center;
    text-align: center;
  }

  .sh-meet__stat:first-child {
    align-items: center;
    text-align: center;
  }

  .sh-meet__stat-value {
    font-size: 28px;
  }

  .sh-meet__stat-label {
    font-size: 11px;
  }

  .sh-meet__cta {
    align-self: center;
    padding: 14px 36px;
    width: 100%;
  }

  .sh-meet__cta-text {
    font-size: 14px;
  }
}
