#fw-section-custom-html-120ab54d-1aa7-4905-ba7f-5548ed4da706 {

/* Live Shows Section */
.live-shows {
  text-align: center;
  margin: 2rem auto;
  max-width: 1600px;
  padding: 0 1rem;
}

.live-shows-heading {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #E2954E;
}

.live-shows-links {
  display: flex;
  align-items: stretch;
}

/* Image panel */
.live-shows-image-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 720px;
}

.live-shows-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; 
  opacity: 0;
  transition: opacity 0.4s ease;
}

.live-shows-img.active {
  opacity: 1;
}

/* Default image — grayscale and faded */
.live-shows-img--default {
  filter: grayscale(100%) brightness(0.45);
}

/* Nav */
.live-shows-nav {
  display: flex;
  flex-direction: column;
  width: 340px;
  flex-shrink: 0;
}

.live-shows-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.live-shows-item:last-child {
  border-bottom: none;
}

.live-shows-item-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #E2954E;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.live-shows-item-desc {
  font-size: 1.0rem;
  opacity: 0.75;
}

/* Purple hover */
.live-shows-item:hover {
  background: rgba(88, 28, 135, 0.45);
}

.live-shows-item:hover .live-shows-item-title {
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .live-shows-links {
    flex-direction: column;
  }
  .live-shows-image-panel {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: unset;
  }
  .live-shows-nav {
    width: 100%;
  }
}
}
#fw-section-custom-html-5435f554-fcb6-42b1-9d12-43ecff326459 {

/* ================================================================
   K2T Stream Section — Custom Styles
   Colours: Primary #E2954E | Background #2D0552
   Fonts:   Rajdhani + Barlow (loaded via Google Fonts in HTML)
   ================================================================ */

/* ─── Override Fourthwall's container wrapper ────────────────── */
.custom-html .container.wrapper:has(.k2t-wrap) {
  max-width: 100%;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

/* ─── Outer wrap & section ───────────────────────────────────── */
.k2t-wrap {
  width: 100%;
  box-sizing: border-box;
}

.k2t-section {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
  font-family: 'Barlow', sans-serif;
  box-sizing: border-box;
}

/* ─── Status card ────────────────────────────────────────────── */
.k2t-card {
  background: #1a0330;
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.k2t-card.is-live {
  border-color: rgba(226,149,78,0.53);
}

/* Top accent bar */
.k2t-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2D0552, #E2954E, #2D0552);
  opacity: 0.8;
}

/* ─── Live / offline badge ───────────────────────────────────── */
.k2t-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 2.5rem;
}

.k2t-badge.live {
  background: rgba(231,76,60,0.13);
  color: #E74C3C;
  border: 1px solid rgba(231,76,60,0.4);
}

.k2t-badge.offline {
  background: rgba(255,255,255,0.04);
  color: #a98ec4;
  border: 0.5px solid rgba(255,255,255,0.16);
}

.k2t-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.k2t-badge.live .k2t-dot {
  animation: k2tBlink 1.4s ease-in-out infinite;
}

@keyframes k2tBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.65); }
}

/* ─── Status messages ────────────────────────────────────────── */
.k2t-msg {
  font-size: 22px;
  font-weight: 500;
  color: #f0e8ff;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.k2t-hint {
  font-size: 16px;
  color: #a98ec4;
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
}

/* ─── Checking / spinner state ───────────────────────────────── */
.k2t-checking {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 1.5rem 0;
  color: #a98ec4;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.k2t-spinner {
  width: 26px;
  height: 26px;
  border: 2px solid rgba(255,255,255,0.16);
  border-top-color: #E2954E;
  border-radius: 50%;
  animation: k2tSpin 0.75s linear infinite;
}

@keyframes k2tSpin { to { transform: rotate(360deg); } }

/* ─── Platform buttons ───────────────────────────────────────── */
.k2t-picker {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.k2t-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 8px;
  cursor: pointer;
  border: 0.5px solid rgba(255,255,255,0.16);
  background: #2a0550;
  color: #f0e8ff;
  text-decoration: none;
  transition: transform 0.12s ease, border-color 0.15s ease, background 0.15s ease;
  box-sizing: border-box;
}

.k2t-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(226,149,78,0.53);
  background: #220440;
}

.k2t-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.k2t-btn.active-yt {
  background: rgba(255,0,0,0.13);
  border-color: rgba(255,0,0,0.4);
  color: #ff6b6b;
}

.k2t-btn.active-tw {
  background: rgba(145,70,255,0.13);
  border-color: rgba(145,70,255,0.53);
  color: #9146FF;
}

/* ─── Embed zone ─────────────────────────────────────────────── */
.k2t-embeds {
  margin-top: 1.25rem;
  border-radius: 14px;
  overflow: hidden;
  border: 0.5px solid rgba(255,255,255,0.16);
  display: none;
}

.k2t-embeds.visible {
  display: block;
  animation: k2tFadeUp 0.25s ease;
}

@keyframes k2tFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.k2t-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  height: 480px;
}

.k2t-player {
  background: #000;
}

.k2t-player iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.k2t-chat {
  background: #1a0330;
  border-left: 0.5px solid rgba(255,255,255,0.1);
}

.k2t-chat iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .k2t-layout {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 300px;
    height: auto;
  }
  .k2t-chat {
    border-left: none;
    border-top: 0.5px solid rgba(255,255,255,0.1);
  }
}

}
#fw-section-custom-html-846780f4-e4db-4bb3-aeb0-0d9bb7d80c0c {

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;600;700;900&family=Space+Mono:wght@400;700&display=swap');

.k2t-schedule-wrapper {
  --k2t-surface:     #160d22;
  --k2t-surface-2:   #1c1030;
  --k2t-border:      rgba(226, 149, 78, 0.18);
  --k2t-accent:      #E2954E;
  --k2t-text:        #f0ece8;
  --k2t-text-dim:    #9a8a7a;
  --k2t-text-dimmer: #5a4a3a;
  --k2t-glow:        0 0 32px rgba(226, 149, 78, 0.22);
  width: 100%;
  max-width: 660px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.k2t-toggle-btn {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  background: var(--k2t-surface) !important;
  border: 1px solid var(--k2t-border) !important;
  border-left: 3px solid var(--k2t-accent) !important;
  color: var(--k2t-text) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 18px 26px !important;
  cursor: pointer !important;
  width: 100% !important;
  text-align: left !important;
  position: relative !important;
  overflow: hidden !important;
  transition: border-color 0.3s, box-shadow 0.3s !important;
  box-sizing: border-box !important;
}

.k2t-toggle-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(226,149,78,0.08) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.k2t-toggle-btn:hover::before,
.k2t-toggle-btn.k2t-active::before { opacity: 1; }

.k2t-toggle-btn:hover,
.k2t-toggle-btn.k2t-active {
  border-color: var(--k2t-accent) !important;
  border-left-color: var(--k2t-accent) !important;
  box-shadow: var(--k2t-glow) !important;
  outline: none !important;
}

.k2t-pulse-dot {
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  background: var(--k2t-accent) !important;
  flex-shrink: 0 !important;
  position: relative !important;
  display: inline-block !important;
}
.k2t-pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--k2t-accent);
  animation: k2tPulseRing 2.2s ease-out infinite;
}
@keyframes k2tPulseRing {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0;   transform: scale(2.5); }
}

.k2t-btn-label {
  flex: 1 !important;
  color: var(--k2t-text) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
}

.k2t-chevron {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
  color: var(--k2t-accent) !important;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1) !important;
}
.k2t-toggle-btn.k2t-active .k2t-chevron {
  transform: rotate(180deg) !important;
}

.k2t-schedule-panel {
  overflow: hidden !important;
  max-height: 0 !important;
  opacity: 0 !important;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease !important;
}
.k2t-schedule-panel.k2t-open {
  max-height: 700px !important;
  opacity: 1 !important;
}

.k2t-panel-inner {
  border: 1px solid var(--k2t-border) !important;
  border-top: none !important;
  background: var(--k2t-surface) !important;
}

.k2t-tz-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 26px !important;
  border-bottom: 1px solid var(--k2t-border) !important;
  box-sizing: border-box !important;
}

.k2t-tz-label {
  font-family: 'Space Mono', monospace !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--k2t-text-dimmer) !important;
  flex-shrink: 0 !important;
}

.k2t-tz-select {
  flex: 1 !important;
  background: var(--k2t-surface-2) !important;
  border: 1px solid var(--k2t-border) !important;
  color: var(--k2t-text) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  padding: 7px 32px 7px 10px !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23E2954E' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 8px center !important;
  background-size: 14px !important;
}
.k2t-tz-select:focus {
  outline: none !important;
  border-color: var(--k2t-accent) !important;
  box-shadow: 0 0 0 2px rgba(226,149,78,0.18) !important;
}

.k2t-tz-auto-btn {
  background: none !important;
  border: 1px solid var(--k2t-border) !important;
  color: var(--k2t-text-dim) !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 0.58rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 7px 10px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  transition: color 0.2s, border-color 0.2s !important;
}
.k2t-tz-auto-btn:hover {
  color: var(--k2t-accent) !important;
  border-color: var(--k2t-accent) !important;
}

.k2t-streams-list {
  padding: 18px 26px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  box-sizing: border-box !important;
}

.k2t-stream-card {
  border: 1px solid var(--k2t-border) !important;
  background: var(--k2t-surface-2) !important;
  padding: 18px 20px !important;
  position: relative !important;
  overflow: hidden !important;
  transform: translateY(8px) !important;
  opacity: 0 !important;
  transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.3s, border-color 0.3s !important;
  box-sizing: border-box !important;
}
.k2t-stream-card.k2t-visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
}
.k2t-stream-card:nth-child(2) {
  transition-delay: 0.07s !important;
}
.k2t-stream-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: #E2954E;
}
.k2t-stream-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,5,82,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.k2t-stream-card:hover::after { opacity: 1; }
.k2t-stream-card:hover {
  border-color: rgba(226,149,78,0.35) !important;
  box-shadow: var(--k2t-glow) !important;
}

.k2t-card-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-bottom: 14px !important;
}

.k2t-stream-name {
  font-size: 1.55rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  color: #E2954E !important;
  font-family: 'Barlow Condensed', sans-serif !important;
}

.k2t-stream-tag {
  font-family: 'Space Mono', monospace !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
  color: rgba(226,149,78,0.7) !important;
  padding: 4px 8px !important;
  border: 1px solid rgba(226,149,78,0.25) !important;
  background: rgba(226,149,78,0.07) !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.k2t-schedule-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.k2t-schedule-row {
  display: flex !important;
  align-items: center !important;
  font-family: 'Space Mono', monospace !important;
  font-size: 0.9rem !important;
}

.k2t-day-name {
  width: 96px !important;
  flex-shrink: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.09em !important;
  color: var(--k2t-text-dim) !important;
  font-family: 'Space Mono', monospace !important;
}

.k2t-day-divider {
  width: 20px !important;
  height: 1px !important;
  background: var(--k2t-border) !important;
  flex-shrink: 0 !important;
  margin: 0 10px !important;
}

.k2t-time-range {
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  color: var(--k2t-text) !important;
  font-family: 'Space Mono', monospace !important;
}

.k2t-time-uk {
  margin-left: auto !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.06em !important;
  color: var(--k2t-text-dimmer) !important;
  font-family: 'Space Mono', monospace !important;
}

.k2t-schedule-footer {
  padding: 10px 26px 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  border-top: 1px solid var(--k2t-border) !important;
  box-sizing: border-box !important;
}
.k2t-footer-mark {
  width: 4px !important;
  height: 4px !important;
  border-radius: 50% !important;
  background: var(--k2t-text-dimmer) !important;
  flex-shrink: 0 !important;
}
.k2t-schedule-footer p {
  font-family: 'Space Mono', monospace !important;
  font-size: 0.7rem !important;
  color: var(--k2t-text-dimmer) !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}
.k2t-schedule-footer a {
  color: #E2954E !important;
  text-decoration: none !important;
}
.k2t-schedule-footer a:hover {
  text-decoration: underline !important;
}

@media (max-width: 480px) {
  .k2t-toggle-btn   { font-size: 1.05rem !important; padding: 15px 18px !important; }
  .k2t-tz-row       { flex-wrap: wrap !important; padding: 12px 18px !important; }
  .k2t-streams-list { padding: 14px 18px !important; }
  .k2t-stream-card  { padding: 14px 16px !important; }
  .k2t-stream-name  { font-size: 1.25rem !important; }
  .k2t-day-name     { width: 76px !important; }
}
}
#fw-section-custom-html-897af531-09d3-411f-9d0c-64ea44fb2ec7 {

/* Live Shows Section */
.live-shows {
  text-align: center;
  margin: 2rem auto;
  max-width: 1600px;
  padding: 0 1rem;
}

.live-shows-heading {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #E2954E;
}

.live-shows-links {
  display: flex;
  align-items: stretch;
}

/* Image panel */
.live-shows-image-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 720px;
}

.live-shows-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; 
  opacity: 0;
  transition: opacity 0.4s ease;
}

.live-shows-img.active {
  opacity: 1;
}

/* Default image — grayscale and faded */
.live-shows-img--default {
  filter: grayscale(100%) brightness(0.45);
}

/* Nav */
.live-shows-nav {
  display: flex;
  flex-direction: column;
  width: 340px;
  flex-shrink: 0;
}

.live-shows-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.live-shows-item:last-child {
  border-bottom: none;
}

.live-shows-item-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #E2954E;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.live-shows-item-desc {
  font-size: 1.0rem;
  opacity: 0.75;
}

/* Purple hover */
.live-shows-item:hover {
  background: rgba(88, 28, 135, 0.45);
}

.live-shows-item:hover .live-shows-item-title {
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .live-shows-links {
    flex-direction: column;
  }
  .live-shows-image-panel {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: unset;
  }
  .live-shows-nav {
    width: 100%;
  }
}
}
#fw-section-custom-html-950a7734-5290-4cdc-956a-c406b61622ae {

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

.collections-heading {
  color: #fff;
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.home-links {
  position: relative;
  width: 100%;
  min-height: 620px;
  background: #111;
  display: flex;
  align-items: stretch;
}

.home-image-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 55%;
  z-index: 0;
  overflow: hidden;
}

.home-image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: grayscale(100%);
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.home-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17,17,17,0) 0%,
    rgba(17,17,17,0) 40%,
    rgba(17,17,17,0.7) 75%,
    rgba(17,17,17,1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.home-nav {
  position: relative;
  z-index: 2;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3.5rem 3rem 2rem;
  width: 48%;
  gap: 0.1rem;
}

.home-item {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 0.45rem 0;
  min-height: 3.5rem;
}

.home-item-title {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2.8rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
  transform-origin: left center;
}

.home-item:hover .home-item-title {
  transform: translateX(1.5rem);
  color: #E2954E;
}

.home-nav:has(.home-item:hover) .home-item:not(:hover) .home-item-title {
  opacity: 0.2;
  transform: scale(0.95);
}

/* nth-of-type targets only <a> elements, ignoring the <h2> */
.home-links:has(.home-item:nth-of-type(1):hover) .home-image-panel img:nth-child(1),
.home-links:has(.home-item:nth-of-type(2):hover) .home-image-panel img:nth-child(2),
.home-links:has(.home-item:nth-of-type(3):hover) .home-image-panel img:nth-child(3),
.home-links:has(.home-item:nth-of-type(4):hover) .home-image-panel img:nth-child(4),
.home-links:has(.home-item:nth-of-type(5):hover) .home-image-panel img:nth-child(5),
.home-links:has(.home-item:nth-of-type(6):hover) .home-image-panel img:nth-child(6) {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 700px) {
  .home-links {
    min-height: unset;
    display: flex;
    flex-direction: column;
  }
  .home-image-panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .home-image-panel::after {
    background: linear-gradient(
      to bottom,
      rgba(17,17,17,0.3) 0%,
      rgba(17,17,17,0.75) 60%,
      rgba(17,17,17,0.95) 100%
    );
  }
  .home-nav {
    width: 100%;
    margin-left: 0;
    padding: 1.5rem 1.5rem 2rem;
    justify-content: flex-start;
    min-height: unset;
  }
  .home-item {
    min-height: unset;
  }
  .home-item-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-image-panel img,
  .home-item-title {
    transition: none;
  }
}
}





#fw-section-custom-html-87bb471d-8952-4c79-b6f1-5897b5e83ec6 {

:root {
  --bg: #121212;
  --surface: #1a1a1a;
  --text-primary: #f0f0f0;
  --text-secondary: #888;
  --accent: #E2954E;
  --accent-dim: rgba(226, 149, 78, 0.18);
  --accent-glow: rgba(226, 149, 78, 0.45);
  --purple: #2D0552;
  --purple-mid: rgba(45, 5, 82, 0.75);
  --purple-dim: rgba(45, 5, 82, 0.55);
}

.k2t-wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 32px;
  font-family: 'Barlow', sans-serif;
}

.k2t-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.k2t-heading em {
  font-style: normal;
  color: var(--accent);
}

.k2t-radio {
  display: none;
}

.k2t-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.k2t-tab-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.k2t-tab-label:hover {
  color: var(--accent);
  border-color: var(--accent-glow);
  background: var(--accent-dim);
}

.k2t-tab-label svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

#k2t-spotify:checked ~ .k2t-buttons .k2t-label-spotify,
#k2t-bandcamp:checked ~ .k2t-buttons .k2t-label-bandcamp {
  color: var(--accent);
  border-color: var(--accent-glow);
  background: linear-gradient(135deg, var(--accent-dim), var(--purple-dim));
}

.k2t-card {
  background: linear-gradient(135deg, rgba(45, 5, 82, 0.55) 0%, rgba(30, 10, 45, 0.7) 50%, rgba(45, 5, 82, 0.4) 100%);
  border: 1px solid rgba(226, 149, 78, 0.25);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: none;
}

.k2t-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--purple));
}

.k2t-card-inner {
  padding: 28px;
}

#k2t-spotify:checked ~ .k2t-card-spotify,
#k2t-bandcamp:checked ~ .k2t-card-bandcamp {
  display: block;
}

/* Spotify embed */
.k2t-embed-container {
  border-radius: 8px;
  overflow: hidden;
}

.k2t-embed-container iframe {
  display: block;
  width: 100%;
  border: none;
}

/* Artist button */
.k2t-footer {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.k2t-artist-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent-glow);
  background: linear-gradient(135deg, var(--accent-dim), var(--purple-dim));
  border-radius: 6px;
  padding: 14px 32px;
  transition: background 0.2s, border-color 0.2s;
}

.k2t-artist-btn:hover {
  background: linear-gradient(135deg, rgba(226, 149, 78, 0.28), rgba(45, 5, 82, 0.75));
  border-color: var(--accent);
}

.k2t-artist-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Bandcamp scaled iframe */
.k2t-bandcamp-wrap {
  position: relative;
  width: 100%;
  /* Visible height — adjust if you want more or less of the page showing */
  height: 560px;
  border-radius: 8px;
  overflow: hidden;
}

.k2t-bandcamp-wrap iframe {
  /* Render at 1.4x the container width then scale down so it fits */
  width: 140%;
  height: 140%;
  border: none;
  transform: scale(0.7143);
  transform-origin: top left;
  display: block;
}

/* Mobile */
@media (max-width: 600px) {
  .k2t-wrapper {
    padding: 28px 16px;
  }

  .k2t-heading {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .k2t-buttons {
    flex-direction: column;
  }

  .k2t-tab-label {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 13px 16px;
  }

  .k2t-card {
    border-radius: 10px;
  }

  .k2t-card-inner {
    padding: 16px;
  }

  .k2t-embed-container {
    position: relative;
    height: 300px;
    overflow: hidden;
  }

  .k2t-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 300px;
  }

  .k2t-footer {
    margin-top: 14px;
  }

  .k2t-artist-btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 13px 16px;
  }

  /* Tighter scale on mobile — shows roughly the same content in less space */
  .k2t-bandcamp-wrap {
    height: 400px;
  }

  .k2t-bandcamp-wrap iframe {
    width: 160%;
    height: 160%;
    transform: scale(0.625);
    transform-origin: top left;
  }
}
}



















#fw-section-custom-html-5c3c2bcd-a12a-4e49-b198-f15fbb950f02 {

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

:root {
  --k2t-orange: #E2954E;
  --k2t-purple: #2D0552;
}

#k2t-events-wrap {
  position: relative;
  width: 100%;
  background: #111;
  font-family: 'Kameron', serif;
  color: #fff;
  overflow: hidden;
  height: 720px;
}

.k2t-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.k2t-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200vh;
  height: 112.5vh;
  min-width: 120%;
  min-height: 67.5vw;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}
.k2t-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}

.k2t-video-mask {
  position: absolute;
  inset: 0;
  z-index: 2;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(0,0,0,0.3);
  opacity: 1;
  transition: opacity 5s ease, backdrop-filter 5s ease, -webkit-backdrop-filter 5s ease;
  pointer-events: none;
}
.k2t-video-mask.clear {
  opacity: 0;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.k2t-booking {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2rem 0.9rem;
}
.k2t-booking span {
  display: block;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}
.k2t-booking a {
  color: #E2954E;
  text-decoration: none;
}
.k2t-booking a:hover { text-decoration: underline; }

.k2t-tabs {
  position: absolute;
  top: 3.2rem;
  right: 3.5rem;
  z-index: 4;
  display: flex;
  gap: 1.2rem;
  align-items: baseline;
}
.k2t-tab {
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.4);
  font-family: 'Kameron', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  letter-spacing: 0.02em;
  padding: 0 0 3px 0;
  transition: color .2s, border-color .2s;
}

.k2t-content-panel {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 48%;
  right: 0;
  left: auto;
  padding: 6.5rem 3.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.k2t-content-panel::-webkit-scrollbar { display: none; }

.k2t-panel { display: none; }
.k2t-panel.active { display: flex; flex-direction: column; gap: 0; }

.k2t-section {
  display: block;
  color: #fff;
  padding: 0.35rem 0;
  flex-shrink: 0;
}
.k2t-section-title {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
  transform-origin: right center;
}
.k2t-section-count {
  font-size: 0.5em;
  font-weight: 700;
  color: #E2954E;
  vertical-align: middle;
  margin-left: 0.3em;
  opacity: 0.85;
}
.k2t-section-sub {
  display: block;
  font-size: clamp(0.75rem, 1.1vw, 0.88rem);
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-top: 0.15rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.k2t-cards {
  display: none;
  margin-top: 0.5rem;
  flex-direction: column;
  gap: 7px;
}
.k2t-section:hover .k2t-cards { display: flex; }
.k2t-section:hover .k2t-section-sub {
  opacity: 1;
  transform: translateY(0);
}

.k2t-card {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.10);
  border-left: 2px solid #E2954E;
  border-radius: 8px;
  padding: 9px 12px 8px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.k2t-card-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.k2t-card-details {
  flex: 1;
  min-width: 0;
}

/* Fixed-width container — all three rows are block elements inside
   a known width so text-align: right always hits the same edge */
.k2t-card-datebig {
  flex-shrink: 0;
  width: 72px;
}
.k2t-card-datebig .k2t-date-day,
.k2t-card-datebig .k2t-date-mon,
.k2t-card-datebig .k2t-date-yr {
  display: block;
  width: 72px;
  text-align: right;
  letter-spacing: 0;
  line-height: 1.1;
  white-space: nowrap;
}
.k2t-card-datebig .k2t-date-day {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #E2954E;
}
.k2t-card-datebig .k2t-date-mon {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-top: 2px;
}
.k2t-card-datebig .k2t-date-yr {
  font-size: clamp(0.65rem, 1vw, 0.8rem);
  font-weight: 400;
  color: #fff;
  margin-top: 3px;
}

.k2t-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  line-height: 1.2;
}
.k2t-card-venue {
  font-size: .78rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1px;
}
.k2t-card-location {
  font-size: .76rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2px;
}
.k2t-card-date {
  font-size: .78rem;
  font-style: italic;
  color: #E2954E;
  font-weight: 400;
  margin-bottom: 5px;
}
.k2t-card-time {
  font-size: .74rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 5px;
}
.k2t-card-desc {
  font-size: .74rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  margin-bottom: 7px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.k2t-card-desc.clamp-2 { -webkit-line-clamp: 2; }
.k2t-card-desc.clamp-3 { -webkit-line-clamp: 3; }

.k2t-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Kameron', serif;
  font-weight: 700;
  font-size: .72rem;
  border-radius: 999px;
  padding: 4px 11px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: .2px;
  transition: transform .2s, box-shadow .2s;
}
.k2t-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.4); }
.k2t-btn-primary {
  background: linear-gradient(90deg, #2D0552, #E2954E);
  color: #fff;
}

.k2t-seemore-wrap { margin-top: 6px; }
.k2t-seemore {
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.6);
  font-family: 'Kameron', serif;
  font-size: .72rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: .4px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 12px;
  transition: background .2s, color .2s, border-color .2s;
}
.k2t-seemore:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.35);
}

.k2t-empty {
  font-size: .8rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  padding: 2px 0;
}
.k2t-loading {
  font-size: .8rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

@media (max-width: 700px) {
  #k2t-events-wrap { height: auto; min-height: 720px; }
  .k2t-video-bg iframe {
    width: 320vh;
    height: 180vh;
    min-width: unset;
    min-height: unset;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .k2t-booking { padding: 1rem 1.5rem 0.8rem; }
  .k2t-booking span { font-size: clamp(0.85rem, 4vw, 1rem); }
  .k2t-tabs { top: 5rem; right: 0; left: 0; justify-content: center; }
  .k2t-tab { font-size: 1.1rem; }
  .k2t-content-panel {
    position: relative;
    width: 100%;
    left: 0; right: 0;
    padding: 8rem 1.5rem 2rem;
    justify-content: flex-start;
    overflow-y: visible;
    min-height: 660px;
  }
  .k2t-section-title { font-size: clamp(1.6rem, 8vw, 2.2rem); }
}

@media (prefers-reduced-motion: reduce) {
  .k2t-section-title, .k2t-section-sub, .k2t-cards { transition: none; }
  .k2t-video-bg iframe { display: none; }
  .k2t-video-mask { display: none; }
  .k2t-video-bg::before { content: ""; position: absolute; inset: 0; background: #111; }
}
}
#fw-section-announcement-bar-c477cc15-73a5-4f77-946e-2eefa0592ee1 {
--font-heading-scale: 0.79;
--font-body-scale: 1.54;
}
#fw-section-announcement-bar-c477cc15-73a5-4f77-946e-2eefa0592ee1 {
--color-primary: #121212;
--color-primary-rgb: 18, 18, 18;
--color-background: #e2954e;
--color-background-rgb: 226, 149, 78;
--color-on-background: #fffdf8;
--color-on-background-rgb: 255, 253, 248;
--color-on-primary: #f5efea;
--color-on-primary-rgb: 245, 239, 234;
--color-product-image-background: #fffdf8;
--color-background-brightness: 164;
background-color: var(--color-background);
color: var(--color-on-background);
--primary-btn-bg: #fffdf8;
--primary-btn-text: #e2954e;
--primary-btn-border-color: #121212;
--secondary-btn-bg: transparent;
--secondary-btn-text: #fffdf8;
--secondary-btn-border-color: #fffdf8;

}



#fw-section-custom-html-37436608-8d8b-4c3b-b4fc-fdc34853b18f {

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

.home-links {
  position: relative;
  width: 100%;
  min-height: 620px;
  background: #111;
  display: flex;
  align-items: stretch;
}

.home-image-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 55%;
  z-index: 0;
  overflow: hidden;
  transform: translateZ(0);
  contain: strict;
}

.home-image-panel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  opacity: 0;
  filter: grayscale(100%);
  transform: translateZ(0);
  transition: opacity 0.5s ease, filter 0.5s ease;
  will-change: opacity;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: top;
  flex-shrink: 0;
}

/* Default image — visible until something is hovered */
.home-image-panel img.default {
  opacity: 1;
  filter: grayscale(40%);
}

/* Fade default out when any item is hovered */
.home-links:has(.home-item:hover) .home-image-panel img.default {
  opacity: 0;
}

/* Fade only at the right edge where it meets the nav */
.home-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17,17,17,0) 0%,
    rgba(17,17,17,0) 40%,
    rgba(17,17,17,0.7) 75%,
    rgba(17,17,17,1) 100%
  );
  z-index: 1;
  pointer-events: none;
  transform: translateZ(0);
}

.home-nav {
  position: relative;
  z-index: 2;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3.5rem 3rem 2rem;
  width: 48%;
  gap: 0.1rem;
}

.home-item {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 0.45rem 0;
  height: 6rem; /* fixed height — never changes on hover */
  overflow: hidden;
}

.home-item-title {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform-origin: right center;
}

.home-item-desc {
  display: block;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.45;
  margin-top: 0.3rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
  white-space: nowrap; /* prevents text wrapping to a second line */
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-item:hover .home-item-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Dim all other titles when one is hovered */
.home-nav:has(.home-item:hover) .home-item:not(:hover) .home-item-title {
  opacity: 0.2;
  transform: scale(0.95);
}

/* nth-child offset by 1 because default image is first in panel */
.home-links:has(.home-item:nth-child(1):hover) .home-image-panel img:nth-child(2),
.home-links:has(.home-item:nth-child(2):hover) .home-image-panel img:nth-child(3),
.home-links:has(.home-item:nth-child(3):hover) .home-image-panel img:nth-child(4),
.home-links:has(.home-item:nth-child(4):hover) .home-image-panel img:nth-child(5),
.home-links:has(.home-item:nth-child(5):hover) .home-image-panel img:nth-child(6),
.home-links:has(.home-item:nth-child(6):hover) .home-image-panel img:nth-child(7) {
  opacity: 1;
  filter: grayscale(0%);
}

/* Mobile: image fills the whole block, text overlays on top */
@media (max-width: 700px) {
  .home-links {
    min-height: unset;
    display: flex;
    flex-direction: column;
  }
  .home-image-panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .home-image-panel::after {
    background: linear-gradient(
      to bottom,
      rgba(17,17,17,0.3) 0%,
      rgba(17,17,17,0.75) 60%,
      rgba(17,17,17,0.95) 100%
    );
  }
  .home-nav {
    width: 100%;
    margin-left: 0;
    padding: 2rem 1.5rem;
    justify-content: flex-end;
    min-height: 620px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .home-image-panel img,
  .home-item-title,
  .home-item-desc {
    transition: none;
  }
}
}