/* ============  Root & Base (Neon Fuchsia) ============ */
:root {
  --pink-0: #fff6f9;
  --pink-1: #ffeef5;

  --fuchsia: #ff00a8;
  --fuchsia-2: #ff2ec4;
  --fuchsia-3: #ff6ad5;
  --neon: 0 0 8px rgba(255, 0, 168, .55), 0 0 18px rgba(255, 0, 168, .35), 0 0 32px rgba(255, 0, 168, .25);

  --ink: #121214;
  --gray: #5a5a60;
  --white: #fff;
  --radius: 18px;

  --shadow: 0 10px 28px rgba(0, 0, 0, .12);
  --ring: 0 0 0 2px rgba(255, 0, 168, .22);
}

* {
  box-sizing: border-box
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

/* BG stripes + soft glow */
html {
  background:
  var(--pink-0);
  background-attachment: fixed;
  position: relative;
}

html::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 80% at 80% 0%, rgba(255, 0, 168, .06), rgba(255, 0, 168, 0) 60%),
    radial-gradient(50% 60% at 10% 100%, rgba(255, 0, 168, .05), rgba(255, 0, 168, 0) 60%);
}

body {
  margin: 0;
  color: #16161a;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

figure {
  margin: 0
}

.container {
  width: min(1400px, 92%);
  margin-inline: auto
}

/* ============  Headings  ============ */
h1, h2, h3 {
  /* font-family: "Bebas Neue", "Playfair Display", serif; */
  font-family: "Playfair Display", serif;
    
  letter-spacing: .02em;
  font-weight: 900;
  color: #0f0f12;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.02;
  margin: 0 0 12px
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  margin: 0 0 10px
}

h3 {
  font-size: 1.28rem;
  margin: 0 0 6px
}

.eyebrow {
  letter-spacing: .32em;
  text-transform: uppercase;
  font-size: .76rem;
  color: #303038
}

.muted {
  color: var(--gray)
}

.big {
  font-size: 1.08rem
}



/* ============  Header  ============ */
.vs-header {
 position: relative;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .72));
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 10px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: #0e0e12
}

.brand .heart {
  color: var(--fuchsia);
  text-shadow: var(--neon);
  transform: translateY(-1px)
}

.brand-text {
  font-weight: 800;
  letter-spacing: .02em
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center
}

.nav a {
  color: #19191f;
  text-decoration: none;
  font-weight: 700;
  position: relative
}




.nav  a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fuchsia-3), var(--fuchsia));
  border-radius: 2px;
  transition: width .3s ease;
}

/* при наведении текст остаётся чёрным, но добавляется розовая дымка */
.nav  a:hover {
  color: var(--ink);
    text-shadow: 0 0 14px rgba(255, 0, 170, 0.527), 0 0 28px rgba(255, 0, 170, 0.788);
}

.nav  a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #222;
  margin: 5px 0;
  transition: .25s
}

/* Reserve space under sticky header for the first block */
.hero-neo {
  padding-top: 24px
}

/* Mobile nav */
@media (max-width:880px) {
  .burger {
    display: block
  }

  .nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: rgba(255, 255, 255, .96);
    padding: 18px;
    display: grid;
    gap: 14px;
    transform: translateY(-120%);
    transition: transform .35s ease;
    box-shadow: var(--shadow);
  }

  .nav.open {
    transform: translateY(0)
  }
}

/* ============  Buttons  ============ */
.btn {
  --pad: 13px 18px;
  display: inline-block;
  padding: var(--pad);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(0, 0, 0, 53%);
  background: rgba(255, 255, 255, .78);
  color: #0d0d11;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .25s ease, filter .25s ease;
}

.btn-ghost {
  background: rgba(255, 255, 255, .72)
}

.btn-primary {
  background: linear-gradient(180deg, #ff2ec4, #ff00a8);
;
  color: #ffffff;
 border: 1px solid rgba(0, 0, 0, .53);
  box-shadow: var(--neon), var(--shadow)
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--neon), 0 14px 30px rgba(0, 0, 0, .18)
}

.btn-gloss {
  position: relative;
  overflow: hidden;
  isolation: isolate
}

.btn-gloss::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .7), rgba(255, 255, 255, 0) 60%);
  mix-blend-mode: screen;
  pointer-events: none
}

/* ============  HERO NEO  ============ */
.title-neo {
  font-family: "Bebas Neue", "Anton", "Oswald", "Playfair Display", serif;
  font-weight: 900;
  line-height: 0.98;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  letter-spacing: .01em;
  margin: 6px 0 12px;
  color: #0e0e12;
}

.title-neo .stroke {
  -webkit-text-stroke: 2px var(--fuchsia);
  color: transparent;
  text-shadow: var(--neon);
}

.hero-neo__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
  margin-bottom: 8px
}

.ribbon {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #0f0f12;
  color: #fff;
  font-weight: 800;
  letter-spacing: .18em;
  box-shadow: var(--neon);
}

.marquee {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent)
}

.marquee__track {
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: .18em;
  color: #1f1f26;
  opacity: .9;
  animation: marquee 16s linear infinite
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.hero-neo__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 28px;
  align-items: start
}

.hero-neo__copy .lead {
  max-width: 46ch
}

/* Neon circle */
.halo {
  --size: clamp(220px, 38vw, 360px);
  width: var(--size);
  height: var(--size);
  margin-inline: auto;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, .85) 0, rgba(255, 255, 255, .55) 55%, rgba(255, 255, 255, 0) 70%),
    conic-gradient(from 0deg, var(--fuchsia-3), var(--fuchsia-2), var(--fuchsia), var(--fuchsia-3));
  box-shadow: var(--neon);
  position: relative;
  isolation: isolate;
}

.halo::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(60% 60% at 50% 50%, rgba(255, 0, 168, .45), rgba(255, 0, 168, 0) 70%);
  filter: blur(10px);
  z-index: -1;
}

.halo__inner {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: radial-gradient(60% 60% at 50% 35%, rgba(255, 255, 255, .9), rgba(255, 255, 255, .65) 60%, rgba(255, 255, 255, 0) 80%);
}

.halo__inner h3 {
  margin: 6px 0 4px;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem
}

.halo__tag {
  position: absolute;
  top: 14px;
  right: 18px;
  background: #0f0f12;
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: var(--neon)
}

.chips {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap
}

.chips .chip {
  background: rgba(255, 255, 255, .9)
}

/* right stack */
.hero-neo__media {
  display: grid;
  gap: 14px;
  align-content: start
}

.hero-neo__media .media {
  border-radius: 22px
}

.tilt {
  transform: rotate(-2.5deg);
  transition: transform .35s ease
}

.tilt:hover {
  transform: rotate(-2.5deg) translateY(-6px)
}

/* ============  Sections / Cards  ============ */

.section__head {
  margin-bottom: 18px
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.card {
  background: rgba(255, 255, 255, .84);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 0, 168, .12);
}

/* unified hover */
.card, .tier, .frame, .poster {
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, filter .32s ease;
  will-change: transform, box-shadow;
}

.card:hover, .tier:hover, .frame:hover, .poster:hover {
  transform: translateY(-6px);
  box-shadow: var(--neon), 0 20px 44px rgba(0, 0, 0, .2);
  border-color: rgba(255, 0, 168, .35);
  filter: saturate(1.03);
}

/* pills */
.pillline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px
}

.pill {
  background: linear-gradient(180deg, #ffffff, #ffe9f7);
  border: 1px solid rgba(255, 0, 168, .22);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .82rem;
  box-shadow: 0 0 0 2px rgba(255, 0, 168, .06) inset;
}

/* VIP */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.tier {
  position: relative;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .72));
  border: 1px solid rgba(255, 0, 168, .14);
  box-shadow: var(--shadow);
}

.tier ul {
  padding-left: 18px;
  margin: 10px 0 12px
}

.tier .price {
  font-size: 1.5rem;
  font-weight: 900
}

.tier--featured {
  outline: 2px solid rgba(255, 0, 168, .35)
}

.tier--featured .tag {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 3;
  background: #0f0f12;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: var(--neon)
}

/* Gallery */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.frame {
  background: rgba(255, 255, 255, .82);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px;
  border: 1px solid rgba(255, 0, 168, .12);
  text-align: center;
}

.frame figcaption {
  font-weight: 800;
  color: #1e1e24
}

.ph {
  height: 160px;
  border-radius: 12px
}

.ph--map {
  height: 240px;
  background: linear-gradient(135deg, #ffd2f0, #ff9ad9),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .5) 0 8px, rgba(255, 255, 255, .25) 8px 16px);
}

/* Location / Booking */
.loc {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: start
}

.hours {
  margin: 10px 0 16px;
  padding-left: 18px
}

.book .form {
  max-width: 760px;
  margin-inline: auto
}

.form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
  color: #222
}

.form input, .form select {
  border: 1px solid rgba(255, 0, 168, .18);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .95);
  color: #111
}

.form input:focus, .form select:focus {
  outline: none;
  box-shadow: var(--ring)
}

/* Footer */
.footer {
  margin-top: 38px;
  padding: 26px 0 42px;
  border-top: 1px dashed rgba(0, 0, 0, .16);
  background: linear-gradient(180deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, .78));
}

.brand--footer {
  color: #0f0f12;
  text-decoration: none;
  font-weight: 900;
  text-shadow: var(--neon)
}

.social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.social a {
  color: #201f25;
  text-decoration: none;
  font-weight: 800
}

.social a:hover {
  text-shadow: var(--neon)
}

/* ============  Media (images inside cards/tiers/gallery)  ============ */
.media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 6px);
  aspect-ratio: 16/9;
  background: rgba(0, 0, 0, .06);
}

.media>img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  transform: scale(1);
  transition: transform .45s ease, filter .45s ease;
}

.ar-1x1 {
  aspect-ratio: 1/1
}

.ar-4x3 {
  aspect-ratio: 4/4
}

.ar-3x2 {
  aspect-ratio: 2/2
}

.ar-21x9 {
  aspect-ratio: 21/9
}

.card .media {
  margin-bottom: 12px
}

.tier .media {
  margin-bottom: 14px
}

.frame .media {
  margin-bottom: 8px
}

.card:hover .media>img,
.tier:hover .media>img,
.frame:hover .media>img {
  transform: scale(1.045);
  filter: brightness(1.05) contrast(1.05) saturate(1.08)
}

/* Accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid rgba(255, 0, 168, .6);
  outline-offset: 2px;
  box-shadow: var(--neon);
}

/* Responsive adjustments */
@media (max-width:1060px) {
  .hero-neo__grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px
  }

  .hero-neo__media {
    order: 3;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr
  }

  .halo {
    --size: clamp(220px, 48vw, 360px)
  }
}

@media (max-width:880px) {
  .cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .tiers {
    grid-template-columns: repeat(2, 1fr)
  }

  .loc {
    grid-template-columns: 1fr
  }
}

@media (max-width:640px) {
  .cards, .grid, .tiers {
    grid-template-columns: 1fr
  }

  .form__row {
    grid-template-columns: 1fr
  }

  .marquee {
    display: none
  }

  .hero-neo__media {
    grid-template-columns: 1fr
  }
}



/* ========== ELEGANT HERO ========== */
.hero-elegant {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  overflow: hidden;
}

.hero-elegant__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-elegant__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.2) contrast(1.1) saturate(1.05);
  transform: scale(1.05);
}

.hero-elegant__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255, 0, 168, 0.25), rgba(0, 0, 0, 0.55) 70%);
  mix-blend-mode: screen;
  z-index: 1;
  align-items: center;
    justify-content: center;
    display: flex;
}

.hero-elegant__content {
  position: relative;
  z-index: 2;
  text-align: center;
 
  padding: 0 20px;
  animation: fadeUp 0.9s ease-out both;
}

.hero-elegant .eyebrow {
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.25em;
  margin-bottom: 12px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.05;
  color: #fff;
  margin: 0 0 14px;
}

.hero-title .stroke {
  -webkit-text-stroke: 1px #ff80d5;
  color: transparent;
  text-shadow: 0 0 20px rgba(255, 0, 168, 0.6);
}

.hero-elegant .lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
 
  margin-bottom: 28px;
}

.hero-elegant .btn {
  font-weight: 700;
}

.hero-elegant .btn-primary {
  margin-top: 8px;
  color: #ffffff;
  box-shadow: var(--neon);
}

.hero-elegant .btn-ghost {
  background: rgba(255, 255, 255, 0.75);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .hero-elegant {
    min-height: 60vh;
    text-align: center;
  }

  .hero-elegant__content {
    padding: 0 10px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }
}


#sparkles { display: none;}



/* ===== Velvet Offer Section ===== */
:root{
  --offer-bg: rgba(255,255,255,.86);
  --fuchsia: var(--fuchsia, #ff00a8);
  --fuchsia-2: var(--fuchsia-2, #ff2ec4);
  --fuchsia-3: var(--fuchsia-3, #ff6ad5);
  --radius: var(--radius, 18px);
  --shadow: var(--shadow, 0 10px 28px rgba(0,0,0,.12));
}





/* ===== Pricing Section (Neon Fuchsia) ===== */

.pricing__head {
  margin-bottom: 16px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px){
  .pricing__grid { grid-template-columns: 1fr; }
}

/* Plan card */
.plan {
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.78));
  border: 1px solid rgba(255, 0, 168, .12);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  display: grid;
  align-content: start;
  gap: 14px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, filter .35s ease;
}
.plan:hover {
  transform: translateY(-6px);
  border-color: rgba(255,0,168,.35);
  box-shadow: 0 18px 40px rgba(0,0,0,.18), 0 0 24px rgba(255,0,168,.25);
  filter: saturate(1.03);
}

.plan__header { margin-bottom: 2px; }
.plan__title {
  margin: 0;
  font-weight: 900;
  font-size: 1.28rem;
  color: #111;
}
.plan__subtitle {
  margin: 4px 0 0;
  color: #61616a;
  font-weight: 600;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.plan__amount {
  font-weight: 900;
  font-size: 1.6rem;
  color: #0e0e12;
}
.plan__period {
  color: #5a5a60;
  font-weight: 700;
}
.plan__old {
  color: #8b8b92;
  text-decoration: line-through;
  font-weight: 800;
  margin-right: 2px;
}

/* Featured */
.plan--featured {
  position: relative;
  outline: 2px solid rgba(255,0,168,.35);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  box-shadow: 0 10px 28px rgba(0,0,0,.12), 0 0 30px rgba(255,0,168,.18);
}
.plan--featured .plan__badge{
  position: absolute;
  top: -12px; right: -12px;
  background: #0f0f12; color:#fff;
  border-radius: 999px; padding: 6px 10px;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  box-shadow: 0 0 16px rgba(255,0,168,.45);
}

/* CTA inside plan */
.plan__cta {
  width: 100%;
  text-align: center;
  --pad: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fuchsia-2), var(--fuchsia));
  color: #111 !important;
  box-shadow: 0 0 16px rgba(255,0,168,.45), var(--shadow);
}

/* Features list */
.plan__features {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: grid; gap: 10px;
}
.pf {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  color: #27272f;
  font-weight: 600;
}
.pf__icon{
  margin-top: 2px;
  width: 22px; height: 22px; border-radius: 999px;
  background:
    radial-gradient(90% 90% at 60% 20%, #ff8bdc, #ff2ec4);
  box-shadow: 0 0 0 2px rgba(255,0,168,.12) inset, 0 4px 10px rgba(0,0,0,.08);
  position: relative;
}
.pf__icon::after{
  content:"";
  position:absolute; inset: 6px; border-radius: 50%;
  background: #fff;
}

/* Note under grid */
.pricing__note {
  margin-top: 10px;
}

/* Optional: small lift for featured by default */
@media (min-width: 981px){
  .plan--featured { transform: translateY(-4px); }
  .plan--featured:hover { transform: translateY(-8px); }
}



/* ====== Glow CTA ====== */
.glow-cta{
  position: relative;
  padding: 30px 0;
  
  border-top: 1px solid rgba(255,0,168,.10);
  border-bottom: 1px solid rgba(255,0,168,.10);
}
.glow-cta__inner{
  text-align: center;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,0,168,.12);
  border-radius: calc(var(--radius) + 8px);
  padding: 28px 20px;
  box-shadow: var(--shadow);
}
.glow-cta__title{
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 8px;
}
.glow-cta__lead{ margin: 0 0 16px; color:#2a2a32; }
.glow-cta__actions{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ====== Perks ====== */
.perks__grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:12px;
}
@media (max-width: 860px){ .perks__grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .perks__grid{ grid-template-columns: 1fr; } }

.perk{
  background: linear-gradient(180deg, #fff, #fff5fb);
  border: 1px solid rgba(255,0,168,.12);
  border-radius: 16px;
  padding: 14px 14px;
  font-weight: 700;
  color:#17171c;
  display:flex; align-items:center; gap:12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.perk:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.14), 0 0 18px rgba(255,0,168,.20);
  border-color: rgba(255,0,168,.28);
}
.perk__badge{
  display:inline-grid; place-items:center;
  min-width: 40px; height: 40px; border-radius: 12px;
  font-size:.85rem; color:#fff; font-weight:900;
  background: radial-gradient(90% 90% at 60% 20%, #ff8bdc, #ff2ec4);
  box-shadow: inset 0 0 14px rgba(255,0,168,.35), 0 8px 18px rgba(0,0,0,.08);
}
.perks__cta{ margin-top: 14px; text-align:center; }

/* ====== Lineup (schedule) ====== */
.lineup__list{
  list-style:none; padding:0; margin:0;
  display:grid; gap:10px;
}
.slot{
  display:grid;
  grid-template-columns: 96px 1fr auto;
  align-items:center; gap:12px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,0,168,.12);
  border-radius: 14px;
  padding: 10px 12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.slot:hover{
  transform: translateY(-3px);
  border-color: rgba(255,0,168,.28);
  box-shadow: 0 12px 26px rgba(0,0,0,.12);
}
.slot__time{
  text-align: center;
  display:inline-block;
  padding:8px 12px; border-radius:999px;
  font-weight:900; color:#111;
  background: linear-gradient(90deg, var(--fuchsia-3), var(--fuchsia));
  box-shadow: 0 0 0 2px rgba(255,0,168,.12) inset;
}
.slot__title{ font-weight:800; color:#1a1a22; }
.slot__btn{ --pad: 8px 12px; }

/* ====== Guestlist ====== */
.guestlist__form{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:14px;
  background: rgba(255,255,255,.86);
  border:1px solid rgba(255,0,168,.12);
  border-radius: calc(var(--radius) + 6px);
  padding: 18px;
  box-shadow: var(--shadow);
}
@media (max-width:720px){ .guestlist__form{ grid-template-columns: 1fr; } }

.guestlist__form label{
  display:grid; gap:6px; font-weight:800; color:#222;
}
.guestlist__form input,
.guestlist__form select{
  border:1px solid rgba(255,0,168,.18);
  border-radius:12px; padding:12px 14px;
  background: rgba(255,255,255,.96);
  font-family: inherit; color:#111;
}
.guestlist__form input:focus,
.guestlist__form select:focus{
  outline:none; box-shadow: 0 0 0 2px rgba(255,0,168,.22);
}

.guestlist__actions{
  grid-column: 1 / -1;
  display:flex; align-items:center; gap:12px; flex-wrap:wrap;
}
.guestlist__note{ color:#6a6a72; }



/* ===== Velvet Offer Section ===== */
.offer-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  padding: 30px;
  overflow: hidden;
  /* font-family: "Playfair Display", serif; */
}

/* Left Image */
.offer-left {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.offer-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.offer-left:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}
.offer-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #121214;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

/* Right Side */
.offer-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.offer-title {
  font-size: 42px;
  font-weight: 900;
  margin: 0;
  color: #121214;
}
.offer-desc {
  font-size: 18px;
  color: #5a5a60;
  margin: 0;
  line-height: 1.45;
}

/* Features List */
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(255, 0, 168, 0.15);
  border-radius: 16px;
  padding: 14px 18px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}
.offer-item:hover {
  border-color: rgba(255, 0, 168, 0.4);
  background: #fff7fb;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 0, 168, 0.2);
}
.offer-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(135deg, #ff6ad5, #ff00a8);
  box-shadow: inset 0 6px 12px rgba(255, 255, 255, 0.15);
}

.offer-text p {
  margin: 0;
  font-size: 15px;
  color: #5a5a60;
}

/* CTA */
.offer-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}
.offer-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff2ec4, #ff00a8);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(255, 0, 168, 0.3);
  transition: all 0.3s ease;
}
.offer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 0, 168, 0.45);
}
.offer-note {
  font-size: 14px;
  color: #5a5a60;
}

/* Responsive */
@media (max-width: 1024px) {
  .offer-section {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .offer-title {
    font-size: 36px;
  }
  .offer-left {
    height: 300px;
  }
}
@media (max-width: 640px) {
  .offer-title {
    font-size: 30px;
  }
  .offer-item {
    flex-direction: row;
    align-items: flex-start;
  }
  .offer-icon {
    width: 40px;
    height: 40px;
  }
}



/* --- Left Image --- */
.offer-left {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;                 /* фиксированная высота блока */
  min-height: 360px;             /* минимальная защита от схлопывания */
  max-height: 480px;             /* ограничение на больших экранах */
}

.offer-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* обрезка по краям */
  object-position: center center;/* центрируем */
  display: block;
  border-radius: 18px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.offer-left:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* Бейдж остаётся как был */
.offer-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #121214;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

/* --- адаптив --- */
@media (max-width: 1024px) {
  .offer-left {
    height: 320px;
    max-height: none;
  }
}

@media (max-width: 640px) {
  .offer-left {
    height: 260px;
  }
}



/* ===============================
   Unified 14px corners for cards
   (paste at the very end)
=================================*/

/* если используешь переменную — синхронизируем */
:root { --radius: 14px; }

/* основные карточные контейнеры */
.card,
.tier,
.frame,
.poster,
.plan,
.plan--featured,
.offer-section,
.offer-left,
.offer-item,
.guestlist__form,
.perk,
.slot,
.glow-cta__inner {
  border-radius: 14px !important;
}

/* медиа-контейнеры внутри карточек */
.media {
  border-radius: 14px !important;
}
.media > img {
  border-radius: 14px !important;
}

/* локальные исправления прежних значений */
.offer-left img {            /* было 18px */
  border-radius: 14px !important;
}
.offer-section {             /* было 20px */
  border-radius: 14px !important;
}
.offer-item {                /* было 16px */
  border-radius: 14px !important;
}

/* галерея/плейсхолдеры, если используются */
.ph,
.ph--map {
  border-radius: 14px !important;
}



/* ===== Custom Scrollbar — Dogeboy Style ===== */
::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 100vw;
  margin: 6px 0;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff2ec4, #ff00a8);
  border-radius: 100vw;
  box-shadow: 0 0 10px rgba(255, 0, 168, 0.45);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff6ad5, #ff00a8);
  box-shadow: 0 0 14px rgba(255, 0, 168, 0.65);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #ff00a8, #ff2ec4);
  box-shadow: 0 0 16px rgba(255, 0, 168, 0.75);
}

.left  h1 {
  margin-bottom: 40px;
}

/* ===== Gradient Links — DogeBoy Style ===== */
.left a {
  position: relative;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #ff6ad5, #ff2ec4, #ff00a8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: text-shadow 0.25s ease, transform 0.2s ease;
}

/* Подчёркивание — неоновая розовая линия */
.left a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(135deg, #ff6ad5, #ff2ec4, #ff00a8);
  box-shadow: 0 0 8px rgba(255, 0, 168, 0.6);
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 0.25s ease, height 0.25s ease, opacity 0.25s ease;
  opacity: 0.9;
}

/* Hover / Focus — свечение + лёгкий рост линии */
.left a:hover,
.left a:focus-visible {
  text-shadow: 0 0 10px rgba(255, 0, 168, 0.5);
  transform: translateY(-1px);
}

.left a:hover::after,
.left a:focus-visible::after {
  height: 3px;
  transform: scaleX(1.05);
  box-shadow: 0 0 12px rgba(255, 0, 168, 0.75);
}

/* Доступность */
.left a:focus-visible {
  outline: none;
}

/* Если пользователь отключил анимацию */
@media (prefers-reduced-motion: reduce) {
  .left a::after {
    transition: none;
  }
}
