.elementor-kit-5{--e-global-color-primary:#0A0A0A;--e-global-color-secondary:#101010;--e-global-color-text:#F2F0EB;--e-global-color-accent:#F2F0EB;--e-global-color-2ad77e5:#161616;--e-global-color-df4a837:#B1AFAB;--e-global-typography-primary-font-family:"Bebas Neue";--e-global-typography-primary-font-weight:400;--e-global-typography-secondary-font-family:"Playfair Display";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"DM Sans";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Bebas Neue";--e-global-typography-accent-font-weight:400;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */:root {
  --bg: #0a0a0a;
  --bg-2: #101010;
  --bg-3: #161616;
  --ink: #f2f0eb;
  --ink-dim: rgba(242,240,235,0.62);
  --ink-mute: rgba(242,240,235,0.36);
  --line: rgba(242,240,235,0.12);
  --line-strong: rgba(242,240,235,0.32);

  --display: 'Bebas Neue', sans-serif;
  --serif: 'Playfair Display', serif;
  --sans: 'DM Sans', sans-serif;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--ink);
  color: var(--bg);
}

.hero-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.42em;
  letter-spacing: 0;
  color: var(--ink-dim);
  text-transform: none;
  display: inline-block;
  padding-left: 0.18em;
}

.scroll-label::after {
  content: "";
  display: block;
  width: 1px;
  height: 38px;
  background: currentColor;
  margin: 10px auto 0;
  animation: scrollLine 2.6s cubic-bezier(0.77,0,0.175,1) infinite;
  transform-origin: top;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ===== SITE FRAME / BORDER ===== */

.site-frame {
  position: fixed !important;
  top: 18px !important;
  left: 18px !important;
  right: 18px !important;
  bottom: 18px !important;

  border: 1px solid rgba(242, 240, 235, 0.18) !important;

  pointer-events: none !important;
  z-index: 999999 !important;
  display: block !important;
}

/* Make frame tighter on mobile */
@media (max-width: 720px) {
  .site-frame {
    top: 8px !important;
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
  }
}


.cf-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--bg);
}

.cf-marquee__track {
  display: inline-flex;
  gap: 48px;
  animation: cfMarquee 32s linear infinite;
}

.cf-marquee span {
  font-family: var(--display);
  letter-spacing: 0.18em;
  font-size: clamp(26px, 3vw, 42px);
  color: var(--ink);
  font-weight: 400;
}

.cf-marquee span em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-dim);
  letter-spacing: 0;
  font-size: 0.72em;
  padding: 0 10px;
}

@keyframes cfMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ===== OPENING CURTAIN ANIMATION ===== */

.cf-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.cf-curtain__half {
  flex: 1;
  background: #0a0a0a;
  transition: transform 1.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.cf-curtain__half--top {
  transform: translateY(0);
}

.cf-curtain__half--bottom {
  transform: translateY(0);
}

.cf-curtain__seam {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  letter-spacing: 0.5em;
  font-size: 12px;
  color: rgba(242, 240, 235, 0.62);
  white-space: nowrap;
  opacity: 1;
  transition: opacity 480ms cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 2;
}

.cf-curtain.is-open .cf-curtain__half--top {
  transform: translateY(-100%);
}

.cf-curtain.is-open .cf-curtain__half--bottom {
  transform: translateY(100%);
}

.cf-curtain.is-open .cf-curtain__seam {
  opacity: 0;
}

body.elementor-editor-active .cf-curtain {
  display: none !important;
}

body.elementor-editor-active .cf-curtain,
.elementor-editor-active .cf-curtain,
body.elementor-editor-preview .cf-curtain,
.elementor-editor-preview .cf-curtain {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink-dim);
  text-transform: none;
  font-size: 0.78em;
}

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  letter-spacing: 0.4em;
  font-size: 12px;
  color: var(--ink-dim);
}

.eyebrow-line::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.event-title {
  margin-bottom: 18px !important;
}

.event-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.34em;
  color: var(--ink-dim);
  letter-spacing: 0;
  text-transform: none;
  display: block;
  margin-top: 0.18em !important;
  margin-bottom: 0 !important;
  line-height: 1em;
}

.event-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.event-info-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 15px;
}

.event-info-list li:first-child {
  border-top: 1px solid var(--line);
}

.event-info-list li span {
  font-family: var(--display);
  letter-spacing: 0.3em;
  font-size: 12px;
  color: var(--ink-dim);
}

.event-info-list li em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
}

.cf-marquee--reverse .cf-marquee__track {
  animation-direction: reverse;
}


/* Marquee font correction */
.cf-marquee span {
  font-family: var(--display) !important;
  font-weight: 400 !important;
  text-transform: uppercase;
  line-height: 1;
}

.cf-marquee span em {
  font-family: var(--serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.cf-marquee span {
  font-family: "Bebas Neue", sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.cf-marquee span em {
  font-family: "Playfair Display", serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.hours-list li span,
.hours-list li em {
  font-family: "Bebas Neue", sans-serif !important;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.18em;
  font-size: 15px;
  color: var(--ink);
  text-transform: uppercase;
}

.hours-list li.is-closed span,
.hours-list li.is-closed em {
  color: var(--ink-mute);
}

@media (max-width: 680px) {
  .hours-list li {
    align-items: flex-start;
  }

  .hours-list li span,
  .hours-list li em {
    font-size: 13px;
    letter-spacing: 0.14em;
  }
}

.cf-footer {
  padding: 48px clamp(20px, 3vw, 48px) 28px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.cf-footer__row {
  display: grid;
  grid-template-columns: 6fr 3fr 3fr;
  gap: 32px;
  align-items: end;
}

.cf-footer__brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.85;
  font-weight: 400;
  color: var(--ink);
  text-transform: uppercase;
}

.cf-footer__brand em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-dim);
  text-transform: none;
  letter-spacing: 0;
}

.cf-footer__links {
  display: grid;
  gap: 13px;
}

.cf-footer__links a {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.28em;
  font-size: 13px;
  color: var(--ink);
  text-transform: uppercase;
}

.cf-footer__links a:hover {
  color: var(--ink-dim);
}

.cf-footer__legal {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.4em;
  font-size: 11px;
  color: var(--ink-mute);
  text-align: right;
  line-height: 1.7;
  text-transform: uppercase;
}

@media (max-width: 780px) {
  .cf-footer__row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cf-footer__legal {
    text-align: left;
  }
}


/* Final override: button hover border + text color fix */

.cf-btn,
.cf-btn .elementor-button {
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid var(--ink) !important;
  box-shadow: inset 0 0 0 1px var(--ink) !important;
}

/* keep animation inside the border without hiding bottom border */
.cf-btn::after,
.cf-btn .elementor-button::after {
  content: "" !important;
  position: absolute !important;
  top: 1px !important;
  left: 1px !important;
  right: 1px !important;
  bottom: 1px !important;
  inset: 1px !important;
  background: var(--bg) !important;
  transform: translateY(110%) !important;
  transition: transform 420ms cubic-bezier(0.23, 1, 0.32, 1) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.cf-btn:hover::after,
.cf-btn:hover .elementor-button::after {
  transform: translateY(0) !important;
}

/* text stays above animation */
.cf-btn .elementor-button-text,
.cf-btn span {
  position: relative !important;
  z-index: 2 !important;
}

/* filled button hover text should be white */
.cf-btn:hover,
.cf-btn:hover .elementor-button,
.cf-btn:hover .elementor-button-text {
  color: var(--ink) !important;
}

/* ghost button reverses properly */
.cf-btn-ghost::after,
.cf-btn-ghost .elementor-button::after {
  background: var(--ink) !important;
}

.cf-btn-ghost:hover,
.cf-btn-ghost:hover .elementor-button,
.cf-btn-ghost:hover .elementor-button-text {
  color: var(--bg) !important;
}

/* Hide button border normally, show border only on hover */

.cf-btn,
.cf-btn .elementor-button {
  border-color: transparent !important;
  box-shadow: none !important;
}

.cf-btn:hover,
.cf-btn:hover .elementor-button {
  border-color: var(--ink) !important;
  box-shadow: inset 0 0 0 1px var(--ink) !important;
}

/* For ghost/outline buttons, keep border visible always */
.cf-btn-ghost,
.cf-btn-ghost .elementor-button {
  border-color: var(--ink) !important;
  box-shadow: none !important;
}

.cf-btn-ghost:hover,
.cf-btn-ghost:hover .elementor-button {
  border-color: var(--ink) !important;
  box-shadow: inset 0 0 0 1px var(--ink) !important;
}

.events-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}

.event-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  padding: clamp(20px, 2.5vw, 32px) 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  position: relative;
  transition: padding-left 480ms cubic-bezier(0.23,1,0.32,1);
}

.event-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--ink);
  transition: width 480ms cubic-bezier(0.23,1,0.32,1);
}

.event-row:hover {
  padding-left: 24px;
}

.event-row:hover::before {
  width: 6px;
}

.event-row__date {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.18em;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink-dim);
  min-width: 90px;
}

.event-row__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: 0.005em;
  line-height: 1;
  margin: 0;
  font-weight: 400;
  color: var(--ink);
}

.event-row__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-dim);
  font-size: 0.46em;
  display: block;
  margin-top: 0.4em;
  line-height: 1.3;
}

.event-row__meta {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.32em;
  font-size: 12px;
  color: var(--ink-dim);
  text-align: right;
}

@media (max-width: 680px) {
  .event-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .event-row__meta {
    text-align: left;
  }
}

.events-closing-note a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
}


/* ===== FORCE STYLE ELEMENTOR GALLERY ===== */

.cf-gallery-style,
.cf-gallery-style * {
  box-sizing: border-box;
}

/* Main gallery spacing */
.cf-gallery-style .e-gallery-container {
  gap: 18px !important;
}

/* Each image item */
.cf-gallery-style .e-gallery-item {
  overflow: hidden !important;
  background: var(--bg-2) !important;
}

/* Image styling */
.cf-gallery-style .e-gallery-image,
.cf-gallery-style img {
  filter: grayscale(1) contrast(1.05) !important;
  transition: transform 1.4s cubic-bezier(0.23,1,0.32,1), filter 700ms cubic-bezier(0.23,1,0.32,1) !important;
}

/* Hover zoom */
.cf-gallery-style .e-gallery-item:hover .e-gallery-image,
.cf-gallery-style .e-gallery-item:hover img {
  transform: scale(1.05) !important;
}

/* Overlay */
.cf-gallery-style .elementor-gallery-item__overlay,
.cf-gallery-style .e-gallery-item__overlay {
  background: linear-gradient(0deg, rgba(0,0,0,0.75), rgba(0,0,0,0)) !important;
  opacity: 0 !important;
  transition: opacity 380ms cubic-bezier(0.23,1,0.32,1) !important;
}

/* Show overlay on hover */
.cf-gallery-style .e-gallery-item:hover .elementor-gallery-item__overlay,
.cf-gallery-style .e-gallery-item:hover .e-gallery-item__overlay {
  opacity: 1 !important;
}

/* Caption/title text */
.cf-gallery-style .elementor-gallery-item__title,
.cf-gallery-style .elementor-gallery-item__description,
.cf-gallery-style .e-gallery-item__title,
.cf-gallery-style .e-gallery-item__description {
  font-family: "Bebas Neue", sans-serif !important;
  letter-spacing: 0.3em !important;
  font-size: 11px !important;
  color: var(--ink) !important;
  text-transform: uppercase !important;
}

/* ===== ELEMENTOR GALLERY AS DANCER CARDS ===== */

.cf-dancer-gallery {
  margin-top: 65px;
  counter-reset: dancer;
}

/* Main gallery grid */
.cf-dancer-gallery .e-gallery-container {
  gap: 48px 40px !important;
  align-items: start !important;
}

/* Each dancer card */
.cf-dancer-gallery .e-gallery-item {
  counter-increment: dancer;
  position: relative !important;
  overflow: visible !important;
  background: transparent !important;
}

/* Image frame */
.cf-dancer-gallery .e-gallery-image {
  position: relative !important;
  aspect-ratio: 3 / 4 !important;
  overflow: hidden !important;
  background-color: var(--bg-2) !important;
  border: 1px solid var(--line) !important;
  filter: grayscale(1) contrast(1.06) !important;
  transition: transform 1.6s cubic-bezier(0.23,1,0.32,1), filter 700ms !important;
}

/* Hover zoom */
.cf-dancer-gallery .e-gallery-item:hover .e-gallery-image {
  transform: scale(1.06) !important;
}

/* Number badge */
.cf-dancer-gallery .e-gallery-item::before {
  content: "No. " counter(dancer, decimal-leading-zero);
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.4em;
  font-size: 11px;
  color: var(--ink);
  mix-blend-mode: difference;
  pointer-events: none;
}

/* Hover overlay */
.cf-dancer-gallery .elementor-gallery-item__overlay {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  padding: 20px !important;
  background: rgba(10,10,10,0) !important;
  opacity: 0 !important;
  transition: opacity 480ms cubic-bezier(0.23,1,0.32,1), background 480ms cubic-bezier(0.23,1,0.32,1) !important;
}

/* Show overlay on hover */
.cf-dancer-gallery .e-gallery-item:hover .elementor-gallery-item__overlay {
  opacity: 1 !important;
  background: rgba(10,10,10,0.35) !important;
}

/* Hide Elementor default title inside overlay */
.cf-dancer-gallery .elementor-gallery-item__title {
  display: none !important;
}

/* Hover quote */
.cf-dancer-gallery .cf-dancer-quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.4em;
}

/* Meta below image */
.cf-dancer-gallery .cf-dancer-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

/* Name below image */
.cf-dancer-gallery .cf-dancer-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(24px, 2.2vw, 34px);
  letter-spacing: 0.04em;
  font-weight: 400;
  color: var(--ink);
  text-transform: uppercase;
}

/* Tag beside name */
.cf-dancer-gallery .cf-dancer-tag {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--ink-dim);
  font-size: 15px;
  white-space: nowrap;
}

/* Desktop offset like HTML */
@media (min-width: 1080px) {
  .cf-dancer-gallery .e-gallery-item:nth-child(3n+2) {
    margin-top: 40px !important;
  }

  .cf-dancer-gallery .e-gallery-item:nth-child(3n) {
    margin-top: 80px !important;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .cf-dancer-gallery {
    margin-top: 45px;
  }

  .cf-dancer-gallery .e-gallery-container {
    gap: 36px !important;
  }

  .cf-dancer-gallery .cf-dancer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .cf-dancer-gallery .e-gallery-item:nth-child(n) {
    margin-top: 0 !important;
  }
}

/* ===== DANCER GALLERY FIXES ===== */

/* Force 3 columns desktop */
.cf-dancer-gallery .e-gallery-container {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 48px 40px !important;
}

/* Force 2 columns tablet */
@media (max-width: 1024px) {
  .cf-dancer-gallery .e-gallery-container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Force 1 column mobile */
@media (max-width: 680px) {
  .cf-dancer-gallery .e-gallery-container {
    grid-template-columns: 1fr !important;
  }
}

/* Make item normal card, not masonry weirdness */
.cf-dancer-gallery .e-gallery-item {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  overflow: visible !important;
}

/* Keep image frame locked */
.cf-dancer-gallery .e-gallery-image {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 3 / 4 !important;
  overflow: hidden !important;
  background-size: cover !important;
  background-position: center !important;
}

/* Keep overlay inside image frame */
.cf-dancer-gallery .elementor-gallery-item__overlay {
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}

/* Hide Elementor title/name inside overlay */
.cf-dancer-gallery .elementor-gallery-item__title {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Hide Elementor description default if JS duplicates it */
.cf-dancer-gallery .elementor-gallery-item__description {
  display: none !important;
}

/* Show only custom quote */
.cf-dancer-gallery .cf-dancer-quote {
  display: block !important;
  max-width: 100% !important;
  font-family: "Playfair Display", serif !important;
  font-style: italic !important;
  font-size: 16px !important;
  line-height: 1.4em !important;
  color: var(--ink) !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

/* Stop quote from escaping */
.cf-dancer-gallery .elementor-gallery-item__overlay * {
  max-width: 100% !important;
}


/* Fix dancer gallery spacing and keep cards inside container */

.cf-dancer-gallery {
  overflow: hidden !important;
}

.cf-dancer-gallery .e-gallery-container {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 48px 40px !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
}

.cf-dancer-gallery .e-gallery-item {
  width: 100% !important;
  max-width: 100% !important;
  position: relative !important;
  overflow: visible !important;
  margin: 0 !important;
}

/* Image frame must hold overlay inside */
.cf-dancer-gallery .e-gallery-image {
  width: 100% !important;
  aspect-ratio: 3 / 4 !important;
  overflow: hidden !important;
  position: relative !important;
  background-size: cover !important;
  background-position: center !important;
}

/* Force overlay to stay on image only */
.cf-dancer-gallery .elementor-gallery-item__overlay {
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}

/* Keep hover description inside image */
.cf-dancer-gallery .cf-dancer-quote {
  max-width: 100% !important;
  display: block !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  line-height: 1.4em !important;
}

/* Reduce desktop offset so it does not overflow */
@media (min-width: 1080px) {
  .cf-dancer-gallery .e-gallery-item:nth-child(3n+2) {
    margin-top: 32px !important;
  }

  .cf-dancer-gallery .e-gallery-item:nth-child(3n) {
    margin-top: 64px !important;
  }
}

@media (max-width: 1024px) {
  .cf-dancer-gallery .e-gallery-container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 36px 28px !important;
  }
}

@media (max-width: 680px) {
  .cf-dancer-gallery .e-gallery-container {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .cf-dancer-gallery .e-gallery-item:nth-child(n) {
    margin-top: 0 !important;
  }
}

/* ===== FIX HOVER QUOTE TO STAY INSIDE IMAGE ONLY ===== */

/* the whole card */
.cf-dancer-gallery .e-gallery-item {
  position: relative !important;
  overflow: visible !important;
}

/* the actual image/link wrapper */
.cf-dancer-gallery .elementor-gallery-item,
.cf-dancer-gallery .e-gallery-image {
  position: relative !important;
  overflow: hidden !important;
}

/* make overlay cover ONLY the image area */
.cf-dancer-gallery .elementor-gallery-item__overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  padding: 18px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

/* hide Elementor default overlay texts completely */
.cf-dancer-gallery .elementor-gallery-item__title,
.cf-dancer-gallery .elementor-gallery-item__description,
.cf-dancer-gallery .elementor-gallery-item__content {
  display: none !important;
}

/* only show your custom quote */
.cf-dancer-gallery .cf-dancer-quote {
  display: block !important;
  position: relative !important;
  z-index: 4 !important;
  max-width: 100% !important;
  margin: 0 !important;
  font-family: "Playfair Display", serif !important;
  font-style: italic !important;
  font-size: 16px !important;
  line-height: 1.35em !important;
  color: var(--ink) !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
}

/* keep the name/tag section safely below the image */
.cf-dancer-gallery .cf-dancer-meta {
  position: relative !important;
  z-index: 5 !important;
  margin-top: 18px !important;
  padding-top: 14px !important;
  background: var(--bg) !important;
}


/* Move hover quote to the middle of the image */

.cf-dancer-gallery .elementor-gallery-item__overlay {
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  text-align: center !important;
}

.cf-dancer-gallery .cf-dancer-quote {
  max-width: 80% !important;
  text-align: center !important;
  margin: 0 auto !important;
}

/* ===== CONTACT PAGE ===== */

.cf-contact-info {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

.cf-contact-info dt {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.32em;
  font-size: 12px;
  color: var(--ink-dim);
  padding: 20px 0 6px;
  text-transform: uppercase;
}

.cf-contact-info dd {
  margin: 0;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
  font-family: "Playfair Display", serif;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
}

.cf-contact-info dd span {
  color: var(--ink-mute);
}

.cf-contact-info dd a {
  border-bottom: 1px solid transparent;
  transition: border-color 240ms cubic-bezier(0.23,1,0.32,1);
}

.cf-contact-info dd a:hover {
  border-color: var(--ink);
}

/* Map */
.cf-map {
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.cf-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cf-map__pin {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.cf-map__pin .ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  position: relative;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.cf-map__pin .ring::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  animation: cfPulse 2.8s cubic-bezier(0.23,1,0.32,1) infinite;
}

.cf-map__pin .ring::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
}

.cf-map__pin .label {
  margin-top: 16px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.36em;
  font-size: 12px;
  color: var(--ink);
}

@keyframes cfPulse {
  0% {
    transform: scale(0.7);
    opacity: 1;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

@media (max-width: 780px) {
  .cf-map {
    min-height: 420px;
  }
}

.cf-policy-line {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.32em;
  font-size: 12px;
  color: var(--ink-dim);
  text-transform: uppercase;
}

.hero-est-text,
.hero-est-text .elementor-heading-title {
  white-space: nowrap !important;
  width: auto !important;
  min-width: 260px !important;
  display: inline-block !important;
  text-align: center !important;
}
/* Fix EST text without pushing paragraph/button */
.hero-est-text {
  min-width: 0 !important;
  width: max-content !important;
  max-width: none !important;
  flex: 0 0 auto !important;
}

.hero-est-text .elementor-heading-title {
  white-space: nowrap !important;
  width: max-content !important;
  min-width: 0 !important;
  max-width: none !important;
}


/* ===== CUSTOM CURSOR ===== */

@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }

  a,
  button,
  .elementor-button,
  [data-cursor],
  input,
  textarea,
  figure,
  .e-gallery-item {
    cursor: none !important;
  }

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999999;
    will-change: transform;
  }

  .cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--ink);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 220ms cubic-bezier(0.23,1,0.32,1), opacity 200ms cubic-bezier(0.23,1,0.32,1);
    mix-blend-mode: difference;
  }

  .cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 280ms cubic-bezier(0.23,1,0.32,1), height 280ms cubic-bezier(0.23,1,0.32,1), opacity 220ms;
  }

  body[data-cursor-hover="link"] .cursor-ring {
    width: 62px;
    height: 62px;
  }

  body[data-cursor-hover="link"] .cursor-dot {
    opacity: 0;
  }

  body.cursor-down .cursor-ring {
    width: 24px;
    height: 24px;
  }
}

/* Normal cursor on 19+ popup only */
.cf-age-gate,
.cf-age-gate *,
.cf-age-gate:hover,
.cf-age-gate:hover * {
  cursor: auto !important;
}

.cf-age-btn,
.cf-age-btn *,
.cf-age-btn:hover,
.cf-age-btn:hover * {
  cursor: pointer !important;
}


/* ===== MANUAL HEADER - CENTERFOLDS STYLE ===== */

.manual-site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1000000 !important;
  background: transparent !important;
  mix-blend-mode: difference;
}

/* Header links */
.manual-site-header a {
  color: inherit !important;
  text-decoration: none !important;
}

/* Text logo */
.manual-site-logo .elementor-heading-title {
  font-family: "Bebas Neue", sans-serif !important;
  letter-spacing: 0.22em !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

.manual-site-logo em {
  font-family: "Playfair Display", serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-size: 0.95em !important;
  padding-left: 4px;
}

/* Desktop menu */
.manual-site-header .elementor-nav-menu {
  display: flex !important;
  align-items: center !important;
  gap: 35px !important;
}

.manual-site-header .elementor-nav-menu a {
  position: relative !important;
  font-family: "Bebas Neue", sans-serif !important;
  letter-spacing: 0.28em !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  padding: 6px 0 !important;
  background: transparent !important;
}

/* Desktop underline hover */
.manual-site-header .elementor-nav-menu a::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 100% !important;
  bottom: -2px !important;
  height: 1px !important;
  background: currentColor !important;
  transition: right 380ms cubic-bezier(0.23,1,0.32,1) !important;
}

.manual-site-header .elementor-nav-menu a:hover::after,
.manual-site-header .elementor-nav-menu .current-menu-item > a::after,
.manual-site-header .elementor-nav-menu .current_page_item > a::after {
  right: 0 !important;
}

/* Remove Elementor default menu styling */
.manual-site-header .elementor-nav-menu--main .elementor-item {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.manual-site-header .elementor-nav-menu--main .elementor-item:hover,
.manual-site-header .elementor-nav-menu--main .elementor-item.elementor-item-active {
  background: transparent !important;
  color: #ffffff !important;
}

/* Hide dropdown on desktop */
@media (min-width: 1025px) {
  .manual-site-header .elementor-menu-toggle {
    display: none !important;
  }

  .manual-site-header .elementor-nav-menu--dropdown {
    display: none !important;
  }
}

/* ===== MOBILE HEADER + MENU ===== */

@media (max-width: 1024px) {
  .manual-site-header {
    padding: 26px 24px 0 24px !important;
    mix-blend-mode: difference;
  }

  .manual-site-logo .elementor-heading-title {
    font-size: 15px !important;
  }

  /* Hide desktop menu only */
  .manual-site-header .elementor-nav-menu--main {
    display: none !important;
  }

  /* Show hamburger */
  .manual-site-header .elementor-menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    z-index: 1000003 !important;
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Hide default icon */
  .manual-site-header .elementor-menu-toggle i,
  .manual-site-header .elementor-menu-toggle svg {
    display: none !important;
  }

  /* Custom two-line hamburger */
  .manual-site-header .elementor-menu-toggle::before,
  .manual-site-header .elementor-menu-toggle::after {
    content: "" !important;
    position: absolute !important;
    left: 8px !important;
    width: 22px !important;
    height: 1px !important;
    background: #ffffff !important;
    transition:
      transform 320ms cubic-bezier(0.23,1,0.32,1),
      top 320ms cubic-bezier(0.23,1,0.32,1) !important;
  }

  .manual-site-header .elementor-menu-toggle::before {
    top: 15px !important;
  }

  .manual-site-header .elementor-menu-toggle::after {
    top: 22px !important;
  }

  /* Hamburger turns into X */
  .manual-site-header .elementor-menu-toggle.elementor-active::before,
  .manual-site-header .elementor-menu-toggle[aria-expanded="true"]::before {
    top: 18px !important;
    transform: rotate(45deg) !important;
  }

  .manual-site-header .elementor-menu-toggle.elementor-active::after,
  .manual-site-header .elementor-menu-toggle[aria-expanded="true"]::after {
    top: 18px !important;
    transform: rotate(-45deg) !important;
  }

  /* Dropdown full screen */
  .manual-site-header .elementor-nav-menu--dropdown {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    background: #0a0a0a !important;
    z-index: 1000002 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    overflow: hidden !important;
    transform: translateY(-101%) !important;
    transition: transform 700ms cubic-bezier(0.77,0,0.175,1) !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Open dropdown */
  .manual-site-header .elementor-menu-toggle.elementor-active + .elementor-nav-menu--dropdown,
  .manual-site-header .elementor-menu-toggle[aria-expanded="true"] + .elementor-nav-menu--dropdown,
  .manual-site-header .elementor-nav-menu--dropdown[aria-hidden="false"] {
    transform: translateY(0) !important;
  }

  /* Center menu items */
  .manual-site-header .elementor-nav-menu--dropdown .elementor-nav-menu {
    height: 100vh !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 32px !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .manual-site-header .elementor-nav-menu--dropdown li {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Mobile menu links */
  .manual-site-header .elementor-nav-menu--dropdown a {
    font-family: "Bebas Neue", sans-serif !important;
    font-size: 28px !important;
    line-height: 1 !important;
    letter-spacing: 0.18em !important;
    color: #f2f0eb !important;
    background: transparent !important;
    text-transform: uppercase !important;
    padding: 0 !important;
    border: none !important;
  }

  .manual-site-header .elementor-nav-menu--dropdown a::after {
    display: none !important;
  }

  .manual-site-header .elementor-nav-menu--dropdown a:hover,
  .manual-site-header .elementor-nav-menu--dropdown .current-menu-item > a,
  .manual-site-header .elementor-nav-menu--dropdown .current_page_item > a {
    color: rgba(242,240,235,0.62) !important;
    background: transparent !important;
  }
}

/* Make Elementor mobile menu background solid black */
@media (max-width: 1024px) {
  .manual-site-header .elementor-nav-menu--dropdown,
  .manual-site-header .elementor-nav-menu--dropdown nav,
  .manual-site-header .elementor-nav-menu--dropdown ul,
  .manual-site-header .elementor-nav-menu--dropdown li,
  .manual-site-header .elementor-nav-menu--dropdown .elementor-nav-menu {
    background: #0a0a0a !important;
    background-color: #0a0a0a !important;
  }

  .manual-site-header .elementor-nav-menu--dropdown {
    opacity: 1 !important;
    box-shadow: 0 0 0 100vmax #0a0a0a !important;
    clip-path: inset(0 -100vmax) !important;
  }

  .manual-site-header .elementor-nav-menu--dropdown a {
    background: transparent !important;
    color: #f2f0eb !important;
  }
}
@media (max-width: 1024px) {
  .manual-site-header .elementor-nav-menu--dropdown {
    min-height: 100vh !important;
    height: 100vh !important;
    width: 100vw !important;
    background: #0a0a0a !important;
  }
}



/* ===== CUSTOM EVENTPRIME OUTPUT — CENTERFOLDS STYLE ===== */

.cf-ep-events-list {
  border-top: 1px solid rgba(242,240,235,0.12);
  margin-top: 26px;
}

.cf-ep-event-row {
  display: grid;
  grid-template-columns: 220px 100px 1fr 120px;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(242,240,235,0.12);
  transition: padding-left 480ms cubic-bezier(0.23,1,0.32,1);
}

.cf-ep-event-row:hover {
  padding-left: 18px;
}

.cf-ep-event-image {
  display: block;
  width: 220px;
  height: 95px;
  overflow: hidden;
  background: #101010;
  border: 1px solid rgba(242,240,235,0.12);
}

.cf-ep-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.75) contrast(1.08);
  transition: transform 1.2s cubic-bezier(0.23,1,0.32,1), filter 500ms;
}

.cf-ep-event-row:hover .cf-ep-event-image img {
  transform: scale(1.08);
  filter: grayscale(0.2) brightness(0.92) contrast(1.1);
}

.cf-ep-event-date {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.18em;
  font-size: 20px;
  color: rgba(242,240,235,0.62);
  text-transform: uppercase;
}

.cf-ep-event-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  color: #f2f0eb;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.cf-ep-event-desc {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.35em;
  color: rgba(242,240,235,0.62);
  margin: 0;
}

.cf-ep-event-time {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.32em;
  font-size: 12px;
  color: rgba(242,240,235,0.62);
  text-align: right;
  text-transform: uppercase;
}

.cf-no-events {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: rgba(242,240,235,0.62);
}

/* Mobile */
@media (max-width: 780px) {
  .cf-ep-event-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }

  .cf-ep-event-image {
    width: 100%;
    height: 180px;
  }

  .cf-ep-event-date,
  .cf-ep-event-time {
    text-align: left;
  }
}/* End custom CSS */