/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0a0a0f;
  --bg-2:        #111118;
  --bg-3:        #16161f;
  --border:      rgba(255,255,255,.08);
  --border-2:    rgba(255,255,255,.14);
  --text:        #f0f0f5;
  --text-2:      #9494aa;
  --text-3:      #5a5a6e;
  --accent:      #f72585;
  --accent-2:    #ff5fa0;
  --accent-3:    #ffb3d0;
  --accent-glow: rgba(247,37,133,.22);
  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --shadow:      0 4px 24px rgba(0,0,0,.5);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.7);
  --transition:  .2s ease;
  --font:        'Inter', system-ui, sans-serif;
  --header-h:    84px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; min-height: 100vh; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

.header,
main,
.footer {
  opacity: 0;
  transform: translateY(18px);
  animation: page-enter .72s cubic-bezier(.22, 1, .36, 1) forwards;
}

.header { animation-delay: .02s; }
main { animation-delay: .08s; }
.footer { animation-delay: .14s; }

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-weight: 600; border-radius: var(--radius); transition: var(--transition);
  white-space: nowrap; letter-spacing: .01em;
}
.btn--sm  { font-size: 13px; padding: 8px 18px; border-radius: var(--radius-sm); }
.btn--lg  { font-size: 15px; padding: 14px 32px; border-radius: var(--radius-lg); }
.btn--full{ width: 100%; }

.btn--primary {
  background: var(--accent);
  color: #fff;
  border: none;
}
.btn--primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--border-2);
  color: var(--text);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.btn--ghost {
  background: rgba(255,255,255,.07);
  color: var(--text-2);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); color: var(--text); }
.btn--ghost-light {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff;
}
.btn--ghost-light:hover { background: rgba(255,255,255,.18); }
.btn--search {
  background: var(--accent);
  color: #fff;
  font-size: 15px; padding: 0 28px;
  border-radius: var(--radius);
  height: 52px; font-weight: 700;
  min-width: 130px; flex-shrink: 0;
}
.btn--search:hover { background: var(--accent-2); box-shadow: 0 6px 20px var(--accent-glow); }

/* ═══════════════════════════════════════════
   AGE GATE
═══════════════════════════════════════════ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(247,37,133,.14), transparent 32%),
    radial-gradient(circle at 85% 85%, rgba(255,95,160,.12), transparent 24%),
    rgba(6, 4, 10, .92);
  backdrop-filter: blur(14px);
}
.age-gate__box {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  padding: 52px 48px 40px;
  text-align: center;
  background: linear-gradient(180deg, rgba(25,22,30,.96), rgba(18,16,24,.96));
  border: 1px solid rgba(247,37,133,.38);
  border-radius: 18px;
  box-shadow:
    0 24px 90px rgba(0,0,0,.65),
    0 0 0 1px rgba(247,37,133,.08) inset;
}
.age-gate__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 30px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(247,37,133,.12);
  border: 1px solid rgba(247,37,133,.28);
  color: var(--accent-3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.age-gate__title {
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #e85ad0;
  margin-bottom: 18px;
}
.age-gate__text {
  max-width: 540px;
  margin: 0 auto 34px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.86);
}
.age-gate__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.age-gate__btn {
  min-width: 210px;
  height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.age-gate__btn--exit {
  color: #fff;
  background: #4b4a54;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.age-gate__btn--exit:hover {
  background: #5a5964;
  color: #fff;
  transform: translateY(-1px);
}
.age-gate__btn--enter {
  color: #fff;
  background: linear-gradient(90deg, #f72585 0%, #b5179e 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 10px 30px rgba(247,37,133,.36);
}
.age-gate__btn--enter:hover {
  color: #fff;
  background: linear-gradient(90deg, #ff4b99 0%, #d41db3 100%);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 14px 38px rgba(247,37,133,.42);
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(9, 6, 11, .96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(247,37,133,.26);
  box-shadow: 0 10px 28px rgba(0,0,0,.26);
  transition: background .3s, box-shadow .3s;
}
.header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(247,37,133,0) 0%, rgba(247,37,133,.8) 18%, rgba(247,37,133,.3) 50%, rgba(247,37,133,.8) 82%, rgba(247,37,133,0) 100%);
}
.header.scrolled {
  background: rgba(9, 6, 11, .99);
  box-shadow: 0 18px 36px rgba(0,0,0,.4);
}
.header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 28px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  justify-self: start;
}
.header .header__logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 700;
  color: #f04eb5;
  letter-spacing: -.035em;
  line-height: 1;
}
.header .header__logo-accent { color: inherit; }

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: 0;
  justify-self: center;
}
.header__nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  padding: 8px 0;
  border-radius: 0;
  transition: color .2s ease;
}
.header__nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(247,37,133,.8), rgba(217,70,239,.95));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.header__nav-link:hover,
.header__nav-link.active {
  color: #fff;
  background: transparent;
}
.header__nav-link:hover::after,
.header__nav-link.active::after {
  transform: scaleX(1);
}

.header__controls {
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  justify-self: end;
}

.header__signin {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  padding: 0;
  border-radius: 0;
  transition: opacity .2s ease;
}
.header__signin::before {
  content: '';
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.92);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='7' r='3.2' stroke='white' stroke-width='1.7'/%3E%3Cpath d='M3.8 16.2c0-3.2 2.8-5.8 6.2-5.8s6.2 2.6 6.2 5.8' stroke='white' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 18px 18px no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.header__signin:hover {
  color: #fff;
  opacity: .82;
  background: transparent;
}

/* Lang Switcher */
.lang-switcher { position: relative; }
.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  transition: opacity .2s ease;
}
.lang-switcher__btn:hover { color: #fff; background: transparent; opacity: .82; }
.lang-switcher__arrow { width: 10px; transition: transform .2s; }
.lang-switcher.open .lang-switcher__arrow { transform: rotate(180deg); }
.lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  right: -10px;
  background: rgba(17,17,24,.98);
  border: 1px solid rgba(247,37,133,.2);
  border-radius: 16px;
  min-width: 150px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  padding: 8px 0;
}
.lang-switcher.open .lang-switcher__dropdown { display: block; }
.lang-switcher__dropdown li button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  font-size: 14px;
  color: rgba(255,255,255,.86);
  transition: var(--transition);
}
.lang-switcher__dropdown li button:hover { background: rgba(255,255,255,.06); color: #fff; }

.header__controls > .btn--primary.btn--sm {
  min-width: 128px;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  background: linear-gradient(90deg, #e9389f 0%, #9f33dc 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 10px 28px rgba(233,56,159,.34);
}
.header__controls > .btn--primary.btn--sm:hover {
  background: linear-gradient(90deg, #ff4aae 0%, #b344ef 100%);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 14px 34px rgba(233,56,159,.42);
}

.header__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: rgba(255,255,255,.06); border-radius: 14px; border: 1px solid rgba(247,37,133,.18); }
.header__burger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

.mobile-drawer {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--bg-2); border-bottom: 1px solid var(--border);
  z-index: 99; padding: 20px;
  transform: translateY(-10px); opacity: 0; pointer-events: none;
  transition: .25s ease;
}
.mobile-drawer.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-drawer__nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer__link { font-size: 16px; font-weight: 500; color: var(--text-2); padding: 12px 16px; border-radius: var(--radius); transition: var(--transition); }
.mobile-drawer__link:hover { background: rgba(255,255,255,.06); color: var(--text); }
.mobile-drawer__divider { border-color: var(--border); margin: 8px 0; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero { position: relative; padding: 96px 0 0; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(247,37,133,.1) 0%, transparent 70%); }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero__blob--1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(247,37,133,.13), transparent 70%); top: -100px; right: -100px; }
.hero__blob--2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(114,9,183,.1), transparent 70%); bottom: 0; left: -100px; }
.hero__content { position: relative; z-index: 1; text-align: center; max-width: 780px; margin: 0 auto; padding-bottom: 80px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(247,37,133,.1); border: 1px solid rgba(247,37,133,.3);
  color: var(--accent-3); font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}
.hero__title { font-size: clamp(36px, 6vw, 64px); font-weight: 800; line-height: 1.12; letter-spacing: -.03em; margin-bottom: 20px; }
.hero__title--accent { background: linear-gradient(135deg, var(--accent), #7209b7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__subtitle { font-size: 17px; color: var(--text-2); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }

.search-bar {
  display: flex; align-items: stretch; gap: 0;
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); padding: 8px;
  margin-bottom: 24px; box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.search-bar__field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: var(--text-2);
  transition: var(--transition);
}
.search-bar__field + .search-bar__field { border-left: 1px solid var(--border); }
.search-bar__field:hover,
.search-bar__field:focus-within {
  color: var(--text);
}
.search-bar__icon { width: 18px; height: 18px; flex-shrink: 0; color: currentColor; }
.search-bar__select {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
}
.search-bar__select option { background: var(--bg-3); color: var(--text); }

.hero__tags { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; }
.hero__tag-label { font-size: 13px; color: var(--text-3); }
.tag { font-size: 13px; font-weight: 500; color: var(--text-2); padding: 5px 14px; border-radius: 100px; background: rgba(255,255,255,.06); border: 1px solid var(--border); transition: var(--transition); }
.tag:hover { color: var(--accent); border-color: rgba(247,37,133,.4); background: rgba(247,37,133,.08); }

.stats-bar { position: relative; z-index: 1; background: var(--bg-2); border-top: 1px solid var(--border); }
.stats-bar__inner { display: flex; align-items: center; justify-content: center; padding: 20px 0; }
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 48px; }
.stat__num { font-size: 26px; font-weight: 800; color: var(--accent); letter-spacing: -.02em; line-height: 1; }
.stat__label { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
.stat__divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   FILTERS
═══════════════════════════════════════════ */
.filters-section { padding: 28px 0 0; }
.filters-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.filters-bar__left { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filters-bar__right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.filter-chip { font-size: 13px; font-weight: 500; color: var(--text-2); padding: 7px 16px; border-radius: 100px; background: rgba(255,255,255,.06); border: 1px solid var(--border); transition: var(--transition); }
.filter-chip:hover { color: var(--text); border-color: var(--border-2); }
.filter-chip--active { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 700; }
.filter-chip--active:hover { background: var(--accent-2); border-color: var(--accent-2); }

.results-count { font-size: 13px; color: var(--text-3); white-space: nowrap; }

.view-toggle { display: flex; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.view-toggle__btn { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; color: var(--text-3); transition: var(--transition); }
.view-toggle__btn:hover { color: var(--text); background: rgba(255,255,255,.06); }
.view-toggle__btn--active { color: var(--accent); background: rgba(247,37,133,.1); }

/* ═══════════════════════════════════════════
   PROFILE CARDS
═══════════════════════════════════════════ */
.profiles-section { padding: 24px 0 60px; }
.profiles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.profile-card {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer; position: relative;
}
.profile-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.5); border-color: rgba(247,37,133,.25); }

.profile-card__img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--bg-2); }
.profile-card__img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .4s ease; display: block; }
.profile-card:hover .profile-card__img { transform: scale(1.04); }

.profile-card__badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 5px; flex-wrap: wrap; }
.badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 3px 8px; border-radius: 100px; backdrop-filter: blur(8px); }
.badge--vip      { background: var(--accent); color: #fff; }
.badge--new      { background: rgba(251,146,60,.9); color: #fff; }
.badge--online   { background: rgba(34,197,94,.85); color: #fff; }
.badge--verified { background: rgba(99,102,241,.85); color: #fff; }

.profile-card__fav {
  position: absolute; top: 48px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(0,0,0,.55); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  backdrop-filter: blur(4px); transition: transform .2s, background .2s;
  cursor: pointer;
}
.profile-card__fav:hover { transform: scale(1.15); background: rgba(0,0,0,.75); }
.profile-card__fav.active { color: var(--accent); }

.profile-card__price-tag {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,.75); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm);
  padding: 4px 10px; font-size: 13px; font-weight: 700; color: var(--accent-3);
}

.profile-card__body { padding: 14px 16px 16px; }
.profile-card__name-row { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.profile-card__name { font-size: 15px; font-weight: 700; }
.profile-card__age { font-size: 13px; color: var(--text-3); }
.profile-card__check { margin-left: auto; color: var(--accent); font-size: 14px; }

.profile-card__location { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-3); margin-bottom: 10px; }
.profile-card__location svg { width: 12px; height: 12px; }

.profile-card__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.profile-card__tag { font-size: 11px; color: var(--text-3); background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 100px; padding: 3px 9px; }

.profile-card__footer { display: flex; gap: 8px; }
.profile-card__btn {
  flex: 1; font-size: 12px; font-weight: 600; padding: 8px;
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  color: var(--text-2); background: rgba(255,255,255,.04);
  display: flex; align-items: center; justify-content: center; gap: 4px;
  transition: var(--transition);
}
.profile-card__btn:hover { background: rgba(255,255,255,.08); color: var(--text); }
.profile-card__btn--primary { background: var(--accent); color: #fff; border-color: transparent; }
.profile-card__btn--primary:hover { background: var(--accent-2); box-shadow: 0 4px 12px var(--accent-glow); }

.load-more-wrap { display: flex; justify-content: center; margin-top: 40px; }

/* List mode */
.profiles-grid.list-mode { grid-template-columns: 1fr; }
.profiles-grid.list-mode .profile-card { display: flex; flex-direction: row; max-height: 200px; }
.profiles-grid.list-mode .profile-card__img-wrap { width: 150px; aspect-ratio: auto; flex-shrink: 0; }
.profiles-grid.list-mode .profile-card__body { flex: 1; }

/* ═══════════════════════════════════════════
   CITIES
═══════════════════════════════════════════ */
.cities-section { padding: 80px 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.section-header { text-align: center; margin-bottom: 44px; }
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 10px; }
.section-subtitle { font-size: 16px; color: var(--text-2); max-width: 480px; margin: 0 auto; }

.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.city-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; display: block; border: 1px solid var(--border); transition: transform .25s, box-shadow .25s, border-color .25s; }
.city-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.5); border-color: rgba(247,37,133,.3); }
.city-card__img { width: 100%; height: 100%; transition: transform .4s ease; background-size: cover; background-position: center; }
.city-card:hover .city-card__img { transform: scale(1.06); }
.city-card__img--dubai    { background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=800&q=75'); background-color: #0f3460; }
.city-card__img--abudhabi { background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/9/9c/Abu_dhabi_skylines_2014.jpg/960px-Abu_dhabi_skylines_2014.jpg'); background-color: #1a2a3a; }
.city-card__img--sharjah  { background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Al_Qasba.jpg/960px-Al_Qasba.jpg'); background-color: #103354; }
.city-card__img--ajman    { background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/3/33/Palacio_del_Emir_de_Ajm%C3%A1n.jpg/960px-Palacio_del_Emir_de_Ajm%C3%A1n.jpg'); background-color: #1e3020; }
.city-card__img--rak      { background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/7/76/View_of_Ras_Al_Khaimah_City_from_Julphar_Towers.jpg/960px-View_of_Ras_Al_Khaimah_City_from_Julphar_Towers.jpg'); background-color: #1a2030; }
.city-card__img--fujairah { background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/c/c7/Hills_in_Fujairah_2012_01.jpg/960px-Hills_in_Fujairah_2012_01.jpg'); background-color: #2a2010; }
.city-card__overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.85)); padding: 32px 18px 18px; display: flex; flex-direction: column; }
.city-card__name { font-size: 18px; font-weight: 700; color: #fff; }
.city-card__count { font-size: 13px; color: var(--accent-3); margin-top: 2px; }

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-section { padding: 80px 0; border-top: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px 32px; text-align: center; position: relative; transition: border-color .25s, transform .25s; }
.step-card:hover { border-color: rgba(247,37,133,.3); transform: translateY(-4px); }
.step-card__num { position: absolute; top: 16px; left: 20px; font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--text-3); }
.step-card__icon { width: 72px; height: 72px; background: rgba(247,37,133,.08); border: 1px solid rgba(247,37,133,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--accent); }
.step-card__title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step-card__text { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
.cta-section { padding: 0 0 80px; }
.cta-banner {
  position: relative; background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: var(--radius-xl); padding: 60px 64px; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(247,37,133,.07) 0%, transparent 70%); pointer-events: none; }
.cta-banner__content { position: relative; z-index: 1; max-width: 520px; }
.cta-banner__title { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 14px; }
.cta-banner__text { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 28px; }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-banner__art { position: relative; width: 200px; height: 200px; flex-shrink: 0; }
.cta-art-circle { position: absolute; border-radius: 50%; border: 1px solid; }
.cta-art-circle--1 { inset: 0; border-color: rgba(247,37,133,.2); animation: spin 20s linear infinite; }
.cta-art-circle--2 { inset: 20px; border-color: rgba(247,37,133,.15); animation: spin 14s linear infinite reverse; }
.cta-art-circle--3 { inset: 40px; background: rgba(247,37,133,.05); border-color: rgba(247,37,133,.3); }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-top: 60px; }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer__logo-link { margin-bottom: 16px; display: inline-flex; }
.footer__tagline { font-size: 14px; color: var(--text-3); line-height: 1.7; max-width: 240px; margin-bottom: 20px; }
.footer__socials { display: flex; gap: 8px; }
.footer__social { width: 36px; height: 36px; background: rgba(255,255,255,.06); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--text-3); transition: var(--transition); }
.footer__social:hover { background: rgba(255,255,255,.1); color: var(--text); }
.footer__col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-3); margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: var(--text-2); transition: color .2s; }
.footer__links a:hover { color: var(--accent); }
.footer__bottom { padding: 24px 0; display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.footer__disclaimer { font-size: 12px; color: var(--text-3); max-width: 700px; line-height: 1.7; }
.footer__copy { font-size: 12px; color: var(--text-3); }

/* ═══════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════ */
.breadcrumb-bar { background: var(--bg-2); border-bottom: 1px solid var(--border); }
.breadcrumb-bar__inner { display: flex; align-items: center; gap: 8px; padding: 12px 0; }
.breadcrumb-bar__link { font-size: 13px; color: var(--text-3); transition: color .2s; }
.breadcrumb-bar__link:hover { color: var(--accent); }
.breadcrumb-bar__sep { color: var(--text-3); font-size: 13px; }
.breadcrumb-bar__current { font-size: 13px; color: var(--text-2); }

/* ═══════════════════════════════════════════
   PROFILE PAGE
═══════════════════════════════════════════ */
.profile-main { padding: 40px 0 80px; }

.profile-layout {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
}

/* Gallery */
.profile-gallery {}
.profile-gallery__main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-3);
}
.profile-gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.profile-fav-btn {
  position: absolute; top: 14px; right: 14px;
  width: 44px; height: 44px;
  background: rgba(22,22,31,.85); backdrop-filter: blur(8px);
  border: 1.5px solid var(--border-2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); cursor: pointer;
  transition: var(--transition);
}
.profile-fav-btn:hover { color: var(--accent); border-color: var(--accent); background: rgba(247,37,133,.15); }
.profile-fav-btn.active { color: var(--accent); border-color: var(--accent); background: rgba(247,37,133,.15); }
.profile-fav-btn.active #fav-icon path { fill: var(--accent); stroke: var(--accent); }

.profile-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.gallery-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
  background: var(--bg-3);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.gallery-thumb:hover,
.gallery-thumb.active { border-color: var(--accent); }

/* Details panel */
.profile-details { position: sticky; top: calc(var(--header-h) + 20px); }

.profile-header-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.profile-name { font-size: 40px; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
.profile-location { font-size: 15px; color: var(--text-2); margin-top: 6px; }

.profile-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

.profile-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.profile-stat { display: flex; align-items: center; gap: 12px; }
.profile-stat__icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2); flex-shrink: 0;
}
.profile-stat__info { display: flex; flex-direction: column; }
.profile-stat__val { font-size: 18px; font-weight: 700; color: var(--text); line-height: 1.2; }
.profile-stat__label { font-size: 12px; color: var(--text-3); margin-top: 2px; }

.profile-section-title { font-size: 20px; font-weight: 700; color: var(--accent); margin-bottom: 14px; }

.profile-about-text { font-size: 14px; color: var(--text-2); line-height: 1.8; margin-bottom: 0; }

.profile-services { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  font-size: 13px; padding: 7px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-2);
  color: var(--text);
  transition: var(--transition);
}
.service-tag:hover { border-color: var(--accent); color: var(--accent); background: rgba(247,37,133,.08); }

.profile-rates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.rate-box {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  transition: border-color .2s;
}
.rate-box:hover { border-color: var(--accent); }
.rate-box__price { font-size: 24px; font-weight: 800; color: var(--text); letter-spacing: -.02em; }
.rate-box__duration { font-size: 12px; color: var(--text-3); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }

.profile-contact-block { display: flex; gap: 12px; margin-top: 28px; }
.profile-contact-btn { flex: 1; justify-content: center; }

/* Related */
.related-section { padding-top: 20px; border-top: 1px solid var(--border); }

/* ═══════════════════════════════════════════
   INNER PAGES (about, escort, etc.)
═══════════════════════════════════════════ */
.page-hero {
  padding: 60px 0;
  text-align: center;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(247,37,133,.08) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}
.page-hero__title { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 12px; }
.page-hero__sub { font-size: 16px; color: var(--text-2); max-width: 480px; margin: 0 auto; }

.content-section { padding: 0 0 80px; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.content-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.content-card__icon { font-size: 36px; margin-bottom: 16px; }
.content-card__title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.content-card__text { font-size: 14px; color: var(--text-2); line-height: 1.7; }

.about-page {
  position: relative;
  padding: 40px 0 100px;
  overflow: hidden;
  isolation: isolate;
}

.about-page::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 0%, rgba(247,37,133,.12), transparent 32%),
    radial-gradient(circle at 18% 28%, rgba(255,95,160,.09), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(181,23,158,.08), transparent 24%);
  pointer-events: none;
}

.about-page__hero {
  padding: 26px 0 44px;
  text-align: center;
}

.about-page__hero-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.about-page__title {
  font-size: clamp(42px, 5.8vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.06em;
  color: #fff;
  text-wrap: balance;
}

.about-page__lead {
  max-width: 930px;
  margin: 18px auto 0;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,.84);
  text-wrap: balance;
}

.about-page__content {
  padding-top: 10px;
}

.about-page__section-title {
  margin-bottom: 30px;
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: #ee53cd;
  text-shadow:
    0 0 18px rgba(247,37,133,.4),
    0 0 42px rgba(247,37,133,.18);
}

.about-page__panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 28px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(19,19,24,.98) 0%, rgba(13,13,18,.98) 100%);
  box-shadow:
    0 18px 48px rgba(0,0,0,.44),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.about-feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px 8px;
  transition: background .28s ease, transform .28s ease, box-shadow .28s ease;
}

.about-feature + .about-feature {
  border-top: 1px solid rgba(255,255,255,.07);
}

.about-feature:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.02);
  box-shadow: inset 0 0 0 1px rgba(247,37,133,.08);
}

.about-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff5fb8;
  background: radial-gradient(circle at 50% 25%, rgba(247,37,133,.24), rgba(247,37,133,.08) 72%);
  border: 1px solid rgba(247,37,133,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.about-feature__icon svg {
  width: 24px;
  height: 24px;
}

.about-feature__title {
  margin-bottom: 8px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: #fff;
}

.about-feature__text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.68);
  max-width: 760px;
}

.escort-page {
  position: relative;
  padding: 36px 0 72px;
  overflow: hidden;
}

body[data-page="escort"]::before,
body[data-page="escort"]::after {
  content: '';
  position: fixed;
  top: var(--header-h);
  bottom: 0;
  width: min(23vw, 340px);
  min-width: 220px;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(10,8,14,.08), rgba(10,8,14,.74)),
    linear-gradient(90deg, rgba(247,37,133,.26), transparent 16%, transparent 84%, rgba(247,37,133,.26)),
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255,255,255,.18) 50%, transparent calc(50% + 1px)),
    url('assets/images/escort-side-model.jpg') 44% 22% / 250% auto no-repeat;
  box-shadow:
    inset 0 0 80px rgba(0,0,0,.68),
    0 0 0 1px rgba(247,37,133,.16);
  opacity: .88;
}

body[data-page="escort"]::before {
  left: clamp(20px, 5vw, 70px);
  background-position: 44% 22%;
}

body[data-page="escort"]::after {
  right: clamp(20px, 5vw, 70px);
  transform: scaleX(-1);
  background-position: 44% 22%;
}

body[data-page="escort"] .header,
body[data-page="escort"] main,
body[data-page="escort"] .footer {
  position: relative;
  z-index: 1;
}

.escort-page::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(247,37,133,.12), transparent 28%),
    radial-gradient(circle at 15% 18%, rgba(114,9,183,.08), transparent 20%),
    radial-gradient(circle at 85% 20%, rgba(247,37,133,.08), transparent 20%);
  pointer-events: none;
}

.escort-shell__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.escort-layout {
  max-width: 1140px;
  margin: 0 auto;
}

.escort-main {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.escort-hero {
  padding: 8px 0 28px;
  text-align: center;
}

.escort-hero__title {
  font-size: clamp(42px, 5.8vw, 72px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.05em;
  color: #fff;
}

.escort-hero__sub {
  max-width: 660px;
  margin: 16px auto 0;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
  color: rgba(255,255,255,.76);
}

.escort-controls {
  margin-bottom: 8px;
}

.escort-filter-panel {
  padding: 18px 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(21,19,26,.98), rgba(15,14,19,.98));
  box-shadow:
    0 18px 40px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.escort-filter-panel__grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 18px 22px;
  align-items: end;
}

.escort-filter-field {
  min-width: 0;
}

.escort-filter-field__label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.86);
}

.escort-filter-field__control {
  position: relative;
}

.escort-filter-field__caret {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 12px;
  height: 8px;
  transform: translateY(-50%);
  color: rgba(255,255,255,.66);
  pointer-events: none;
}

.escort-filter-field__input {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: var(--font);
  font-size: 16px;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.escort-filter-field__input:focus {
  border-color: rgba(247,37,133,.75);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 4px rgba(247,37,133,.12);
}

.escort-filter-field__input::placeholder {
  color: rgba(255,255,255,.36);
}

.escort-filter-field__select {
  padding-right: 44px;
  appearance: none;
  cursor: pointer;
}

.escort-filter-field__select option {
  background: #1a1820;
  color: #fff;
}

.escort-filter-range {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  direction: ltr;
}

.escort-filter-range__dash {
  text-align: center;
  font-size: 18px;
  color: rgba(255,255,255,.5);
}

.escort-filter-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.escort-filter-actions__btn {
  flex: 1;
  height: 56px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
}

.escort-filter-actions__btn--ghost {
  background: #54525c;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.escort-filter-actions__btn--ghost:hover {
  background: #65636e;
  color: #fff;
}

.escort-filter-actions__btn--primary {
  color: #fff;
  background: linear-gradient(90deg, #f72585 0%, #c92bc3 100%);
  box-shadow: 0 12px 28px rgba(247,37,133,.24);
}

.escort-filter-actions__btn--primary:hover {
  color: #fff;
  background: linear-gradient(90deg, #ff3f97 0%, #dc37d6 100%);
}

.escort-page__chips {
  padding-top: 18px;
}

.escort-page__profiles {
  padding-top: 24px;
}

.escort-page .profiles-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.escort-page .filter-chip {
  min-height: 36px;
}

.profile-card--editorial {
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: default;
}

.profile-card--editorial:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.profile-card--editorial .profile-card__img-wrap {
  aspect-ratio: 0.67;
  min-height: 410px;
  container-type: inline-size;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 22px 48px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.profile-card--editorial .profile-card__img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,8,14,.04) 0%, rgba(10,8,14,.18) 30%, rgba(10,8,14,.88) 100%);
  pointer-events: none;
}

.profile-card--editorial .profile-card__img {
  object-position: center top;
}

.profile-card--editorial .profile-card__badges,
.profile-card--editorial .profile-card__fav,
.profile-card--editorial .profile-card__gallery-stack,
.profile-card--editorial .profile-card__editorial {
  z-index: 2;
}

.profile-card--editorial .profile-card__badges {
  top: 12px;
  left: 12px;
}

.profile-card--editorial .badge {
  font-size: 11px;
  padding: 5px 10px;
}

.profile-card--editorial .profile-card__fav {
  top: 48px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: rgba(10,10,14,.52);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
}

.profile-card__gallery-stack {
  position: absolute;
  top: 100px;
  right: 12px;
  width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.profile-card__gallery-item {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid rgba(247,37,133,.9);
  background: rgba(18,18,24,.85);
  box-shadow:
    0 8px 20px rgba(0,0,0,.42),
    0 0 0 2px rgba(255,255,255,.08);
}

.profile-card__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card__editorial {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 90px 16px 16px;
}

.profile-card__editorial-copy {
  max-width: none;
}

.profile-card__editorial-name {
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 8px;
}

.profile-card__editorial-line {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
  margin-bottom: 7px;
}

.profile-card__editorial-price {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 800;
  color: #ff4fa7;
  text-shadow: 0 0 18px rgba(247,37,133,.18);
}

.profile-card__editorial-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.profile-card__editorial-btn {
  min-height: 58px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  padding: 10px 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.profile-card__editorial-btn:hover {
  transform: translateY(-1px);
}

.profile-card__editorial-btn--ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.profile-card__editorial-btn--ghost:hover {
  color: #fff;
  background: rgba(255,255,255,.18);
}

.profile-card__editorial-btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #ef2cad 0%, #b920ca 100%);
  box-shadow: 0 18px 30px rgba(247,37,133,.24);
}

.profile-card__editorial-btn--primary:hover {
  color: #fff;
  background: linear-gradient(180deg, #ff41b7 0%, #cb2de1 100%);
}

.profile-card--editorial .profile-card__body,
.profile-card--editorial .profile-card__price-tag {
  display: none;
}

.profiles-grid.list-mode .profile-card--editorial {
  display: block;
  max-height: none;
}

.profiles-grid.list-mode .profile-card--editorial .profile-card__img-wrap {
  width: 100%;
  aspect-ratio: 0.67;
}

@container (max-width: 300px) {
  .profile-card__gallery-stack {
    top: 92px;
    right: 10px;
    width: 52px;
    gap: 7px;
  }

  .profile-card__gallery-item {
    width: 48px;
    height: 48px;
    box-shadow:
      0 8px 16px rgba(0,0,0,.24),
      0 0 0 2px rgba(255,255,255,.08);
  }

  .profile-card__editorial {
    right: 0;
    padding: 0 68px 12px 12px;
  }

  .profile-card__editorial-copy {
    max-width: none;
  }

  .profile-card__editorial-name {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .profile-card__editorial-line {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .profile-card__editorial-price {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .profile-card__editorial-actions {
    gap: 8px;
  }

  .profile-card__editorial-btn {
    min-height: 50px;
    font-size: 13px;
    padding: 8px 10px;
  }
}

.contact-form { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 48px; max-width: 640px; margin: 0 auto; }
.contact-form__title { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.contact-form__sub { font-size: 14px; color: var(--text-2); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 8px; letter-spacing: .02em; }
.form-input, .form-textarea, .form-select {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--border-2);
  border-radius: var(--radius); color: var(--text); font-family: var(--font); font-size: 14px;
  padding: 12px 16px; outline: none; transition: border-color .2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--accent); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--bg-3); }

.apartments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.apt-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s, border-color .25s; cursor: pointer; }
.apt-card:hover { transform: translateY(-4px); border-color: rgba(247,37,133,.25); }
.apt-card__img {
  aspect-ratio: 16/9; display: flex; align-items: flex-end; justify-content: flex-start;
  position: relative; overflow: hidden;
}
.apt-card__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
}
.apt-card__icon-label {
  position: relative; z-index: 1;
  font-size: 22px; font-weight: 800; color: #fff;
  padding: 16px 20px; letter-spacing: .01em;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.apt-card__img--1 { background-color: #1a1433; }
.apt-card__img--2 { background-color: #0d1f2d; }
.apt-card__img--3 { background-color: #1f1a0d; }
.apt-card__img--4 { background-color: #1a0d1f; }
.apt-card__img--5 { background-color: #0d1f1a; }
.apt-card__img--6 { background-color: #1f0d0d; }
.apt-card__body { padding: 20px; }
.apt-card__title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.apt-card__meta { font-size: 13px; color: var(--text-3); margin-bottom: 12px; }
.apt-card__price { font-size: 18px; font-weight: 800; color: var(--accent); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .profiles-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .profile-layout { grid-template-columns: 50% 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .header__nav, .header__signin { display: none; }
  .header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
  }
  .header__controls {
    gap: 12px;
  }
  .header__controls > .btn--primary.btn--sm {
    min-width: 110px;
    height: 42px;
    padding: 0 20px;
    font-size: 15px;
  }
  .header__burger { display: flex; }
  .mobile-drawer { display: block; }
  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; padding: 40px 32px; }
  .cta-banner__art { display: none; }
  .stats-bar__inner { flex-wrap: wrap; gap: 16px; }
  .stat { padding: 8px 24px; }
  .stat__divider { display: none; }
  .search-bar { flex-direction: column; gap: 8px; padding: 12px; border-radius: var(--radius); }
  .search-bar__field { border-left: none !important; padding: 10px 12px; background: rgba(255,255,255,.04); border-radius: var(--radius-sm); border: 1px solid var(--border); }
  .btn--search { width: 100%; height: 48px; }
  .filters-bar { flex-direction: column; align-items: flex-start; }
  .profile-layout { grid-template-columns: 1fr; }
  .profile-details { position: static; }
  .content-grid { grid-template-columns: 1fr; }
  .apartments-grid { grid-template-columns: repeat(2, 1fr); }
  .escort-shell__container { padding: 0 20px; }
  .escort-filter-panel__grid { grid-template-columns: 1fr 1fr; }
  .escort-filter-actions { grid-column: 1 / -1; }
  .escort-page .profiles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-card__editorial-name { font-size: 24px; }
  .profile-card__gallery-stack { top: 100px; }
  .about-page { padding: 24px 0 80px; }
  .about-page__hero { padding: 10px 0 32px; }
  .about-page__panel { padding: 14px 18px; }
  .about-feature { grid-template-columns: 1fr; gap: 14px; padding: 22px 2px; }
  .about-feature__text { font-size: 15px; }
}
@media (max-width: 600px) {
  .profiles-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__brand { grid-column: 1 / -1; }
  .hero__content { padding-bottom: 56px; }
  .age-gate__box { padding: 38px 26px 30px; }
  .age-gate__title { font-size: 32px; }
  .age-gate__text { font-size: 16px; }
  .age-gate__actions { flex-direction: column; gap: 12px; }
  .age-gate__btn { width: 100%; min-width: 0; font-size: 20px; }
  .profile-name { font-size: 28px; }
  .profile-rates { grid-template-columns: 1fr 1fr 1fr; }
  .contact-form { padding: 28px 20px; }
  .apartments-grid { grid-template-columns: 1fr; }
  .escort-page { padding: 20px 0 56px; }
  .escort-hero { padding-bottom: 22px; }
  .escort-hero__title { font-size: clamp(34px, 12vw, 48px); }
  .escort-hero__sub { margin-top: 12px; font-size: 15px; }
  .escort-filter-panel { padding: 14px; }
  .escort-filter-panel__grid { grid-template-columns: 1fr; gap: 16px; }
  .escort-filter-field__label { margin-bottom: 8px; font-size: 14px; }
  .escort-filter-actions { grid-column: auto; flex-direction: column; }
  .escort-filter-actions__btn { width: 100%; }
  .escort-page .profiles-grid { grid-template-columns: 1fr; }
  .profile-card--editorial .profile-card__img-wrap { min-height: 420px; }
  .profile-card__gallery-stack {
    top: 96px;
    right: 12px;
    width: 60px;
    gap: 7px;
  }
  .profile-card__gallery-item {
    width: 56px;
    height: 56px;
  }
  .profile-card__editorial {
    right: 0;
    padding: 0 78px 14px 14px;
  }
  .profile-card__editorial-copy {
    max-width: none;
  }
  .profile-card__editorial-name { font-size: 21px; }
  .profile-card__editorial-line { font-size: 13px; }
  .profile-card__editorial-price { font-size: 13px; margin-bottom: 12px; }
  .profile-card__editorial-actions { gap: 10px; }
  .profile-card__editorial-btn {
    min-height: 52px;
    font-size: 13px;
  }
  .about-page__title { font-size: clamp(34px, 12vw, 48px); }
  .about-page__lead { margin-top: 16px; font-size: 15px; }
  .about-page__section-title { margin-bottom: 22px; }
  .about-page__panel { padding: 12px 14px; border-radius: 16px; }
  .about-feature__icon { width: 44px; height: 44px; }
  .about-feature__title { font-size: 20px; }
  .about-feature__text { font-size: 15px; }
  body[data-page="escort"]::before,
  body[data-page="escort"]::after {
    display: none;
  }
}
@media (max-width: 420px) {
  .cities-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 28px 20px; }
  .profile-contact-block { flex-direction: column; }
  .profile-rates { gap: 8px; }
  .rate-box__price { font-size: 18px; }
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.profile-card__img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.listing-search {
  margin-bottom: 0;
}

.search-bar__input {
  appearance: none;
  cursor: text;
}

.search-bar__input::placeholder {
  color: var(--text-3);
}

.empty-state {
  margin-bottom: 24px;
  padding: 32px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-2);
  background: rgba(255,255,255,.03);
}

.empty-state__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.empty-state__text {
  color: var(--text-2);
  font-size: 14px;
}

.status-banner {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(34,197,94,.32);
  background: rgba(34,197,94,.12);
  color: #d6ffe2;
  font-size: 14px;
  line-height: 1.6;
}

.profile-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.profile-badge-row .badge {
  font-size: 11px;
  padding: 5px 10px;
}

.profile-note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-2);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 12px;
}

.profile-note strong {
  color: var(--text);
}

@media (max-width: 900px) {
  .profile-note-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .header__inner {
  grid-template-columns: minmax(260px, 1fr) auto minmax(180px, 1fr);
}

html[dir="rtl"] .header__nav {
  margin-right: 0;
}

html[dir="rtl"] .header__controls {
  justify-self: start;
}

html[dir="rtl"] .header__logo {
  justify-self: end;
}

html[dir="rtl"] .search-bar__field + .search-bar__field {
  border-left: none;
  border-right: 1px solid var(--border);
}

html[dir="rtl"] .search-bar__field {
  flex-direction: row-reverse;
}

html[dir="rtl"] .escort-filter-field__caret {
  left: 18px;
  right: auto;
}

html[dir="rtl"] .escort-filter-actions {
  flex-direction: row-reverse;
}

html[dir="rtl"] .lang-switcher__dropdown {
  left: 0;
  right: auto;
  text-align: right;
}

html[dir="rtl"] .mobile-drawer__nav,
html[dir="rtl"] .content-card,
html[dir="rtl"] .contact-form,
html[dir="rtl"] .profile-details,
html[dir="rtl"] .footer {
  text-align: right;
}

html[dir="rtl"] .breadcrumb-bar__inner {
  flex-direction: row-reverse;
}

html[dir="rtl"] .about-feature {
  grid-template-columns: 1fr 56px;
}

html[dir="rtl"] .about-feature__icon {
  justify-self: end;
}

@media (max-width: 600px) {
  html[dir="rtl"] .escort-filter-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header,
  main,
  .footer {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
