/* VIBE — dark salon, vibe54.com */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0a0810;
  --bg-elevated: #13101a;
  --bg-soft: #1a1522;
  --surface: #22182a;
  --line: rgba(214, 176, 130, 0.16);
  --line-strong: rgba(214, 176, 130, 0.3);
  --text: #f6f0ea;
  --text-muted: #b8ada8;
  --text-dim: #8a7f7a;
  --wine: #c45a78;
  --wine-deep: #8a3354;
  --wine-soft: #e089a0;
  --champagne: #d6b082;
  --champagne-soft: #edd0a8;
  --violet: #8b6bb5;
  --glow: rgba(196, 90, 120, 0.28);
  --success: #7d9b78;
  --radius: 2px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', sans-serif;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html:has(body.is-nav-open),
body.is-nav-open {
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 8% -8%, rgba(196, 90, 120, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(139, 107, 181, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(138, 51, 84, 0.16), transparent 60%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.container--narrow {
  width: min(820px, calc(100% - 40px));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.age-gate__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
}

/* Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--champagne);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 0.6rem;
}

.section-lead {
  color: var(--text-muted);
  max-width: 540px;
  font-size: 1rem;
  font-weight: 300;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  color: var(--text);
  box-shadow: 0 12px 30px rgba(122, 51, 64, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 16px 36px rgba(122, 51, 64, 0.5);
}

.btn--ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn--ghost:hover {
  border-color: var(--champagne);
  color: var(--champagne-soft);
}

.btn--champagne {
  background: linear-gradient(135deg, var(--champagne), #b08d5e);
  color: #1a1214;
}

.btn--sm {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.7rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Age gate */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(161, 75, 87, 0.25), transparent 40%),
    rgba(8, 6, 7, 0.92);
  backdrop-filter: blur(16px);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}

.age-gate.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
}

.age-gate__card {
  width: min(440px, 100%);
  padding: 48px 36px;
  background: linear-gradient(160deg, #1d1518, #120e10);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow);
  animation: rise 0.7s var(--ease);
}

.age-gate__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.35em;
  margin-bottom: 20px;
  color: var(--champagne-soft);
}

.age-gate__card h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.age-gate__card p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.age-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(11, 9, 10, 0.86);
  border-bottom-color: var(--line);
}

.site-header.is-scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.42em;
  color: var(--champagne-soft);
  position: relative;
  z-index: 2;
  text-shadow: 0 0 24px rgba(214, 176, 130, 0.25);
}

.logo span {
  color: var(--wine-soft);
  text-shadow: 0 0 18px rgba(224, 137, 160, 0.45);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--champagne-soft);
  white-space: nowrap;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  cursor: pointer;
  z-index: 2;
}

.burger span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
  position: relative;
  transition: background 0.3s;
}

.burger span::before,
.burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s var(--ease), top 0.3s;
}

.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

.burger.is-open span {
  background: transparent;
}

.burger.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.burger.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.hero-slider,
.hero-slider .swiper-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.9s var(--ease), transform 6s linear;
}

.hero-slider .swiper-slide.is-active,
.hero-slider .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 6, 7, 0.88) 0%, rgba(8, 6, 7, 0.55) 45%, rgba(8, 6, 7, 0.35) 100%),
    linear-gradient(0deg, rgba(8, 6, 7, 0.75) 0%, transparent 40%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: calc(var(--header-h) + 40px) 0 80px;
  max-width: 720px;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  letter-spacing: 0.22em;
  line-height: 0.95;
  margin: 18px 0 18px;
  color: var(--text);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.hero__brand em {
  font-style: italic;
  color: var(--champagne-soft);
}

.hero__text {
  color: var(--text-muted);
  font-size: 1.08rem;
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 36px;
}

.slider-nav {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 20;
}

.slider-nav--hero {
  position: absolute;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 40px;
}

.slider-btn {
  position: relative;
  width: 48px;
  height: 48px;
  margin: 0;
  border: 1px solid var(--line-strong);
  background: rgba(11, 9, 10, 0.55);
  color: var(--text);
  cursor: pointer;
  pointer-events: auto;
  font-size: 1.35rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: border-color 0.3s, background 0.3s;
}

.slider-btn:hover {
  border-color: var(--champagne);
  background: rgba(201, 168, 124, 0.16);
}

.hero-pagination {
  position: absolute;
  left: max(20px, calc((100% - 1180px) / 2));
  bottom: 48px;
  z-index: 20;
  width: auto;
  display: flex;
  gap: 8px;
}

.hero-pagination button,
.hero-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  pointer-events: auto;
}

.hero-pagination button.is-active,
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--champagne);
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 72px;
  overflow: hidden;
  z-index: 1;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,9,10,0.2), rgba(11,9,10,0.95)),
    url('/assets/images/page-hero.jpg') center/cover;
  opacity: 0.45;
  z-index: -1;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 14px 0 12px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 560px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.breadcrumbs a:hover {
  color: var(--champagne);
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section--soft {
  background: linear-gradient(180deg, transparent, rgba(28, 22, 25, 0.65), transparent);
}

.section--tight {
  padding: 70px 0;
}

/* Promo strip / banners */
.promo-strip {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(122, 51, 64, 0.35), rgba(20, 16, 18, 0.9) 40%, rgba(201, 168, 124, 0.12));
  overflow: hidden;
}

.promo-slider {
  padding: 18px 0;
}

.promo-slide {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
  padding: 4px 20px;
}

.promo-slide__badge:empty {
  display: none;
}

.promo-slide__badge {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid var(--line-strong);
  padding: 6px 12px;
}

.promo-slide__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: inherit;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  transition: color 0.3s;
}

.promo-slide__text:hover {
  color: var(--champagne-soft);
}

.promo-slide__text span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  position: relative;
  top: 1px;
}

.girls-slider {
  overflow: hidden;
}

.girls-slider .swiper-wrapper,
.related-slider .swiper-wrapper {
  display: flex;
  gap: 18px;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.girls-slider .swiper-slide,
.related-slider .swiper-slide {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
}

@media (max-width: 1100px) {
  .girls-slider .swiper-slide,
  .related-slider .swiper-slide {
    flex-basis: calc((100% - 36px) / 3);
  }
}

@media (max-width: 900px) {
  .girls-slider .swiper-slide,
  .related-slider .swiper-slide {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  .girls-slider .swiper-slide,
  .related-slider .swiper-slide {
    flex-basis: 86%;
  }
}

.promo-slider {
  overflow: hidden;
}

.promo-slider .swiper-wrapper {
  display: flex;
  transition: transform 0.55s var(--ease);
}

.promo-slider .swiper-slide {
  flex: 0 0 100%;
}

/* Girls grid */
.girls-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.girl-card {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-elevated);
  min-height: 420px;
}

.girl-card__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.8s var(--ease), filter 0.8s;
  filter: saturate(0.9) brightness(0.85);
}

.girl-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 6, 7, 0.92) 100%);
  z-index: 1;
}

.girl-card:hover .girl-card__media {
  transform: scale(1.08);
  filter: saturate(1) brightness(0.95);
}

.girl-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
  transform: translateY(8px);
  transition: transform 0.45s var(--ease);
}

.girl-card:hover .girl-card__body {
  transform: translateY(0);
}

.girl-card__name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.girl-card__meta {
  color: var(--text-dim);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.girl-card__cta {
  margin-top: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s var(--ease);
  color: var(--champagne);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.girl-card:hover .girl-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* Programs */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.program-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 180px;
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.program-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.program-card__media {
  background-size: cover;
  background-position: center;
  min-height: 180px;
  position: relative;
}

.program-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(20, 16, 18, 0.35));
}

.program-card__body {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-card__body h3 {
  font-size: 1.65rem;
  margin-bottom: 8px;
}

.program-card__body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.program-card__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--champagne);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-card--wide {
  grid-column: 1 / -1;
  grid-template-columns: 320px 1fr;
}

/* Advantages */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.adv-item {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(34, 27, 31, 0.7), rgba(14, 11, 12, 0.4));
  transition: border-color 0.35s, transform 0.35s var(--ease);
}

.adv-item:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.adv-item__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--wine-soft);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}

.adv-item h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.adv-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* About text block */
.about-block {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.05fr);
  gap: 56px;
  align-items: center;
}

.about-block__visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.about-block__visual img,
.about-block__visual .visual-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}

.about-block__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  margin: 18px;
  pointer-events: none;
}

.about-block__content h2 {
  margin: 14px 0 20px;
}

.about-block__content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.feature-list {
  margin: 28px 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 4px rgba(201, 168, 124, 0.15);
}

/* CTA band */
.cta-band {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(ellipse at center, rgba(161, 75, 87, 0.22), transparent 60%),
    var(--bg-elevated);
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0 14px;
}

.cta-band p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 72px 0 28px;
  border-top: 1px solid var(--line);
  background: #090708;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.28em;
  color: var(--champagne-soft);
  margin-bottom: 14px;
}

.footer-brand + p,
.site-footer p {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: var(--text-dim);
  margin-bottom: 10px;
  font-size: 0.92rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--champagne);
}

.footer-contacts a {
  color: var(--champagne-soft);
  font-size: 1.05rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 0.8rem;
}

.disclaimer {
  color: var(--wine-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* Profile page */
.profile {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.profile-gallery {
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
  min-height: 560px;
}

.profile-gallery .slider-btn {
  position: absolute !important;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  background: rgba(11, 9, 10, 0.55);
}

.profile-gallery [data-profile-prev] { left: 12px; }
.profile-gallery [data-profile-next] { right: 12px; }

.profile-gallery .swiper-button-prev::after,
.profile-gallery .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
}

.profile-gallery .swiper,
.profile-gallery .swiper-slide {
  height: 640px;
}

.profile-gallery img,
.profile-gallery .slide-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center top;
}

.profile-thumbs {
  margin-top: 12px;
}

.profile-thumbs .swiper-slide {
  height: 90px;
  opacity: 0.45;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid transparent;
  transition: opacity 0.3s, border-color 0.3s;
}

.profile-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--champagne);
}

.profile-thumbs .slide-fill,
.profile-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}

.profile-info h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  margin: 8px 0 18px;
}

.params {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.param {
  padding: 16px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

.param__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.param__value {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.tab {
  padding: 12px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.3s, border-color 0.3s;
}

.tab.is-active {
  color: var(--champagne-soft);
  border-bottom-color: var(--champagne);
}

.tab-panel {
  display: none;
  color: var(--text-muted);
}

.tab-panel.is-active {
  display: block;
  animation: fade 0.4s var(--ease);
}

.reviews {
  display: grid;
  gap: 16px;
}

.review {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

.review__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--champagne-soft);
  font-size: 0.9rem;
}

.review p {
  font-size: 0.92rem;
}

/* Promo cards */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.promo-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: var(--bg-elevated);
  color: inherit;
  text-decoration: none;
}

.promo-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transition: transform 0.7s var(--ease), opacity 0.7s;
}

.promo-card:hover .promo-card__bg {
  transform: scale(1.06);
  opacity: 0.48;
}

.promo-card > *:not(.promo-card__bg) {
  position: relative;
  z-index: 1;
}

.promo-card h3 {
  font-size: 2rem;
  margin: 10px 0 12px;
}

.promo-card p {
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 420px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-card,
.contact-form {
  padding: 36px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(34, 27, 31, 0.75), rgba(14, 11, 12, 0.5));
}

.contact-card h3,
.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list dt {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.contact-list dd {
  font-size: 1.05rem;
}

.contact-list a:hover {
  color: var(--champagne);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.socials a svg,
.float-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

.socials a:hover {
  border-color: var(--champagne);
  color: var(--champagne);
  background: rgba(201, 168, 124, 0.06);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.25);
  outline: none;
  transition: border-color 0.3s;
}

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

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.map-embed {
  margin-top: 28px;
  min-height: 360px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(11,9,10,0.55), rgba(11,9,10,0.7)),
    url('/assets/images/map.jpg') center/cover;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.map-embed strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  display: block;
  margin-bottom: 8px;
}

/* Content article */
.content-article {
  color: var(--text-muted);
}

.content-article h2,
.content-article h3 {
  color: var(--text);
  margin: 32px 0 14px;
}

.content-article p {
  margin-bottom: 14px;
}

.content-article ul {
  margin: 16px 0 24px;
  display: grid;
  gap: 10px;
}

.content-article li {
  padding-left: 18px;
  position: relative;
}

.content-article li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--champagne);
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 24px;
}

.price-tag__value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--champagne-soft);
}

.price-tag__note {
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* Floating actions */
.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  transition: transform 0.3s var(--ease);
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.04);
}

.float-btn--tg {
  background: linear-gradient(135deg, #4d9fd6, #2f78ad);
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="left"] {
  transform: translateX(-28px);
}

[data-reveal="right"] {
  transform: translateX(28px);
}

[data-reveal="scale"] {
  transform: scale(0.96);
}

.stagger > [data-reveal]:nth-child(1) { transition-delay: 0.05s; }
.stagger > [data-reveal]:nth-child(2) { transition-delay: 0.12s; }
.stagger > [data-reveal]:nth-child(3) { transition-delay: 0.19s; }
.stagger > [data-reveal]:nth-child(4) { transition-delay: 0.26s; }
.stagger > [data-reveal]:nth-child(5) { transition-delay: 0.33s; }
.stagger > [data-reveal]:nth-child(6) { transition-delay: 0.4s; }
.stagger > [data-reveal]:nth-child(7) { transition-delay: 0.47s; }
.stagger > [data-reveal]:nth-child(8) { transition-delay: 0.54s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero__content > * {
  animation: rise 0.9s var(--ease) both;
}

.hero__content .eyebrow { animation-delay: 0.1s; }
.hero__content .hero__brand { animation-delay: 0.22s; }
.hero__content .hero__text { animation-delay: 0.34s; }
.hero__content .btn-group { animation-delay: 0.46s; }

/* Vip badges */
.badge:empty {
  display: none;
}

.badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  color: var(--champagne);
  margin-bottom: 10px;
}

.badge--hot {
  color: var(--wine-soft);
  border-color: rgba(196, 106, 116, 0.4);
}

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .burger {
    display: grid;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: 1;
    margin: 0;
    background: rgba(9, 7, 8, 0.96);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s, visibility 0.35s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    font-size: 1.1rem;
  }

  .header-phone {
    display: none;
  }

  .programs-grid,
  .about-block,
  .profile,
  .contact-grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .program-card,
  .program-card--wide {
    grid-template-columns: 1fr;
  }

  .program-card__media {
    min-height: 220px;
  }

  .adv-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-block__visual {
    min-height: 360px;
  }

  .profile-gallery .swiper,
  .profile-gallery .swiper-slide {
    height: 480px;
  }
}

@media (max-width: 640px) {
  .girls-grid,
  .adv-grid,
  .params,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .girl-card {
    min-height: 360px;
  }

  .section {
    padding: 72px 0;
  }

  .hero__brand {
    letter-spacing: 0.12em;
  }

  .float-actions {
    right: 12px;
    bottom: 12px;
  }

  .contact-card,
  .contact-form {
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .girls-grid,
  .adv-grid,
  .params {
    grid-template-columns: 1fr;
  }
}

/* Ambient orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  animation: orb-float 16s ease-in-out infinite;
}

.orb--1 {
  width: 340px;
  height: 340px;
  background: rgba(196, 90, 120, 0.35);
  top: 12%;
  left: -80px;
}

.orb--2 {
  width: 280px;
  height: 280px;
  background: rgba(139, 107, 181, 0.28);
  top: 55%;
  right: -60px;
  animation-delay: -6s;
}

.orb--3 {
  width: 220px;
  height: 220px;
  background: rgba(214, 176, 130, 0.16);
  bottom: 8%;
  left: 30%;
  animation-delay: -11s;
}

@keyframes orb-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(24px, -30px, 0) scale(1.08); }
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(196, 90, 120, 0.16), transparent 68%);
  transform: translate3d(-200px, -200px, 0);
  transition: opacity 0.4s;
  opacity: 0;
}

.cursor-glow.is-on {
  opacity: 1;
}

/* Marquee */
.marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(19, 16, 26, 0.7);
  padding: 16px 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marquee 32s linear infinite;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne-soft);
  white-space: nowrap;
}

.marquee__item span {
  color: var(--wine-soft);
  margin: 0 18px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  padding: 28px 20px;
  border: 1px solid var(--line);
  text-align: center;
  background: linear-gradient(160deg, rgba(34, 24, 42, 0.7), rgba(10, 8, 16, 0.4));
  position: relative;
  overflow: hidden;
}

.stat::after {
  content: '';
  position: absolute;
  inset: auto 20% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}

.stat__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--champagne-soft);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Quote */
.quote-block {
  position: relative;
  z-index: 1;
  padding: 72px 0;
  text-align: center;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-style: italic;
  max-width: 760px;
  margin: 0 auto 18px;
  line-height: 1.35;
}

.quote-block span {
  color: var(--champagne);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Locations */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.location-card {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(34, 24, 42, 0.75), rgba(10, 8, 16, 0.5));
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.location-card:hover,
.location-card.is-active {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.location-card__body {
  padding: 28px 28px 22px;
}

.location-card__body h3 {
  font-size: 1.9rem;
  margin: 8px 0 10px;
}

.location-card__body p {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.location-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0 0;
  color: var(--champagne);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ymap {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
  filter: grayscale(0.25) contrast(1.05);
}

.location-card .ymap {
  height: 280px;
}

.maps-switch {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.maps-switch button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.maps-switch button.is-active {
  border-color: var(--champagne);
  color: var(--champagne-soft);
  background: rgba(214, 176, 130, 0.08);
}

.contact-phone-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  margin-bottom: 28px;
  background: linear-gradient(90deg, rgba(196, 90, 120, 0.16), rgba(19, 16, 26, 0.6));
}

.contact-phone-band a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--champagne-soft);
}

/* Rich text extras */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 8px 0 20px;
  color: var(--champagne);
}

.ornament::before,
.ornament::after {
  content: '';
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}

.prose-wide {
  max-width: 760px;
}

.content-article p + p {
  margin-top: 4px;
}

.hero__brand {
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(196, 90, 120, 0.2);
}

body.is-error .site-header {
  background: rgba(10, 8, 16, 0.88);
  border-bottom-color: var(--line);
}

.error-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 72px) 0 96px;
  text-align: center;
  overflow: hidden;
}

.error-page .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error-page__code {
  position: absolute;
  top: calc(50% + var(--header-h) / 3);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(8rem, 28vw, 16rem);
  line-height: 0.8;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(214, 176, 130, 0.1);
  pointer-events: none;
  user-select: none;
}

.error-page h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 16px 0 12px;
}

.error-page__lead {
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 28px;
}

.error-page .btn-group {
  justify-content: center;
}

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

@media (max-width: 640px) {
  .locations-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .cursor-glow {
    display: none;
  }
}
