@import url("/static/global.css");

body {
  color: var(--ink);
  background: var(--bg-wash);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open iframe {
  pointer-events: none;
}

body::before {
  content: "";
  display: none;
}

body::after {
  content: "";
  display: none;
}

body.home-dashboard::before {
  display: block;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: -1;
}

body.bookings::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: -1;
}

.page {
  position: relative;
  z-index: 1;
}

.page h1 {
  margin: 0 0 8px;
}

.app-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(26, 26, 26, 0.95), rgba(12, 12, 12, 0.98));
  display: grid;
  place-items: center;
  z-index: 80;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.app-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.app-loader-card {
  display: grid;
  gap: 10px;
  place-items: center;
  text-align: center;
  padding: 20px 24px;
  border-radius: 18px;
  border: 1px solid #2a2a2a;
  background: rgba(20, 20, 20, 0.9);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.app-loader-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.app-loader-text {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.app-loader-spinner {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  animation: app-spin 0.8s linear infinite;
}

.page {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 16px 6px;
}

.top-bar {
  display: grid;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #fff;

  padding: calc(6px + env(safe-area-inset-top)) 18px 6px;
  border-radius: 0 0 16px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(18, 16, 14, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.top-bar.is-flush {
  margin-bottom: 0;
}

.top-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.08) 45%, transparent 60%);
  transform: translateX(-120%);
  animation: none;
  pointer-events: none;
  z-index: 0;
}

.top-bar-main {
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  justify-self: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.65),
    0 2px 4px rgba(0, 0, 0, 0.35),
    0 -1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, text-shadow 0.35s ease;
}

.logo-image {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
}

.logo:hover,
.logo:active {
  transform: translateY(-1px);
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.7),
    0 6px 10px rgba(0, 0, 0, 0.35),
    0 -1px 0 rgba(255, 255, 255, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .logo {
    animation: none;
  }
}

@media (max-width: 500px) {
  .logo {
    font-size: 26px;
  }

  .logo-image {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 360px) {
  .logo {
    font-size: 22px;
  }

  .logo-image {
    width: 52px;
    height: 52px;
  }
}

.top-nav {
  display: none;
}

.top-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.top-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
}

.menu-toggle.is-floating {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100;
  background: rgba(21, 21, 21, 0.9);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}




.menu-toggle-icon {
  font-size: 20px;
  line-height: 1;
}

.menu-toggle-label {
  display: none;
}

.side-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 60;
}

.side-menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(280px, 80vw);
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
  color: #fff;
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: calc(24px + env(safe-area-inset-top)) 20px 26px;
  border-left: 1px solid #2a2a2a;
  box-shadow: -24px 0 40px rgba(0, 0, 0, 0.45);
  transition: right 0.25s ease;
  z-index: 70;
  overflow-y: auto;
}

.side-menu.is-open {
  right: 0;
  display: flex;
}

.side-menu strong {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.side-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.side-menu-toggle {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  border-radius: 14px;
  text-align: left;
  color: #fff;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.side-menu-sub {
  display: none;
  gap: 6px;
  margin: 2px 0 6px 14px;
}

.side-menu-sub.is-open {
  display: grid;
}

.side-menu-sub a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  padding: 10px 12px;
  border-radius: 12px;
}

.cta,
.event-button,
.pill,
.menu-toggle,
.ghost-button,
.shop-chip,
.cart-pill {
  text-transform: capitalize;
}

.side-menu-footer {
  display: grid;
  gap: 8px;
  padding-top: 10px;
}

.side-menu-footer .muted-link {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.side-menu-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.side-menu-spacer {
  margin-top: auto;
}

.side-menu-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

.top-bar-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

.top-bar-spacer {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}


.hero {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.96), rgba(26, 26, 26, 0.72));
  border-radius: 0 0 18px 18px;
  padding: 22px;
  margin-bottom: 18px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: none;
}

.top-bar.is-flush + .hero {
  margin-top: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero::after {
  display: none;
}

.hero h1 {
  font-size: 26px;
  margin: 0 0 8px;
}

.hero p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.75);
}

.micro-copy {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #cda05a 0%, #b07a2f 55%, #9b6624 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 18px rgba(173, 131, 57, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(105, 72, 22, 0.3);
  border: 1px solid rgba(105, 72, 22, 0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.section {
  margin: 26px 0;
  position: relative;
}

.section::before {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, rgba(221, 180, 108, 0.6), rgba(255, 255, 255, 0), rgba(221, 180, 108, 0.45));
  opacity: 0.85;
}

.section-divider {
  height: 1px;
  margin: 18px 0;
  background: linear-gradient(90deg, rgba(221, 180, 108, 0.6), rgba(255, 255, 255, 0), rgba(221, 180, 108, 0.45));
  opacity: 0.85;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: nowrap;
}

.section-head > div {
  min-width: 0;
  flex: 1 1 auto;
}

.section h2 {
  font-size: clamp(12px, 2.1vw, 17px);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0;
  color: #f0dcc2;
  white-space: nowrap;
}

.section > h2 {
  margin-bottom: 10px;
}

.section-intro {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(11px, 1.9vw, 13px);
}

#events.section {
  margin-top: 34px;
  margin-bottom: 30px;
}

#events .section-head h2 {
  font-size: 20px;
  letter-spacing: 0.18em;
}

#events .section-intro {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}


#shop .section-head h2 {
  font-size: 18px;
  letter-spacing: 0.2em;
}

#venue-hire .section-head h2 {
  font-size: 16px;
}

#venue-hire .section-action {
  align-self: center;
  padding: 8px 14px;
  font-size: clamp(9px, 1.6vw, 11px);
  letter-spacing: 0.12em;
}

#announcements .section-head h2,
#bar-menu .section-head h2,
#voucher-redemption-home .section-head h2,
#map .section-head h2,
#contact .section-head h2 {
  font-size: 14px;
  letter-spacing: 0.24em;
}

#announcements .section-intro,
#bar-menu .section-intro,
#voucher-redemption-home .section-intro,
#map .section-intro,
#contact .section-intro {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.section-action {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 14, 14, 0.65);
  color: #f2e3cd;
  text-decoration: none;
  font-size: clamp(9px, 1.4vw, 11px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  flex-shrink: 0;
  max-width: 52vw;
  align-self: center;
}

.section-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.35);
}

@media (max-width: 640px) {
  .section-head {
    align-items: center;
    justify-content: space-between;
  }

  .section-intro {
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .section h2 {
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .section-action {
    padding: 6px 8px;
    font-size: 9px;
    letter-spacing: 0.1em;
    max-width: 48vw;
  }
}

.cards {
  display: grid;
  gap: 14px;
}

.section .card:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.events-carousel-wrap {
  position: relative;
}

.events-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scroll-padding: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.events-carousel::-webkit-scrollbar {
  height: 0;
}

.events-carousel .card {
  flex: 0 0 clamp(78%, 82vw, 380px);
  scroll-snap-align: start;
  border-radius: 18px;
  padding: 16px;
}

#events .events-carousel .card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

#events .events-carousel .card:first-child {
  border-radius: 18px !important;
}


.events-carousel:focus {
  outline: 2px solid rgba(205, 160, 90, 0.4);
  outline-offset: 6px;
}

.events-carousel.is-dragging {
  cursor: grabbing;
}

.events-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 12, 12, 0.8);
  color: #f2e3cd;
  font-size: 20px;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.28);
}

.events-carousel-nav--prev {
  left: -10px;
}

.events-carousel-nav--next {
  right: -10px;
}

@media (min-width: 900px) {
  .events-carousel .card {
    flex: 0 0 clamp(32%, 36vw, 360px);
  }

  .events-carousel-nav {
    display: inline-flex;
  }
}

.shop-carousel-wrap {
  position: relative;
  margin-bottom: 18px;
}

.shop-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scroll-padding: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.shop-carousel::-webkit-scrollbar {
  height: 0;
}

.shop-carousel .shop-chip {
  flex: 0 0 clamp(70%, 78vw, 320px);
  scroll-snap-align: start;
  min-height: 200px;
  border-radius: 20px;
}

.shop-carousel:focus {
  outline: 2px solid rgba(205, 160, 90, 0.4);
  outline-offset: 6px;
}

.shop-carousel.is-dragging {
  cursor: grabbing;
}

.shop-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 12, 12, 0.8);
  color: #f2e3cd;
  font-size: 20px;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.28);
}

.shop-carousel-nav--prev {
  left: -10px;
}

.shop-carousel-nav--next {
  right: -10px;
}

@media (min-width: 900px) {
  .shop-carousel .shop-chip {
    flex: 0 0 clamp(28%, 32vw, 300px);
  }

  .shop-carousel-nav {
    display: inline-flex;
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}


.card-media {
  --card-media-size: clamp(120px, 30vw, 180px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--card-media-size);
  align-items: start;
  gap: 16px;
}

.card-media-content {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.card-media-visual {
  width: var(--card-media-size);
  height: var(--card-media-size);
  aspect-ratio: 1 / 1;
  justify-self: end;
  align-self: end;
  display: grid;
  place-items: center;
}

.card-media-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  display: block;
}

.card-media-visual picture,
.venue-card-media picture {
  width: 100%;
  height: 100%;
  display: block;
}


.cards .card:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.card.dark-card {
  background: linear-gradient(135deg, rgba(21, 21, 21, 0.96), rgba(31, 31, 31, 0.86));
  border: 1px solid #2a2a2a;
  color: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.card.dark-card span {
  color: rgba(255, 255, 255, 0.85);
}

.card.dark-card .shop-chip {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.card.dark-card .muted-link {
  color: rgba(255, 255, 255, 0.8);
}

.card strong {
  font-size: 16px;
}

.card img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  cursor: pointer;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 245, 240, 0.98));
  border: 1px solid rgba(173, 131, 57, 0.25);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item summary {
  list-style: none;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  text-transform: capitalize;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--green);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] summary {
  margin-bottom: 8px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-item[open] {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

#announcements .card:first-child,
#shop .card:first-child {
  border-color: var(--line);
  background: #fff;
}

#announcements .card:first-child .badge,
#shop .card:first-child .badge {
  background: #000;
  color: #fff;
  border-color: #000;
}


.badge {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 2px 12px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  width: max-content;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  line-height: 1;
}

.badge::after {
  content: "";
  position: absolute;
  inset: -6px;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.55) 45%, transparent 60%);
  transform: translateX(-120%);
  animation: none;
  pointer-events: none;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  display: grid;
  gap: 6px;
  min-height: 74px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
  font-weight: 700;
  position: relative;
  overflow: hidden;
}

.pill span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.pill::after {
  content: "";
  position: absolute;
  inset: -6px;
  background: linear-gradient(250deg, transparent 0%, rgba(255, 255, 255, 0.6) 45%, transparent 60%);
  transform: translateX(-120%);
  animation: none;
  pointer-events: none;
}


.contact-form {
  display: grid;
  gap: 12px;
}

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

.contact-field {
  display: grid;
  gap: 6px;
}

.contact-form label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
}

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

.voucher-form input,
.voucher-form select,
.voucher-form textarea {
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
}

[hidden] {
  display: none !important;
}

.voucher-form {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.voucher-form label {
  display: block;
  margin-top: 2px;
}

.voucher-form input,
.voucher-form select,
.voucher-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #141414;
  color: #fff;
  font-family: inherit;
}

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

.voucher-chooser {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 20px;
}

.voucher-guidance {
  margin: 6px 0 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.voucher-confirmation {
  margin-top: 16px;
  display: none;
}

.voucher-confirmation.is-visible {
  display: block;
}

.booking-decision-card {
  gap: 12px;
}

.booking-decision-card strong {
  font-size: 16px;
}

.booking-decision-actions {
  flex-wrap: wrap;
  justify-content: flex-start;
}

.booking-decision-image {
  width: 100%;
  border-radius: 14px;
  display: block;
  object-fit: cover;
}

.voucher-upload {
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 12px;
  margin: 6px 0 12px;
  background: #121212;
}

.voucher-upload input[type="file"] {
  margin: 6px 0 0;
  padding: 0;
}

.voucher-preview {
  display: none;
  width: 100%;
  border-radius: 12px;
  margin-top: 10px;
}

.voucher-preview.is-visible {
  display: block;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.contact-status {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.map-embed {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.map-embed iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.muted-link {
  font-size: 12px;
  color: #fff;
  text-decoration: none;
}

.event-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.event-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(105, 72, 22, 0.4);
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(180deg, #cda05a 0%, #b07a2f 55%, #9b6624 100%);
  letter-spacing: 0.02em;
  text-transform: capitalize;
  box-shadow: 0 10px 18px rgba(173, 131, 57, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 0 rgba(105, 72, 22, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

#bar-menu .card-media .event-button,
#voucher-redemption-home .card-media .event-button {
  justify-self: start;
  width: max-content;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

#voucher-redemption-home .card-media-visual {
  align-self: center;
}

.event-button.dark {
  background: linear-gradient(180deg, #2b2b2b, #141414);
  border-color: #101010;
  color: #fff;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-transform: capitalize;
}

.cta:hover,
.event-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(173, 131, 57, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 0 rgba(105, 72, 22, 0.35);
}

.cta:active,
.event-button:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(173, 131, 57, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.shop-cards {
  gap: 16px;
}

.shop-feature {
  gap: 12px;
}

.shop-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(34, 34, 34, 0.9));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45);
}

.shop-showcase-copy {
  display: grid;
  gap: 12px;
  align-content: center;
  color: #fff;
}

.shop-showcase-copy h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.shop-showcase-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.shop-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0 0 14px;
}

.shop-carousel-header {
  margin: 0 0 10px;
  display: grid;
  gap: 6px;
}

.shop-carousel-header h3 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.shop-carousel-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.shop-showcase-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.shop-showcase-image {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
  background: #0f0f0f;
}

.shop-showcase-image img {
  width: 100%;
  height: auto;
  display: block;
}

.shop-showcase-image--secondary {
  transform: translateY(14px);
  opacity: 0.92;
}

.shop-collections {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.shop-collections h3 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.shop-collections p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.shop-collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.shop-offers {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.shop-offers h3 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.shop-offers p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.shop-offers-carousel-wrap {
  position: relative;
}

.shop-offers-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scroll-padding: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.shop-offers-carousel::-webkit-scrollbar {
  height: 0;
}

.shop-offers-carousel .shop-offer-card {
  flex: 0 0 clamp(48%, 52vw, 260px);
  scroll-snap-align: start;
}

.shop-offers-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 12, 12, 0.8);
  color: #f2e3cd;
  font-size: 20px;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.28);
}

.shop-offers-nav--prev {
  left: -10px;
}

.shop-offers-nav--next {
  right: -10px;
}

@media (min-width: 900px) {
  .shop-offers-carousel .shop-offer-card {
    flex: 0 0 clamp(40%, 44vw, 280px);
  }

  .shop-offers-nav {
    display: inline-flex;
  }
}

.video-carousel-wrap {
  position: relative;
}

.video-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scroll-padding: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.video-carousel::-webkit-scrollbar {
  height: 0;
}

.video-card {
  flex: 0 0 clamp(78%, 82vw, 380px);
  scroll-snap-align: start;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #101010;
  padding: 12px;
  display: grid;
  gap: 10px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.4);
}

.video-card-link {
  text-decoration: none;
  color: inherit;
}

.video-frame {
  border-radius: 14px;
  aspect-ratio: 9 / 16;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.video-pill {
  position: absolute;
  left: 12px;
  bottom: 12px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 999px;
  padding: 6px 12px;
  width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.video-pill::after {
  content: "";
  position: absolute;
  inset: -6px;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.75) 45%, transparent 60%);
  transform: translateX(-120%);
  animation: none;
  pointer-events: none;
}

.video-title {
  position: absolute;
  left: 12px;
  bottom: 12px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  border: none;
  pointer-events: none;
}

.video-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 12, 12, 0.8);
  color: #f2e3cd;
  font-size: 20px;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.28);
}

.video-carousel-nav--prev {
  left: -10px;
}

.video-carousel-nav--next {
  right: -10px;
}

@media (min-width: 900px) {
  .video-card {
    flex: 0 0 clamp(36%, 40vw, 340px);
  }

  .video-carousel-nav {
    display: inline-flex;
  }
}

.shop-offer-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 18px 32px rgba(31, 31, 31, 0.16);
  padding: 14px;
  display: grid;
  gap: 8px;
  color: var(--ink);
}

.shop-offer-card strong {
  font-size: 14px;
}

.shop-offer-card p {
  font-size: 12px;
  color: var(--muted);
}

.shop-offer-link {
  color: var(--teal);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-preview {
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(180deg, #2b2b2b, #141414);
  border: 1px solid #101010;
  display: grid;
  gap: 8px;
  justify-items: start;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.shop-feature-image {
  width: 100%;
  height: 160px;
  min-height: 160px;
  max-height: 160px;
  object-fit: contain;
  background: #0f0f0f;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: block;
}

.shop-feature picture {
  display: block;
}

.shop-preview-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #111;
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  align-self: start;
  justify-self: start;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.shop-preview-tag::after {
  content: "";
  position: absolute;
  inset: -6px;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.75) 45%, transparent 60%);
  transform: translateX(-120%);
  animation: none;
  pointer-events: none;
}

.shop-preview-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.shop-benefits {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
}

.shop-benefits li {
  list-style: disc;
}

.shop-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.venue-card {
  --venue-media-width: clamp(130px, 30vw, 210px);
  grid-template-columns: minmax(0, 1fr) var(--venue-media-width);
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 236, 0.96));
  border-color: rgba(173, 131, 57, 0.3);
}

.venue-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.venue-highlights {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
}

.venue-highlights li {
  list-style: disc;
}

.venue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.venue-note {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.venue-aside {
  display: grid;
  align-content: center;
  justify-items: end;
}

.venue-card-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #141414;
  width: var(--venue-media-width);
  height: auto;
  aspect-ratio: 2 / 3;
  justify-self: end;
  display: grid;
  place-items: center;
}

.venue-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.venue-card-media--empty {
  background: linear-gradient(135deg, rgba(24, 24, 24, 0.96), rgba(79, 52, 18, 0.3));
}

.venue-card-panel {
  border-radius: 16px;
  padding: 14px;
  background: #141414;
  color: #fff;
  display: grid;
  gap: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.venue-panel-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.venue-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.venue-panel-grid div {
  display: grid;
  gap: 4px;
}

.venue-panel-grid strong {
  font-size: 13px;
}

.venue-panel-grid span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
}

.collections-card {
  display: grid;
  gap: 12px;
}

.collections-content {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.collections-preview {
  display: none;
}

.collections-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 480px) {
  .venue-card {
    --venue-media-width: clamp(110px, 30vw, 170px);
    grid-template-columns: minmax(0, 1fr) var(--venue-media-width);
    gap: 12px;
  }

  .venue-card-media {
    width: var(--venue-media-width);
    height: auto;
    aspect-ratio: 2 / 3;
  }

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

  .venue-panel-grid {
    grid-template-columns: 1fr;
  }

  .collections-card {
    gap: 10px;
  }

  .shop-showcase {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .shop-showcase-media {
    grid-template-columns: 1fr;
  }

  .shop-showcase-image--secondary {
    transform: none;
  }

  .shop-collections-grid {
    grid-template-columns: 1fr;
  }
}

.shop-chip {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: #141414;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  min-height: 160px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: none;
}

.shop-chip::after {
  display: none;
}

.shop-chip::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 60%);
  opacity: 0.35;
  pointer-events: none;
}

.shop-chip span,
.shop-chip strong,
.shop-chip em,
.shop-chip {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}



















.home-dashboard .footer-timestamp {
  display: block;
  text-align: center;
  color: #111;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin: 8px auto 24px;
}

.animate-in {
  animation: rise 0.5s ease both;
}

.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.12s; }
.delay-3 { animation-delay: 0.2s; }

@keyframes rise {
  from { opacity: 0.85; transform: translateY(18px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.02); opacity: 0.9; }
}

@keyframes sheen {
  0% { transform: translateX(-120%); }
  40% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

@keyframes breathe {
  0%, 100% { box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45); }
  50% { box-shadow: 0 18px 36px rgba(0, 0, 0, 0.55); }
}

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

@keyframes app-spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(122, 31, 31, 0.6); opacity: 0.9; }
  70% { box-shadow: 0 0 0 8px rgba(122, 31, 31, 0); opacity: 1; }
  100% { box-shadow: 0 0 0 0 rgba(122, 31, 31, 0); opacity: 0.9; }
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(38, 194, 129, 0.6); opacity: 0.9; }
  70% { box-shadow: 0 0 0 8px rgba(38, 194, 129, 0); opacity: 1; }
  100% { box-shadow: 0 0 0 0 rgba(38, 194, 129, 0); opacity: 0.9; }
}

@media (max-width: 420px) {
  .top-bar {
    gap: 8px;
  }

}

@media (max-width: 550px) {
  .top-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .page {
    padding-top: 12px;
  }

  .menu-toggle.is-floating {
    position: static;
    top: auto;
    right: auto;
  }

  .top-bar::after {
    opacity: 0.4;
  }

  .logo {
    font-size: 34px;
    letter-spacing: 0.1em;
  }

  .menu-toggle-label {
    display: none;
  }
}

@media (max-width: 450px) {
  .cards {
    gap: 10px;
  }

  .card {
    padding: 14px;
    gap: 8px;
  }

  .card strong {
    font-size: 15px;
  }

  .card span {
    font-size: 12px;
  }

  .card-media {
    --card-media-size: clamp(92px, 26vw, 140px);
    gap: 12px;
  }

  .shop-feature-image {
    height: 140px;
    min-height: 140px;
    max-height: 140px;
  }

  .pill-grid {
    grid-template-columns: 1fr;
  }

  .pill {
    min-height: auto;
  }

  .row {
    flex-direction: row;
    align-items: center;
  }

  .cta,
  .event-button {
    width: auto;
    font-size: 12px;
    padding: 10px 14px;
  }

  .map-embed iframe {
    height: 180px;
  }
}

@media (max-width: 369px) {
  .top-bar-main {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .top-bar-spacer {
    display: none;
  }

  .top-actions {
    justify-self: center;
  }
}

@media (max-width: 350px) {
  .card {
    padding: 12px;
    gap: 6px;
  }

  .card strong {
    font-size: 13px;
  }

  .card span {
    font-size: 11px;
  }

  .card-media {
    --card-media-size: clamp(88px, 26vw, 118px);
    grid-template-columns: minmax(0, 1fr) var(--card-media-size);
    gap: 8px;
  }

  .card-media-visual {
    justify-self: end;
  }

  .event-button {
    padding: 9px 12px;
    font-size: 11px;
  }

  #voucher-redemption-home .event-button {
    line-height: 1.2;
  }

  .venue-card {
    --venue-media-width: clamp(96px, 28vw, 140px);
    gap: 10px;
  }

  .collections-card {
    gap: 8px;
  }
}













.footer {
  margin-top: 12px;
  background: #151515;
  border-radius: 14px;
  padding: 2px 10px;
  border: 1px solid #1f1f1f;
}

.footer h2 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #f0dcc2;
}

.footer-logo-strip {
  max-width: 220px;
  margin: 2px auto 0;
  padding: 0;
  display: flex;
  justify-content: center;
  height: 120px;
  overflow: hidden;
}

.footer-logo-wide {
  width: 180px;
  height: 180px;
  display: block;
  object-fit: cover;
  object-position: center top;
  transform: translateY(-25%);
  filter: brightness(0) invert(1);
}

.footer-links {
  margin: 0;
  padding: 2px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.footer + .social-links {
  margin-top: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-on-dark);
  border: 1px solid rgba(245, 245, 245, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  background: transparent;
  font-weight: 600;
  font-size: 12px;
}

.social-link--icon {
  border: none;
  padding: 4px;
}

.social-svg {
  width: 28px;
  height: 28px;
  display: block;
  color: var(--text-on-dark);
}
