
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080808;
  --bg2:       #0e0e0e;
  --bg3:       #141414;
  --surface:   #161616;
  --surface2:  #1c1c1c;
  --neon:      #ff2d78;
  --neon-dim:  #c0245e;
  --neon2:     #b026ff;
  --neon2-dim: #8a1dcc;
  --text:      #ebebeb;
  --text-muted:#555;
  --border:    #1f1f1f;
  --border2:   #2a2a2a;
  --radius:    10px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: normal; }

h1, h2, h3, .logo {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Inter', sans-serif;
  position: relative;
}
.btn--primary {
  background: var(--neon);
  color: #fff;
}
.btn--primary:hover {
  background: var(--neon-dim);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,45,120,.5), 0 0 60px rgba(255,45,120,.15);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn--ghost:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: inset 0 0 20px rgba(255,45,120,.05);
}
.btn--outline {
  background: transparent;
  color: var(--neon);
  border: 1px solid var(--neon);
}
.btn--outline:hover {
  background: var(--neon);
  color: #fff;
  box-shadow: 0 0 24px rgba(255,45,120,.4);
}
.btn--nav {
  background: var(--neon);
  color: #fff;
  padding: 9px 20px;
  font-size: 12px;
}
.btn--nav:hover {
  background: var(--neon-dim);
  box-shadow: 0 0 20px rgba(255,45,120,.4);
}
.btn--lg { padding: 15px 32px; font-size: 14px; }
.btn--full { width: 100%; justify-content: center; }
.btn:active { transform: scale(0.95); transition: transform .08s ease; }

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.header--scrolled {
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  padding: 12px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  font-size: 26px;
  color: var(--text);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.logo span { color: var(--neon); }

.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav a:hover { color: var(--text); }

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 8px 24px 20px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  padding: 13px 0;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--text); }
.mobile-nav .btn--full { margin-top: 16px; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .55;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 600px; height: 600px;
  background: rgba(255, 45, 120, .09);
  top: -100px; left: -100px;
  will-change: transform, translate, opacity;
  animation: glow1-drift 14s ease-in-out infinite;
}
.hero__glow--2 {
  width: 500px; height: 500px;
  background: rgba(176, 38, 255, .08);
  bottom: -100px; right: 0;
  will-change: transform, translate, opacity;
  animation: glow2-drift 18s ease-in-out infinite;
  animation-delay: -7s;
}
@keyframes glow1-drift {
  0%, 100% { translate: 0px 0px;    opacity: .85; }
  30%       { translate: 90px -70px; opacity: 1;   }
  60%       { translate: -50px 90px; opacity: .65; }
}
@keyframes glow2-drift {
  0%, 100% { translate: 0px 0px;     opacity: .75; }
  35%       { translate: -100px 60px; opacity: 1;   }
  70%       { translate: 70px -80px;  opacity: .55; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero__emblem {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 28px;
}
.hero__emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(255,255,255,.93);
  border-radius: 18px;
  padding: 8px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 0 30px rgba(255,45,120,.35),
    0 0 70px rgba(176,38,255,.2);
}
.hero__emblem-ring {
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  border: 1px solid rgba(255, 45, 120, .25);
  animation: ring-pulse 3s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.03); }
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.hero__tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero__title {
  font-size: clamp(64px, 7.5vw, 108px);
  color: var(--text);
  margin-bottom: 20px;
  line-height: .95;
}
.hero__title em {
  color: var(--neon);
  text-shadow: 0 0 40px rgba(255,45,120,.4);
  display: block;
}

.hero__sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero__photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(15%);
}
.hero__photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.85) 0%, transparent 50%);
}

.hero__logo-wrap {
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.hero__logo-wrap::after { display: none; }
.hero__logo-big {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: invert(1);
}
.hero__photo-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.hero__photo-label span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.03em;
}
.hero__photo-sub {
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--neon) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
}
.hero__photo-star {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 22px;
  color: var(--neon);
  text-shadow: 0 0 16px rgba(255,45,120,.7);
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--surface);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  line-height: 1;
  color: var(--text);
}
.stat__label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

section[id] { scroll-margin-top: 80px; }
.section { padding: 96px 0; }
.section--dark { background: var(--bg2); }
.section--accent {
  background: linear-gradient(160deg, var(--bg2) 0%, #0e0008 100%);
}

.section__head {
  text-align: center;
  margin-bottom: 60px;
}
.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.section__tag::before {
  content: '✦';
  color: var(--neon);
  font-size: 10px;
}
.section__title {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--text);
  margin-bottom: 14px;
}
.section__desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto;
}

.masters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.masters-grid--single {
  grid-template-columns: minmax(0, 400px);
  justify-content: center;
}
.master-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.master-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
  border-color: rgba(255,45,120,.2);
}
.master-card__photo {
  height: 220px;
  background: var(--surface2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.master-card--hero .master-card__photo { height: 380px; }
.master-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(10%);
}
.master-card__badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--bg);
  color: var(--neon);
  border: 1px solid rgba(255,45,120,.4);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(6px);
}
.master-card__info { padding: 22px; }
.master-card__info h3 { font-size: 32px; margin-bottom: 4px; }
.master-card__spec {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.master-card__badge--founder {
  background: var(--bg);
  border-color: rgba(255,45,120,.4);
}
.master-card__price {
  color: var(--neon);
  font-weight: 600;
}
.master-card__bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 6px;
}
.master-card__exp {
  font-size: 13px;
  color: var(--neon);
  display: flex;
  align-items: center;
  gap: 6px;
}

.services-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  margin-bottom: 48px;
  scrollbar-width: thin;
  scrollbar-color: var(--border2) transparent;
}
.services-grid::-webkit-scrollbar { height: 4px; }
.services-grid::-webkit-scrollbar-track { background: transparent; }
.services-grid::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 99px;
}
.services-grid--no-scrollbar {
  scrollbar-width: none;
}
.services-grid--no-scrollbar::-webkit-scrollbar { display: none; }
.service-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s, border-color .2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 100%;
  background: var(--neon);
  opacity: 0;
  transition: opacity .2s;
}
.service-card--color::before { background: var(--neon2); }
.service-card:hover { background: var(--surface2); border-color: var(--border2); }
.service-card:hover::before { opacity: 1; }

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card__icon {
  width: 38px; height: 38px;
  background: rgba(255,45,120,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--neon);
  flex-shrink: 0;
}
.service-card__icon--2 {
  background: rgba(176,38,255,.1);
  color: var(--neon2);
}
.service-card__dur {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg3);
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid var(--border2);
  white-space: nowrap;
}
.service-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 21px;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.service-card__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--neon);
  letter-spacing: 0.03em;
  line-height: 1;
}
.service-card__price--color { color: var(--neon2); }
.service-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.services-category { margin-bottom: 40px; }
.services-category:last-of-type { margin-bottom: 0; }
.services-category__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--neon);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border2);
  width: 100%;
}
.services-category__label--2 { color: var(--neon2); }
.services-category__label--2 + .services-grid .service-card--color::before {
  background: var(--neon2);
}

.services__cta { text-align: center; margin-top: 48px; }

.scroll-wrap {
  position: relative;
}
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateY(-4px);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, box-shadow .2s, color .2s;
  flex-shrink: 0;
}
.scroll-btn:hover {
  background: var(--neon);
  border-color: var(--neon);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,45,120,.4);
}
.scroll-btn--prev { left: -20px; }
.scroll-btn--next { right: -20px; }

.gallery-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 4px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border2) transparent;
}
.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-track { background: transparent; }
.gallery-scroll::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 99px;
}
.gallery-item {
  flex: 0 0 260px;
  height: 340px;
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  transform-origin: center;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.05); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.gallery-placeholder i { font-size: 28px; color: var(--border2); }
.gallery-placeholder:hover {
  border-color: var(--neon);
  background: var(--surface2);
}
.gallery-placeholder:hover i {
  color: var(--neon);
  transform: scale(1.15);
  transition: transform .2s, color .2s;
}

.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.booking__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.booking__text .section__title { text-align: left; margin-bottom: 0; font-size: 52px; }
.booking__text p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

.booking-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 12px 15px;
  color: var(--text);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color .2s;
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); font-size: 13px; }
.form-group select option { background: var(--bg3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,45,120,.5);
}
.input--error {
  border-color: var(--neon) !important;
}
.form-error {
  font-size: 11px;
  color: var(--neon);
  display: none;
  padding-left: 2px;
}
.form-error.visible { display: block; }

.product__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.product__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.product__img-wrap:hover .product__img { transform: scale(1.04); }
.product__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.product__title { text-align: left; margin-bottom: 0; }
.product__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.product__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--neon);
  letter-spacing: 0.03em;
  line-height: 1;
  text-shadow: 0 0 30px rgba(255,45,120,.35);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item > i {
  font-size: 20px;
  color: var(--neon);
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  color: var(--text-muted);
}
.contact-item p { color: var(--text); font-size: 14px; line-height: 1.75; }
.contact-item a { color: var(--text); transition: color .2s; }
.contact-item a:hover { color: var(--neon); }
.contact-socials {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.contact-socials a {
  font-size: 52px;
  color: var(--text-muted);
  transition: color .2s, transform .2s;
}
.contact-socials a:hover {
  color: var(--neon);
  transform: translateY(-2px);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
}

.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer .logo { font-size: 20px; }
.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.03em;
}
.footer__socials {
  display: flex;
  gap: 14px;
}
.footer__socials a {
  font-size: 20px;
  color: var(--text-muted);
  transition: color .2s;
}
.footer__socials a:hover { color: var(--neon); }
.footer__copy-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.footer__credit {
  font-size: 10px;
  color: var(--text-muted);
  opacity: .4;
  letter-spacing: 0.04em;
  text-align: center;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.modal.active { opacity: 1; pointer-events: all; }
.modal__box {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 340px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.modal__icon {
  font-size: 48px;
  color: var(--neon);
  text-shadow: 0 0 30px rgba(255,45,120,.6);
  line-height: 1;
}
.modal__box h3 { font-size: 36px; }
.modal__box p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  z-index: 9999;
  pointer-events: none;
  transition: width .1s linear;
}

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
#lightbox.active { opacity: 1; pointer-events: all; }
.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lbImg {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,.8);
  transform-origin: center;
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}
.lightbox__close:hover { background: var(--neon); border-color: var(--neon); }
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.lightbox__nav:hover { background: var(--neon); border-color: var(--neon); box-shadow: 0 0 20px rgba(255,45,120,.4); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__zoom {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.lightbox__zoom button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}
.lightbox__zoom button:hover {
  background: var(--neon);
  border-color: var(--neon);
}

@keyframes page-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: page-fadein .5s ease both; }

@keyframes neon-flicker {
  0%,88%,90%,95%,97%,100% { opacity: 1; }
  89%,96% { opacity: .15; }
  91%,98% { opacity: .75; }
}
.logo span { animation: neon-flicker 7s linear infinite; }
.hero__title em { animation: neon-flicker 7s linear infinite; animation-delay: 3.5s; }

@keyframes stat-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stat { animation: stat-in .5s ease both; }
.stat:nth-child(1) { animation-delay: .15s; }
.stat:nth-child(2) { animation-delay: .28s; }
.stat:nth-child(3) { animation-delay: .41s; }

.nav a.nav--active { color: var(--text); }
.nav a.nav--active::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--neon);
  margin-top: 2px;
  border-radius: 99px;
  box-shadow: 0 0 6px var(--neon);
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s, transform .25s, background .2s, box-shadow .2s;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--neon);
  border-color: var(--neon);
  box-shadow: 0 0 20px rgba(255,45,120,.45);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease var(--reveal-delay, 0s), transform .55s ease var(--reveal-delay, 0s);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__right { display: none; }
  .hero__left { align-items: flex-start; }

  .product__inner { grid-template-columns: 1fr; gap: 36px; }
  .booking__inner { grid-template-columns: 1fr; gap: 40px; }
  .contacts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav, .btn--nav { display: none; }
  .burger { display: block; }
  .section { padding: 64px 0; }

  .hero__title { font-size: 52px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__copy { text-align: center; }
  .booking__text .section__title { font-size: 40px; }

  
  body::before { display: none; }
  .hero__grain { display: none; }
  .hero__glow--1,
  .hero__glow--2 { filter: blur(60px); animation: none; }
  .logo span { animation: none; }
  .hero__title em { animation: none; }
}

@media (max-width: 480px) {
  .scroll-btn { width: 32px; height: 32px; font-size: 18px; }
  .scroll-btn--prev { left: -16px; }
  .scroll-btn--next { right: -16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .service-card { flex: 0 0 240px; }
}

.reviews-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 4px 16px;
  scrollbar-width: none;
}
.reviews-grid::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .25s;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 4px;
  right: 20px;
  font-size: 100px;
  line-height: 1;
  color: rgba(255,45,120,0.07);
  pointer-events: none;
  font-family: Georgia, 'Times New Roman', serif;
  user-select: none;
}
.review-card:hover { border-color: rgba(255,45,120,.2); }
.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: 2px solid var(--border2);
}
.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.review-card__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.review-card__stars {
  color: #f5a623;
  font-size: 13px;
  display: flex;
  gap: 2px;
}
.review-card__date {
  font-size: 11px;
  color: var(--text-muted);
}
.review-card__source {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg3);
  border: 1px solid var(--border2);
  padding: 4px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.review-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
.review-card__initials {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--neon);
  flex-shrink: 0;
}

.marquee-strip {
  overflow: hidden;
  background: #180008;
  padding: 11px 0;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,45,120,0.2);
  border-bottom: 1px solid rgba(255,45,120,0.2);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  animation: marquee-scroll 22s linear infinite;
  will-change: transform;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.15em;
  color: var(--neon);
  flex-shrink: 0;
}
.marquee-sep {
  color: rgba(255,45,120,0.45);
  font-size: 11px;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.sticky-booking {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 180;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(8,8,8,0.97) 60%, transparent);
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.25,0.46,0.45,0.94);
  pointer-events: none;
}
.sticky-booking.visible { transform: translateY(0); pointer-events: all; }
.sticky-booking__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--neon);
  color: #fff;
  padding: 15px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 0 28px rgba(255,45,120,0.45);
  transition: background 0.2s;
}
.sticky-booking__btn:hover { background: var(--neon-dim); }
@media (max-width: 768px) {
  .sticky-booking { display: block; }
  .back-to-top { bottom: 90px; }
}
