:root {
  --primary-400: #d0b48a;
  --primary-500: #641625;
  --primary-600: #4a0e19;
  --hero-red: #ff0000;
  --button-red-base: #c81313;
  --button-red-hover: #d91a1a;
  --dark-900: #000000;
  --dark-800: #0a0a0a;
  --dark-700: #141414;
  --dark-600: #1a1a1a;
  --text: #e7dcc8;
  --muted: #b3a48c;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  --glass: rgba(20, 20, 20, 0.7);
  --border: rgba(208, 180, 138, 0.24);
  --radius: 16px;
  --radius-pill: 999px;
  --max-width: 1100px;
  --font-body-main: 'Lora', Georgia, serif;
  --font-body-alt: 'EB Garamond', Georgia, serif;
  --font-title-main: 'Playfair Display', serif;
  --font-title-alt: 'Cinzel', serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body-main);
  background: #000000;
  background-color: var(--dark-900);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
  visibility: visible;
  opacity: 1;
}

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

img {
  max-width: 100%;
  display: block;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: optimizeQuality;
}

.card-image {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  image-rendering: auto;
  min-height: 150px;
}

#services-list .card-image {
  max-width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 120px;
  max-height: 220px;
}

.card-image-medium {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  min-height: 150px;
}

.card-image-small {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  image-rendering: auto;
  display: block;
}

.dancer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

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

.nav {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5));
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: background, box-shadow;
  transform: translateZ(0);
}

.nav--scrolled {
  box-shadow: var(--shadow);
  background: rgba(0, 0, 0, 0.95);
}

.nav--open {
  box-shadow: var(--shadow);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1.35rem;
  color: var(--hero-red);
}

.nav .logo {
  padding-left: 1rem;
}

.nav__links {
  display: none;
  gap: 1.2rem;
  align-items: center;
}

.nav__links a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--primary-400);
  transition: color 0.2s ease;
}

.nav__toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.55rem 0.6rem;
  cursor: pointer;
  display: grid;
  gap: 4px;
  place-items: center;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.nav__mobile {
  display: none;
  gap: 0.8rem;
  padding: 0 1.25rem 1rem;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid var(--border);
}

.nav__mobile[hidden] {
  display: none !important;
}

.nav__mobile:not([hidden]) {
  display: grid !important;
}

.nav__mobile a {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--glass);
  color: var(--text);
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/main.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  z-index: 0;
  filter: brightness(0.6) contrast(1.1);
  transform: translateZ(0);
  image-rendering: auto;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.hero__overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.05) 2px, rgba(0, 0, 0, 0.05) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.05) 2px, rgba(0, 0, 0, 0.05) 4px);
  opacity: 0.5;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin-bottom: 2rem;
}

.hero__main-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
  line-height: 1;
  white-space: nowrap;
}

.hero__part-white {
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__part-red {
  color: var(--hero-red);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 6rem;
  text-transform: uppercase;
  align-self: baseline;
  animation: redGlowPulse 2.5s ease-in-out infinite;
  transform-origin: center;
  will-change: text-shadow, transform;
}

@keyframes redGlowPulse {
  0%, 100% {
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5), 0 0 40px rgba(255, 0, 0, 0.2);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 50, 50, 1), 0 0 80px rgba(255, 0, 0, 0.7), 0 0 100px rgba(255, 0, 0, 0.4);
    transform: scale(1.02);
  }
}

.hero__subtitle-loc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  letter-spacing: 0.8em;
  text-transform: uppercase;
  color: rgba(231, 220, 200, 0.9);
  margin-top: 0.5rem;
  margin-left: 0.8em;
}

.hero__since {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 0.5rem;
  width: fit-content;
  position: relative;
}

.hero__since span {
  display: inline-block;
  color: var(--text);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px rgba(231, 220, 200, 0.45), 0 0 18px rgba(231, 220, 200, 0.2), 0 2px 8px rgba(0, 0, 0, 0.8);
  filter: drop-shadow(0 0 4px rgba(231, 220, 200, 0.35));
}

.services-fullscreen {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1.25rem;
  text-align: center;
  overflow: hidden;
  color: var(--text);
}


.services-fullscreen__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.8);
}

.services-fullscreen__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-fullscreen__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.services-fullscreen__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.services-fullscreen__content .lede {
  text-align: justify;
}

.services-reveal-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
  border: 0;
  background: transparent;
  padding: 0;
  color: #e7dcc8 !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  transition: color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.services-reveal-inline:hover {
  color: #e7dcc8 !important;
  transform: translateY(1px);
}

.services-reveal-inline svg {
  width: 1.2rem;
  height: 1.2rem;
  animation: bounce 2s infinite;
}

.services-reveal-inline.is-open svg {
  transform: rotate(180deg);
  animation: none;
}

.services-fullscreen__content h2 {
  font-size: 3.5rem;
  font-family: 'Playfair Display', serif;
  margin: 1rem 0;
  color: var(--hero-red);
}

.services-story {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height 1.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease, padding 0.75s ease;
}

.services-story.is-open {
  max-height: 5000px;
  opacity: 1;
  padding-top: 1.5rem;
  padding-bottom: 0;
  overflow: visible;
}

.services-story__content {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.5rem;
  transform: translateY(18px);
  opacity: 0;
  border: 1px solid rgba(208, 180, 138, 0.22);
  border-radius: var(--radius);
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.services-story.is-open .services-story__content {
  transform: translateY(0);
  opacity: 1;
}

.services-story__content p {
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.services-story.is-open .services-story__content p {
  opacity: 1;
  transform: translateY(0);
}

.services-story.is-open .services-story__content p:nth-child(1) { transition-delay: 0.2s; }
.services-story.is-open .services-story__content p:nth-child(2) { transition-delay: 0.38s; }
.services-story.is-open .services-story__content p:nth-child(3) { transition-delay: 0.56s; }
.services-story.is-open .services-story__content p:nth-child(4) { transition-delay: 0.74s; }

.services-story[aria-hidden="true"] .services-story__content p {
  transition-delay: 0s !important;
}

.services-story__content p:last-child {
  margin-bottom: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s;
}

.scroll-indicator span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 300;
}

.scroll-indicator svg {
  animation: bounce 2s infinite;
}

.scroll-indicator:hover {
  color: #ff0000;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

#about {
  padding-top: 5px;
}

#location {
  padding-top: 0.5rem;
}

#services-list {
  padding-bottom: 1rem;
}

#services-story.services-story[aria-hidden="true"] {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  max-height: 0;
}

#dancers {
  padding-top: 0;
}

#contact {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

#location {
  padding-top: 0;
  padding-bottom: 1rem;
}

#location .section__header {
  margin-bottom: 1.5rem;
}

.section--muted {
  background: rgba(10, 10, 10, 0.5);
}

.section--with-bg {
  position: relative;
  overflow: hidden;
}

.section__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/limousine-bg.jpg');
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 1;
}

.section--with-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 70%);
  z-index: 0;
}

.section--with-bg .container {
  position: relative;
  z-index: 1;
}

.section--with-bg-left {
  position: relative;
  overflow: hidden;
}

.section__bg--left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  background-image: url('images/IMG_7667.JPG');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 1;
  filter: grayscale(100%) brightness(0.3);
  -webkit-filter: grayscale(100%) brightness(0.3);
}

.section__bg--right {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 50%;
  background-image: url('images/IMG_7674.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 1;
  filter: grayscale(100%) brightness(0.3);
  -webkit-filter: grayscale(100%) brightness(0.3);
}

.section--with-bg-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  pointer-events: none;
}

.section--with-bg-left::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, transparent 48%, rgba(0, 0, 0, 0.1) 50%, transparent 52%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.section--with-bg-left .container {
  position: relative;
  z-index: 2;
}

.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.eyebrow {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-400);
  font-weight: 700;
  font-size: 0.78rem;
  margin: 0 0 0.4rem;
}

.display {
  font-family: var(--font-title-main);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
  color: var(--hero-red);
}

.lede {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--font-body-alt);
  letter-spacing: 0.01em;
}

.cards {
  display: grid;
  gap: 2rem;
}

.cards--two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.cards--four {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.cards--two-wide {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.card {
  padding: 1.6rem;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  transform: translateZ(0);
}

#services-list .card {
  padding: 1.25rem;
}

.card:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateZ(0);
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.3rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body-alt);
  letter-spacing: 0.01em;
}

.pill {
  text-align: center;
}

.list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.list li {
  position: relative;
  padding-left: 1.35rem;
  font-family: var(--font-body-alt);
  letter-spacing: 0.01em;
}

.list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-400);
  font-weight: 700;
}

.dancers-intro-card {
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.dancers-intro-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-400);
}

.dancers-intro-card p {
  margin-bottom: 1.5rem;
  color: var(--muted);
  line-height: 1.7;
}

.dancers-origins {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.origin-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: var(--primary-400);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.origin-tag:hover {
  background: rgba(220, 38, 38, 0.25);
  border-color: rgba(220, 38, 38, 0.5);
  transform: translateY(-1px);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-start;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}

.center {
  text-align: center;
  margin-top: 1.5rem;
}

#location .center {
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: 'Libre Caslon Text', 'Lora', serif;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-cta-row {
  margin-top: 5px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: nowrap;
}

.hero-cta-btn {
  border-radius: 999px;
  padding: 0.58rem 0.84rem;
  white-space: nowrap;
  width: 122px;
  font-family: 'Libre Caslon Text', 'Lora', serif;
  font-weight: 700;
  letter-spacing: 0.035em;
  font-size: 0.72rem;
}

.hero-cta-btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.btn--primary {
  background: linear-gradient(135deg, var(--button-red-hover), var(--button-red-base) 68%);
  color: #111111;
  border-color: rgba(208, 180, 138, 0.35);
  box-shadow: 0 10px 24px rgba(200, 19, 19, 0.32), 0 4px 10px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 14px rgba(217, 26, 26, 0.26);
  will-change: transform;
  transform: translateZ(0);
}

.btn--primary:hover {
  transform: translate3d(0, -1px, 0);
  background: linear-gradient(135deg, #e42626, var(--button-red-hover) 68%);
  color: #111111;
  box-shadow: 0 14px 30px rgba(217, 26, 26, 0.4), 0 6px 14px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 0 20px rgba(228, 38, 38, 0.34);
}

#about .cards--two .card h3,
#about .cards--four .card h4 {
  color: var(--hero-red);
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.24);
}

#services-list .card h3 {
  color: var(--hero-red);
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.24);
}

#services-list .list li::before {
  color: var(--hero-red);
}

#location .eyebrow,
#contact .eyebrow {
  color: var(--hero-red);
}

/* Subtle global glow for red headline text */
.logo,
.hero__part-red,
.display,
.services-fullscreen__content h2,
#about .cards--two .card h3,
#about .cards--four .card h4,
#services-list .card h3,
#location .eyebrow,
#contact .eyebrow,
.subpage-hero__content h1,
.subpage-content h2,
.subpage-content h3,
.vip-package h3 {
  text-shadow: 0 0 18px rgba(255, 0, 0, 0.45), 0 0 36px rgba(255, 0, 0, 0.24);
  animation: redTitleGlowPulse 2.8s ease-in-out infinite;
}

@keyframes redTitleGlowPulse {
  0%, 100% {
    text-shadow: 0 0 18px rgba(255, 0, 0, 0.45), 0 0 36px rgba(255, 0, 0, 0.24);
  }
  50% {
    text-shadow: 0 0 28px rgba(255, 40, 40, 0.75), 0 0 64px rgba(255, 0, 0, 0.45);
  }
}

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

.btn--ghost:hover {
  border-color: rgba(208, 180, 138, 0.55);
  color: var(--primary-400);
}

.text-gradient {
  color: var(--hero-red);
  text-shadow: 0 2px 10px rgba(220, 38, 38, 0.6), 0 4px 20px rgba(220, 38, 38, 0.4);
  filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.5));
}

.lead {
  font-size: 1.2rem;
  margin: 0.2rem 0 0.3rem;
}

.muted {
  color: var(--muted);
}

.contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.contact li {
  display: block;
  align-items: start;
}

.contact a {
  color: var(--text);
  font-weight: 600;
}

.form {
  display: grid;
  gap: 0.75rem;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
}

.form input:focus,
.form textarea:focus {
  outline: 1px solid rgba(248, 113, 113, 0.7);
}

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

.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  background: rgba(0, 0, 0, 0.9);
}

.footer__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-bottom: 1.5rem;
}

.foot-head {
  font-weight: 700;
  margin: 0 0 0.6rem;
}

.foot-links {
  display: grid;
  gap: 0.3rem;
  color: var(--muted);
}

.foot-links a {
  color: var(--muted);
}

.footer__meta {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.dancers-slideshow {
  position: relative;
  margin: 3rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.dancers-slideshow__container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.dancers-slideshow__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.dancers-slideshow__slide {
  min-width: 100%;
  flex-shrink: 0;
  aspect-ratio: 2 / 3;
  position: relative;
  overflow: hidden;
  max-height: 400px;
  max-width: 600px;
}
.dancers-slideshow__slide img {
  width: 100%;
  height: 100%;
  max-width: 600px;
  object-fit: cover;
  display: block;
  image-rendering: auto;
}
.dancers-slideshow__slide:nth-child(4) img {
  filter: saturate(1.45);
}

.dancers-slideshow__controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
  z-index: 2;
}

.dancers-slideshow__prev,
.dancers-slideshow__next {
  pointer-events: all;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid var(--border);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dancers-slideshow__prev:hover,
.dancers-slideshow__next:hover {
  background: rgba(220, 38, 38, 0.3);
  border-color: var(--primary-500);
  transform: scale(1.1);
}

.dancers-slideshow__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.dancers-slideshow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dancers-slideshow__dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.dancers-slideshow__dot.active {
  background: var(--primary-500);
  width: 24px;
  border-radius: 5px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-fade-in {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  will-change: opacity, transform;
}

.scroll-fade-in.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.scroll-slide-left {
  opacity: 0;
  transform: translate3d(-30px, 0, 0);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  will-change: opacity, transform;
}

.scroll-slide-left.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.scroll-slide-right {
  opacity: 0;
  transform: translate3d(30px, 0, 0);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  will-change: opacity, transform;
}

.scroll-slide-right.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.scroll-scale {
  opacity: 0;
  transform: scale3d(0.95, 0.95, 1);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  will-change: opacity, transform;
}

.scroll-scale.visible {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  will-change: auto;
}

.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  box-shadow: 0 0 3px rgba(255, 255, 255, 0.3), 0 0 6px rgba(255, 255, 255, 0.2);
  animation: sparkle 8s infinite;
  opacity: 0;
  will-change: opacity, transform;
  transform: translateZ(0);
  contain: layout style paint;
}

.sparkle:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 35%; left: 75%; animation-delay: 2s; }
.sparkle:nth-child(3) { top: 55%; left: 45%; animation-delay: 4s; }
.sparkle:nth-child(4) { top: 70%; left: 25%; animation-delay: 1s; }
.sparkle:nth-child(5) { top: 25%; left: 60%; animation-delay: 3s; }
.sparkle:nth-child(6) { top: 80%; left: 70%; animation-delay: 5s; }

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale3d(0, 0, 1) rotate(0deg); }
  15% { opacity: 0.4; transform: scale3d(1, 1, 1) rotate(45deg); }
  30% { opacity: 0.6; transform: scale3d(1.1, 1.1, 1) rotate(90deg); }
  45% { opacity: 0.5; transform: scale3d(1, 1, 1) rotate(135deg); }
  60% { opacity: 0.7; transform: scale3d(1.05, 1.05, 1) rotate(180deg); }
  75% { opacity: 0.4; transform: scale3d(0.9, 0.9, 1) rotate(225deg); }
  90% { opacity: 0.6; transform: scale3d(1, 1, 1) rotate(270deg); }
}

.chatbot {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.chatbot__button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--primary-500), var(--primary-600));
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.chatbot__button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
}

.chatbot__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.chatbot__icon--header {
  width: 40px;
  height: 40px;
}

.chatbot__icon--message {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}

.chatbot__window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: rgba(10, 10, 10, 0.75);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  will-change: transform, opacity;
  transform: translateZ(0);
}

.chatbot__window.active {
  display: flex;
}

.chatbot__header {
  padding: 1rem;
  background: rgba(20, 20, 20, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.chatbot__header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot__header-info h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chatbot__brand {
  font-weight: 700;
  color: var(--primary-500);
  letter-spacing: 1px;
}

.chatbot__girl-name {
  font-weight: 500;
  color: var(--text);
}

.chatbot__header-info p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.chatbot__header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.chatbot__change-girl {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
}

.chatbot__change-girl:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.chatbot__close {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.chatbot__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.chatbot__girl-selector {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  z-index: 10;
  display: none;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.chatbot__girl-selector.active {
  display: flex;
}

.chatbot__girl-selector-header {
  padding: 1rem;
  background: rgba(20, 20, 20, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.chatbot__girl-selector-header h5 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}

.chatbot__close-selector {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.chatbot__close-selector:hover {
  background: rgba(255, 255, 255, 0.1);
}

.chatbot__girl-list {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.chatbot__girl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(20, 20, 20, 0.6);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.chatbot__girl-item:hover {
  background: rgba(26, 26, 26, 0.7);
  border-color: var(--primary-500);
  transform: translateY(-2px);
}

.chatbot__girl-item.active {
  border-color: var(--primary-500);
  background: rgba(220, 38, 38, 0.2);
}

.chatbot__girl-item-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.chatbot__girl-item-name {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chatbot__message {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  animation: fadeInUp 0.3s ease-out;
}

.chatbot__message--bot {
  flex-direction: row;
}

.chatbot__message--user {
  flex-direction: row-reverse;
}

.chatbot__message--user .chatbot__message-content {
  background: var(--primary-600);
  color: var(--text);
}

.chatbot__message-content {
  background: rgba(20, 20, 20, 0.6);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  max-width: 75%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.chatbot__message-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.chatbot__input-container {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 0.5rem;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.chatbot__input {
  flex: 1;
  padding: 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.5);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.chatbot__input:focus {
  outline: 2px solid var(--primary-500);
  border-color: var(--primary-500);
}

.chatbot__send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-600);
  border: none;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.chatbot__send:hover {
  background: var(--primary-500);
  transform: scale(1.1);
}

.location-map-container {
  margin-bottom: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.map {
  width: 100%;
  height: 360px;
  background: var(--dark-800);
  border-radius: var(--radius);
}

.location-cards-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  z-index: 1000;
  pointer-events: none;
}

.location-card {
  pointer-events: auto;
  padding: 1.25rem;
  max-width: 280px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.location-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-400);
}

.location-card .lead {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.location-card .muted {
  font-size: 0.9rem;
  color: var(--muted);
}

.custom-marker {
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
}

.marker-pin {
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: var(--primary-600);
  transform: rotate(-45deg);
  position: relative;
  box-shadow: 0 3px 10px rgba(220, 38, 38, 0.6);
}

.marker-pin::after {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-500);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.8);
}

.leaflet-container {
  background: #000000 !important;
}

.leaflet-control-zoom a {
  background-color: rgba(20, 20, 20, 0.8) !important;
  color: var(--text) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.leaflet-control-zoom a:hover {
  background-color: rgba(30, 30, 30, 0.9) !important;
}

.leaflet-popup-content-wrapper {
  background: rgba(20, 20, 20, 0.95) !important;
  color: var(--text) !important;
  border-radius: var(--radius) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.leaflet-popup-tip {
  background: rgba(20, 20, 20, 0.95) !important;
}

.leaflet-popup-close-button {
  color: var(--text) !important;
}

@media (max-width: 768px) {
  #about {
    padding-bottom: 0.75rem;
  }

  .section__bg--left {
    width: 100%;
    opacity: 0.4;
  }
  .section--with-bg-left::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.85) 60%, #000000 100%);
  }

  /* Hero video shifted left on mobile */
  .hero__video {
    object-position: 30% center;
  }

  .hero__main-row {
    gap: 0.5rem;
    width: 100%;
    padding: 0 10px;
  }
  .hero__part-white {
    font-size: clamp(0.9rem, 4vw, 1.5rem);
  }
  .hero__part-red {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }
  .hero__subtitle-loc {
    font-size: 0.9rem;
    letter-spacing: 0.4em;
  }

  /* Services fullscreen: stacked layout on mobile */
  .services-fullscreen {
    height: auto;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.25rem;
  }
  .services-fullscreen__bg-video {
    position: relative;
    inset: auto;
    width: 100%;
    height: 55vh;
    min-height: 280px;
    flex-shrink: 0;
    order: 2;
  }
  .services-fullscreen__overlay {
    display: none;
  }
  .services-fullscreen__content {
    position: relative;
    order: 1;
    max-width: 100%;
    padding: 0.35rem 1.25rem 1.25rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 100%);
  }
  #contact {
    padding-top: 0.35rem;
  }
  #dancers {
    padding-bottom: 1.25rem;
  }
  #dancers .dancers-slideshow {
    margin: 1.25rem auto 0.6rem;
  }
  .services-fullscreen__content h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  .services-fullscreen__content .eyebrow {
    margin-bottom: 0.3rem;
  }
  .services-fullscreen__content .lede {
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: justify;
  }
  .scroll-indicator {
    order: 3;
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.8);
  }

  .map {
    height: 300px;
  }
  .location-cards-overlay {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .location-card {
    max-width: 100%;
    padding: 1rem;
  }
  .nav .logo {
    padding-left: 1rem;
  }
}

@media (max-width: 640px) {
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0, 0, 0, 0.95);
  }
  .glass {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(20, 20, 20, 0.95);
  }
  .hero__bg {
    filter: brightness(0.5);
    will-change: auto;
  }
  .hero__overlay {
    will-change: auto;
  }
  .section__bg--left,
  .section__bg--right {
    filter: grayscale(100%) brightness(0.25);
    -webkit-filter: grayscale(100%) brightness(0.25);
  }
  .dancers-slideshow__container {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(20, 20, 20, 0.95);
  }
  .dancers-slideshow__prev,
  .dancers-slideshow__next {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(20, 20, 20, 0.95);
  }
  .sparkles {
    display: none;
  }
  .cards--two-wide {
    grid-template-columns: 1fr;
  }
  .dancers-slideshow {
    margin: 2rem 0;
    max-width: 90%;
  }
  .dancers-slideshow__slide {
    max-height: 350px;
  }
  .dancers-slideshow__controls {
    padding: 0 0.5rem;
  }
  .dancers-slideshow__prev,
  .dancers-slideshow__next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .sparkle {
    width: 3px;
    height: 3px;
  }
  .scroll-fade-in,
  .scroll-slide-left,
  .scroll-slide-right {
    transform: translateY(20px) translateX(0);
    will-change: auto;
  }
  .scroll-slide-left {
    transform: translateX(-20px);
    will-change: auto;
  }
  .scroll-slide-right {
    transform: translateX(20px);
    will-change: auto;
  }
  .chatbot {
    bottom: 1rem;
    right: 1rem;
  }
  .chatbot__button {
    width: 55px;
    height: 55px;
  }
  .chatbot__window {
    width: calc(100vw - 2rem);
    height: 450px;
    right: -1rem;
  }
  .chatbot__header-info h4 {
    font-size: 0.9rem;
  }
  .chatbot__girl-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0.75rem;
  }
  .chatbot__girl-item {
    padding: 0.75rem;
  }
  .chatbot__girl-item-image {
    width: 50px;
    height: 50px;
  }
  .chatbot__girl-item-name {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .scroll-fade-in,
  .scroll-slide-left,
  .scroll-slide-right,
  .scroll-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
  .nav__toggle {
    display: none;
  }
  .nav__mobile {
    display: none !important;
  }
  .hero {
    padding: 8.5rem 0 7rem;
  }
  .hero__content {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-fade-in,
  .scroll-slide-left,
  .scroll-slide-right,
  .scroll-scale {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .chatbot__button,
  .chatbot__send {
    transition: none;
  }
}


