/* ============================================================
   СТАНЦИЯ КРАСОТЫ — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:        #050505;
  --surface:   #111111;
  --surface2:  #191919;
  --accent:    #FF2E88;
  --accent2:   #FF65B3;
  --text:      #FFFFFF;
  --muted:     #A8A8A8;
  --border:    rgba(255,255,255,0.08);
  --glow:      rgba(255,46,136,0.35);
  --glow-sm:   rgba(255,46,136,0.18);

  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--sans); border: none; background: none; }

/* ── STICKERS ────────────────────────────────────────────── */
.sticker {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  user-select: none;
  animation: stickerFloat 4s ease-in-out infinite;
}
.sticker img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.55));
}
@keyframes stickerFloat {
  0%, 100% { transform: translateY(0px)   rotate(var(--rot, -6deg)); }
  50%       { transform: translateY(-12px) rotate(var(--rot, -6deg)); }
}

/* Hero image */
.sticker-hero-inline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.sticker-hero-inline img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
@media (max-width: 1199px) {
  .hero-content { gap: 0 40px; }
}

/* Prevent stickers from causing horizontal scroll */
#hero, #about, #works, #services, #master,
#space, #reviews, #booking, #faq, #final-cta {
  overflow: visible;
}
html, body { overflow-x: clip; }

/* hero sticker handled inline — see .sticker-hero-inline */
.sticker-about    { right: 1%;  top: 50%;    width: 240px; --rot:  8deg;  animation-delay: 0.5s; transform-origin: center; margin-top: -120px; }
.sticker-works    { right: 2%;  top: 56px;   width: 240px; --rot: -6deg;  animation-delay: 0.8s; }
.sticker-services { right: 1%;  bottom: 60px;width: 250px; --rot:  7deg;  animation-delay: 0.3s; }
.sticker-master   { left: 2%;   top: 50%;    width: 230px; --rot: -8deg;  animation-delay: 1s;   margin-top: -115px; }
.sticker-space    { right: 2%;  top: 32px;   width: 240px; --rot:  6deg;  animation-delay: 0.6s; }
.sticker-reviews  { right: 2%;  bottom: 60px;width: 240px; --rot: -7deg;  animation-delay: 0.2s; }
.sticker-booking  { right: 1%;  top: 50%;    width: 250px; --rot:  9deg;  animation-delay: 0.7s; margin-top: -125px; }
.sticker-faq      { left: 2%;   top: 50%;    width: 230px; --rot: -6deg;  animation-delay: 0.4s; margin-top: -115px; }
.sticker-cta      { left: 3%;   bottom: 80px;width: 250px; --rot:  7deg;  animation-delay: 0.9s; }

@media (max-width: 1400px) {
  .sticker-hero     { width: 220px; }
  .sticker-about    { width: 200px; }
  .sticker-works    { width: 200px; }
  .sticker-services { width: 210px; }
  .sticker-master   { width: 190px; }
  .sticker-space    { width: 200px; }
  .sticker-reviews  { width: 200px; }
  .sticker-booking  { width: 210px; }
  .sticker-faq      { width: 190px; }
  .sticker-cta      { width: 210px; }
}
@media (max-width: 1199px) {
  .sticker { width: 160px !important; }
}
@media (max-width: 767px) {
  .sticker { display: none; }
}

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
h1, .h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
h2, .h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
}
h3, .h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.3;
}
p { color: var(--muted); font-size: 15px; line-height: 1.75; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
section { position: relative; overflow: hidden; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 24px rgba(255,46,136,0.3);
}
.btn-primary:hover {
  background: #ff1a7a;
  box-shadow: 0 0 40px rgba(255,46,136,0.5);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}
.btn-tg {
  background: linear-gradient(135deg, #229ed9, #1a7fc4);
  color: #fff;
  box-shadow: 0 0 20px rgba(34,158,217,0.25);
}
.btn-tg:hover { box-shadow: 0 0 36px rgba(34,158,217,0.4); transform: translateY(-1px); }
.btn-vk {
  background: linear-gradient(135deg, #4680C2, #2d5ea0);
  color: #fff;
  box-shadow: 0 0 20px rgba(70,128,194,0.25);
}
.btn-vk:hover { box-shadow: 0 0 36px rgba(70,128,194,0.4); transform: translateY(-1px); }

/* ── GLASS CARD ──────────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ── DIVIDER LINE ────────────────────────────────────────── */
.pink-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  margin: 20px 0;
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
#nav.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.5px;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 2px;
  transition: var(--transition);
  box-shadow: 0 0 16px rgba(255,46,136,0.25);
}
.nav-cta:hover { box-shadow: 0 0 28px rgba(255,46,136,0.45); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: var(--transition);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--text);
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--accent); }

/* ============================================================
   01 · HERO
   ============================================================ */
#hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  box-sizing: border-box;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-video-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(5,5,5,0.94) 45%, rgba(5,5,5,0.25) 100%);
}
.hero-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d0005 0%, #180510 40%, #0a0010 100%);
}
.hero-fallback::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0; width: 55%;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,46,136,0.12) 0%, transparent 65%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 60px;
}
.hero-text {
  grid-column: 1;
  grid-row: 1;
  max-width: 520px;
}
.hero-btns {
  grid-column: 1;
  grid-row: 2;
  padding-top: 32px;
}
.sticker-hero-inline {
  grid-column: 2;
  grid-row: 1 / 3;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border: 1px solid rgba(255,46,136,0.3);
  border-radius: 2px;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}
.hero-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-city {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,46,136,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}
.hero-glow {
  position: absolute;
  bottom: -60px;
  left: 30%;
  width: 400px; height: 200px;
  background: radial-gradient(ellipse, rgba(255,46,136,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   02 · О БРЕНДЕ
   ============================================================ */
#about {
  padding: 120px 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  height: 620px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image-wrap img,
.about-img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-placeholder {
  background: linear-gradient(160deg, #1a0a12 0%, #0d0508 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-img-placeholder span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(255,255,255,0.1);
  letter-spacing: 2px;
}
.about-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  pointer-events: none;
}
.about-accent-line {
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 80px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 2px;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.about-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0;
}
.about-value {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.about-value::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
}
.stat-item {
  background: var(--surface);
  padding: 24px 16px;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--text);
  line-height: 1;
  display: block;
}
.stat-num .accent { color: var(--accent); }
.stat-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

/* ============================================================
   03 · НАШИ РАБОТЫ
   ============================================================ */
#works {
  padding: 120px 0;
  background: var(--surface);
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.filter-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 18px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}
.filter-tab:hover { color: var(--text); border-color: var(--border); }
.filter-tab.active {
  color: var(--accent);
  border-color: rgba(255,46,136,0.4);
  background: rgba(255,46,136,0.06);
}
.gallery-grid {
  columns: 3;
  column-gap: 12px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cat {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent2);
}

/* Image placeholders in gallery */
.img-ph {
  width: 100%;
  background: linear-gradient(145deg, #181018 0%, #0d0a10 100%);
  display: flex; align-items: center; justify-content: center;
}
.img-ph span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  color: rgba(255,255,255,0.08);
  letter-spacing: 1px;
}
/* varied heights for masonry feel */
.img-ph-tall   { height: 320px; }
.img-ph-medium { height: 240px; }
.img-ph-short  { height: 180px; }

/* Carousel nav — hidden on desktop, shown on mobile */
.gallery-carousel-nav { display: none; }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.96);
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-height: 90vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lb-close {
  position: absolute;
  top: -48px; right: 0;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s;
  background: none; border: none;
  line-height: 1;
}
.lb-close:hover { color: var(--text); }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 18px;
}
.lb-prev { left: -64px; }
.lb-next { right: -64px; }
.lb-prev:hover, .lb-next:hover {
  background: rgba(255,46,136,0.15);
  border-color: rgba(255,46,136,0.3);
}

/* ============================================================
   04 · УСЛУГИ
   ============================================================ */
#services {
  padding: 120px 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.services-grid .service-card:last-child:nth-child(3n+1) {
  grid-column: 1 / 2;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(255,46,136,0.2); }
.service-card:hover::before { opacity: 1; }
.service-card.vip {
  border-color: rgba(255,46,136,0.2);
  background: linear-gradient(145deg, #1a0812 0%, var(--surface) 100%);
}
.service-card.vip::before { opacity: 0.6; }
.service-card.vip::after {
  content: 'VIP';
  position: absolute;
  top: 20px; right: 20px;
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid rgba(255,46,136,0.4);
  border-radius: 2px;
}
.service-icon {
  width: 36px; height: 36px;
  margin-bottom: 20px;
  color: var(--accent);
}
.service-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  display: block;
}
.service-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.service-duration {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.service-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--text);
}
.service-price .currency { font-size: 14px; color: var(--muted); }

/* ============================================================
   05 · МАСТЕР
   ============================================================ */
#master {
  padding: 120px 0;
  background: var(--surface);
}
.master-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.master-text { order: 1; }
.master-image-wrap {
  order: 2;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.master-image-wrap img,
.master-img-ph {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: unset;
}
.master-img-ph {
  background: linear-gradient(160deg, #1a0a12 0%, #0d0508 100%);
  display: flex; align-items: center; justify-content: center;
}
.master-img-ph span { font-family: var(--serif); font-style: italic; font-size: 14px; color: rgba(255,255,255,0.1); }
.master-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  display: block;
}
.master-title {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}
.master-bio { margin-bottom: 32px; }
.master-quote {
  padding: 24px 28px;
  border-left: 2px solid var(--accent);
  background: rgba(255,46,136,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 32px;
}
.master-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text);
  line-height: 1.65;
}
.master-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.master-tag {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   06 · ПРОСТРАНСТВО
   ============================================================ */
#space {
  padding: 120px 0;
  background: var(--bg);
}
.space-scroll-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  margin-top: 48px;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.space-scroll-wrap::-webkit-scrollbar { display: none; }
.space-scroll-wrap:active { cursor: grabbing; }
.space-scroll-inner {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 40px;
}
.space-photo {
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.space-photo:nth-child(1) { width: 500px; height: 360px; }
.space-photo:nth-child(2) { width: 320px; height: 360px; }
.space-photo:nth-child(3) { width: 400px; height: 360px; }
.space-photo:nth-child(4) { width: 360px; height: 360px; }
.space-photo:nth-child(5) { width: 440px; height: 360px; }
.space-photo img,
.space-ph {
  width: 100%; height: 100%;
  object-fit: cover;
}
.space-ph {
  background: linear-gradient(145deg, #181018 0%, #0d0a10 100%);
  display: flex; align-items: center; justify-content: center;
}
.space-ph span { font-family: var(--serif); font-style: italic; font-size: 12px; color: rgba(255,255,255,0.08); }
.space-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(5,5,5,0.85), transparent);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transform: translateY(8px);
  opacity: 0;
  transition: var(--transition);
}
.space-photo:hover .space-caption { opacity: 1; transform: translateY(0); }

/* ============================================================
   07 · ОТЗЫВЫ
   ============================================================ */
#reviews {
  padding: 120px 0;
  background: var(--surface);
}
.reviews-slider {
  position: relative;
  margin-top: 48px;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--serif);
  font-size: 64px;
  color: rgba(255,46,136,0.15);
  line-height: 1;
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.review-star {
  width: 10px; height: 10px;
  background: var(--accent);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.review-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a0818, #1a0510);
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.review-avatar span { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--accent2); }
.review-name {
  font-size: 13px;
  color: var(--text);
  display: block;
}
.review-date { font-size: 10px; color: var(--muted); letter-spacing: 1px; }
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.reviews-dot {
  width: 24px; height: 2px;
  background: var(--border);
  border-radius: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.reviews-dot.active {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255,46,136,0.5);
}

/* ============================================================
   08 · ЗАПИСЬ
   ============================================================ */
#booking {
  padding: 120px 0;
  background: var(--bg);
}
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.booking-text h2 { margin-bottom: 16px; }
.booking-text p { margin-bottom: 32px; }
.booking-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 16px;
  transition: color 0.3s;
}
.booking-phone:hover { color: var(--accent2); }
.booking-phone svg { color: var(--accent); flex-shrink: 0; }
.booking-hint {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 40px;
}
.booking-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-btn-row { display: flex; gap: 12px; }
.booking-steps {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.booking-steps-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.booking-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.booking-step:last-child { margin-bottom: 0; }
.step-num {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,46,136,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: var(--accent);
  flex-shrink: 0;
  font-family: var(--serif);
  font-style: italic;
}
.step-text span {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
}
.step-text small { font-size: 12px; color: var(--muted); }

/* ============================================================
   09 · FAQ
   ============================================================ */
#faq {
  padding: 120px 0;
  background: var(--surface);
}
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  gap: 24px;
}
.faq-q span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text);
  transition: color 0.3s;
}
.faq-q:hover span { color: var(--accent2); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
}
.faq-item.open .faq-icon {
  border-color: rgba(255,46,136,0.4);
  color: var(--accent);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.45s ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-a p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ============================================================
   10 · FINAL CTA
   ============================================================ */
#final-cta {
  padding: 180px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, #100508 50%, var(--bg) 100%);
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,46,136,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content h2 { margin-bottom: 16px; }
.cta-content p { max-width: 480px; margin: 0 auto 40px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #030303;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  display: block;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social:hover { border-color: rgba(255,46,136,0.4); color: var(--accent); }
.footer-col-title {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: block;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 1px; }
.footer-made { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1199px) {
  .container { padding: 0 32px; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .about-image-wrap { height: 500px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:last-child:nth-child(3n+1) { grid-column: 1 / 2; }
  .gallery-grid { columns: 2; }
  .master-grid { gap: 48px; }
  .master-image-wrap { height: auto; }
  .booking-inner { gap: 48px; }
  .review-card { flex: 0 0 calc(50% - 12px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-city { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 767px) {
  .container { padding: 0 20px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  #hero { height: auto; min-height: 100svh; align-items: flex-start; padding-bottom: 48px; }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .hero-text { grid-column: unset; grid-row: unset; max-width: 100%; }
  .hero-sub { margin-bottom: 12px; }
  .sticker-hero-inline { grid-column: unset; grid-row: unset; width: 100%; justify-content: flex-start; }
  .sticker-hero-inline img { max-width: 320px; border-radius: 12px; }
  .hero-btns { grid-column: unset; grid-row: unset; padding-top: 0; }
  .hero-title { font-size: clamp(36px, 10vw, 56px); }

  /* About */
  #about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { height: 360px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  /* Works — mobile carousel */
  #works { padding: 80px 0; }
  .section-header-row { flex-direction: column; align-items: flex-start; }

  .gallery-grid {
    columns: unset;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 12px;
    padding: 4px 20px 8px;
    margin: 0 -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }

  .gallery-item {
    flex: 0 0 82vw;
    scroll-snap-align: center;
    margin-bottom: 0;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .gallery-item .gallery-img {
    width: 100%;
    height: 72vw;
    object-fit: cover;
  }
  .gallery-item .img-ph {
    height: 72vw;
  }

  /* Carousel controls */
  .gallery-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
  }
  .gallery-carousel-dots {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 240px;
  }
  .gallery-carousel-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }
  .gallery-carousel-dot.active {
    background: var(--accent);
    box-shadow: 0 0 8px rgba(255,46,136,0.6);
    transform: scale(1.3);
  }
  .gallery-carousel-arrow {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    color: var(--muted);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
    flex-shrink: 0;
  }
  .gallery-carousel-arrow:hover {
    border-color: rgba(255,46,136,0.4);
    color: var(--accent);
  }

  /* Services */
  #services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:last-child:nth-child(3n+1) { grid-column: 1 / 2; }

  /* Master */
  #master { padding: 80px 0; }
  .master-grid { grid-template-columns: 1fr; gap: 40px; }
  .master-image-wrap { height: auto; order: 1; }
  .master-text { order: 2; }

  /* Space */
  #space { padding: 80px 0; }
  .space-scroll-inner { padding: 0 20px; }

  /* Reviews */
  #reviews { padding: 80px 0; }
  .review-card { flex: 0 0 85vw; }

  /* Booking */
  #booking { padding: 80px 0; }
  .booking-inner { grid-template-columns: 1fr; gap: 48px; }

  /* FAQ */
  #faq { padding: 80px 0; }
  .faq-q span { font-size: 16px; }

  /* CTA */
  #final-cta { padding: 100px 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Lightbox nav arrows */
  .lb-prev { left: -48px; }
  .lb-next { right: -48px; }
}

/* ============================================================
   AI CHAT WIDGET
   ============================================================ */

/* Floating button */
.ai-chat-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9990;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF2E88 0%, #b8005f 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(255,46,136,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ai-chat-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 44px rgba(255,46,136,0.7);
}
.ai-chat-btn-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,46,136,0.35);
  animation: aiPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes aiPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.75); opacity: 0; }
}

/* Panel */
.ai-chat-panel {
  position: fixed;
  bottom: 108px;
  right: 32px;
  z-index: 9991;
  width: 360px;
  max-height: 540px;
  display: flex;
  flex-direction: column;
  background: rgba(8, 4, 12, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 46, 136, 0.22);
  border-radius: 18px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.85), 0 0 48px rgba(255,46,136,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.ai-chat-panel.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* Header */
.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px 18px 0 0;
  background: rgba(255,46,136,0.07);
  flex-shrink: 0;
}
.ai-chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF2E88, #8b0040);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(255,46,136,0.4);
}
.ai-chat-header-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ai-chat-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 14.5px;
  color: #fff;
  letter-spacing: 0.3px;
}
.ai-chat-status {
  font-size: 10.5px;
  color: #FF65B3;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.ai-chat-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}
.ai-chat-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

/* Messages */
.ai-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 18px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,46,136,0.25) transparent;
}
.ai-chat-messages::-webkit-scrollbar { width: 4px; }
.ai-chat-messages::-webkit-scrollbar-track { background: transparent; }
.ai-chat-messages::-webkit-scrollbar-thumb { background: rgba(255,46,136,0.3); border-radius: 4px; }

.ai-msg { display: flex; flex-direction: column; max-width: 88%; }
.ai-msg.bot  { align-self: flex-start; }
.ai-msg.user { align-self: flex-end; }

.ai-msg-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #fff;
}
.ai-msg.bot .ai-msg-bubble {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom-left-radius: 4px;
}
.ai-msg.user .ai-msg-bubble {
  background: linear-gradient(135deg, #FF2E88, #c4006a);
  border-bottom-right-radius: 4px;
}
.ai-msg-bubble a {
  color: #FF65B3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Typing indicator */
.ai-typing-dots {
  display: flex;
  gap: 5px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.ai-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,46,136,0.7);
  animation: typingDot 1.2s ease-in-out infinite;
}
.ai-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1;   transform: translateY(-4px); }
}

/* Quick replies */
.ai-chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 8px 18px 10px;
  flex-shrink: 0;
}
.ai-quick-btn {
  background: rgba(255,46,136,0.09);
  border: 1px solid rgba(255,46,136,0.28);
  color: #FF65B3;
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 11.5px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.ai-quick-btn:hover {
  background: rgba(255,46,136,0.22);
  border-color: #FF2E88;
  color: #fff;
}

/* Input */
.ai-chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.ai-chat-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  color: #fff;
  font-size: 13.5px;
  font-family: 'Inter', sans-serif;
  padding: 10px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.ai-chat-input::placeholder { color: rgba(255,255,255,0.28); }
.ai-chat-input:focus { border-color: rgba(255,46,136,0.5); }
.ai-chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF2E88, #c4006a);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255,46,136,0.4);
}
.ai-chat-send:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(255,46,136,0.6);
}

/* Mobile */
@media (max-width: 767px) {
  .ai-chat-btn { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .ai-chat-panel {
    right: 12px;
    left: 12px;
    width: auto;
    bottom: 86px;
    max-height: 72vh;
    border-radius: 16px;
  }
}
