/* ==========================================================
   SINGLE MASSAGE THERAPIST — PREMIUM PAGE
   MAIN + RIGHT SIDEBAR (CLEAN, NON-CONFLICTING)
========================================================== */

/* ----------------------------------------------------------
   BASE
---------------------------------------------------------- */
body.single-massage_therapist{
  background:#020617;
  color:#f8fafc;
  font-family:Inter,system-ui,sans-serif;
  overflow-x:hidden;
}

/* ----------------------------------------------------------
   MASTER GRID (MATCHES AGENCY SYSTEM)
---------------------------------------------------------- */
.single-profile.therapist-public .content-grid{
  width:100%;
  padding:40px 4% 80px;

  display:grid;
  grid-template-columns:minmax(0,1fr) 380px;
  gap:36px;

  align-items:start;
}

/* LEFT CONTENT */
.single-profile.therapist-public .main-content{
  min-width:0;
}

/* RIGHT SIDEBAR */
.single-profile.therapist-public .main-right{
  width:380px;
  position:sticky;
  top:40px;
  align-self:start;

  padding-left:22px;
  border-left:1px solid rgba(255,255,255,.06);
}

/* ----------------------------------------------------------
   THERAPIST INNER LAYOUT
---------------------------------------------------------- */
.therapist-layout{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:40px;
}

/* ----------------------------------------------------------
   GALLERY
---------------------------------------------------------- */
.therapist-gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.gallery-item{
  border-radius:18px;
  overflow:hidden;
  background:#000;
}

.gallery-item.hero{
  grid-column:span 2;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* ----------------------------------------------------------
   SIDEBAR STACK (THERAPIST INFO)
---------------------------------------------------------- */
.therapist-sidebar{
  display:flex;
  flex-direction:column;
  gap:22px;
}

/* ----------------------------------------------------------
   CARDS
---------------------------------------------------------- */
.card{
  background:#0b1220;
  border-radius:18px;
  padding:22px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 45px rgba(0,0,0,.45);
}

/* NAME CARD */
.name-card h1{
  font-size:1.6rem;
  font-weight:800;
  background:linear-gradient(90deg,#facc15,#ffe7b0);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.subtitle{
  color:#9ca3af;
  margin-top:6px;
  font-size:.9rem;
}

/* ----------------------------------------------------------
   STATS
---------------------------------------------------------- */
.stats-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.stats-card li{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:9px 0;
  border-bottom:1px dashed rgba(255,255,255,.08);
  font-size:.9rem;
}

.stats-card li span:first-child{
  color:#9ca3af;
}

/* ----------------------------------------------------------
   SERVICE PILLS
---------------------------------------------------------- */
.pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.pills span{
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(242,201,76,.6);
  color:#facc15;
  background:rgba(242,201,76,.08);
  font-size:12px;
  white-space:nowrap;
}

/* ----------------------------------------------------------
   CTA
---------------------------------------------------------- */
.btn-call{
  display:block;
  text-align:center;
  padding:14px;
  border-radius:14px;
  background:linear-gradient(135deg,#facc15,#d4af37);
  color:#000;
  font-weight:800;
  letter-spacing:.05em;
}

/* ----------------------------------------------------------
   MOBILE
---------------------------------------------------------- */
@media(max-width:1100px){
  .single-profile.therapist-public .content-grid{
    grid-template-columns:1fr;
    padding:28px 20px 60px;
  }

  .single-profile.therapist-public .main-right{
    width:100%;
    position:static;
    padding-left:0;
    border-left:none;
    margin-top:36px;
  }

  .therapist-layout{
    grid-template-columns:1fr;
  }
}

/* STANDARDIZE ALL THERAPIST IMAGES */
.gallery-item,
.therapist-image-wrap{
  position:relative;
  width:100%;
  aspect-ratio:3 / 4;      /* 🔑 STANDARD RATIO */
  overflow:hidden;
  border-radius:18px;
  background:#000;
}

/* Hero image still larger but same ratio */
.gallery-item.hero{
  grid-column:span 2;
  aspect-ratio:3 / 4;
}

/* Image fit */
.gallery-item img,
.therapist-image-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;        /* 🔑 NEVER stretch */
  object-position:center;
  display:block;
}

/* Therapist tiles (agency + related models) */
.therapist-tile,
.therapist-card{
  overflow:hidden;
}

/* Image container */
.therapist-image-wrap,
.therapist-photo{
  aspect-ratio:3 / 4;
  background:#000;
}

/* Image */
.therapist-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
