/* ============================================
   SugarCARE — Doctors page (doctors.html)
   Loaded after tokens.css + base.css + home.css.
   Reuses .sec-head, .pill, .btn-*, .cta-final from home.css.
   ============================================ */

/* ─── HERO ─────────────────────────────────────── */
.doctors-hero {
  position: relative;
  padding: var(--s-2xl) 0;
  background: var(--c-white);
  text-align: center;
  overflow: hidden;
}
.doctors-hero .pill { margin-bottom: var(--s-md); }
.doctors-hero h1 {
  font-size: clamp(2.5rem, 1.6rem + 4vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.06;
  color: var(--c-purple-deep);
  margin-bottom: var(--s-md);
  max-width: 18ch;
  margin-inline: auto;
}
.doctors-hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--c-purple) 0%, var(--c-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.show-en .doctors-hero h1 { font-family: var(--font-en); }
.doctors-hero p {
  font-size: var(--t-md);
  color: var(--c-muted);
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 auto var(--s-lg);
}
.doctors-hero .hero-ctas {
  justify-content: center;
  margin-bottom: var(--s-md);
  flex-wrap: wrap;
}
.doctors-strip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-md);
  margin-top: var(--s-md);
  padding: 10px 18px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-1);
  font-family: var(--font-en);
  font-size: .82rem;
  color: var(--c-muted);
  flex-wrap: wrap;
  justify-content: center;
}
.doctors-strip strong {
  color: var(--c-purple-deep);
  font-weight: 700;
}

/* ─── SECTION 2: LEADERSHIP ───────────────────── */
.lead { padding: var(--s-2xl) 0; background: var(--c-bg); }
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-md);
}
.lead-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--s-lg);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--s-lg);
  align-items: start;
  transition: transform var(--t-base-d), box-shadow var(--t-base-d);
}
.lead-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}
.lead-card.cmo {
  border-color: var(--c-purple-tint);
  box-shadow: var(--sh-1);
}
.lead-photo {
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-purple-tint-soft);
  position: relative;
}
.lead-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lead-info .pill {
  margin-bottom: var(--s-sm);
  background: var(--c-purple-tint-soft);
}
.lead-card.cmo .lead-info .pill {
  background: var(--c-orange);
  color: var(--c-white);
  border: none;
}
.lead-name {
  font-family: var(--font-en);
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--c-purple-deep);
  margin-bottom: 2px;
  line-height: 1.15;
}
.lead-creds {
  font-family: var(--font-en);
  font-size: .82rem;
  color: var(--c-orange);
  font-weight: 700;
  margin-bottom: var(--s-md);
}
.lead-bio {
  font-size: var(--t-sm);
  color: var(--c-muted);
  line-height: 1.65;
}

@media (max-width: 1000px) {
  .lead-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .lead-card { grid-template-columns: 1fr; }
  .lead-photo { max-width: 200px; margin: 0 auto; }
}

/* ─── SECTION 3: FULL TEAM GRID ───────────────── */
.team { padding: var(--s-2xl) 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
}
.team-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base-d), box-shadow var(--t-base-d), border-color var(--t-base-d);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
  border-color: var(--c-purple-tint);
}
.team-photo {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-purple-tint-soft);
  margin-bottom: var(--s-md);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}
.team-card:hover .team-photo img,
.team-card:hover .team-initials {
  transform: scale(1.04);
}
.team-initials {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--c-purple) 0%, var(--c-purple-deep) 100%);
  color: var(--c-white);
  font-family: var(--font-en);
  font-size: clamp(1.6rem, 1rem + 2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  transition: transform var(--t-slow);
}
.team-name {
  font-family: var(--font-en);
  font-size: var(--t-sm);
  font-weight: 800;
  color: var(--c-purple-deep);
  margin-bottom: 4px;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.team-specialty {
  font-size: .72rem;
  color: var(--c-orange);
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
body.show-en .team-specialty { font-family: var(--font-en); }
.team-qual {
  font-family: var(--font-en);
  font-size: .68rem;
  color: var(--c-muted);
  margin-bottom: var(--s-sm);
  line-height: 1.35;
  word-break: break-word;
}
.team-clinic {
  font-size: .68rem;
  color: var(--c-purple);
  font-weight: 600;
  padding-top: var(--s-sm);
  margin-top: auto;
  border-top: 1px solid var(--c-border);
  line-height: 1.35;
}
body.show-en .team-clinic { font-family: var(--font-en); }

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

/* ─── SECTION 4: HOW WE HIRE ─────────────────── */
.hire { padding: var(--s-2xl) 0; background: var(--c-bg); }
.hire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
}
.hire-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  position: relative;
  transition: transform var(--t-base-d), box-shadow var(--t-base-d);
}
.hire-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}
.hire-num {
  font-family: var(--font-en);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: var(--s-sm);
}
.hire-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--c-purple-tint-soft);
  color: var(--c-purple);
  display: grid;
  place-items: center;
  margin-bottom: var(--s-md);
}
.hire-icon svg { width: 24px; height: 24px; }
.hire-card h3 {
  font-size: var(--t-md);
  font-weight: 700;
  color: var(--c-purple-deep);
  margin-bottom: var(--s-sm);
  line-height: 1.3;
}
body.show-en .hire-card h3 { font-family: var(--font-en); }
.hire-card p {
  font-size: var(--t-sm);
  color: var(--c-muted);
  line-height: 1.65;
}
@media (max-width: 900px) { .hire-grid { grid-template-columns: 1fr; } }
