:root {
  --rc-bg: #07070b;
  --rc-bg-soft: #12121b;
  --rc-surface: #fffaf1;
  --rc-surface-2: #f3f0e5;
  --rc-card: #ffffff;
  --rc-text: #12121b;
  --rc-text-soft: #585662;
  --rc-white: #ffffff;
  --rc-lime: #b8ff35;
  --rc-green: #82f53b;
  --rc-pink: #ff3aa9;
  --rc-yellow: #ffd34a;
  --rc-cyan: #40d7ff;
  --rc-border: rgba(18, 18, 27, 0.1);
  --rc-shadow: 0 24px 60px rgba(7, 7, 11, 0.12);
  --rc-radius: 8px;
  --rc-container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--rc-text);
  background: var(--rc-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.rc-container {
  width: min(var(--rc-container), calc(100% - 32px));
  margin: 0 auto;
}

.rc-site-main {
  overflow: clip;
}

.rc-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 11, 0.4);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.rc-site-header__media,
.rc-site-header__overlay {
  position: absolute;
  inset: 0;
}

.rc-site-header__media {
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 7, 11, 0.22), rgba(7, 7, 11, 0.42)),
    url("../images/herobg.jpg") center/cover no-repeat;
}

.rc-site-header__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.rc-site-header__overlay {
  background:
    linear-gradient(180deg, rgba(7, 7, 11, 0.18), rgba(7, 7, 11, 0.5)),
    linear-gradient(90deg, rgba(7, 7, 11, 0.34), rgba(7, 7, 11, 0.12) 40%, rgba(7, 7, 11, 0.38));
  z-index: 0;
}

.rc-header-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rc-header-top__row,
.rc-header-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.rc-header-top__row {
  min-height: 44px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.74);
}

.rc-header-top,
.rc-header-main {
  position: relative;
  z-index: 1;
}

.rc-header-meta,
.rc-header-top__links,
.rc-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rc-header-main {
  display: grid;
  gap: 16px;
  padding: 20px 0 16px;
  align-items: stretch;
  justify-content: normal;
}

.rc-header-brand-row {
  min-height: 68px;
  width: 100%;
}

.rc-header-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rc-site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.rc-site-logo img {
  width: min(240px, 38vw);
  height: auto;
  transition: filter 180ms ease, transform 180ms ease;
}

.rc-site-logo:hover img,
.rc-site-logo:focus-visible img,
.rc-site-logo:active img {
  filter:
    drop-shadow(0 0 10px rgba(255, 58, 169, 0.85))
    drop-shadow(0 0 18px rgba(130, 245, 59, 0.7))
    drop-shadow(0 0 28px rgba(64, 215, 255, 0.45));
  transform: translateY(-1px);
}

.rc-primary-nav {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rc-mobile-nav-actions {
  display: none;
}

.rc-nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.rc-nav-list a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 8px;
  position: relative;
}

.rc-nav-list .current-menu-item a::after,
.rc-nav-list a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--rc-pink);
}

.rc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.rc-button:hover {
  transform: translateY(-1px);
}

.rc-button--small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.76rem;
}

.rc-button--pink {
  background: var(--rc-pink);
  color: var(--rc-white);
  box-shadow: 0 14px 32px rgba(255, 58, 169, 0.28);
}

.rc-button--green {
  background: var(--rc-lime);
  color: var(--rc-bg);
  box-shadow: 0 14px 32px rgba(184, 255, 53, 0.22);
}

.rc-button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--rc-white);
}

.rc-button--dark {
  border-color: rgba(18, 18, 27, 0.2);
  color: var(--rc-text);
}

.rc-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--rc-cyan);
}

.rc-link-arrow::after {
  content: "->";
}

.rc-eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.rc-eyebrow-pink { color: var(--rc-pink); }
.rc-eyebrow-green { color: var(--rc-lime); }
.rc-eyebrow-blue { color: var(--rc-cyan); }
.rc-eyebrow-yellow { color: var(--rc-yellow); }

.rc-section--light .rc-eyebrow-green,
.rc-section--gallery .rc-eyebrow-green,
.rc-info-card:not(.rc-info-card--dark):not(.rc-info-card--accent) .rc-eyebrow-green,
.rc-rules-hours-panel .rc-eyebrow-green {
  color: #8c6200;
}

.rc-section-heading,
.rc-home-hero h1,
.rc-page-hero h1,
.rc-footer-title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  line-height: 0.96;
}

.rc-section-heading {
  font-size: clamp(2.3rem, 4.2vw, 4.2rem);
  margin-bottom: 14px;
}

.rc-section-intro {
  margin: 0;
  color: var(--rc-text-soft);
  font-size: 1.02rem;
  max-width: 760px;
}

.rc-section--dark .rc-section-intro,
.rc-feature-copy .rc-section-intro {
  color: #d7d6de;
}

.rc-home-hero,
.rc-page-hero {
  position: relative;
  color: var(--rc-white);
}

.rc-home-hero {
  min-height: min(920px, calc(100vh - 132px));
  display: flex;
  align-items: center;
}

.rc-home-hero__media,
.rc-home-hero__overlay {
  position: absolute;
  inset: 0;
}

.rc-home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-home-hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 11, 0.92) 0%, rgba(7, 7, 11, 0.72) 48%, rgba(7, 7, 11, 0.7) 100%);
}

.rc-home-hero__inner,
.rc-page-hero__inner {
  position: relative;
  z-index: 1;
}

.rc-home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 36px;
  align-items: end;
  padding: 108px 0 88px;
}

.rc-home-hero__content h1 {
  font-size: clamp(3.6rem, 8vw, 7rem);
  margin-bottom: 22px;
  max-width: 820px;
}

.rc-home-hero__content p:not(.rc-eyebrow) {
  margin: 0;
  max-width: 640px;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.84);
}

.rc-hero-callout {
  margin-top: 22px;
  max-width: 600px;
  padding: 18px 20px;
  border-radius: var(--rc-radius);
  background: rgba(184, 255, 53, 0.1);
  border: 1px solid rgba(184, 255, 53, 0.22);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.rc-hero-callout__label {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--rc-lime);
}

.rc-hero-callout__text {
  margin: 0;
  max-width: none;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.84);
}

.rc-hero-callout .rc-link-arrow {
  margin-top: 12px;
}

.rc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.rc-home-hero__panel,
.rc-info-card,
.rc-offer-card {
  border-radius: var(--rc-radius);
}

.rc-home-hero__panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.rc-home-hero__panel-label {
  margin: 0 0 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--rc-yellow);
}

.rc-stat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.rc-stat-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.rc-stat-list strong {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: var(--rc-white);
}

.rc-stat-list span {
  color: rgba(255, 255, 255, 0.76);
}

.rc-trust-strip {
  background: #0b0b12;
  color: var(--rc-white);
}

.rc-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 22px 0;
}

.rc-trust-strip__grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.rc-trust-strip__label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--rc-yellow);
  text-transform: uppercase;
}

.rc-section {
  padding: 88px 0;
}

.rc-section--light {
  background: var(--rc-surface);
}

.rc-section--dark {
  background: var(--rc-bg);
  color: var(--rc-white);
}

.rc-section--gallery {
  background: var(--rc-surface-2);
}

.rc-page-hero {
  background:
    radial-gradient(circle at top left, rgba(255, 58, 169, 0.18), transparent 42%),
    radial-gradient(circle at top right, rgba(184, 255, 53, 0.18), transparent 40%),
    var(--rc-bg);
  padding: 84px 0 48px;
}

.rc-page-hero__copy {
  max-width: 900px;
}

.rc-page-hero h1 {
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  margin-bottom: 18px;
}

.rc-page-hero p:not(.rc-eyebrow) {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.rc-section-heading-wrap {
  margin-bottom: 34px;
}

.rc-offer-grid,
.rc-schedule-grid,
.rc-feature-grid,
.rc-photo-grid,
.rc-grid-2,
.rc-event-grid,
.rc-footer-grid,
.rc-faq-list {
  display: grid;
  gap: 24px;
}

.rc-offer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rc-offer-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rc-offer-card,
.rc-info-card {
  background: var(--rc-card);
  padding: 28px;
  box-shadow: var(--rc-shadow);
  border: 1px solid var(--rc-border);
}

.rc-offer-card h3,
.rc-info-card h3,
.rc-faq-item h3 {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: 1.72rem;
  text-transform: uppercase;
  line-height: 1;
}

.rc-offer-card p,
.rc-info-card p,
.rc-contact-notes p,
.rc-faq-item p,
.rc-footer-main p {
  margin: 0;
  color: var(--rc-text-soft);
}

.rc-offer-card--dark,
.rc-info-card--dark,
.rc-info-card--accent {
  background: var(--rc-bg-soft);
  color: var(--rc-white);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.rc-offer-card--dark p,
.rc-info-card--dark p,
.rc-info-card--accent p {
  color: rgba(255, 255, 255, 0.78);
}

.rc-info-card--accent {
  background:
    linear-gradient(135deg, rgba(255, 58, 169, 0.16), rgba(64, 215, 255, 0.14)),
    var(--rc-bg-soft);
}

.rc-feature-grid,
.rc-schedule-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.rc-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rc-feature-copy--light .rc-section-intro,
.rc-feature-copy--light p:not(.rc-eyebrow) {
  color: var(--rc-text-soft);
}

.rc-photo-frame {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--rc-radius);
  box-shadow: var(--rc-shadow);
}

.rc-photo-frame img,
.rc-photo-grid__item img,
.rc-event-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-photo-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.rc-photo-grid__item {
  overflow: hidden;
  border-radius: var(--rc-radius);
  box-shadow: var(--rc-shadow);
  min-height: 240px;
}

.rc-photo-grid__item:nth-child(1) { grid-column: span 7; min-height: 420px; }
.rc-photo-grid__item:nth-child(2) { grid-column: span 5; min-height: 420px; }
.rc-photo-grid__item:nth-child(3) { grid-column: span 4; }
.rc-photo-grid__item:nth-child(4) { grid-column: span 4; }
.rc-photo-grid__item:nth-child(5) { grid-column: span 4; }

.rc-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.rc-badge--pink { background: rgba(255, 58, 169, 0.12); color: #c91f7b; }
.rc-badge--green { background: rgba(184, 255, 53, 0.18); color: #376600; }
.rc-badge--yellow { background: rgba(255, 211, 74, 0.2); color: #8c6200; }
.rc-badge--cyan { background: rgba(64, 215, 255, 0.16); color: #0d6d88; }

.rc-hours-table,
.rc-simple-list,
.rc-highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rc-hours-table li,
.rc-simple-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(18, 18, 27, 0.1);
}

.rc-info-card--dark .rc-hours-table li,
.rc-info-card--dark .rc-simple-list li {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.rc-hours-table li:last-child,
.rc-simple-list li:last-child {
  border-bottom: 0;
}

.rc-hours-table strong,
.rc-simple-list strong {
  font-size: 0.96rem;
}

.rc-inline-note {
  margin-top: 14px !important;
}

.rc-highlight-list {
  display: grid;
  gap: 14px;
}

.rc-highlight-list li {
  position: relative;
  padding-left: 22px;
}

.rc-highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--rc-lime);
}

.rc-highlight-list--light li {
  color: var(--rc-text-soft);
}

.rc-highlight-list--compact {
  gap: 10px;
}

.rc-event-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rc-event-card {
  overflow: hidden;
  border-radius: var(--rc-radius);
  background: var(--rc-card);
  border: 1px solid var(--rc-border);
}

.rc-event-card__body {
  padding: 20px;
}

.rc-event-card__tag {
  margin: 0 0 8px;
  color: #c91f7b;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.rc-faq-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 32px;
  align-items: start;
}

.rc-faq-preview__intro {
  display: grid;
  gap: 14px;
  align-content: start;
}

.rc-faq-preview__intro .rc-section-heading {
  font-size: clamp(2rem, 3.2vw, 3.55rem);
  max-width: 9ch;
  margin-bottom: 0;
}

.rc-faq-preview__intro .rc-section-intro {
  max-width: 32rem;
}

.rc-faq-preview__intro .rc-link-arrow {
  margin-top: 4px;
}

.rc-faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rc-faq-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rc-radius);
  padding: 24px;
}

.rc-faq-item h3 {
  font-size: 1.48rem;
  line-height: 0.98;
}

.rc-section--dark .rc-faq-item p {
  color: #d7d6de;
}

.rc-faq-list--light {
  grid-template-columns: 1fr;
}

.rc-faq-item--light {
  background: var(--rc-surface-2);
  border-color: rgba(18, 18, 27, 0.06);
}

.rc-rules-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.08fr) minmax(260px, 0.72fr);
  gap: 24px;
  align-items: start;
}

.rc-rules-main {
  display: grid;
  gap: 24px;
}

.rc-rules-policy-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 12px;
  border: 1px solid rgba(18, 18, 27, 0.08);
}

.rc-rules-hours-panel {
  background: var(--rc-surface-2);
  padding: 28px;
  border-radius: var(--rc-radius);
  border: 1px solid rgba(18, 18, 27, 0.08);
  box-shadow: var(--rc-shadow);
}

.rc-rules-hours-panel .rc-highlight-list {
  margin-top: 18px;
}

.rc-rules-hours-panel .rc-hero-actions {
  margin-top: 22px;
}

.rc-rules-hours-panel .rc-inline-note {
  color: var(--rc-text-soft);
}

.rc-hours-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 1px minmax(320px, 0.92fr);
  gap: 32px;
  align-items: stretch;
}

.rc-home-events-panel h3,
.rc-home-events-panel__intro {
  margin: 0;
}

.rc-home-events-panel h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  line-height: 1;
}

.rc-home-events-panel__intro {
  margin: 14px 0 18px !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

.rc-home-events-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rc-home-events-embed {
  border-radius: var(--rc-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 18px;
}

.rc-home-events-embed .rc-facebook-events {
  min-height: 420px;
  height: 100%;
}

.rc-page-home .rc-section--home-compact {
  padding-top: 40px;
  padding-bottom: 40px;
}

.rc-page-home .rc-section--home-plan {
  padding-bottom: 28px;
}

.rc-page-home .rc-section--home-hours {
  padding-top: 28px;
}

.rc-page-home .rc-section--home-plan .rc-section-heading-wrap {
  margin-bottom: 22px;
}

.rc-page-home .rc-section--home-plan .rc-section-intro {
  max-width: 34rem;
}

.rc-page-home .rc-section--home-plan .rc-offer-grid {
  gap: 18px;
}

.rc-page-home .rc-section--home-plan .rc-offer-card,
.rc-page-home .rc-section--home-events .rc-info-card {
  padding: 22px;
}

.rc-page-home .rc-section--home-plan .rc-offer-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.rc-page-home .rc-section--home-plan .rc-offer-card p:not(.rc-badge) {
  font-size: 0.96rem;
}

.rc-page-home .rc-section--home-events .rc-home-events-panel__intro {
  margin: 10px 0 14px !important;
}

.rc-page-home .rc-section--home-events .rc-home-events-embed {
  margin-top: 14px;
}

.rc-page-home .rc-section--home-events .rc-home-events-embed .rc-facebook-events {
  min-height: 320px;
}

.rc-hours-sidebar {
  display: grid;
  gap: 24px;
}

.rc-hours-divider {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 58, 169, 0.3) 18%,
    rgba(64, 215, 255, 0.36) 82%,
    transparent 100%
  );
}

.rc-hours-schedule {
  color: var(--rc-white);
}

.rc-hours-schedule__heading {
  margin-bottom: 22px;
}

.rc-hours-schedule__heading .rc-eyebrow {
  color: var(--rc-pink);
}

.rc-hours-schedule__heading .rc-section-heading {
  color: var(--rc-text);
  text-shadow: 2px 0 0 rgba(64, 215, 255, 0.55), -2px 0 0 rgba(255, 58, 169, 0.5);
}

.rc-hours-schedule__panel {
  padding: 28px;
  border-radius: 12px;
  background:
    radial-gradient(circle at top right, rgba(64, 215, 255, 0.12), transparent 30%),
    radial-gradient(circle at top left, rgba(255, 58, 169, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(18, 18, 27, 0.98), rgba(11, 11, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(64, 215, 255, 0.12),
    0 24px 60px rgba(7, 7, 11, 0.32);
}

.rc-hours-schedule__caption {
  margin: 0 0 16px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rc-lime);
}

.rc-hours-schedule__table {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.rc-hours-schedule__row {
  display: grid;
  grid-template-columns: minmax(180px, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: center;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rc-hours-schedule__row:last-child {
  border-bottom: 0;
}

.rc-hours-schedule__row.is-today {
  background:
    linear-gradient(90deg, rgba(255, 58, 169, 0.16), rgba(64, 215, 255, 0.16)),
    rgba(255, 255, 255, 0.03);
}

.rc-hours-schedule__row.is-today .rc-hours-schedule__day-name,
.rc-hours-schedule__row.is-today .rc-hours-schedule__note {
  color: var(--rc-white);
}

.rc-hours-schedule__day,
.rc-hours-schedule__details,
.rc-hours-schedule__sessions {
  display: grid;
  gap: 8px;
}

.rc-hours-schedule__day-name,
.rc-hours-schedule__session {
  font-weight: 800;
}

.rc-hours-schedule__day-name {
  font-size: 1rem;
}

.rc-hours-schedule__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rc-hours-schedule__badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(64, 215, 255, 0.45);
  color: var(--rc-cyan);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(64, 215, 255, 0.08);
}

.rc-hours-schedule__badge--today {
  background: var(--rc-pink);
  border-color: var(--rc-pink);
  color: var(--rc-white);
}

.rc-hours-schedule__details {
  justify-items: end;
  text-align: right;
}

.rc-hours-schedule__session {
  display: block;
  color: var(--rc-white);
}

.rc-hours-schedule__summary {
  color: rgba(255, 255, 255, 0.72);
  font-style: italic;
}

.rc-hours-schedule__note {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--rc-lime);
}

.rc-hours-schedule__callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 58, 169, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 58, 169, 0.12), rgba(64, 215, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
}

.rc-hours-schedule__callout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--rc-pink);
  color: var(--rc-white);
  font-weight: 800;
}

.rc-hours-schedule__callout-copy {
  display: grid;
  gap: 6px;
}

.rc-hours-schedule__callout-title,
.rc-hours-schedule__callout-text {
  margin: 0;
}

.rc-hours-schedule__callout-title {
  color: var(--rc-pink);
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  text-transform: uppercase;
}

.rc-hours-schedule__callout-text {
  color: rgba(255, 255, 255, 0.84);
}

.rc-rules-hours-panel h3 {
  margin: 0 0 14px;
  font-family: "Oswald", sans-serif;
  font-size: 1.72rem;
  text-transform: uppercase;
  line-height: 1;
}

.rc-booking-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 300;
}

.rc-booking-modal.is-open {
  display: flex;
}

.rc-booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 11, 0.78);
  backdrop-filter: blur(8px);
}

.rc-booking-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  border-radius: 8px;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(64, 215, 255, 0.14), transparent 34%),
    radial-gradient(circle at top left, rgba(255, 58, 169, 0.16), transparent 32%),
    var(--rc-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
  color: var(--rc-white);
}

.rc-booking-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--rc-white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.rc-booking-modal__eyebrow,
.rc-booking-modal__footer {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.rc-booking-modal__eyebrow {
  font-weight: 800;
  text-transform: uppercase;
  color: var(--rc-yellow);
}

.rc-booking-modal__title {
  margin: 12px 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.rc-booking-modal__intro {
  margin: 0 0 24px;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.8);
}

.rc-booking-modal__options {
  display: grid;
  gap: 14px;
}

.rc-booking-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.rc-booking-option:hover {
  transform: translateY(-1px);
}

.rc-booking-option--pink:hover {
  border-color: rgba(255, 58, 169, 0.6);
  background: rgba(255, 58, 169, 0.12);
}

.rc-booking-option--green:hover {
  border-color: rgba(184, 255, 53, 0.52);
  background: rgba(184, 255, 53, 0.1);
}

.rc-booking-option--cyan:hover {
  border-color: rgba(64, 215, 255, 0.58);
  background: rgba(64, 215, 255, 0.1);
}

.rc-booking-option--yellow:hover {
  border-color: rgba(255, 211, 74, 0.55);
  background: rgba(255, 211, 74, 0.1);
}

.rc-booking-option__icon {
  display: inline-flex;
  min-width: 84px;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.rc-booking-option__copy {
  display: grid;
  gap: 4px;
}

.rc-booking-option__label {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.rc-booking-option__description {
  color: rgba(255, 255, 255, 0.72);
}

.rc-booking-option__arrow {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  color: var(--rc-cyan);
}

.rc-booking-modal__footer {
  margin-top: 20px;
}

.rc-booking-modal__footer a {
  color: var(--rc-lime);
  font-weight: 700;
}

.rc-modal-open {
  overflow: hidden;
}

.rc-contact-notes {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.rc-contact-stack {
  display: grid;
  gap: 24px;
  align-content: start;
}

.rc-contact-form-panel {
  align-self: start;
}

.rc-contact-hours .rc-hours-schedule__heading {
  margin-bottom: 14px;
}

.rc-contact-hours .rc-hours-schedule__panel {
  padding: 22px;
}

.rc-facebook-events {
  width: 100%;
  min-height: 320px;
}

.rc-events-widget-shell {
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: var(--rc-radius);
  background:
    linear-gradient(135deg, rgba(255, 58, 169, 0.08), rgba(64, 215, 255, 0.06)),
    var(--rc-card);
  border: 1px solid rgba(18, 18, 27, 0.08);
  box-shadow: var(--rc-shadow);
}

.rc-events-widget-shell__copy {
  max-width: 760px;
}

.rc-events-widget-shell__copy h3 {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  text-transform: uppercase;
  line-height: 1;
}

.rc-events-widget-shell__copy p:not(.rc-eyebrow) {
  margin: 0;
  color: var(--rc-text-soft);
}

.rc-events-widget-shell__feed {
  border-radius: var(--rc-radius);
  overflow: hidden;
}

.rc-events-widget-shell__feed .sk-fb-event {
  width: 100%;
}

.rc-footer-main {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 58, 169, 0.26), transparent 30%),
    radial-gradient(circle at 88% 6%, rgba(64, 215, 255, 0.22), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(184, 255, 53, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(34, 18, 44, 0.92), rgba(11, 20, 35, 0.96) 42%, rgba(7, 7, 11, 1) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: var(--rc-white);
  padding: 72px 0 24px;
}

.rc-footer-main::before,
.rc-footer-main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rc-footer-main::before {
  background:
    linear-gradient(90deg, rgba(255, 58, 169, 0.18), rgba(64, 215, 255, 0.16) 45%, rgba(184, 255, 53, 0.1) 100%);
  height: 2px;
  inset: 0 0 auto;
}

.rc-footer-main::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 58%);
  opacity: 0.85;
}

.rc-footer-main > .rc-container {
  position: relative;
  z-index: 1;
}

.rc-footer-grid {
  grid-template-columns: minmax(280px, 1.4fr) repeat(2, minmax(0, 1fr));
  align-items: start;
}

.rc-footer-title {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  margin-bottom: 18px;
  max-width: 460px;
}

.rc-footer-safety {
  max-width: 40rem;
  line-height: 1.7;
}

.rc-footer-brand,
.rc-footer-contact {
  display: grid;
  gap: 14px;
  align-content: start;
}

.rc-footer-actions,
.rc-footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rc-footer-main h3 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--rc-yellow);
}

.rc-footer-links,
.rc-socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.rc-footer-links a,
.rc-footer-links span,
.rc-socials span,
.rc-footer-social-row a,
.rc-header-top a {
  color: rgba(255, 255, 255, 0.78);
}

.rc-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 28px;
  padding-top: 18px;
}

.rc-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.rc-form-grid__full {
  grid-column: 1 / -1;
}

.rc-contact-form label span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.rc-contact-form input,
.rc-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 18, 27, 0.15);
  border-radius: 8px;
  padding: 14px 16px;
  font: inherit;
}

.rc-form-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 600;
}

.rc-form-notice-success {
  background: rgba(184, 255, 53, 0.18);
  color: #406300;
}

.rc-form-notice-error {
  background: rgba(255, 58, 169, 0.14);
  color: #8c1a5b;
}

.rc-jotform-embed {
  overflow: hidden;
  border: 1px solid rgba(18, 18, 27, 0.08);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 58, 169, 0.05), rgba(64, 215, 255, 0.04)),
    #ffffff;
  box-shadow: 0 18px 48px rgba(18, 18, 27, 0.08);
}

.rc-jotform-embed iframe {
  display: block;
  width: 100% !important;
  min-height: 1040px;
  border: 0;
  background: transparent;
}

.rc-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
}

.rc-nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 6px 0;
  background: var(--rc-white);
}

@media (max-width: 1120px) {
  .rc-header-top__links,
  .rc-header-utility {
    display: none;
  }

  .rc-home-hero__inner,
  .rc-offer-grid,
  .rc-event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rc-offer-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rc-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .rc-header-main {
    gap: 12px;
    padding: 14px 0;
  }

  .rc-header-brand-row {
    min-height: 56px;
  }

  .rc-primary-nav {
    display: none;
    width: 100%;
    padding-top: 12px;
    justify-content: flex-start;
  }

  .rc-primary-nav.is-open {
    display: block;
  }

  .rc-mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .rc-mobile-nav-actions .rc-button {
    width: 100%;
  }

  .rc-nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0 18px;
    justify-content: flex-start;
  }

  .rc-nav-toggle {
    display: block;
  }

  .rc-header-actions {
    justify-content: flex-end;
  }

  .rc-header-controls {
    margin-left: auto;
  }

  .rc-home-hero__inner,
  .rc-feature-grid,
  .rc-schedule-grid,
  .rc-rules-layout,
  .rc-hours-layout,
  .rc-trust-strip__grid,
  .rc-faq-preview,
  .rc-faq-list,
  .rc-grid-2 {
    grid-template-columns: 1fr;
  }

  .rc-hours-divider {
    display: none;
  }

  .rc-photo-grid {
    grid-template-columns: 1fr;
  }

  .rc-photo-grid__item:nth-child(1),
  .rc-photo-grid__item:nth-child(2),
  .rc-photo-grid__item:nth-child(3),
  .rc-photo-grid__item:nth-child(4),
  .rc-photo-grid__item:nth-child(5) {
    grid-column: auto;
    min-height: 280px;
  }

  .rc-home-hero {
    min-height: auto;
  }

  .rc-home-hero__inner {
    padding: 92px 0 72px;
  }

  .rc-home-hero__content h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }
}

@media (max-width: 640px) {
  .rc-header-top {
    display: none;
  }

  .rc-site-header__media {
    display: none;
  }

  .rc-header-brand-row {
    gap: 14px;
  }

  .rc-container {
    width: min(var(--rc-container), calc(100% - 24px));
  }

  .rc-section,
  .rc-page-hero {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .rc-home-hero__inner {
    padding-top: 84px;
    padding-bottom: 64px;
  }

  .rc-home-hero__content h1 {
    font-size: clamp(1.85rem, 8.7vw, 2.9rem);
    max-width: 9ch;
  }

  .rc-home-hero__content p:not(.rc-eyebrow) {
    font-size: 1rem;
    max-width: 100%;
  }

  .rc-home-hero__content {
    padding-right: 12px;
  }

  .rc-header-actions {
    display: none;
  }

  .rc-hero-callout {
    margin-top: 18px;
    padding: 16px;
  }

  .rc-hero-callout__text {
    font-size: 0.94rem;
  }

  .rc-offer-grid,
  .rc-offer-grid--three,
  .rc-event-grid,
  .rc-footer-grid,
  .rc-form-grid {
    grid-template-columns: 1fr;
  }

  .rc-hours-table li,
  .rc-simple-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .rc-hours-schedule__panel {
    padding: 18px;
  }

  .rc-hours-schedule__row,
  .rc-hours-schedule__callout {
    grid-template-columns: 1fr;
  }

  .rc-hours-schedule__details {
    justify-items: start;
    text-align: left;
  }

  .rc-booking-modal {
    padding: 16px;
  }

  .rc-booking-modal__dialog {
    padding: 24px 18px 18px;
  }

  .rc-booking-option {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .rc-booking-option__icon {
    min-width: 0;
  }
}
