:root{
  /* Цвета и размеры — без изменений */
  --bg-main:#050711;
  --bg-elevated:#0c0f1d;
  --accent:#ff3465;
  --accent-soft:rgba(255,52,101,.1);
  --text-main:#f5f5f7;
  --text-muted:#b2b7c9;
  --text-body:#c2c7da;
  --border-soft:rgba(255,255,255,.08);
  --card-radius:18px;
  --transition-fast:.2s ease-out;
  --shadow-soft:0 18px 40px rgba(0,0,0,.35);
  --max-width:1200px;

  /* Новые стеки шрифтов */
  --font-display: "Prata", "Times New Roman", Times, serif;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

body{
  font-family:var(--font-sans);
  background:radial-gradient(circle at top, #222842 0, #050711 45%);
  color:var(--text-main);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

p{
  color:var(--text-body);
  font-size:16.5px;
}

/* Ссылки/картинки — без изменений */
a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; }

/* Заголовки на Prata */
h1,h2,.display{
  font-family:var(--font-display);
  font-weight:400;
  letter-spacing:.2px;
}
h1{ font-size:clamp(28px, 4vw, 48px); line-height:1.15; }
h2{ font-size:clamp(22px, 3vw, 32px); line-height:1.2; }

/* Мелкие подписи/мути */
.muted, small{ color:var(--text-muted); }


.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(
          to bottom,
          rgba(5, 7, 17, 0.9),
          rgba(5, 7, 17, 0.7),
          transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.18), rgba(255, 52, 101, 0.05));
}

.logo-subtitle {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.16em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--text-muted);
}

.nav a {
  position: relative;
  padding-bottom: 2px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #ff9f6a);
  border-radius: 999px;
  transition: width var(--transition-fast);
}

.nav a:hover {
  color: #ffffff;
}

.nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: flex;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lang-switch span {
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
}

.lang-switch a {
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: inherit;
}

.lang-switch span.active {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.lang-switch a.active {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 500;
  transition: transform var(--transition-fast),
  box-shadow var(--transition-fast),
  background var(--transition-fast),
  color var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff9f6a);
  color: #050711;
  box-shadow: 0 14px 30px rgba(255, 52, 101, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(255, 52, 101, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.btn-sm {
  padding: 7px 14px;
  font-size: 12px;
}

.burger {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.burger-line {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  position: relative;
}

.burger-line::before,
.burger-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.burger-line::before {
  top: -5px;
}

.burger-line::after {
  bottom: -5px;
}

/* HERO */

.hero {
  padding: 40px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #fff, var(--accent));
  box-shadow: 0 0 0 7px rgba(255, 52, 101, 0.18);
}

.hero-title {
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.hero-title span {
  background: linear-gradient(135deg, #ffffff, #ff9f6a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 16px;
  color: var(--text-muted);
}

.hero-meta-item {
  display: flex;
  gap: 6px;
  align-items: center;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 159, 106, 0.6);
  background: rgba(255, 159, 106, 0.14);
  color: #ffd2a6;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 rgba(255, 159, 106, 0.0);
  animation: highlightPulse 2.8s ease-in-out infinite;
}

.highlight-pill--cool {
  border-color: rgba(132, 198, 255, 0.55);
  background: rgba(132, 198, 255, 0.14);
  color: #dbeaff;
  animation: none;
}

@keyframes highlightPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(255, 159, 106, 0.0);
  }
  50% {
    box-shadow: 0 0 14px rgba(255, 159, 106, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .highlight-pill {
    animation: none;
  }
}

.hero-card {
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.24), rgba(5, 7, 17, 0.9));
  border-radius: 28px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: rgba(5, 7, 17, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card-main {
  display: flex;
  gap: 16px;
}

.hero-card-photo {
  position: relative;
  flex: 0 0 44%;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(145deg, #2e324c, #151729);
}

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

.hero-card-photo-gradient {
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(5, 7, 17, 0.9), transparent);
}

.hero-card-info {
  flex: 1;
  margin-top: 10%;
}

.hero-card-name {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
}

.hero-card-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.hero-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.tag {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(5, 7, 17, 0.6);
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-top: 8px;
}

.hero-card-price {
  display: flex;
  flex-direction: column;
}

.hero-card-price span:first-child {
  color: var(--text-muted);
  font-size: 11px;
}

.hero-card-price span:last-child {
  font-weight: 600;
}

/* SECTIONS */

.section {
  padding: 24px 0 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 18px;
}

.section-title-group {
  max-width: 560px;
}

.section-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.section-title {
  font-size: 22px;
  margin-bottom: 4px;
}

.section-title--compact {
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: radial-gradient(circle at 0 0, rgba(255, 111, 156, 0.08), transparent 55%),
              rgba(8, 10, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(255, 111, 156, 0.35);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 18px;
  line-height: 1;
  color: rgba(255, 111, 156, 0.8);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

/* About / Casting page illustration */

.about-page,
.casting-page {
  position: relative;
  overflow: hidden;
}

.page-illustration {
  position: absolute;
  right: -120px;
  top: 40px;
  width: 320px;
  height: 320px;
  pointer-events: none;
  opacity: 0.8;
}

.page-illustration svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 900px) {
  .page-illustration {
    position: relative;
    right: auto;
    top: auto;
    margin: 24px auto 0;
  }
}

/* FILTERS */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.filter-pill {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition-fast),
  color var(--transition-fast),
  border-color var(--transition-fast),
  transform var(--transition-fast);
}

.filter-pill span.dot-soft {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.filter-pill.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.filter-pill small {
  font-size: 11px;
  opacity: 0.8;
}

/* GIRLS GRID */

.girls-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.girl-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-fast),
  box-shadow var(--transition-fast),
  border-color var(--transition-fast),
  background var(--transition-fast);
  cursor: pointer;
}

.girl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.22);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), var(--bg-elevated));
}

.girl-card-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.girl-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.7s ease-out;
}

.girl-card:hover .girl-card-photo img {
  transform: scale(1.06);
}

.girl-card-label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(5, 7, 17, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.girl-card-label.hot {
  background: linear-gradient(135deg, var(--accent), #ff9f6a);
  color: #050711;
  border: none;
}

.girl-card-city {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(5, 7, 17, 0.85);
  color: #fff;
}

.girl-card-body {
  padding: 10px 12px 12px;
}

.girl-card-topline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.girl-tour-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff3d6;
  border: 1px solid rgba(255, 186, 120, 0.6);
  background: rgba(255, 186, 120, 0.16);
  margin: 2px 0 8px;
  box-shadow: 0 8px 20px rgba(255, 186, 120, 0.2);
}

.girl-name {
  font-size: 15px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.girl-age {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}

.girl-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.girl-meta span + span::before {
  content: "•";
  margin: 0 4px;
  opacity: 0.6;
}

.girl-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-top: 4px;
}

.girl-price {
  display: flex;
  flex-direction: column;
}

.girl-price span:first-child {
  color: var(--text-muted);
  font-size: 11px;
}

.girl-price span:last-child {
  font-weight: 600;
}

.girl-view {
  font-size: 12px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ABOUT */

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 30px;
}

.about-text {
  font-size: 14px;
  color: var(--text-muted);
}

.about-text p + p {
  margin-top: 10px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-card {
  padding: 12px 12px 12px;
  border-radius: 16px;
  background: rgba(9, 11, 26, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.about-card-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* BOOKING FORM */

.booking-form {
  max-width: 520px;
  background: rgba(5, 7, 17, 0.9);
  border-radius: 18px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.booking-form input,
.booking-form textarea {
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #050711;
  color: #fff;
  font-size: 13px;
  outline: none;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: var(--text-muted);
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--accent);
}

.booking-form textarea {
  resize: vertical;
}

.booking-note {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

/* PRIVATE FEEDBACK */

.private-feedback {
  position: relative;
  background: radial-gradient(900px 240px at 50% -60%, rgba(124, 245, 197, 0.18), transparent 60%);
}

.feedback-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.feedback-badge {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
}

.feedback-card {
  position: relative;
  background: rgba(5, 7, 17, 0.92);
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(124, 245, 197, 0.26);
  box-shadow: var(--shadow-soft);
  max-width: 760px;
  margin: 0 auto;
}

.feedback-card::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 12px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 245, 197, 0), rgba(124, 245, 197, 0.8), rgba(255, 159, 106, 0.8), rgba(124, 245, 197, 0));
  opacity: 0.8;
}

.feedback-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(124, 245, 197, 0.2);
  pointer-events: none;
}

.feedback-header {
  margin-bottom: 16px;
}

.private-feedback .section-kicker {
  color: #7cf5c5;
  letter-spacing: 0.26em;
}

.private-feedback .section-title {
  color: #f3fff8;
}

.private-feedback .section-subtitle {
  color: rgba(203, 242, 227, 0.78);
}

.private-feedback .feedback-badge {
  border-color: rgba(124, 245, 197, 0.35);
  background: rgba(124, 245, 197, 0.08);
  color: rgba(210, 255, 235, 0.85);
}

.telegram-channel {
  position: relative;
  background: radial-gradient(900px 280px at 50% -60%, rgba(90, 160, 255, 0.2), transparent 60%);
}

.telegram-card {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1.3fr);
  gap: 20px;
  align-items: center;
  background: rgba(7, 10, 20, 0.92);
  border-radius: 24px;
  border: 1px solid rgba(90, 160, 255, 0.25);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.telegram-channel .section-kicker {
  color: #7fb5ff;
  letter-spacing: 0.28em;
}

.telegram-channel .section-subtitle {
  color: rgba(200, 218, 255, 0.75);
}

.telegram-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 12px;
  display: grid;
  gap: 8px;
  color: #e7eeff;
  font-weight: 600;
}

.telegram-note {
  color: var(--text-muted);
  font-size: 14px;
}

.telegram-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
}

.telegram-badge {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(90, 160, 255, 0.4);
  color: #cde1ff;
  background: rgba(90, 160, 255, 0.12);
}

.telegram-btn {
  box-shadow: 0 12px 28px rgba(90, 160, 255, 0.35);
}

@media (max-width: 900px) {
  .telegram-card {
    grid-template-columns: 1fr;
  }
  .telegram-action {
    align-items: stretch;
  }
}

/* LOYALTY PROGRAM */
.loyalty-program {
  position: relative;
  background: radial-gradient(900px 260px at 50% -60%, rgba(255, 111, 156, 0.18), transparent 60%);
}

.loyalty-card {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  background: rgba(10, 8, 16, 0.92);
  border-radius: 24px;
  border: 1px solid rgba(255, 111, 156, 0.25);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.loyalty-program .section-kicker {
  color: #ff9fc0;
  letter-spacing: 0.28em;
}

.loyalty-program .section-subtitle {
  color: rgba(255, 220, 235, 0.75);
}

.loyalty-highlight {
  text-align: center;
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255, 111, 156, 0.12);
  border: 1px solid rgba(255, 111, 156, 0.35);
}

.loyalty-badge {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffd2e3;
  margin-bottom: 8px;
}

.loyalty-discount {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 12px 24px rgba(255, 111, 156, 0.35);
}

.loyalty-note {
  font-size: 13px;
  color: rgba(255, 220, 235, 0.85);
}

@media (max-width: 900px) {
  .loyalty-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .loyalty-highlight {
    text-align: left;
  }
}

.feedback-header .section-title {
  margin-bottom: 6px;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.feedback-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feedback-field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.feedback-field input,
.feedback-field textarea,
.feedback-field select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #050711;
  color: #fff;
  font-size: 13px;
  outline: none;
}

.feedback-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #ff9f6a 50%),
    linear-gradient(135deg, #ff9f6a 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.feedback-field input:focus,
.feedback-field textarea:focus,
.feedback-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 52, 101, 0.14);
}

.feedback-field textarea {
  min-height: 150px;
  resize: vertical;
}

.feedback-field--wide {
  grid-column: 1 / -1;
}

.feedback-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.feedback-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.feedback-status {
  font-size: 13px;
  color: #b9b9c6;
  min-height: 18px;
}

.feedback-status.is-error {
  color: #ff9aa6;
}

.feedback-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

/* CASTING */

.casting-text {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 12px;
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0 22px;
  margin-top: auto;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .girls-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .about {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .girls-grid {
    /* планшет и мобила: 2 в ряд */
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    position: fixed;
    inset: 56px 0 auto;
    padding: 12px 20px 16px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(5, 7, 17, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease-out, opacity 0.25s ease-out;
  }

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

  .burger {
    display: flex;
  }

  .header-inner {
    padding: 10px 0;
  }

  .hero {
    padding-top: 20px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-card {
    border-radius: 22px;
  }

  .about-highlights {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
  }
}

/* FILTER FIELDS (Paris page) */

.filter-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
}

.filter-field label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.filter-field select {
  min-width: 130px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 7, 17, 0.85);
  color: var(--text-main);
  font-size: 12px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.filter-field select:focus {
  border-color: var(--accent);
}

@media (max-width: 700px) {
  .filter-field select {
    min-width: 100px;
  }
}

/* ===== MOBILE HEADER PATCH ===== */
@media (max-width: 780px) {

  /* чтобы ничего не уезжало вбок */
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* хедер без размытия, плотнее */
  .header {
    backdrop-filter: none;
    background: radial-gradient(circle at top,
      rgba(5, 7, 17, 0.96),
      rgba(5, 7, 17, 0.92)
    );
  }

  .header-inner {
    padding: 8px 0;
    gap: 12px;
  }

  /* логотип компактнее, без мелкого подзаголовка */
  .logo {
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .logo-mark {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .logo-subtitle {
    display: none; /* убираем, чтобы не мылить и не ломать строку */
  }

  /* языки чуть мельче */
  .lang-switch {
    font-size: 10px;
    gap: 4px;
  }

  /* кнопка Book now поуже */
  .header-cta .btn-primary {
    padding: 7px 14px;
    font-size: 13px;
    box-shadow: 0 10px 22px rgba(255, 52, 101, 0.4);
  }

  /* новый дизайн бургера */
  .burger {
    display: flex;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--accent), #ff9f6a);
    box-shadow: 0 10px 22px rgba(255, 52, 101, 0.45);
  }

  .burger-line,
  .burger-line::before,
  .burger-line::after {
    background: #050711;   /* тёмные полоски на светлой кнопке */
    width: 16px;
    height: 2px;
  }

  /* выпадающее меню не даёт горизонтальный скролл */
  .nav {
    top: 56px;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: none;
    padding: 14px 20px 18px;
    box-sizing: border-box;
  }
}

/* MOBILE: align hero-card photo top with text, remove "empty slot" under photo */
@media (max-width: 768px) {
  .hero-card-main {
    align-items: flex-start; 
  }
  .hero-card-photo {
    top: 35px; 
  }
}

/* ===== GIRL PROFILE PAGE v2 ===== */

.girl-hero {
  padding-top: 40px;
}

.girl-profile h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
}

.girl-profile-main {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 32px;
  align-items: flex-start;
}

/* Галерея: большая фотка + миниатюры */
.girl-profile-photos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Большая фотка */
.girl-main-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #050509;
}

.girl-main-media {
  width: 100%;
  height: auto;
}

.girl-main-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Стрелки поверх большой фотки */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 10, 0.85);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  font-size: 18px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.gallery-arrow--prev {
  left: 10px;
}

.gallery-arrow--next {
  right: 10px;
}

.gallery-arrow:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-50%) scale(1.05);
}

/* Миниатюры под фото */
.girl-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
}

.girl-thumb {
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

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

.girl-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.girl-thumb.is-active,
.girl-thumb:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
}

/* Правая колонка — инфо */
.girl-profile-info {
  background: radial-gradient(circle at top left, rgba(255, 111, 156, 0.08), transparent 50%),
              rgba(8, 8, 14, 0.96);
  border-radius: 24px;
  padding: 24px 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.girl-tabs {
  margin-top: 6px;
}

.girl-tab-list {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.girl-tab {
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.girl-tab:hover {
  color: #fff;
  transform: translateY(-1px);
}

.girl-tab.is-active {
  background: linear-gradient(135deg, var(--accent), #ff9f6a);
  color: #050711;
  box-shadow: 0 12px 26px rgba(255, 52, 101, 0.35);
}

.girl-tab-panels {
  margin-top: 14px;
}

.girl-tab-panel {
  display: none;
}

.girl-tab-panel.is-active {
  display: block;
}

.girl-description {
  margin: 6px 0 14px;
  color: var(--text-muted);
  font-size: 14px;
}

.girl-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 18px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 8, 24, 0.8);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.5);
  filter: brightness(1.05);
}

.contact-pill--tg {
  background: linear-gradient(135deg, rgba(34, 158, 217, 0.95), rgba(83, 182, 241, 0.9));
  border-color: rgba(34, 158, 217, 0.6);
}

.contact-pill--wa {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.95), rgba(74, 208, 111, 0.9));
  border-color: rgba(37, 211, 102, 0.6);
}

.contact-icon svg,
.contact-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

.girl-profile-meta {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  font-size: 14px;
  color: #aaa;
}

.girl-profile-meta li + li {
  margin-top: 4px;
}

.girl-services {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  font-size: 14px;
  color: #ccc;
}

.girl-services li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 4px;
}

.girl-services li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff6f9c;
}

.girl-videos {
  margin-top: 10px;
  display: grid;
  gap: 12px;
}

.girl-video,
.girl-videos video {
  width: 100%;
  border-radius: 16px;
  background: #000;
}

/* Адаптив */
@media (max-width: 900px) {
  .girl-profile-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .girl-profile h1 {
    font-size: 22px;
    text-align: left;
  }

  .girl-main-photo {
    border-radius: 18px;
  }

  .girl-profile-info {
    padding: 18px 16px 16px;
    border-radius: 18px;
  }
}


.girl-main-photo {
  background: #050713; 
}

.girl-profile-info {
  background: background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.24), rgba(5, 7, 17, 0.9));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.04);
}


/* ===== HEADER TOPBAR (CONTACTS + MESSENGERS) ===== */

.header-topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: radial-gradient(circle at top left, rgba(255, 111, 156, 0.12), transparent 55%);
  font-size: 12px;
}

.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0 7px;
}

.header-topbar-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-topbar-info .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff6f9c;
}

.header-topbar-info .sep {
  opacity: 0.6;
}

.header-topbar-info a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.header-topbar-info a:hover {
  text-decoration: underline;
}

/* Мессенджеры справа */
.header-topbar-messengers {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.messenger-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 24, 0.9);
  color: #f5f5f7;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.messenger-icon svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}

.messenger-label {
  white-space: nowrap;
}

/* Цвета под бренды */
.messenger-pill--tg {
  color: #e3f6ff;
}

.messenger-pill--wa {
  color: #e9fff3;
}

.messenger-pill--vb {
  color: #f1e9ff;
}

.messenger-pill:hover {
  background: radial-gradient(circle at top left, rgba(255, 111, 156, 0.22), rgba(7, 10, 24, 0.98));
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

/* ===== АДАПТИВ ===== */

@media (max-width: 900px) {
  .header-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 6px 0 8px;
  }

  .header-topbar-info {
    white-space: normal;
    flex-wrap: wrap;
    row-gap: 2px;
    font-size: 11px;
  }

  .header-topbar-messengers {
    width: 100%;
    flex-wrap: wrap;
    gap: 6px;
  }

  .messenger-pill {
    padding: 4px 9px;
  }
}

/* на совсем маленьких — только иконки, без текста, чтобы не рвать верстку */
@media (max-width: 480px) {
  .messenger-label {
    display: none;
  }

  .header-topbar-messengers {
    gap: 10px;
  }

  .messenger-pill {
    padding: 4px 8px;
  }
}

/* ========= UPGRADE: header topbar icons ========= */

/* делаем плашки покрупнее */
.header-topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: radial-gradient(circle at top left, rgba(255, 111, 156, 0.14), transparent 55%);
  font-size: 12px;
}

.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0 9px;
}

.header-topbar-info {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-topbar-info .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ff6f9c;
}

.header-topbar-info .sep {
  opacity: 0.6;
}

.header-topbar-info a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.header-topbar-info a:hover {
  text-decoration: underline;
}

/* плашки мессенджеров — крупнее + цветные */
.header-topbar-messengers {
  display: flex;
  align-items: center;
  gap: 10px;
}

.messenger-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  border: none;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

/* сами иконки побольше */
.messenger-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

/* брендовые цвета */
.messenger-pill--tg {
  background: #229ED9;
}

.messenger-pill--wa {
  background: #25D366;
}

.messenger-pill--vb {
  background: #7360F2;
}

/* лёгкий hover */
.messenger-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  filter: brightness(1.05);
}

/* ========= АДАПТИВ ========= */

/* на мобилке вообще скрываем верхний контактный бар */
@media (max-width: 768px) {
  .header-topbar {
    display: none;
  }
}

/* ===== POPUP BOOKING MODAL ===== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(3, 3, 12, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 999;
}

.modal-backdrop.is-open {
  display: flex;
}

.modal-dialog {
  width: 100%;
  max-width: 440px;
  border-radius: 24px;
  padding: 24px 22px 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 111, 156, 0.22), transparent 55%),
    #050713;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.9);
  color: #fff;
  position: relative;
}

/* кнопка закрытия */
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: rgba(12, 14, 30, 0.9);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
}
.modal-close::before {
  transform: translateY(-50%) rotate(45deg);
}
.modal-close::after {
  transform: translateY(-50%) rotate(-45deg);
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* заголовок и подзаголовок */
.modal-header {
  margin-bottom: 16px;
}

.modal-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
}

.modal-subtitle {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

/* поля формы */
.modal-form {
  margin-top: 4px;
}

.modal-field {
  margin-bottom: 12px;
}

.modal-field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.modal-field input {
  width: 100%;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 8, 24, 0.96);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.modal-field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.modal-field input:focus {
  border-color: rgba(255, 111, 156, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 111, 156, 0.55);
}

/* кнопка на всю ширину */
.btn-full {
  width: 100%;
  justify-content: center;
}

.modal-note {
  margin: 8px 0 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

/* блокировка скролла, когда модалка открыта */
body.no-scroll {
  overflow: hidden;
}

/* адаптив */
@media (max-width: 480px) {
  .modal-dialog {
    padding: 20px 16px 18px;
    border-radius: 20px;
  }

  .modal-title {
    font-size: 18px;
  }
}

/* === Girl page: video in gallery === */

/* Основное видео в большой области */
.girl-video-main {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  background: #0e0f14;
  outline: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* Лента миниатюр (если у тебя уже есть .girl-thumbs/.girl-thumb — это просто усиления) */
.girl-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.girl-thumb {
  width: 88px;
  height: 88px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #14151c;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .2s ease, outline-color .2s ease;
  outline: 2px solid transparent;
}

.girl-thumb:hover { transform: translateY(-2px); }
.girl-thumb.is-active { outline-color: rgba(255,110,150,.45); }

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

/* Превью-бейдж для видео в миниатюре */
.thumb-video {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: radial-gradient(120% 120% at 50% 50%, rgba(255,110,150,.18) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.75) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .02em;
  position: relative;
}

/* Маленькая «плашка» VIDEO в углу миниатюры */
.thumb-video::after {
  content: "VIDEO";
  position: absolute;
  right: 6px;
  bottom: 6px;
  font-size: 10px;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 8px;
  background: rgba(255,110,150,.85);
  color: #111;
  font-weight: 800;
}

/* ===== Gallery thumbs ===== */
.girl-thumbs {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding-top: 12px;
}

.girl-thumbs .girl-thumb {
  position: relative;
  width: 88px;           /* размер превью */
  height: 88px;
  border: 0;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #14141a;
  cursor: pointer;
  opacity: .9;
  transition: transform .12s ease, opacity .12s ease;
}
.girl-thumbs .girl-thumb:hover { opacity: 1; transform: translateY(-2px); }
.girl-thumbs .girl-thumb.is-active { outline: 2px solid rgba(255,111,156,.9); }

.girl-thumbs .girl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* большой значок видео поверх превью */
.girl-thumbs .girl-thumb.is-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient( to bottom, rgba(0,0,0,.00), rgba(0,0,0,.35) );
  pointer-events: none;
}
.girl-thumbs .girl-thumb.is-video::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 48px; height: 48px;           /* размер “круга” */
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  box-shadow: 0 6px 18px rgba(0,0,0,.45), 0 0 0 2px rgba(255,255,255,.15) inset;
}

/* сам треугольник “play” внутри круга */
.girl-thumbs .girl-thumb.is-video .play-triangle {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-44%, -50%);     /* чуть вправо внутри круга */
  width: 0; height: 0;
  border-top: 12px solid transparent;   /* размер треугольника */
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.35));
}

/* (опционально) значок play на большой области */
.girl-main-photo { position: relative; }
.girl-main-photo.is-video::after {
  content: '';
  position: absolute;
  left: 18px; top: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
}
.girl-main-photo.is-video .main-play-triangle {
  position: absolute;
  left: 18px; top: 18px;
  transform: translate(9px, 8px);
  width: 0; height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
}

.girl-card-city{
  background: rgba(0,0,0,.6);
  border-radius: 10px;
  padding: 4px 10px;
}
.girl-card-city::before{
  content: "▶";
  font-size: 11px;
  margin-right: 6px;
  opacity: .85;
}

/* ===== Glam glass-card для правого блока ===== */
.girl-profile-info{
  --card-bg: rgba(20,20,28,.55);
  --stroke: rgba(255,255,255,.10);
  --muted: #a9a9b5;
  --pink: #ff6f9c;

  background: var(--card-bg);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 18px 18px 20px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 18px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}

/* абзац-описание */
.girl-profile-info > p{
  color:#e9e9ee;
  line-height:1.6;
  margin: 4px 0 14px;
}

/* заголовки секций */
.girl-profile-info h3{
  margin: 18px 0 10px;
  font-weight: 800;
  letter-spacing:.02em;
  position: relative;
}
.girl-profile-info h3::after{
  content:""; display:block; height:1px; margin-top:8px;
  background: linear-gradient(90deg, rgba(255,255,255,.14), rgba(255,255,255,0) 70%);
}

/* ===== Метаданные (Height / Weight / …) ===== */
.girl-profile-meta{
  list-style:none;
  margin: 10px 0 6px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 12px;
}
.girl-profile-meta li{
  color:#fff;
  background: rgba(34,34,50,.65);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}
@media (max-width: 920px){
  .girl-profile-meta{ grid-template-columns: 1fr; }
}

/* ===== Ставки — карточки без изменения разметки ===== */
.girl-rates{
  list-style: none;
  padding: 0;
  margin: 10px 0 6px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.girl-rates li{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0));
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 12px 14px;
  color:#fff;
  font-weight: 700;
  letter-spacing:.01em;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 12px 24px rgba(0,0,0,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.girl-rates li:nth-child(2){ /* 1 hour — подчеркиваем */
  outline: 1px solid rgba(255,111,156,.28);
  box-shadow: 0 0 0 1px rgba(255,111,156,.2), 0 14px 28px rgba(255,111,156,.18), 0 10px 24px rgba(0,0,0,.28);
}
.girl-rates li:hover{ transform: translateY(-2px); }
@media (max-width: 920px){
  .girl-rates{ grid-template-columns: 1fr 1fr; }
}

/* ===== Services — чистые неоновые маркеры и 2 колонки ===== */
.girl-services{
  margin: 8px 0 0;
  padding-left: 0;
  list-style: none;
  columns: 2;
  column-gap: 28px;
}
.girl-services li{
  break-inside: avoid-column;
  position: relative;
  margin: 6px 0;
  padding-left: 14px;
  color:#e7e7ee;
}
.girl-services li::before{
  content:"";
  position:absolute; left:0; top:.62em;
  width:6px; height:6px; border-radius:50%;
  background: radial-gradient(circle at 40% 40%, #ffc0d3 0, #ff6f9c 60%, #ff3b7c 100%);
  box-shadow: 0 0 10px rgba(255,111,156,.55);
}
@media (max-width: 920px){
  .girl-services{ columns: 1; }
}

/* мелкие правки текста */
.girl-profile-info li{ font-variant-numeric: tabular-nums; }


/* ===== MOBILE POLISH (<= 768 / 480 / 380) ===== */

/* Контейнеры и заголовок */
@media (max-width: 480px){
  .section.girl-hero .container{padding-left:16px;padding-right:16px}
  .girl-hero h1{font-size:24px;line-height:1.2;margin:14px 0 10px}
}

/* Стек в одну колонку + компактные отступы */
@media (max-width: 992px){
  .girl-profile-main{display:flex;flex-direction:column;gap:16px}
  .girl-profile-photos,.girl-profile-info{width:100%}
}

/* Галерея */
.girl-main-photo{position:relative;border-radius:16px;overflow:hidden;background:#0f0f15}
.girl-main-photo img,.girl-main-photo video{display:block;width:100%;height:auto}
@media (max-width: 768px){
  .girl-main-photo img,.girl-main-photo video{height:auto}
  .gallery-arrow{width:36px;height:36px;font-size:24px;line-height:36px;
                 top:calc(50% - 18px)}
  .gallery-arrow--prev{left:8px}
  .gallery-arrow--next{right:8px}
}

/* Миниатюры — горизонтальный скролл, «щёлкаются» приятно */
.girl-thumbs{display:flex;gap:10px;overflow-x:auto;padding:10px 2px 2px;
             -webkit-overflow-scrolling:touch;scroll-snap-type:x mandatory}
.girl-thumb{flex:0 0 86px;height:108px;border-radius:10px;overflow:hidden;
            position:relative;scroll-snap-align:center}
.girl-thumb img{width:100%;height:100%;object-fit:cover}
.girl-thumb.is-active{outline:2px solid rgba(255,111,156,.85)}

/* Бейдж «видео» заметнее на мобилке */
.girl-thumb.is-video::after{content:'';position:absolute;left:6px;bottom:6px;
  width:26px;height:26px;background:rgba(0,0,0,.55);border-radius:50%;
  box-shadow:0 0 0 3px rgba(255,255,255,.15) inset}
.girl-thumb.is-video::before{content:'';position:absolute;left:16px;bottom:13px;
  border-left:9px solid #fff;border-top:6px solid transparent;border-bottom:6px solid transparent}

/* Метаданные — «чипсы» вместо простого списка */
.girl-profile-meta{list-style:none;margin:12px 0 18px;padding:0;
  display:grid;grid-template-columns:1fr;gap:10px}
.girl-profile-meta li{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
  padding:12px 14px;border-radius:14px;font-weight:600;letter-spacing:.2px}

/* Сетка тарифов — 2 колонки на мобайле, 1 колонка на узких экранах */
.girl-rates{list-style:none;margin:10px 0 20px;padding:0;
  display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.girl-rates li{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
  border-radius:14px;padding:14px;text-align:center;font-weight:700}
@media (max-width: 380px){ .girl-rates{grid-template-columns:1fr} }

/* Services — аккуратные маркеры и компактный ряд */
.girl-services{list-style:none;margin:14px 0 0;padding:0;
  display:grid;grid-template-columns:1fr;row-gap:10px}
.girl-services li{position:relative;padding-left:18px}
.girl-services li::before{content:'';position:absolute;left:0;top:.65em;width:6px;height:6px;
  border-radius:50%;background:#ff6f9c;box-shadow:0 0 8px rgba(255,111,156,.6)}

/* Видео-блок под описанием — на всю ширину, с радиусом */
.girl-video-section{margin-top:28px}
.girl-video-section .girl-videos{display:grid;grid-template-columns:1fr;gap:12px}
.girl-video-section video{width:100%;height:auto;border-radius:16px;background:#000}

/* Managers badge */
.managers-badge{padding:28px 0}
.badge-card{
  max-width:720px;margin:0 auto;text-align:center;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;padding:24px 18px;
  box-shadow:0 20px 60px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter:blur(6px)
}
@media(min-width:768px){.badge-card{padding:36px 28px;border-radius:28px}}

.badge-avatars{display:flex;justify-content:center;gap:22px;margin-bottom:8px}
.avatar{
  width:110px;height:110px;border-radius:50%;object-fit:cover;
  border:6px solid rgba(255,255,255,.06);
  box-shadow:0 6px 24px rgba(0,0,0,.35)
}
@media(min-width:768px){.avatar{width:132px;height:132px}}

.badge-names{
  font-family: "Brush Script MT","SignPainter","Comic Neue",cursive;
  font-size:34px;line-height:1.15;margin:6px 0 8px;color:#fff;
  letter-spacing:.3px;text-shadow:0 2px 14px rgba(255,109,137,.25)
}

.badge-sub{margin:2px 0;color:#cfd2de;font-size:15px;opacity:.95}
@media(min-width:768px){.badge-sub{font-size:16px}}

@media (max-width: 900px){
.managers-badge {
    order: -1;
}
}

/* Лого в шапке */
.header .logo{
  display:flex; align-items:center; text-decoration:none; gap:.5rem;
}
.header .logo-img{
  display:block;
  height:32px;           /* моб */
  max-width:100%;
}

/* крупнее на планшете/десктопе */
@media (min-width: 640px){
  .header .logo-img{ height:45px; }
}
@media (min-width: 1024px){
  .header .logo-img{ height:56px; }
}

/* если был круглый значок AE — скрыть старые элементы */
.logo .logo-mark,
.logo .logo-subtitle{ display:none; }

/* 1) ограничиваем область смешивания в шапке */
.header { position: relative; isolation: isolate; }

/* 2) твой декоративный слой (если он через ::before/::after) — в нулевом слое */
.header::before,
.header::after { z-index: 0; }

/* 3) контент шапки поверх декоративного слоя */
.header-inner { position: relative; z-index: 1; }

/* 4) логотип ещё на слой выше и без любых смешиваний/фильтров */
.header .logo { position: relative; z-index: 2; mix-blend-mode: normal; filter: none; }
.header .logo img,
.header .logo svg { display:block; mix-blend-mode: normal; filter: none; }

/* === Managers badge: без плашки/рамки, на фоне героя === */
.managers-badge { 
  padding: 0; 
  background: transparent; 
}

.managers-badge .container { 
  padding: 0; 
}

/* убираем фон/стекло/тени у карточки */
.managers-badge .badge-card {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0;      /* убираем внутренние поля, чтобы блок "слился" с фоном */
  margin: 0;
  border-radius: 0;
}

.btn-ghost{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1)}
  .messenger-pill{display:inline-flex;align-items:center;gap:8px;padding:.55rem .9rem;border-radius:999px;
    background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);color:#fff;text-decoration:none}
  .messenger-pill:hover{background:rgba(255,255,255,.1)}
  .messenger-icon svg{width:18px;height:18px;display:block;fill:currentColor}
  .messenger-pill--tg{color:#53a7ea}
  .messenger-pill--wa{color:#4ad06f}
  .messenger-pill--vb{color:#8f63de}

  /* мобильный порядок: блок менеджеров над текстом */
  @media (max-width: 900px){
    .managers-badge{order:-1}
  }

.whatsapp-button {
    position: fixed;
    right: 13px;
    bottom: 90px;
    transform: translate(-50%, -50%);
    background: #25D366; 
    border-radius: 50%;
    width: 48px; 
    height: 48px; 
    color: #fff;
    text-align: center;
    line-height: 53px; 
    font-size: 35px; 
    z-index: 9999;
}

.whatsapp-button a {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #25D366; 
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden; 
}
 
.whatsapp-button a {
    animation-delay: .5s;
}
 
@keyframes animate
{
    0%
    {
        transform: scale(0.5);
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        transform: scale(1.2);
        opacity: 0;
    }
}

@media only screen and (max-width: 767px){

.whatsapp-button {   
    bottom: 5px;
    left: 70px; 
}
}
