/* Google Fonts loaded via <link> in HTML for better performance */

:root {
  --gold: #c9a84c;
  --gold-light: #e8cb7a;
  --gold-dark: #9a7a2e;
  --dark: #080808;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #242424;
  --text: #f0ece4;
  --text-muted: #8a8070;
  --border: #2a2a2a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 8, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  max-width: 140px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  border: 1px solid var(--border);
}

.lang-btn {
  background: none;
  border: none;
  border-right: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.1rem;
  padding: 0.2rem 0.45rem;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.15s, opacity 0.15s;
  opacity: 0.55;
}

.lang-btn:last-child { border-right: none; }

.lang-btn:hover { opacity: 0.85; transform: scale(1.15); }

.lang-btn.active {
  opacity: 1;
  background: rgba(201, 168, 76, 0.08);
}

.nav-join {
  color: var(--gold) !important;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

/* ── HERO (HOMEPAGE) ── */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #0e0c09 0%, #080808 60%, #0a0d0e 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-scroll {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  padding: 0.85rem 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-scroll:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  padding: 5rem 2rem 3.5rem;
}

.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text);
}

.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto 0;
  opacity: 0.6;
}

/* ── MASSEUSE GRID ── */
/* ── 3-column page layout (sidebar | 70% main | sidebar) ── */
.page-layout {
  display: block;
}

@media (min-width: 1100px) {
  .page-layout {
    display: grid;
    grid-template-columns: 1fr 70% 1fr;
    align-items: start;
  }
  .sidebar-col {
    position: sticky;
    top: 80px;
    padding: 2px 10px 0;
  }
}

@media (max-width: 1099px) {
  .sidebar-col { display: none; }
}

/* Sidebar ad card (vertical, mirrors grid card layout) */
.sidebar-ad-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--dark-3, #111);
  border: 1px solid var(--border-card, #1e1e1e);
  transition: border-color .3s;
  overflow: hidden;
}
.sidebar-ad-card:hover { border-color: rgba(201,168,76,.3); }
.sidebar-ad-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #0d0d0d;
  flex-shrink: 0;
}
.sidebar-ad-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform .5s ease;
}
.sidebar-ad-card:hover .sidebar-ad-photo img { transform: scale(1.04); }
.sidebar-ad-body {
  padding: .85rem .8rem .8rem;
  display: flex; flex-direction: column; gap: .35rem;
}
.sidebar-ad-name {
  font-family: 'Playfair Display', serif;
  font-size: .92rem; font-weight: 400;
  color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sidebar-ad-badge {
  font-size: .58rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; padding: .15rem .4rem; display: inline-block; align-self: flex-start;
}
.sidebar-ad-badge.gold   { background: var(--gold); color: #000; }
.sidebar-ad-badge.silver { background: #2a3a4a; color: #a8c0d8; }
.sidebar-ad-badge.basic  { background: #1e1e1e; color: #666; }
.sidebar-ad-cta {
  font-size: .65rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); margin-top: .2rem;
}
.sidebar-ad-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  aspect-ratio: 3/5;
  border: 1px dashed rgba(255,255,255,.07);
  flex-direction: column;
  gap: .4rem;
  color: rgba(255,255,255,.2);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: border-color .3s, color .3s;
}
.sidebar-ad-placeholder:hover { border-color: rgba(201,168,76,.25); color: rgba(201,168,76,.5); }
.sidebar-ad-placeholder small { font-size: .6rem; display: block; }

/* ── Hero card (featured profile, full-width above grid) ── */
#featuredHero {
  max-width: 100%;
  margin: 0;
  padding: 0 2px 2px;
}

.hero-card {
  display: flex;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border-card);
  overflow: hidden;
  transition: border-color .3s;
}
.hero-card:hover { border-color: rgba(201,168,76,.35); }

.hero-img {
  width: 38%;
  min-width: 180px;
  min-height: 320px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.hero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .6s ease;
}
.hero-card:hover .hero-img img { transform: scale(1.04); }

.hero-info {
  flex: 1;
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  justify-content: center;
  background: var(--dark-3, #0d0d0d);
}

.hero-name {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--text);
  line-height: 1.15;
}

.hero-desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-meta {
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hero-price {
  font-size: .85rem;
  color: var(--gold);
  letter-spacing: .06em;
}

.hero-cta {
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: .25rem;
}

@media (max-width: 640px) {
  .hero-card { flex-direction: column; }
  .hero-img { width: 100%; min-width: 0; min-height: 0; height: 55vw; max-height: 360px; }
  .hero-info { padding: 1.5rem; }
  .hero-name { font-size: 1.4rem; }
}

/* ── Escort grid (2 columns desktop, 1 mobile) ── */
.masseuses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 2px 2px 5rem;
}

@media (min-width: 640px) {
  .masseuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Escort cards (horizontal: photo left, info right) ── */
.masseuse-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-card, #1e1e1e);
  background: var(--dark-3);
  transition: border-color .3s;
}
.masseuse-card:hover { border-color: rgba(201,168,76,.25); }

.card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  height: 100%;
}

.card-img {
  width: 45%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.masseuse-card:hover .card-img img { transform: scale(1.05); }

.card-body {
  flex: 1;
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  justify-content: center;
  min-width: 0;
}

.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: .02em;
  line-height: 1.2;
}

.card-tagline {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(201,168,76,.75);
  line-height: 1.5;
}

.card-price-tag {
  font-size: .72rem;
  letter-spacing: .06em;
  color: rgba(240,236,228,.55);
}

.card-desc {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.55;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.card-cta-text {
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: auto;
  padding-top: .5rem;
  opacity: 0;
  transition: opacity .3s;
}
.masseuse-card:hover .card-cta-text { opacity: 1; }

/* ── PROFILE PAGE (image rect + text beside) ── */
.profile-page {
  padding-top: 72px;
  min-height: 100vh;
}

.profile-header {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 50vw 1fr;
  align-items: center;
}

@media (max-width: 820px) {
  .profile-header {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-bottom: 3rem;
  }
}

.profile-img-box {
  height: 70vh;
  min-height: 400px;
  aspect-ratio: 4 / 5;
  justify-self: center;
  overflow: hidden;
}

.profile-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.profile-info {
  padding: 3.5rem 5%;
  min-width: 0;
  border-left: 1px solid var(--border);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-info .profile-back {
  margin-bottom: 2rem;
  display: inline-flex;
}

.profile-loading {
  text-align: center;
  padding: 8rem 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── PROFILE CARD (new layout, kept for reference) ── */
.profile-card-page {
  padding-top: 72px;
  min-height: 100vh;
}

.profile-card-wrapper {
  max-width: 1020px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

.profile-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  border: 1px solid var(--border);
  background: var(--dark-2);
  overflow: hidden;
  margin-top: 2rem;
}

@media (max-width: 860px) {
  .profile-card {
    grid-template-columns: 1fr;
  }
}

.profile-card-img {
  overflow: hidden;
}

.profile-card-img img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.profile-card-body {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 480px) {
  .profile-card-body {
    padding: 2rem 1.5rem;
  }
  .profile-card-img img {
    min-height: 360px;
  }
}

/* ── FEATURES SECTION ── */
.features-section {
  padding: 5rem 4%;
  border-top: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1300px;
  margin: 3rem auto 0;
}

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

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  background: var(--dark-2);
  padding: 2.5rem 1.8rem;
  text-align: center;
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1.3rem;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
}

.feature-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.feature-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── ABOUT STRIP ── */
.about-section {
  padding: 5rem 5%;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-section p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.95;
  margin-top: 2rem;
}

/* ── PAYMENT SECTION ── */
.payment-section {
  padding: 5rem 5%;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
}

.payment-badge {
  border: 1px solid var(--border);
  padding: 0.75rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all 0.3s;
}

.payment-badge:hover {
  border-color: rgba(201,168,76,0.4);
  color: var(--text);
}

.payment-badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── SEO LOCAL TEXT ── */
.seo-section {
  padding: 4rem 5%;
  border-top: 1px solid var(--border);
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.seo-section p {
  font-size: 0.82rem;
  color: #4a4540;
  line-height: 1.9;
  margin-top: 1.5rem;
}

/* ── INDIVIDUAL MASSEUSE PAGE (legacy, kept for reference) ── */
.profile-hero {
  padding-top: 72px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

@media (max-width: 768px) {
  .profile-hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }
}

.profile-hero-image {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
}

.profile-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.profile-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 8% 5rem 6%;
  background: var(--dark-2);
}

.profile-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  transition: color 0.3s;
}

.profile-back:hover {
  color: var(--gold);
}

.profile-back svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

.profile-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.profile-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.profile-rule {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
  opacity: 0.7;
}

.profile-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 3rem;
  max-width: 440px;
}

/* ── CONTACT BUTTONS ── */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 320px;
}

.btn-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s;
  border: 1px solid;
}

.btn-whatsapp {
  border-color: rgba(37, 211, 102, 0.4);
  color: #25d366;
  background: rgba(37, 211, 102, 0.05);
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: #25d366;
}

.btn-phone {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.btn-phone:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
}

.btn-telegram {
  border-color: rgba(0, 136, 204, 0.4);
  color: #29aae1;
  background: rgba(0, 136, 204, 0.05);
}

.btn-telegram:hover {
  background: rgba(0, 136, 204, 0.12);
  border-color: #29aae1;
}

.btn-contact svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
}

/* ── GALLERY ── */
.gallery-section {
  padding: 5rem 2px 2px;
  max-width: 100%;
}

.gallery-section .section-header {
  padding: 0 2rem 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 3px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  background: var(--dark-3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(0,0,0,0.35);
}

.gallery-zoom-icon {
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s;
  color: white;
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-zoom-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
}

/* Video items */
.gallery-item.video-item::after {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.3);
  display: flex;
  pointer-events: none;
}

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

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

/* ── CONTACT PAGE ── */
.contact-page {
  padding-top: 72px;
  min-height: 100vh;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-info-panel {
  background: var(--dark-2);
  padding: 6rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-panel .section-eyebrow {
  text-align: left;
  margin-bottom: 1rem;
}

.contact-info-panel h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.contact-info-panel .gold-rule {
  margin: 0 0 2rem;
}

.contact-info-panel p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 3rem;
  max-width: 420px;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
}

.contact-detail-text {
  font-size: 0.85rem;
}

.contact-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-detail-value {
  color: var(--text);
}

.contact-form-panel {
  background: var(--dark-3);
  padding: 6rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-4);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.9rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-group select option {
  background: var(--dark-3);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--gold-light);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.3);
  margin-top: 1rem;
}

.form-success p {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 3rem 5%;
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.72rem;
  color: #4a4540;
  letter-spacing: 0.05em;
}

/* ── PROFILE EXTRA SECTIONS ── */

/* Video Call */
.prof-vc-section {
  background: var(--dark-2);
  text-align: center;
  padding: 5rem 8%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.prof-vc-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.9;
}

.prof-vc-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* About Me + Services */
.prof-about-section {
  padding: 5rem 8%;
  border-bottom: 1px solid var(--border);
}

.prof-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.prof-about-left h2,
.prof-services-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--text);
  margin-top: 0.75rem;
}

.prof-about-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.95;
  margin-top: 1.25rem;
}

.prof-services-col {
  border-left: 1px solid var(--border);
  padding-left: 4rem;
}

.prof-services-list {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.prof-services-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.7rem 0 0.7rem 1.25rem;
  position: relative;
  line-height: 1.4;
  border-bottom: 1px solid var(--border);
}

.prof-services-list li:first-child {
  border-top: 1px solid var(--border);
}

.prof-services-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* Appointment */
.prof-appt-section {
  background: var(--dark-2);
  text-align: center;
  padding: 5rem 8%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.prof-appt-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--text);
}

.prof-appt-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 1.5rem auto 1.5rem;
  line-height: 1.9;
}

.prof-appt-phone {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold);
  letter-spacing: 0.08em;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.prof-appt-phone:hover { color: var(--gold-light); }

/* Other Ladies */
.prof-other-section {
  padding-bottom: 5rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 820px) {
  .prof-about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ── APPLY PAGE ── */
.apply-page {
  min-height: 100vh;
  padding-top: 72px;
}

.apply-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
}

.apply-info-panel {
  background: var(--dark-2);
  padding: 5rem 6%;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.apply-info-panel h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.apply-info-panel > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.apply-perks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.apply-perk {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.apply-perk svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.apply-perk-title {
  font-size: 0.85rem;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.apply-perk-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.apply-form-panel {
  padding: 5rem 6%;
  background: var(--dark);
}

.apply-form-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.apply-upload-zone {
  border: 1px dashed var(--border);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.apply-upload-zone:hover { border-color: var(--gold); }

.apply-upload-zone svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
}

.apply-upload-zone p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.apply-upload-note {
  font-size: 0.75rem !important;
  color: #555 !important;
}

.apply-photo-preview {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.photo-thumb {
  width: 80px;
  height: 100px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apply-form-error {
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

/* ── UTILITIES ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* ── AGE GATE ── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.age-gate-box {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.age-gate-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.age-gate-logo span {
  color: var(--text);
  font-weight: 400;
}

.age-gate-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 0 auto 2rem;
}

.age-gate-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.age-gate-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.age-gate-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 440px;
  margin: 0 auto 2.5rem;
}

.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 340px;
  margin: 0 auto 1.5rem;
}

.age-gate-enter {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 1rem 2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.age-gate-enter:hover { background: var(--gold-light); }

.age-gate-exit {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.85rem 2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.age-gate-exit:hover {
  border-color: rgba(201,168,76,0.4);
  color: var(--text);
}

.age-gate-disclaimer {
  font-size: 0.7rem;
  color: #3a3530;
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-muted);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }

  .nav-right {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(8,8,8,0.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 2rem 7%;
    gap: 2rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
    z-index: 99;
  }

  .nav-right.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .lang-switcher {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 1.5rem;
  }
  .nav-logo {
    font-size: 1.1rem;
  }
  .masseuses-grid {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 0 2px 3rem;
  }
  .profile-hero {
    grid-template-columns: 1fr;
  }
  .profile-hero-content {
    padding: 3rem 6%;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info-panel,
  .contact-form-panel {
    padding: 3rem 6%;
  }
  .apply-layout {
    grid-template-columns: 1fr;
  }
  .apply-info-panel,
  .apply-form-panel {
    padding: 3rem 6%;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .nav-right {
    gap: 1rem;
  }
  .lang-btn {
    padding: 0.25rem 0.4rem;
  }
  .filter-bar {
    padding: 1rem;
    gap: 0.5rem;
  }
  .filter-age-wrap { width: 100%; }
  .filter-sel, .filter-num { width: 100%; }
}

/* ── Filter Bar ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding: 1.25rem 2rem;
  background: var(--gold);
  border-top: none;
  border-bottom: none;
  margin-bottom: 1.5rem;
}
.filter-sel {
  background: #fff;
  border: none;
  color: #111;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  min-width: 130px;
}
.filter-sel:focus { outline: 2px solid rgba(0,0,0,.25); color: #000; }
.filter-age-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.filter-num {
  background: #fff;
  border: none;
  color: #111;
  padding: 0.5rem 0.65rem;
  font-size: 0.8rem;
  font-family: inherit;
  outline: none;
  width: 80px;
}
.filter-num:focus { outline: 2px solid rgba(0,0,0,.25); }
.filter-search {
  background: #fff;
  border: none;
  color: #111;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  font-family: inherit;
  outline: none;
  min-width: 160px;
}
.filter-search::placeholder { color: #888; }
.filter-search:focus { outline: 2px solid rgba(0,0,0,.25); }
/* custom checkbox */
.filter-check {
  display: flex; align-items: center; gap: .45rem;
  cursor: pointer; user-select: none; white-space: nowrap;
}
.filter-check input[type="checkbox"] { display: none; }
.filter-check-box {
  width: 18px; height: 18px; flex-shrink: 0;
  background: #fff; border: 2px solid #ccc;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
}
.filter-check-box::after {
  content: '';
  display: block; width: 5px; height: 9px;
  border: 2px solid transparent;
  border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px);
  transition: border-color .15s;
}
.filter-check input:checked ~ .filter-check-box {
  background: #111; border-color: #111;
}
.filter-check input:checked ~ .filter-check-box::after {
  border-color: var(--gold);
}
.filter-check-label {
  font-size: .78rem; letter-spacing: .04em; color: #111; font-family: inherit;
}
.filter-clear {
  background: #fff;
  border: none;
  color: #111;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}
.filter-clear:hover { background: #f0f0f0; }

/* ── STORIES BAR ── */
.stories-bar {
  overflow-x: auto;
  scrollbar-width: none;
  padding: 1.4rem 2rem 1.2rem;
  background: #09090a;
  border-bottom: 1px solid #161616;
}
.stories-bar::-webkit-scrollbar { display: none; }
.stories-track { display: flex; gap: 1.5rem; width: max-content; }
.story-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
  text-decoration: none; cursor: pointer;
  background: none; border: none; padding: 0;
}
.story-ring {
  width: 62px; height: 62px; border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  flex-shrink: 0;
}
.story-ring img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  border-radius: 50%;
  border: 2px solid var(--dark);
  display: block;
}
.story-ring--multi {
  outline: 2px dashed var(--gold-light);
  outline-offset: 3px;
}
.story-name {
  font-size: 0.62rem; color: var(--text-muted);
  letter-spacing: 0.04em; text-transform: uppercase;
  max-width: 64px; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap; text-align: center;
  transition: color 0.2s;
}
.story-item:hover .story-name { color: var(--gold); }

/* ── MAIN BANNER (CHF 60 / day paid slot) ── */
.main-banner-card {
  display: flex;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(201,168,76,.4);
  overflow: hidden;
  margin-bottom: .1rem;
  transition: border-color .3s;
  position: relative;
}
.main-banner-card::before {
  content: '★ FEATURED BANNER';
  position: absolute; top: .5rem; right: .75rem;
  font-size: .6rem; letter-spacing: .14em;
  color: var(--gold); background: rgba(8,8,8,.85);
  padding: .2rem .5rem; border: 1px solid var(--gold-dark);
  z-index: 2;
}
.main-banner-card:hover { border-color: var(--gold); }
.main-banner-img {
  width: 38%; min-width: 160px; min-height: 260px;
  flex-shrink: 0; position: relative; overflow: hidden;
}
.main-banner-img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top; display: block;
  transition: transform .6s ease;
}
.main-banner-card:hover .main-banner-img img { transform: scale(1.04); }
.main-banner-body {
  flex: 1; padding: 2rem 2.5rem;
  display: flex; flex-direction: column; gap: .6rem;
  justify-content: center; background: #0a0a0b;
}
.main-banner-badge {
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
}
.main-banner-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 400; color: var(--text);
}
.main-banner-meta { font-size: .78rem; color: var(--text-muted); }
.main-banner-cta {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-top: .25rem;
}
@media (max-width: 640px) {
  .main-banner-card { flex-direction: column; }
  .main-banner-img { width: 100%; min-width: 0; min-height: 0; height: 55vw; max-height: 320px; }
  .main-banner-body { padding: 1.25rem 1.5rem; }
  .main-banner-name { font-size: 1.25rem; }
}

/* ── FEATURED STRIP ── */
.featured-strip {
  padding: 1.75rem 2rem 0;
  background: #09090a;
  border-bottom: 1px solid #161616;
}
.featured-strip-hd {
  font-size: 0.63rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.featured-track {
  display: flex; gap: 3px;
  overflow-x: auto; scrollbar-width: none;
  padding-bottom: 1.75rem;
}
.featured-track::-webkit-scrollbar { display: none; }
.featured-card {
  position: relative; flex-shrink: 0;
  width: 200px; height: 275px;
  overflow: hidden; display: block;
  text-decoration: none; background: var(--dark-3);
}
.featured-card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top; display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.featured-card:hover img { transform: scale(1.07); }
.featured-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}
.featured-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem;
}
.featured-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 400; color: #fff;
  margin: 0.2rem 0 0.1rem; line-height: 1.2;
}
.featured-card-info p {
  font-size: 0.65rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.07em;
}

/* ── RESULT COUNT ── */
.result-count {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); padding: 0.75rem 2rem 0.25rem;
}

/* ── CARD BADGES ── */
.masseuse-card { position: relative; }
.card-badges {
  position: absolute; top: .55rem; left: .55rem;
  display: flex; gap: .3rem; flex-wrap: wrap; z-index: 2; pointer-events: none;
}
.badge-vip {
  background: var(--gold); color: #000;
  font-size: .6rem; letter-spacing: .08em; padding: .2rem .45rem; font-weight: 700;
}
.badge-premium {
  background: #2a3a4a; color: #a8c0d8;
  font-size: .6rem; letter-spacing: .08em; padding: .2rem .45rem; font-weight: 700;
}
.badge-new {
  background: #27ae60; color: #fff;
  font-size: .6rem; letter-spacing: .08em; padding: .2rem .45rem;
}
.badge-verified {
  background: #2980b9; color: #fff;
  font-size: .6rem; padding: .2rem .45rem;
}
.badge-featured {
  color: var(--gold); font-size: .85rem; line-height: 1;
  background: rgba(0,0,0,.6); padding: .15rem .35rem;
}
.badge-video {
  background: rgba(0,0,0,.65); color: rgba(255,255,255,.8);
  font-size: .58rem; letter-spacing: .06em; padding: .2rem .4rem;
}

/* ── FAVORITES BUTTON (card) ── */
.fav-btn {
  position: absolute; top: .55rem; right: .55rem;
  background: rgba(0,0,0,.6); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.45); cursor: pointer;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: color .2s, border-color .2s; padding: 0;
}
.fav-btn:hover { color: #e74c3c; border-color: rgba(231,76,60,.45); }
.fav-btn.active { color: #e74c3c; border-color: rgba(231,76,60,.45); }
.fav-btn svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }
.fav-btn.active svg { fill: currentColor; }

/* ── STORY VIEWER ── */
.story-viewer {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  display: none; align-items: center; justify-content: center;
}
.sv-layout {
  display: flex; align-items: center; gap: 1rem;
  max-height: 100vh; padding: 1rem;
}
.sv-content {
  position: relative; width: min(360px, 90vw);
  height: calc(min(360px, 90vw) * 16 / 9); /* fallback for browsers without aspect-ratio */
  aspect-ratio: 9/16; overflow: hidden;
  border-radius: 12px; background: #111;
  flex-shrink: 0;
}
.sv-content img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}
.sv-progress {
  position: absolute; top: 8px; left: 8px; right: 8px;
  display: flex; gap: 3px; z-index: 3;
}
.sv-seg {
  flex: 1; height: 3px; background: rgba(255,255,255,.35);
  border-radius: 2px; overflow: hidden;
}
.sv-seg > div {
  height: 100%; width: 0; background: var(--gold);
}
.sv-seg.done > div {
  width: 100%;
}
.sv-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 2.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
  display: flex; flex-direction: column; align-items: flex-start; gap: .65rem;
}
.sv-info h3 {
  margin: 0; font-size: 1.15rem; color: #fff;
  font-family: 'Playfair Display', serif;
}
.sv-profile-btn {
  display: inline-block;
  background: var(--gold); color: #000;
  font-size: .8rem; font-weight: 700; letter-spacing: .06em;
  padding: .45rem 1.1rem; text-decoration: none;
  transition: background .2s;
}
.sv-profile-btn:hover { background: var(--gold-light); }
.sv-btn {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 2rem; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border-radius: 50%; flex-shrink: 0;
  transition: background .2s;
}
.sv-btn:hover { background: rgba(255,255,255,.22); }
.sv-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 1.3rem; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border-radius: 50%; z-index: 10;
  transition: background .2s;
}
.sv-close:hover { background: rgba(255,255,255,.15); }
@media (max-width: 480px) {
  .sv-layout { gap: .4rem; padding: .5rem; }
  .sv-btn { width: 36px; height: 36px; font-size: 1.5rem; }
  .sv-content { width: 100%; }
}
