:root {
  --vc-black: #060507;
  --vc-ink: #100d12;
  --vc-panel: #171218;
  --vc-line: rgba(255, 255, 255, 0.14);
  --vc-text: #fff7ed;
  --vc-muted: rgba(255, 247, 237, 0.68);
  --vc-gold: #d7a84d;
  --vc-red: #dd223c;
  --vc-blue: #26a8ff;
}

.vc-site {
  background: var(--vc-black);
  color: var(--vc-text);
  font-family: "Inter", sans-serif;
}

.vc-site a {
  color: inherit;
}

.vc-site .site-header {
  background: rgba(6, 5, 7, 0.86);
  border-bottom: 1px solid var(--vc-line);
  backdrop-filter: blur(18px);
}

.vc-site .topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b080c;
}

.vc-site .bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
}

.vc-site .bar-row p {
  margin: 0;
  color: var(--vc-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.vc-site .social {
  display: flex;
  gap: 8px;
}

.vc-site .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--vc-line);
  border-radius: 50%;
  color: var(--vc-text);
}

.vc-site .nav-wrap .navbar {
  min-height: 78px;
  padding: 0;
}

.vc-site .brand {
  display: inline-flex;
  align-items: center;
  color: var(--vc-text);
  line-height: 1;
  text-decoration: none;
}

.vc-site .brand img {
  display: block;
  width: min(170px, 42vw);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.vc-site .nav-link {
  color: rgba(255, 247, 237, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.vc-site .nav-link:hover,
.vc-site .nav-link:focus {
  color: var(--vc-text);
}

.vc-site .tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vc-site .tools .phone {
  color: var(--vc-muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.vc-site .tools .reserve,
.vc-home .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.vc-site .tools .reserve,
.vc-home .button.primary {
  border: 1px solid rgba(215, 168, 77, 0.82);
  background: linear-gradient(135deg, #f4c86a, #b77921);
  color: #120b04;
}

.vc-home .button.light {
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: #fff7ed;
  color: #100d12;
}

.vc-home .button.ghost {
  border: 1px solid var(--vc-line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--vc-text);
}

.vc-site .tools .reserve:hover,
.vc-home .button:hover {
  transform: translateY(-2px);
}

.vc-site .menu-button {
  border: 1px solid var(--vc-line);
}

.vc-site .menu-button .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.vc-site .floating-rsvp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  border: 1px solid rgba(215, 168, 77, 0.86);
  border-radius: 999px;
  padding: 0 20px;
  background: linear-gradient(135deg, #f4c86a, #b77921);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36), 0 0 0 6px rgba(215, 168, 77, 0.12);
  color: #120b04;
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.vc-site .floating-rsvp:hover,
.vc-site .floating-rsvp:focus {
  color: #120b04;
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.44), 0 0 0 7px rgba(215, 168, 77, 0.16);
}

.vc-site .floating-rsvp i {
  font-size: 1rem;
}

.vc-home {
  overflow: hidden;
  background: var(--vc-black);
}

.vc-home .hero {
  position: relative;
  min-height: calc(100vh - 116px);
  display: flex;
  align-items: end;
  padding: 64px 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.vc-home .hero .video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 21%;
  right: 21%;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 0 90px rgba(0, 0, 0, 0.68);
}

.vc-home .hero .video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(58vw, 103.1vh);
  height: max(56.25vw, 100vh);
  border: 0;
  opacity: 0.76;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.vc-home .hero .shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 5, 7, 0.9), rgba(6, 5, 7, 0.24) 55%, rgba(6, 5, 7, 0.7)),
    linear-gradient(0deg, #060507 0%, rgba(6, 5, 7, 0) 44%);
}

.vc-home .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 28px;
}

.vc-home .hero-copy {
  max-width: 860px;
}

.vc-home .eyebrow {
  margin: 0 0 12px;
  color: var(--vc-gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-home h1,
.vc-home h2,
.vc-home h3,
.vc-site .site-footer h3 {
  margin: 0;
  color: var(--vc-text);
  letter-spacing: 0;
}

.vc-home h1 {
  max-width: 820px;
  font-size: clamp(3.4rem, 9vw, 8.8rem);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.vc-home h2 {
  font-size: clamp(2rem, 5vw, 4.7rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.vc-home h3 {
  font-size: 1.15rem;
  font-weight: 900;
}

.vc-home .lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 247, 237, 0.82);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.5;
}

.vc-home .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.vc-home .tonight {
  padding: 24px;
  border: 1px solid rgba(215, 168, 77, 0.34);
  border-radius: 8px;
  background: rgba(16, 13, 18, 0.78);
  backdrop-filter: blur(18px);
}

.vc-home .tonight .label {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--vc-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-home .tonight h2 {
  font-size: 1.6rem;
  line-height: 1.05;
}

.vc-home .tonight p {
  color: var(--vc-muted);
}

.vc-home .tonight a,
.vc-home .text-link {
  color: var(--vc-gold);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.vc-home .section {
  padding: 82px 0;
}

.vc-home .section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.vc-home .section-head h2 {
  max-width: 860px;
}

.vc-home .event-grid {
  display: grid;
  gap: 12px;
}

.vc-home .event-card {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--vc-line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.vc-home .event-card .date {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(215, 168, 77, 0.28);
  border-radius: 8px;
  text-align: center;
}

.vc-home .event-card .date strong {
  color: var(--vc-gold);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.vc-home .event-card .date span,
.vc-home .event-card p {
  color: var(--vc-muted);
}

.vc-home .event-card a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.vc-home .split-grid,
.vc-home .sports-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 36px;
  align-items: center;
}

.vc-home .sports-grid {
  grid-template-columns: 1fr 0.92fr;
}

.vc-home .media img,
.vc-home .menu-grid img,
.vc-home .gallery-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vc-home .media {
  min-height: 540px;
  border-radius: 8px;
  overflow: hidden;
}

.vc-home .copy p {
  color: var(--vc-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.vc-home .package-row,
.vc-home .scoreboard {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.vc-home .package-row span {
  padding: 10px 12px;
  border: 1px solid var(--vc-line);
  border-radius: 999px;
  color: var(--vc-text);
  font-size: 0.82rem;
  font-weight: 800;
}

.vc-home .scoreboard div {
  min-width: 120px;
  padding: 18px;
  border: 1px solid var(--vc-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.vc-home .scoreboard strong {
  display: block;
  color: var(--vc-blue);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.vc-home .scoreboard span {
  color: var(--vc-muted);
  font-weight: 800;
  text-transform: uppercase;
}

.vc-home .menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vc-home .menu-grid article {
  border: 1px solid var(--vc-line);
  border-radius: 8px;
  background: var(--vc-panel);
  overflow: hidden;
}

.vc-home .menu-grid img {
  height: 260px;
}

.vc-home .menu-grid h3,
.vc-home .menu-grid p {
  padding: 0 18px;
}

.vc-home .menu-grid h3 {
  margin-top: 18px;
}

.vc-home .menu-grid p {
  color: var(--vc-muted);
}

.vc-home .lounge-panel {
  min-height: 560px;
  display: flex;
  align-items: end;
  padding: 38px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(6, 5, 7, 0.92), rgba(6, 5, 7, 0.16)),
    var(--lounge-image) center / cover;
}

.vc-home .lounge-panel .copy {
  max-width: 700px;
}

.vc-home .gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.vc-home .gallery-grid a {
  position: relative;
  min-height: 260px;
  border-radius: 8px;
  overflow: hidden;
}

.vc-home .gallery-grid a:nth-child(1),
.vc-home .gallery-grid a:nth-child(6) {
  grid-column: span 2;
}

.vc-home .gallery-grid span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.92);
}

.vc-home .details {
  background: #0b080c;
}

.vc-home .details-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.vc-home .details-grid article {
  padding: 24px;
  border: 1px solid var(--vc-line);
  border-radius: 8px;
}

.vc-home .details-grid p {
  color: var(--vc-muted);
}

.vc-site .site-footer {
  padding: 58px 0 28px;
  border-top: 1px solid var(--vc-line);
  background: #060507;
}

.vc-site .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.65fr 1fr;
  gap: 30px;
}

.vc-site .site-footer p,
.vc-site .site-footer a {
  color: var(--vc-muted);
}

.vc-site .site-footer a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
}

.vc-site .site-footer h3 {
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-site .brand-block p {
  max-width: 420px;
  margin-top: 18px;
}

.vc-site .brand-block .brand img {
  width: min(220px, 58vw);
  max-height: 82px;
}

.vc-site .footer-base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid var(--vc-line);
}

.vc-site .footer-base p {
  margin: 0;
  font-size: 0.82rem;
}

.vc-page,
.vc-contact {
  background: var(--vc-black);
  color: var(--vc-text);
}

.vc-page .hero,
.vc-contact .hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: end;
  padding: 118px 0 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(221, 34, 60, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(6, 5, 7, 0.98), rgba(6, 5, 7, 0.52) 54%, rgba(6, 5, 7, 0.86)),
    var(--page-image, var(--contact-image)) center / cover;
}

.vc-contact .hero {
  background:
    radial-gradient(circle at 74% 18%, rgba(38, 168, 255, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(6, 5, 7, 0.98), rgba(6, 5, 7, 0.45) 55%, rgba(6, 5, 7, 0.82)),
    var(--contact-image) center / cover;
}

.vc-page .hero::after,
.vc-contact .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, var(--vc-black));
  pointer-events: none;
}

.vc-page .hero .container-xxl,
.vc-contact .hero .container-xxl {
  position: relative;
  z-index: 1;
}

.vc-page .crumbs,
.vc-contact .crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 247, 237, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-page .crumbs a,
.vc-contact .crumbs a {
  color: var(--vc-gold);
  text-decoration: none;
}

.vc-page .hero-grid,
.vc-contact .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
  align-items: end;
  gap: 36px;
}

.vc-page .eyebrow,
.vc-contact .eyebrow {
  margin: 0 0 12px;
  color: var(--vc-gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-page h1,
.vc-contact h1 {
  max-width: 980px;
  margin: 0;
  color: var(--vc-text);
  font-size: clamp(3.25rem, 8vw, 8.6rem);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.vc-contact h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 7vw, 7.4rem);
}

.vc-page h2,
.vc-contact h2 {
  margin: 0;
  color: var(--vc-text);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.vc-page .hero p,
.vc-contact .hero p {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 247, 237, 0.78);
  font-size: 1.1rem;
  line-height: 1.6;
}

.vc-page .stats,
.vc-contact .stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.vc-page .stats span,
.vc-contact .stats span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 247, 237, 0.86);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-page .hero aside,
.vc-contact .hero aside {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(215, 168, 77, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 168, 77, 0.14), transparent 42%),
    rgba(13, 10, 15, 0.84);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.vc-page .hero aside span,
.vc-contact .hero aside span {
  display: block;
  color: var(--vc-gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-page .hero aside strong {
  display: block;
  margin-top: 10px;
  color: var(--vc-text);
  font-size: 1.55rem;
  line-height: 1.1;
}

.vc-contact .hero aside strong {
  display: block;
  margin: 10px 0 14px;
  color: var(--vc-text);
  font-size: 1.35rem;
  line-height: 1.15;
}

.vc-page .hero aside a,
.vc-contact .hero aside a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--vc-gold);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.vc-contact .hero aside a {
  display: block;
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.vc-page .body,
.vc-contact .body {
  padding: 74px 0 86px;
  background:
    linear-gradient(180deg, rgba(221, 34, 60, 0.08), transparent 260px),
    var(--vc-black);
}

.vc-page .content,
.vc-page .side,
.vc-contact .form-card,
.vc-contact .info article {
  border: 1px solid var(--vc-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025));
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.2);
}

.vc-page .content {
  padding: clamp(24px, 5vw, 52px);
}

.vc-page .content > * + * {
  margin-top: 1rem;
}

.vc-page .content h2,
.vc-page .content h3,
.vc-page .content h4 {
  margin-top: 1.6rem;
  color: var(--vc-text);
  font-weight: 900;
  text-transform: uppercase;
}

.vc-page .content h2:first-child,
.vc-page .content h3:first-child,
.vc-page .content h4:first-child {
  margin-top: 0;
}

.vc-page .content p,
.vc-page .content li {
  color: var(--vc-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.vc-page .content a,
.vc-page .side a {
  color: var(--vc-gold);
  font-weight: 900;
  text-decoration: none;
}

.vc-page .dynamic {
  display: grid;
  gap: 28px;
}

.vc-page .dynamic .section-head {
  max-width: 820px;
}

.vc-page .dynamic .section-head h2 {
  margin: 0;
}

.vc-page .dynamic .cards,
.vc-page .dynamic .packages {
  display: grid;
  gap: 16px;
}

.vc-page .dynamic .cards article,
.vc-page .dynamic .packages article {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  border: 1px solid var(--vc-line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.vc-page .dynamic .cards img,
.vc-page .dynamic .packages img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.vc-page .dynamic .cards article > div,
.vc-page .dynamic .packages article > div {
  padding: 20px 20px 20px 0;
}

.vc-page .dynamic .cards span,
.vc-page .dynamic .packages span,
.vc-page .dynamic .menu-items span {
  color: var(--vc-gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-page .dynamic .cards h3,
.vc-page .dynamic .packages h3,
.vc-page .dynamic .menu-items h3 {
  margin: 8px 0;
  color: var(--vc-text);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-page .dynamic .menu-group {
  display: grid;
  gap: 16px;
}

.vc-page .dynamic .menu-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vc-page .dynamic .menu-items article {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--vc-line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.vc-page .dynamic .menu-items strong {
  color: var(--vc-gold);
  white-space: nowrap;
}

.vc-page .dynamic .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.vc-page .dynamic .gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vc-page .dynamic .gallery-tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--vc-line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--vc-gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-page .dynamic .gallery-group,
.vc-page .dynamic .video-gallery {
  display: grid;
  gap: 14px;
}

.vc-page .dynamic .gallery-group h3 {
  margin: 0;
  color: var(--vc-text);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-page .dynamic .gallery-grid a {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
}

.vc-page .dynamic .gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-page .dynamic .gallery-grid span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  color: var(--vc-text);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-page .dynamic .video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vc-page .dynamic .video-grid a {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--vc-line);
  border-radius: 8px;
  padding: 18px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
}

.vc-page .dynamic .video-grid a::before {
  content: "\f04b";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--vc-gold);
  color: #120b04;
  font-family: "Font Awesome 6 Free";
  font-size: 0.9rem;
  font-weight: 900;
}

.vc-page .dynamic .video-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.vc-page .dynamic .video-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 5, 7, 0.06), rgba(6, 5, 7, 0.86));
}

.vc-page .dynamic .video-grid span,
.vc-page .dynamic .video-grid strong {
  position: relative;
  z-index: 1;
  display: block;
}

.vc-page .dynamic .video-grid span {
  color: var(--vc-gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-page .dynamic .video-grid strong {
  margin-top: 8px;
  color: var(--vc-text);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-page .dynamic .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vc-page .dynamic .feature-grid article {
  min-height: 92px;
  display: flex;
  align-items: end;
  border: 1px solid var(--vc-line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--vc-text);
  font-weight: 900;
  text-transform: uppercase;
}

.vc-page .lead-form {
  border: 1px solid rgba(215, 168, 77, 0.28);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(135deg, rgba(215, 168, 77, 0.1), rgba(255, 255, 255, 0.035));
}

.vc-page .lead-form .fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.vc-page .lead-form label {
  display: grid;
  gap: 8px;
}

.vc-page .lead-form label span {
  color: var(--vc-gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-page .lead-form .wide {
  grid-column: 1 / -1;
}

.vc-page .lead-form input,
.vc-page .lead-form select,
.vc-page .lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--vc-line);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--vc-text);
}

.vc-page .lead-form select option {
  color: #100d12;
}

.vc-page .lead-form textarea {
  min-height: 140px;
}

.vc-page .lead-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  background: linear-gradient(135deg, #f4c86a, #b77921);
  color: #120b04;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-page .success-note {
  border: 1px solid rgba(38, 168, 255, 0.38);
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 16px 18px;
  background: rgba(38, 168, 255, 0.1);
  color: var(--vc-text);
  font-weight: 800;
}

.vc-page .side {
  padding: 24px;
  position: sticky;
  top: 110px;
}

.vc-page .side p {
  color: var(--vc-muted);
}

.vc-page .side .button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4c86a, #b77921);
  color: #120b04;
  text-transform: uppercase;
}

.vc-contact .grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.78fr);
  gap: 24px;
}

.vc-contact .form-card,
.vc-contact .info article {
  padding: clamp(22px, 3vw, 34px);
}

.vc-contact .head {
  margin-bottom: 22px;
}

.vc-contact .head p,
.vc-contact .info p {
  color: var(--vc-muted);
}

.vc-contact .alerts {
  margin-bottom: 16px;
}

.vc-contact .fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vc-contact label {
  display: grid;
  gap: 8px;
}

.vc-contact label span {
  color: var(--vc-gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-contact label.wide {
  grid-column: 1 / -1;
}

.vc-contact input,
.vc-contact select,
.vc-contact textarea {
  width: 100%;
  border: 1px solid var(--vc-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--vc-text);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  outline: none;
}

.vc-contact select option {
  color: #100d12;
}

.vc-contact textarea {
  min-height: 150px;
  resize: vertical;
}

.vc-contact input:focus,
.vc-contact select:focus,
.vc-contact textarea:focus {
  border-color: rgba(215, 168, 77, 0.78);
  box-shadow: 0 0 0 3px rgba(215, 168, 77, 0.12);
}

.vc-contact .recaptcha {
  margin-top: 16px;
}

.vc-contact .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.vc-contact .actions button,
.vc-contact .actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.vc-contact .actions button {
  border: 1px solid rgba(215, 168, 77, 0.82);
  background: linear-gradient(135deg, #f4c86a, #b77921);
  color: #120b04;
}

.vc-contact .actions a {
  border: 1px solid var(--vc-line);
  color: var(--vc-text);
}

.vc-contact .info {
  display: grid;
  gap: 14px;
}

.vc-contact .info .location {
  min-height: 260px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(6, 5, 7, 0.18), rgba(6, 5, 7, 0.88)),
    url("../img/valenclub/bar-lounge.jpg") center / cover;
}

.vc-contact .info .location p:not(.eyebrow) {
  max-width: 280px;
  color: rgba(255, 247, 237, 0.86);
}

.vc-contact .info a {
  color: var(--vc-gold);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.vc-contact .map {
  min-height: 260px;
  padding: 0;
  overflow: hidden;
}

.vc-contact .map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.9);
}

.vc-auth {
  min-height: calc(100vh - 116px);
  background: var(--vc-black);
}

.vc-auth .shell {
  position: relative;
  min-height: calc(100vh - 116px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 64px 0;
}

.vc-auth .media,
.vc-auth .shade {
  position: absolute;
  inset: 0;
}

.vc-auth .media {
  background:
    linear-gradient(180deg, rgba(6, 5, 7, 0.08), rgba(6, 5, 7, 0.12)),
    url("../img/valenclub/bar-lounge.jpg") center / cover;
  transform: scale(1.03);
}

.vc-auth.register .media {
  background:
    linear-gradient(180deg, rgba(6, 5, 7, 0.08), rgba(6, 5, 7, 0.12)),
    url("../img/valenclub/private-lounge.jpg") center / cover;
}

.vc-auth .shade {
  background:
    radial-gradient(circle at 18% 22%, rgba(215, 168, 77, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(6, 5, 7, 0.94), rgba(6, 5, 7, 0.58) 55%, rgba(6, 5, 7, 0.92)),
    linear-gradient(0deg, #060507 0%, rgba(6, 5, 7, 0) 45%);
}

.vc-auth .container-xxl {
  position: relative;
  z-index: 1;
}

.vc-auth .grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  align-items: center;
  gap: 42px;
}

.vc-auth.register .grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 640px);
}

.vc-auth .story {
  max-width: 700px;
}

.vc-auth .logo {
  display: inline-flex;
  margin-bottom: 34px;
}

.vc-auth .logo img {
  width: min(210px, 58vw);
  max-height: 76px;
  object-fit: contain;
}

.vc-auth .eyebrow {
  margin: 0 0 12px;
  color: var(--vc-gold);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.vc-auth h1 {
  max-width: 760px;
  margin: 0;
  color: var(--vc-text);
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
}

.vc-auth .story > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 247, 237, 0.78);
  font-size: 1.1rem;
  line-height: 1.75;
}

.vc-auth .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.vc-auth .pills span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--vc-line);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--vc-text);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-auth .card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(16, 13, 18, 0.82);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(20px);
  color: var(--vc-text);
}

.vc-auth .crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 247, 237, 0.58);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.vc-auth .crumbs a,
.vc-auth .switch a,
.vc-auth .options a,
.vc-auth .check a {
  color: var(--vc-gold);
  font-weight: 900;
  text-decoration: none;
}

.vc-auth .head {
  margin-bottom: 24px;
}

.vc-auth .head h2 {
  margin: 0;
  color: var(--vc-text);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
}

.vc-auth .head p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--vc-muted);
  line-height: 1.6;
}

.vc-auth .form {
  display: grid;
  gap: 15px;
}

.vc-auth .form.compact {
  gap: 13px;
}

.vc-auth .fields {
  display: grid;
  gap: 13px;
}

.vc-auth .fields.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vc-auth .fields.split {
  grid-template-columns: minmax(0, 1.45fr) minmax(112px, 0.55fr);
}

.vc-auth label {
  display: grid;
  gap: 7px;
  margin: 0;
}

.vc-auth label span,
.vc-auth .form > label > span {
  color: rgba(255, 247, 237, 0.82);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-auth input[type="text"],
.vc-auth input[type="email"],
.vc-auth input[type="password"] {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--vc-text);
  outline: 0;
}

.vc-auth input::placeholder {
  color: rgba(255, 247, 237, 0.4);
}

.vc-auth input:focus {
  border-color: rgba(215, 168, 77, 0.78);
  box-shadow: 0 0 0 4px rgba(215, 168, 77, 0.14);
}

.vc-auth .captcha {
  overflow: hidden;
}

.vc-auth .options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--vc-muted);
  font-size: 0.9rem;
}

.vc-auth .check {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  color: var(--vc-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.vc-auth .check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--vc-gold);
}

.vc-auth .check span {
  color: var(--vc-muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-transform: none;
}

.vc-auth .button {
  min-height: 54px;
  border: 1px solid rgba(215, 168, 77, 0.86);
  border-radius: 999px;
  padding: 0 22px;
  background: linear-gradient(135deg, #f4c86a, #b77921);
  color: #120b04;
  font-weight: 950;
  text-transform: uppercase;
}

.vc-auth .switch {
  margin: 22px 0 0;
  color: var(--vc-muted);
}

.vc-auth .alert {
  border-radius: 8px;
}

@media (max-width: 991px) {
  .vc-site .topbar {
    display: none;
  }

  .vc-site .tools {
    align-items: stretch;
    flex-direction: column;
  }

  .vc-site .tools .phone,
  .vc-site .tools .reserve {
    width: 100%;
  }

  .vc-home .hero {
    min-height: 760px;
    padding: 48px 0;
  }

  .vc-home .hero-grid,
  .vc-home .split-grid,
  .vc-home .sports-grid,
  .vc-home .details-grid,
  .vc-site .footer-grid,
  .vc-page .hero-grid,
  .vc-contact .hero-grid,
  .vc-contact .grid {
    grid-template-columns: 1fr;
  }

  .vc-home .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .vc-home .menu-grid {
    grid-template-columns: 1fr;
  }

  .vc-home .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vc-home .gallery-grid a:nth-child(1),
  .vc-home .gallery-grid a:nth-child(6) {
    grid-column: span 1;
  }

  .vc-home .hero .video {
    left: 0;
    right: 0;
    opacity: 0.58;
  }

  .vc-page .hero,
  .vc-contact .hero {
    min-height: 460px;
    padding-top: 86px;
  }

  .vc-page .side {
    position: static;
  }

  .vc-page .dynamic .cards article,
  .vc-page .dynamic .packages article,
  .vc-page .dynamic .menu-items,
  .vc-page .dynamic .feature-grid,
  .vc-page .dynamic .video-grid {
    grid-template-columns: 1fr;
  }

  .vc-page .dynamic .cards article > div,
  .vc-page .dynamic .packages article > div {
    padding: 20px;
  }

  .vc-page .dynamic .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vc-auth,
  .vc-auth .shell {
    min-height: calc(100vh - 78px);
  }

  .vc-auth .shell {
    align-items: stretch;
    padding: 34px 0;
  }

  .vc-auth .grid,
  .vc-auth.register .grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .vc-auth .story {
    max-width: 100%;
  }

  .vc-auth .logo {
    margin-bottom: 24px;
  }
}

@media (max-width: 640px) {
  .vc-site .floating-rsvp {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 0 17px;
  }

  .vc-home .hero {
    min-height: 720px;
  }

  .vc-home .event-card {
    grid-template-columns: 1fr;
  }

  .vc-home .event-card a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .vc-home .media,
  .vc-home .lounge-panel {
    min-height: 420px;
  }

  .vc-home .lounge-panel {
    padding: 24px;
  }

  .vc-home .gallery-grid {
    grid-template-columns: 1fr;
  }

  .vc-site .footer-base {
    flex-direction: column;
  }

  .vc-contact .fields {
    grid-template-columns: 1fr;
  }

  .vc-page h1,
  .vc-contact h1 {
    font-size: clamp(2.65rem, 15vw, 4.1rem);
    line-height: 0.92;
  }

  .vc-page .hero,
  .vc-contact .hero {
    min-height: 620px;
    padding-bottom: 34px;
  }

  .vc-page .hero aside,
  .vc-contact .hero aside {
    padding: 20px;
  }

  .vc-page .stats span,
  .vc-contact .stats span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.7rem;
  }

  .vc-page .lead-form .fields,
  .vc-page .dynamic .gallery-grid {
    grid-template-columns: 1fr;
  }

  .vc-auth .shell {
    padding: 24px 0;
  }

  .vc-auth h1 {
    font-size: clamp(2.65rem, 15vw, 4.25rem);
  }

  .vc-auth .story > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .vc-auth .card {
    padding: 22px;
  }

  .vc-auth .fields.two,
  .vc-auth .fields.split {
    grid-template-columns: 1fr;
  }

  .vc-auth .options {
    align-items: flex-start;
    flex-direction: column;
  }
}
