﻿:root {
  --bg: #0b0814;
  --bg-soft: #151025;
  --text: #f6f2ff;
  --muted: #b4a9d1;
  --violet: #380a70;
  --pink-neon: #6a5cff;
  --gold: #ffce6a;
  --stroke: rgba(255, 255, 255, 0.12);
  --glow: 0 0 24px rgba(255, 59, 184, 0.4);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(138, 43, 255, 0.35), transparent 38%),
    radial-gradient(circle at 88% 18%, rgba(255, 59, 184, 0.28), transparent 34%),
    linear-gradient(150deg, #08060f, #0f0b1b 48%, #09070f);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.6rem 1rem;
  background: #fff;
  color: #111;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(133, 159, 255, 0.28);
  background:
    radial-gradient(320px 90px at 50% 100%, rgba(160, 177, 255, 0.25), rgba(160, 177, 255, 0) 76%),
    linear-gradient(90deg, #010513 0%, #02081f 35%, #030d2c 50%, #02081f 65%, #010513 100%);
  backdrop-filter: blur(9px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 28px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.24s ease;
  filter: blur(9px);
  background: linear-gradient(to bottom, rgba(20, 30, 73, 0.5), rgba(20, 30, 73, 0));
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.site-header .container {
  width: min(1400px, 96%);
}

.nav-wrap {
  min-height: 82px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 172px;
  max-width: 100%;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 0;
}

.site-nav a {
  position: relative;
  color: #d8e5ff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 0.22s ease, text-shadow 0.22s ease;
}

.site-nav a.has-dropdown::before {
  content: "▼";
  font-size: 0.5rem;
  position: absolute;
  right: -12px;
  top: 0.22rem;
  color: #9fbbff;
}

.site-nav a:hover {
  color: #edf4ff;
  text-shadow: 0 0 10px rgba(163, 189, 255, 0.28);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 1px;
  background: rgba(125, 160, 255, 0.9);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a[aria-current="page"] {
  color: #8ab4ff;
}

.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  min-width: 220px;
  min-height: 39px;
  padding: 0.42rem 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(108, 151, 228, 0.8);
  background: transparent;
  color: #f8fbff;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    backdrop-filter 0.25s ease;
}

.nav-cta:hover {
  transform: none;
  background: linear-gradient(180deg, rgba(173, 214, 255, 0.2) 0%, rgba(130, 179, 244, 0.12) 100%);
  border-color: rgba(165, 203, 255, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 8px 22px rgba(90, 139, 230, 0.25);
  backdrop-filter: blur(9px) saturate(1.2);
  color: #ffffff;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 38px;
  min-width: 72px;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(91, 132, 230, 0.8);
  background: linear-gradient(180deg, rgba(10, 20, 52, 0.86), rgba(8, 18, 46, 0.86));
  color: #edf4ff;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.lang-menu {
  position: relative;
}

.lang-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 112px;
  border: 1px solid rgba(91, 132, 230, 0.8);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(9, 18, 47, 0.96), rgba(7, 15, 40, 0.96));
  padding: 0.4rem;
  display: none;
  flex-direction: column;
  gap: 0.28rem;
}

.lang-menu.is-open .lang-list {
  display: flex;
}

.lang-option {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #dfe9ff;
  padding: 0.4rem 0.45rem;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.lang-option:hover,
.lang-option.is-active {
  background: rgba(97, 129, 226, 0.24);
  color: #ffffff;
}

.flag-icon {
  width: 14px;
  height: 10px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  flex: 0 0 14px;
}

.flag-fr {
  background: linear-gradient(90deg, #0055a4 0 33%, #ffffff 33% 66%, #ef4135 66% 100%);
}

.flag-it {
  background: linear-gradient(90deg, #009246 0 33%, #ffffff 33% 66%, #ce2b37 66% 100%);
}

.flag-pt {
  background: linear-gradient(90deg, #046a38 0 40%, #da291c 40% 100%);
}

.flag-es {
  background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}

.flag-gb {
  background:
    linear-gradient(0deg, transparent 43%, #ffffff 43% 57%, transparent 57%),
    linear-gradient(90deg, transparent 43%, #ffffff 43% 57%, transparent 57%),
    linear-gradient(0deg, transparent 46%, #c8102e 46% 54%, transparent 54%),
    linear-gradient(90deg, transparent 46%, #c8102e 46% 54%, transparent 54%),
    #012169;
}

.mobile-reservation {
  display: none;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(7, 11, 31, 0.8);
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #f4f6ff;
  margin: 5px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.35rem;
  font-weight: 700;
  border: 1px solid transparent;
  background: linear-gradient(90deg, var(--pink-neon), var(--violet));
  box-shadow: 0 12px 34px rgba(138, 43, 255, 0.35);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 59, 184, 0.35);
}

.btn-ghost {
  background: transparent;
  border-color: var(--stroke);
  color: var(--text);
  box-shadow: none;
}

.btn-small {
  padding: 0.62rem 1.2rem;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to top, rgba(8, 6, 14, 0.9), rgba(8, 6, 14, 0.35)),
    url("https://images.unsplash.com/photo-1571266028243-d220c9d10e93?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 35%, rgba(255, 59, 184, 0.16), transparent 45%);
}

.hero-home {
  min-height: 100vh;
}

.hero-home::before {
  background-image: linear-gradient(to top, rgba(8, 10, 26, 0.78), rgba(3, 5, 18, 0.36));
  background-position: center;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 85%, rgba(106, 92, 255, 0.28), transparent 34%),
    radial-gradient(circle at 80% 82%, rgba(233, 16, 32, 0.18), transparent 33%),
    linear-gradient(to top, rgba(5, 8, 22, 0.5), rgba(5, 8, 22, 0.05));
  z-index: -1;
  animation: hero-ambient-drift 14s ease-in-out infinite alternate;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-light-jockey {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: soft-light;
}

.hero-light-jockey::before,
.hero-light-jockey::after {
  content: "";
  position: absolute;
  inset: -12%;
  opacity: 0.55;
  filter: blur(22px);
}

.hero-light-jockey::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(106, 92, 255, 0.58), rgba(106, 92, 255, 0) 42%),
    radial-gradient(circle at 78% 70%, rgba(96, 136, 255, 0.45), rgba(96, 136, 255, 0) 44%);
  animation: hero-color-fade-a 11s ease-in-out infinite alternate;
}

.hero-light-jockey::after {
  background:
    radial-gradient(circle at 74% 18%, rgba(233, 16, 32, 0.32), rgba(233, 16, 32, 0) 40%),
    radial-gradient(circle at 26% 82%, rgba(106, 92, 255, 0.42), rgba(106, 92, 255, 0) 45%);
  animation: hero-color-fade-b 13s ease-in-out infinite alternate;
}

.jockey-beam {
  display: none;
}

.beam-1 {
  animation: light-jockey-sweep-1 8s ease-in-out infinite;
}

.beam-2 {
  animation: light-jockey-sweep-2 7.2s ease-in-out infinite;
}

.beam-3 {
  animation: light-jockey-sweep-3 9s ease-in-out infinite;
}

.jockey-glow {
  display: none;
}

@keyframes hero-ambient-drift {
  0% { transform: translateX(-2%) scale(1); }
  100% { transform: translateX(2%) scale(1.04); }
}

@keyframes hero-orb-left {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.3; }
  100% { transform: translate3d(6vw, 3vw, 0) scale(1.12); opacity: 0.45; }
}

@keyframes hero-orb-right {
  0% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.22; }
  100% { transform: translate3d(-7vw, -2vw, 0) scale(1.1); opacity: 0.38; }
}

@keyframes hero-color-fade-a {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); opacity: 0.42; }
  50% { transform: translate3d(2%, 1%, 0) scale(1.06); opacity: 0.62; }
  100% { transform: translate3d(-1%, 2%, 0) scale(1.02); opacity: 0.46; }
}

@keyframes hero-color-fade-b {
  0% { transform: translate3d(1%, 0, 0) scale(1); opacity: 0.35; }
  50% { transform: translate3d(-2%, -1%, 0) scale(1.04); opacity: 0.52; }
  100% { transform: translate3d(2%, 1%, 0) scale(1.08); opacity: 0.4; }
}

@keyframes light-jockey-sweep-1 {
  0%, 100% { transform: translateX(-52%) rotate(-18deg); opacity: 0.08; }
  25% { transform: translateX(-44%) rotate(-4deg); opacity: 0.36; }
  50% { transform: translateX(-54%) rotate(14deg); opacity: 0.2; }
  75% { transform: translateX(-46%) rotate(-8deg); opacity: 0.3; }
}

@keyframes light-jockey-sweep-2 {
  0%, 100% { transform: translateX(-48%) rotate(18deg); opacity: 0.08; }
  22% { transform: translateX(-56%) rotate(4deg); opacity: 0.32; }
  55% { transform: translateX(-44%) rotate(-15deg); opacity: 0.18; }
  78% { transform: translateX(-52%) rotate(7deg); opacity: 0.28; }
}

@keyframes light-jockey-sweep-3 {
  0%, 100% { transform: translateX(-50%) rotate(0deg); opacity: 0.06; }
  30% { transform: translateX(-58%) rotate(-22deg); opacity: 0.24; }
  60% { transform: translateX(-42%) rotate(20deg); opacity: 0.3; }
  85% { transform: translateX(-50%) rotate(-5deg); opacity: 0.14; }
}

@keyframes light-jockey-pulse {
  0%, 100% { opacity: 0.24; transform: translateX(-50%) scale(0.95); }
  50% { opacity: 0.5; transform: translateX(-50%) scale(1.08); }
}

.hero-track {
  height: 100%;
  display: flex;
  width: 200%;
  transform: translateX(0);
  transition: transform 0.8s ease;
}

.hero-slide {
  flex: 0 0 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #07050f;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.hero-slide:nth-child(1) img {
  object-position: center 36%;
}

.hero-slide:nth-child(2) img {
  object-position: center 48%;
}

.hero-home .hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: clamp(7.4rem, 13vh, 10rem) 0 5.6rem;
  text-align: center;
  border-radius: 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: none;
  box-shadow: none;
}

.hero-home h1 {
  font-size: clamp(2rem, 5.8vw, 5rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero-home .hero-text {
  margin: 0 auto;
  max-width: 760px;
  color: #eef0ff;
  font-size: clamp(1rem, 1.7vw, 1.1rem);
}

.hero-highlights {
  margin: 1rem auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-highlights li {
  padding: 0.4rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(10, 15, 38, 0.42);
  color: #eaf0ff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-home .hero-cta {
  justify-content: center;
  margin-top: 1.4rem;
}

.btn-home-primary {
  background: linear-gradient(180deg, #6964ff 0%, #5f57f2 100%);
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.btn-home-secondary {
  background: #ffffff;
  color: #594ef0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(12, 12, 24, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.btn-home-secondary:hover {
  color: #594ef0;
}

.hero-inner {
  min-height: 58vh;
}

.hero-inner::before {
  background-image:
    linear-gradient(to top, rgba(8, 6, 14, 0.9), rgba(8, 6, 14, 0.38)),
    url("https://images.unsplash.com/photo-1594381898411-846e7d193883?auto=format&fit=crop&w=1800&q=80");
}

.page-hero {
  min-height: 52vh;
}

.page-hero::before {
  background-image:
    linear-gradient(to top, rgba(8, 6, 14, 0.9), rgba(8, 6, 14, 0.4)),
    url("https://images.unsplash.com/photo-1566737236500-c8ac43014a8e?auto=format&fit=crop&w=1800&q=80");
}

.hero-content {
  max-width: 760px;
  padding: 4.2rem 0;
}

.kicker,
.section-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(2rem, 5vw, 4.15rem);
}

h1 span {
  color: var(--pink-neon);
  text-shadow: var(--glow);
}

.hero-text {
  color: #ece5ff;
  max-width: 620px;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero-cta {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0.5rem 0 1rem;
}

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

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
}

.info-card,
.feature-card,
.pulse-card,
.cta-box {
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.info-card {
  padding: 1.2rem;
}

.info-card h3 {
  margin: 0 0 0.6rem;
}

.info-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.section-alt {
  background: linear-gradient(180deg, rgba(19, 14, 33, 0.45), rgba(14, 11, 25, 0.8));
}

.feature-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ambiance-grid,
.concept-steps {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-list {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.pricing-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.1rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.music-wrap {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.pulse-card {
  min-height: 210px;
  padding: 1.6rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.45rem;
}

.pulse-card span {
  width: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pink-neon), var(--violet));
  animation: pulse 1.4s ease-in-out infinite;
}

.pulse-card span:nth-child(1) { height: 46px; animation-delay: 0s; }
.pulse-card span:nth-child(2) { height: 76px; animation-delay: 0.15s; }
.pulse-card span:nth-child(3) { height: 112px; animation-delay: 0.3s; }
.pulse-card span:nth-child(4) { height: 68px; animation-delay: 0.45s; }
.pulse-card span:nth-child(5) { height: 92px; animation-delay: 0.6s; }

@keyframes pulse {
  0%, 100% { transform: scaleY(0.75); opacity: 0.65; }
  50% { transform: scaleY(1.1); opacity: 1; }
}

.cta-section {
  padding-top: 1rem;
}

.cta-box {
  text-align: center;
  padding: clamp(1.4rem, 4vw, 2.3rem);
}

.cta-actions {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.site-footer {
  border-top: 1px solid var(--stroke);
  padding: 2rem 0 1.2rem;
  background: linear-gradient(180deg, rgba(8, 7, 15, 0.88), rgba(8, 7, 15, 0.98));
}

.site-footer .container {
  width: min(1400px, 96%);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 0.9fr;
  gap: 1.2rem;
  align-items: start;
}

.footer-brand-block .brand-logo {
  width: 152px;
}

.footer-tagline {
  margin: 0.75rem 0 0;
  color: var(--muted);
  max-width: 320px;
}

.footer-title {
  margin: 0 0 0.7rem;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-nav-list a,
.footer-list a {
  color: #d8d1f0;
}

.footer-nav-list a:hover,
.footer-list a:hover,
.footer-legal a:hover {
  color: #ffffff;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  color: #c5bddf;
}

.footer-bottom {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-copy {
  margin: 0;
  color: #a99ec8;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-legal a {
  color: #c7bedf;
}

.split-highlight {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
}

.stats-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stats-grid h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.2rem;
}

#experience .stats-grid h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  margin-bottom: 0.55rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
}

.contact-form {
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 1.2rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.field {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  margin-top: 0.3rem;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: rgba(11, 8, 20, 0.85);
  color: var(--text);
  padding: 0.7rem 0.75rem;
  font: inherit;
}

.field textarea {
  resize: vertical;
}

.social-list {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-list a {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  color: var(--text);
}

.map-frame {
  margin-top: 0.8rem;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  overflow: hidden;
  min-height: 360px;
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.timeline {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-item {
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 1.1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.timeline-item .year {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}

#upcoming .timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flyer-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 0;
  isolation: isolate;
}

.flyer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.22), transparent 34%),
    radial-gradient(circle at 84% 86%, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(155deg, #141022 0%, #0f0b1d 42%, #0a0814 100%);
}

.flyer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4, 4, 10, 0.12), rgba(4, 4, 10, 0.66));
}

.flyer-content {
  height: 100%;
  padding: 1.05rem;
  display: flex;
  flex-direction: column;
}

.flyer-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  margin: 0 0 0.7rem;
  color: #ffffff;
  line-height: 1.12;
}

.flyer-card p {
  margin: 0;
  color: #ece6ff;
}

.flyer-card .year {
  margin-bottom: 0.55rem;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.flyer-cta {
  margin-top: auto;
  align-self: flex-start;
}

.flyer-generaliste::before {
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 176, 70, 0.42), transparent 38%),
    radial-gradient(circle at 92% 86%, rgba(255, 89, 53, 0.4), transparent 38%),
    linear-gradient(150deg, #28121d, #1a0e17 48%, #130b12);
}

.flyer-80s::before {
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 83, 185, 0.44), transparent 36%),
    radial-gradient(circle at 88% 82%, rgba(72, 171, 255, 0.42), transparent 38%),
    linear-gradient(150deg, #211433, #160f2a 52%, #0f0a1f);
}

.flyer-90s::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(72, 230, 255, 0.42), transparent 34%),
    radial-gradient(circle at 80% 84%, rgba(142, 108, 255, 0.45), transparent 40%),
    linear-gradient(148deg, #102330, #10172a 50%, #0b1021);
}

.flyer-latino::before {
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 94, 94, 0.45), transparent 38%),
    radial-gradient(circle at 86% 86%, rgba(255, 197, 84, 0.42), transparent 36%),
    linear-gradient(150deg, #2e1612, #24130f 50%, #150c0b);
}

.gallery-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-carousel {
  margin-top: 1.2rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.gallery-carousel-track {
  display: flex;
  gap: 0.8rem;
  width: max-content;
  will-change: transform;
}

.gallery-slide {
  margin: 0;
  flex: 0 0 clamp(180px, 20vw, 270px);
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(7, 7, 16, 0.8);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-slide:hover img {
  transform: scale(1.05);
}

.vip-page .vip-hero {
  position: relative;
  overflow: hidden;
}

.vip-page .vip-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 26%, rgba(70, 99, 248, 0.2), transparent 36%),
    radial-gradient(circle at 90% 72%, rgba(255, 88, 180, 0.22), transparent 40%),
    linear-gradient(140deg, rgba(16, 13, 33, 0.35), rgba(31, 14, 40, 0.2));
  animation: vip-hero-drift 16s ease-in-out infinite alternate;
}

.vip-hero-shell {
  max-width: 980px;
  border-radius: 24px;
  border: 1px solid rgba(255, 214, 130, 0.24);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(155deg, rgba(31, 20, 47, 0.86), rgba(12, 10, 26, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 221, 0.18),
    0 22px 52px rgba(8, 7, 19, 0.42);
  padding: clamp(2.5rem, 7vh, 4rem) clamp(1rem, 4vw, 2.4rem);
}

.vip-page .vip-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1.06;
  margin-bottom: 1rem;
}

.vip-page .vip-hero .hero-text {
  max-width: 820px;
  color: #efe9ff;
  font-size: clamp(1.05rem, 1.8vw, 1.17rem);
}

.vip-pricing-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.vip-tables-section {
  position: relative;
}

.vip-tables-section::before {
  content: "";
  position: absolute;
  inset: 7% 0 auto;
  height: 72%;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 218, 134, 0.14), transparent 36%),
    radial-gradient(circle at 92% 78%, rgba(255, 92, 182, 0.14), transparent 40%),
    linear-gradient(140deg, rgba(28, 18, 43, 0.22), rgba(22, 15, 37, 0.05));
  pointer-events: none;
}

.vip-section-intro {
  max-width: 860px;
  color: #d7cde9;
  margin: 0.2rem 0 0;
}

.vip-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1.15rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.vip-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 35%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.vip-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 214, 130, 0.55);
  box-shadow: 0 18px 36px rgba(10, 8, 18, 0.4);
}

.vip-card:hover::before {
  opacity: 1;
}

.vip-card-highlight {
  border-color: rgba(255, 206, 106, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 243, 214, 0.28), 0 14px 30px rgba(255, 206, 106, 0.14);
}

.vip-card-lounge {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 196, 111, 0.16), transparent 32%),
    linear-gradient(160deg, rgba(37, 22, 47, 0.84), rgba(16, 12, 27, 0.9));
}

.vip-card-premium {
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 98, 196, 0.16), transparent 34%),
    linear-gradient(160deg, rgba(45, 22, 58, 0.86), rgba(18, 10, 29, 0.92));
}

.vip-card-elite {
  background:
    radial-gradient(circle at 85% 82%, rgba(90, 169, 255, 0.16), transparent 34%),
    linear-gradient(160deg, rgba(23, 26, 56, 0.86), rgba(12, 13, 33, 0.92));
}

.vip-chip {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(255, 206, 106, 0.42);
  color: #ffd88f;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  margin-bottom: 0.65rem;
}

.vip-ribbon {
  position: absolute;
  top: 12px;
  right: -36px;
  transform: rotate(33deg);
  background: linear-gradient(90deg, #ffd27e, #ffb95c);
  color: #2a1604;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 20px rgba(255, 190, 95, 0.3);
}

.vip-list {
  margin: 0.75rem 0 0;
  padding-left: 1.05rem;
  color: #cac0e0;
}

.vip-list li + li {
  margin-top: 0.34rem;
}

.vip-price {
  margin: 0.95rem 0 0;
  color: #fff7e8;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  text-shadow: 0 0 14px rgba(255, 199, 121, 0.22);
}

.vip-meta {
  margin: 0.8rem 0 0;
  color: #d8cfff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vip-bottle-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.vip-bottle-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.vip-bottle-card h3 {
  margin-bottom: 0.45rem;
}

.vip-steps {
  margin: 0.2rem 0 0;
  padding-left: 1.15rem;
  color: #d0c7e4;
}

.vip-steps li + li {
  margin-top: 0.35rem;
}

.vip-form select {
  width: 100%;
  margin-top: 0.3rem;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: rgba(11, 8, 20, 0.85);
  color: var(--text);
  padding: 0.7rem 0.75rem;
  font: inherit;
}

.vip-faq-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .nav-wrap {
    display: flex;
    min-height: 74px;
    justify-content: space-between;
  }

  .two-col,
  .music-wrap,
  .feature-grid,
  .ambiance-grid,
  .concept-steps,
  .service-list,
  .pricing-grid,
  .vip-pricing-grid,
  .vip-bottle-grid,
  .vip-faq-grid,
  .about-grid,
  .stats-grid,
  .contact-grid,
  .timeline,
  .gallery-grid,
  .split-highlight {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  #upcoming .timeline {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: fixed;
    right: 4%;
    top: 82px;
    width: min(280px, 92vw);
    padding: 1rem;
    border: 1px solid var(--stroke);
    border-radius: 14px;
    background: rgba(11, 8, 20, 0.98);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    margin: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .mobile-reservation {
    display: inline-flex;
  }

  .brand {
    min-width: 160px;
  }

  .brand-logo {
    width: 130px;
  }

  .hero-home {
    min-height: 60vh;
  }

  .hero-home::before {
    background-position: 58% center;
  }

  .hero-slide img {
    object-position: center 44%;
  }

  .hero-slide:nth-child(1) img {
    object-position: center 38%;
  }

  .hero-slide:nth-child(2) img {
    object-position: center 46%;
  }

  .hero-light-jockey {
    opacity: 0.62;
  }

  .hero-home .hero-content {
    border-radius: 16px;
    padding: clamp(3.2rem, 8vh, 4.4rem) 1rem 2.4rem;
  }

  .menu-btn {
    display: inline-block;
  }
}

@media (max-width: 640px), (max-aspect-ratio: 3/4) {
  .hero-slide img {
    object-fit: contain;
    object-position: center center;
  }

  .gallery-item {
    aspect-ratio: 16 / 10;
  }

  .gallery-slide {
    flex-basis: 66vw;
    aspect-ratio: 16 / 10;
  }

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

  .vip-hero-shell {
    padding: 1.4rem 0.95rem 1.6rem;
  }
}

@keyframes vip-hero-drift {
  0% { transform: translate3d(-1%, 0, 0) scale(1); }
  100% { transform: translate3d(1%, 1%, 0) scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-home::after,
  .hero-light-jockey::before,
  .hero-light-jockey::after,
  .jockey-beam,
  .jockey-glow {
    animation: none !important;
  }
}
