/* ============================================================
   SINGLE COUPLE ESCORT — FULL WIDTH (DIRECTORY MATCH)
============================================================ */

body.single-escort_couple {
  background: var(--bg);
  color: var(--ink);
}

/* ============================================================
   FORCE FULL WIDTH (BREAK THE BOX)
============================================================ */

body.single-escort_couple section,
body.single-escort_couple .sp-details {
  max-width: none !important;
  width: 100%;
  margin: 0;
}

/* ============================================================
   PAGE WRAPPER
============================================================ */

.single-profile.couple-profile {
  padding: 0 0 60px;
}

/* ============================================================
   TITLE BAR — SAME WIDTH AS NAV
============================================================ */

.sp-title-bar {
  width: 100%;
  padding: 18px 4%;
  margin-bottom: 24px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(0,0,0,0)
  );
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sp-title-bar .sp-inner {
  max-width: none;
  padding: 0;
}

.sp-main-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.sp-subline {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================================================
   MAIN GRID — DIRECTORY STYLE
============================================================ */

.sp-layout {
  width: 100%;
  padding: 0 4%;
  display: grid;
  grid-template-columns: 2fr 360px 360px;
  gap: 32px;
  align-items: start;
  box-sizing: border-box;
}

/* ============================================================
   MAIN COLUMN
============================================================ */

.sp-main-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* ============================================================
   CARD BASE
============================================================ */

.sp-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}

.sp-card.highlighted {
  background: linear-gradient(
    180deg,
    rgba(224,176,104,0.08),
    rgba(0,0,0,0)
  );
}

/* ============================================================
   PROFILE HEADER
============================================================ */

.sp-profile-header {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.sp-profile-name {
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge.verified {
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: 800;
}

.sp-profile-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================================================
   PROFILE PHOTOS — PREMIUM SCALE
============================================================ */

/* ============================================================
   PHOTO GRID — BALANCED FOR RIGHT-SIDE DETAILS
============================================================ */

.sp-photo-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr; /* image area slightly reduced */
  gap: 18px;
  margin-bottom: 28px;
}

/* Hero image — premium but not dominant */
.sp-photo-row .sp-photo-box:first-child {
  grid-column: span 2;
  grid-row: span 1;
}

/* Image container */
.sp-photo-box {
  width: 100%;
  max-width: 420px; /* prevents overpowering */
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}

/* Images */
.sp-photo-box img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .3s ease, filter .3s ease;
}

/* Hover polish */
.sp-photo-box:hover img {
  transform: scale(1.04);
  filter: brightness(1.04);
}

/* ============================================================
   RESPONSIVE SAFETY
============================================================ */

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

  .sp-photo-row .sp-photo-box:first-child {
    grid-column: span 2;
  }

  .sp-photo-box {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .sp-photo-row {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   SECTION TITLES
============================================================ */

.sp-section-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: .04em;
}

/* ============================================================
   INFO GRID
============================================================ */

.sp-info-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px 18px;
}

.sp-info-grid.enhanced {
  background: rgba(255,255,255,0.03);
  padding: 12px;
  border-radius: 12px;
}

.sp-info-grid span {
  font-size: 0.75rem;
  color: var(--muted);
}

.sp-info-grid strong {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Partner name */
.sp-partner-name {
  display: block;
  font-weight: 800;
  margin-bottom: 10px;
}

/* ============================================================
   SIDE COLUMN (LEFT)
============================================================ */

.sp-side-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ============================================================
   SERVICES / AVAILABILITY
============================================================ */

.sp-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sp-services-grid.enhanced {
  background: rgba(255,255,255,0.03);
  padding: 10px;
  border-radius: 12px;
}

.service-pill {
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  font-weight: 600;
}

/* ============================================================
   RIGHT GLOBAL SIDEBAR
============================================================ */

.main-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1400px) {
  .sp-layout {
    grid-template-columns: 1.6fr 320px 320px;
  }
}

@media (max-width: 1200px) {
  .sp-layout {
    grid-template-columns: 1fr 360px;
  }

  .main-right {
    display: none;
  }
}

@media (max-width: 900px) {
  .sp-layout {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
}

@media (max-width: 520px) {
  .sp-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Space between navigation and title bar */
body.single-escort_couple .sp-title-bar {
  margin-top: 22px;
}

body.single-escort_couple .sp-title-bar {
  margin-bottom: 32px;
}

body.single-escort_couple .sp-title-bar {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

@media (max-width: 768px) {
  body.single-escort_couple .sp-title-bar {
    margin-top: 14px;
    margin-bottom: 22px;
  }
}
