/* ============================================
   HEATCLUB — Warm Light Theme
   Dark cinematic hero → warm light content
   ============================================ */

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

:root {
  /* Dark palette — hero & cinematic sections */
  --bg-dark: #0a0000;
  --bg-dark-elevated: #140202;
  --maroon: #300000;
  --maroon-mid: #4a0a0a;
  --maroon-light: #6b1a1a;
  --red: #8b1a1a;

  /* Light palette — content sections */
  --bg: #FAFAF7;
  --bg-elevated: #F5F0EB;
  --bg-white: #FFFFFF;

  /* Brand accents */
  --amber: #C8956C;
  --amber-bright: #daa87a;
  --amber-soft: rgba(200, 149, 108, 0.12);

  /* Text on light */
  --text: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #8a8078;
  --text-faint: #b5ada5;

  /* Text on dark (hero) */
  --cream: #F5F0EB;
  --cream-60: rgba(245, 240, 235, 0.6);
  --cream-30: rgba(245, 240, 235, 0.3);
  --cream-10: rgba(245, 240, 235, 0.1);
  --cream-05: rgba(245, 240, 235, 0.05);

  /* Light borders */
  --border: rgba(48, 0, 0, 0.08);
  --border-strong: rgba(48, 0, 0, 0.14);

  /* Dark borders (hero) */
  --border-dark: rgba(245, 240, 235, 0.08);

  --radius: 0px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Century Gothic', 'Avenir Next', 'Futura', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--text);
}

h2 em, h1 em {
  font-style: italic;
  font-weight: 300;
  text-transform: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

::selection {
  background: var(--amber-soft);
  color: var(--text);
}

/* ============================================
   GRAIN OVERLAY — subtle on light
   ============================================ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  mix-blend-mode: multiply;
}

/* ============================================
   HEADER — adapts from dark hero to light page
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Left group: logo only */
.header__left {
  flex: 1;
  display: flex;
  align-items: center;
}

/* Center group: primary CTA */
.header__center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Right group: Credits + Login + lang + hamburger */
.header__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}

.header.scrolled {
  background: rgba(250, 250, 247, 0.88);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.header__logo {
  height: 38px;
}

.header:not(.scrolled) .header__logo {
  filter: brightness(1);
}

.header__nav a {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.6;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.header__nav a:hover {
  opacity: 1;
}

.header__cta {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f0101;
  background: var(--amber);
  border: none;
  padding: 0.55rem 1.25rem;
  display: none;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 0 18px rgba(200, 149, 108, 0.35);
}

.header__cta:hover {
  background: var(--amber-bright);
  box-shadow: 0 0 28px rgba(200, 149, 108, 0.55);
  transform: translateY(-1px);
}

/* Show mobile CTA after the base display:none rule */
.header__cta.header__cta--mobile {
  display: inline-flex;
}

/* Preserve centering transform on hover/active for mobile CTA */
.header__cta--mobile:hover,
.header__cta--mobile:active {
  transform: translateX(-50%) translateY(-1px);
}

/* On dark hero — keep amber, it already pops */
.header:not(.scrolled) .header__cta {
  color: #0f0101;
  background: var(--amber);
  border: none;
  box-shadow: 0 0 22px rgba(200, 149, 108, 0.4);
}

/* ============================================
   LANGUAGE TOGGLE — DE / EN
   ============================================ */
.lang-toggle {
  display: none; /* hidden on mobile — lives in mobile menu; shown at 1100px+ */
  align-items: center;
  gap: 0.15rem;
}

.lang-toggle__btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 0.3rem 0.25rem;
  transition: color 0.3s ease;
  line-height: 1;
}

.lang-toggle__btn.active {
  color: var(--text);
}

.lang-toggle__btn:hover {
  color: var(--text);
}

.lang-toggle__sep {
  font-size: 0.5rem;
  color: var(--text-faint);
  pointer-events: none;
  line-height: 1;
}

/* On dark hero — use cream tones */
.header:not(.scrolled) .lang-toggle__btn {
  color: var(--cream-30);
}

.header:not(.scrolled) .lang-toggle__btn.active {
  color: var(--cream);
}

.header:not(.scrolled) .lang-toggle__btn:hover {
  color: var(--cream);
}

.header:not(.scrolled) .lang-toggle__sep {
  color: var(--cream-30);
}

/* ============================================
   HEADER PILL CTAs — Credits kaufen + Buchen
   ============================================ */
.header__pill {
  display: none; /* shown at 640px+ */
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  line-height: 1;
  border-radius: 3px;
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  white-space: nowrap;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.header__pill:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* Primary pill — always visible (replaces old mobile CTA) */
.header__pill--primary {
  display: inline-flex;
  background: var(--amber);
  border-color: var(--amber);
  color: #0f0101;
  box-shadow: 0 0 14px rgba(200, 149, 108, 0.3);
}

.header__pill--primary:hover {
  background: var(--amber-bright);
  border-color: var(--amber-bright);
  box-shadow: 0 0 22px rgba(200, 149, 108, 0.5);
}

/* Dark hero pill variants */
.header:not(.scrolled) .header__pill {
  color: var(--cream);
  border-color: rgba(245, 240, 235, 0.35);
}

.header:not(.scrolled) .header__pill:hover {
  background: var(--cream);
  color: #0f0101;
  border-color: var(--cream);
}

.header:not(.scrolled) .header__pill--primary {
  color: #0f0101;
  background: var(--amber);
  border-color: var(--amber);
}

/* ============================================
   HEADER LOGIN BUTTON — hidden on mobile, shown at 640px+
   ============================================ */
.header__login {
  display: none; /* shown at 640px+ */
  align-items: center;
  gap: 0.35rem;
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1.5px solid var(--border-strong);
  border-radius: 3px;
  padding: 0.5rem 0.85rem;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.header__login:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.header:not(.scrolled) .header__login {
  color: var(--cream);
  border-color: rgba(245, 240, 235, 0.35);
}

.header:not(.scrolled) .header__login:hover {
  background: var(--cream);
  color: #0f0101;
  border-color: var(--cream);
}

.header__login.is-logged-in {
  border-color: var(--amber);
  color: var(--amber);
}

.header:not(.scrolled) .header__login.is-logged-in {
  border-color: var(--amber);
  color: var(--amber);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.4s var(--ease);
  display: block;
  border-radius: 1px;
}

.hamburger.active span {
  background: #300000;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ============================================
   MENU BACKDROP
   ============================================ */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

/* ============================================
   MENU — full-screen on mobile, drawer on desktop
   ============================================ */

/* ---- Mobile default: full-screen clip-path reveal ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: #ffffff;
  overflow: hidden; /* bars stay fixed; scroll wrapper handles scrolling */
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s var(--ease);
}

.mobile-menu.open {
  clip-path: inset(0 0 0% 0);
}

/* Scroll wrapper — fills the panel, scrolls independently of the bars */
.mobile-menu__scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  align-items: center; /* center all items */
  /* padding clears the bracket bars so content starts below top bar */
  padding: calc(clamp(72px, 10vh, 96px) + clamp(22px, 4.5vh, 44px) + 0.5rem) 2.5rem calc(clamp(24px, 5vh, 48px) + clamp(22px, 4.5vh, 44px) + 1.5rem);
}

/* ---- 640px+: right-side drawer ---- */
@media (min-width: 640px) {
  .mobile-menu {
    inset: unset;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(440px, 88vw);
    clip-path: none;
    transform: translateX(110%);
    transition: transform 0.55s var(--ease);
  }

  .mobile-menu.open {
    clip-path: none;
    transform: translateX(0);
  }

  .mobile-menu__scroll {
    padding: 1.25rem 2rem 3rem;
  }
}

/* ---- Corner bracket bars — overlay above scroll content, mobile only ---- */
.mobile-menu__bar {
  position: absolute;
  left: 2.5rem;
  right: 2.5rem;
  height: 1.5px;
  background: #300000;
  z-index: 2; /* sits above .mobile-menu__scroll so bars never scroll away */
  pointer-events: none;
}

.mobile-menu__bar::before,
.mobile-menu__bar::after {
  content: '';
  position: absolute;
  width: 1.5px;
  height: clamp(22px, 4.5vh, 44px);
  background: #300000;
}

.mobile-menu__bar::before { left: 0; }
.mobile-menu__bar::after  { right: 0; }

.mobile-menu__bar--top    { top:    clamp(72px, 10vh, 96px); }
.mobile-menu__bar--bottom { bottom: clamp(24px, 5vh, 48px); }

.mobile-menu__bar--top::before,
.mobile-menu__bar--top::after { top: 0; }

.mobile-menu__bar--bottom::before,
.mobile-menu__bar--bottom::after { bottom: 0; }

/* Hide bars inside the drawer (640px+) */
@media (min-width: 640px) {
  .mobile-menu__bar { display: none; }
}

/* ---- Drawer head: close button — pinned to top-right of menu panel ---- */
.mobile-menu__head {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3; /* above bars (z-index: 2) and gradient overlays */
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  color: #300000;
  padding: 0.5rem;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__close:hover {
  opacity: 0.7;
}

/* ---- Gradient fade overlays — mobile only, sit above scroll but below bars ---- */
@media (max-width: 639px) {
  .mobile-menu::before,
  .mobile-menu::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
  }
  .mobile-menu::before {
    top: 0;
    height: calc(clamp(72px, 10vh, 96px) + clamp(22px, 4.5vh, 44px) + 2.5rem);
    background: linear-gradient(to bottom, #ffffff 50%, transparent 100%);
  }
  .mobile-menu::after {
    bottom: 0;
    height: calc(clamp(24px, 5vh, 48px) + clamp(22px, 4.5vh, 44px) + 2.5rem);
    background: linear-gradient(to top, #ffffff 50%, transparent 100%);
  }
}

/* ---- Mobile menu: login row ---- */
.mobile-menu__login-row {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 1.25rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.mobile-menu__login-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #300000;
  transition: color 0.3s ease;
}

.mobile-menu__login-btn:hover {
  color: var(--amber);
}

.mobile-menu__login-btn.is-logged-in {
  color: var(--amber);
}

/* ---- CTA pills row ---- */
.mobile-menu__ctas {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.mobile-menu__cta-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(48,0,0,0.25);
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #300000;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-menu__cta-pill:hover {
  background: #300000;
  color: #ffffff;
  border-color: #300000;
}

.mobile-menu__cta-pill--primary {
  background: var(--amber);
  border-color: var(--amber);
  color: #0f0101;
}

.mobile-menu__cta-pill--primary:hover {
  background: var(--amber-bright);
  border-color: var(--amber-bright);
}

/* ---- Sections ---- */
.mobile-menu__section {
  width: 100%;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  text-align: center;
}

.mobile-menu__section--nav {
  border-bottom: none;
  padding-bottom: 0;
}

.mobile-menu__section-label {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(48,0,0,0.45);
}

.mobile-menu__lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-menu__lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(48,0,0,0.45);
  padding: 0.3rem 0.25rem;
  transition: color 0.3s ease;
}

.mobile-menu__lang-btn.active {
  color: #300000;
}

.mobile-menu__lang-sep {
  font-size: 0.6rem;
  color: rgba(48,0,0,0.3);
  pointer-events: none;
}

/* ---- Navigation ---- */
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mobile-menu__nav a {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.55rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  color: #300000;
  transition: color 0.3s ease;
}

.mobile-menu__nav a:hover {
  color: var(--amber);
}

/* ============================================
   HERO INTRO — Logo cinematic reveal
   ============================================ */
.hero__intro {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 3vh, 2.5rem);
  pointer-events: auto;
  /* No background — hero's #0f0101 bg shows through */
}

.hero__intro.exit {
  pointer-events: none;
}

/* ============================================
   CORNER BRACKET BARS — permanent hero frame
   Horizontal line + vertical tails at each end
   ============================================ */
.hero__bar {
  position: absolute;
  left: 2.5rem;
  right: 2.5rem;
  height: 1.5px;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.55s var(--ease);
  z-index: 1;
}

/* Vertical tail — left end */
.hero__bar::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1.5px;
  height: clamp(22px, 4.5vh, 44px);
  background: var(--cream);
  transform: scaleY(0);
  opacity: 0;
  transition: transform 0.45s var(--ease) 0.4s, opacity 0.3s ease 0.4s;
}

/* Vertical tail — right end */
.hero__bar::after {
  content: '';
  position: absolute;
  right: 0;
  width: 1.5px;
  height: clamp(22px, 4.5vh, 44px);
  background: var(--cream);
  transform: scaleY(0);
  opacity: 0;
  transition: transform 0.45s var(--ease) 0.4s, opacity 0.3s ease 0.4s;
}

/* Top bar: tails grow downward */
.hero__bar--top    { top:    clamp(72px, 10vh, 96px); }
.hero__bar--top::before,
.hero__bar--top::after { top: 0; transform-origin: top; }

/* Bottom bar: tails grow upward */
.hero__bar--bottom { bottom: clamp(24px, 5vh, 48px); }
.hero__bar--bottom::before,
.hero__bar--bottom::after { bottom: 0; transform-origin: bottom; }

/* Trigger both horizontal and vertical on expand */
.hero__bar.expanded { transform: scaleX(1); }
.hero__bar.expanded::before,
.hero__bar.expanded::after { transform: scaleY(1); opacity: 1; }

/* ============================================
   INTRO TEXT — HEAT CLUB
   ============================================ */
.hero__intro-center {
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  clip-path: inset(0% 0 0% 0);
  transition: opacity 0.4s ease, transform 0.4s var(--ease),
              clip-path 0.38s cubic-bezier(0.4, 0, 1, 1);
}

.hero__intro-center.visible {
  opacity: 1;
  transform: none;
}

/* Exit — slides up and fades, same axis as hero entrance below */
.hero__intro.exit .hero__intro-center {
  transform: translateY(-48px);
  opacity: 0;
}

.hero__intro-heat {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: clamp(3.5rem, 17vw, 9rem);
  font-weight: 900;
  letter-spacing: 0.28em;
  /* Shift right by half letter-spacing to visually centre despite trailing gap */
  padding-left: 0.28em;
  color: var(--cream);
  line-height: 1;
  text-transform: uppercase;
}

.hero__intro-club {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: clamp(1rem, 5.5vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.55em;
  padding-left: 0.55em;
  color: var(--cream);
  line-height: 1;
  margin-top: 0.5em;
  text-transform: uppercase;
}


/* ============================================
   HERO — Dark cinematic
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 2.5rem 2rem;
  overflow: hidden;
  background: var(--maroon);
}

/* Header elements adapt to dark hero */
.header:not(.scrolled) .hamburger span {
  background: var(--cream);
}

/* X icon turns red on light/scrolled header so it's visible */
.header.scrolled .hamburger.active span {
  background: var(--red);
}

/* Ambient particles */
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-particle {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0;
  animation: particle-rise linear infinite;
}

@keyframes particle-rise {
  0%   { bottom: -10px; opacity: 0;    transform: translateX(0); }
  15%  { opacity: 0.45; }
  85%  { opacity: 0.1; }
  100% { bottom: 105%;  opacity: 0;    transform: translateX(20px); }
}


.hero__title-line {
  position: relative;
  color: var(--cream);
}

.hero__title-line:nth-child(2) {
  color: var(--amber);
}

.hero__title-line:nth-child(3) {
  color: var(--text-secondary);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero__top {
  margin-bottom: 2rem;
}

.hero__label {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero__label-line {
  display: none;
}

.hero__title {
  margin-bottom: 2.5rem;
}

.hero__title-line {
  display: block;
  font-size: clamp(3rem, 12vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  overflow: hidden;
}

.hero__title-line:nth-child(2) {
  color: var(--amber);
}

.hero__title-line:nth-child(3) {
  font-weight: 300;
  font-style: italic;
  text-transform: none;
  font-size: clamp(2.2rem, 8vw, 5.5rem);
  color: var(--cream-60);
  padding-bottom: 0.15em;
}

/* Reveal animation inner */
[data-animate="reveal"] {
  overflow: hidden;
}

[data-animate="reveal"] > span,
[data-animate="reveal"]::after {
  display: inline-block;
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero__actions {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.hero__desc {
  font-family: 'Century Gothic', 'Avenir Next', 'Futura', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--cream-60);
  line-height: 1.8;
  max-width: 420px;
  text-transform: uppercase;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--amber);
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(200, 149, 108, 0.3);
}

.btn-primary--large {
  padding: 1.2rem 3rem;
  font-size: 0.75rem;
}

.btn-text {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: gap 0.3s var(--ease);
}

.btn-text:hover {
  gap: 1rem;
}

/* ============================================
   MARQUEE — Dark-to-light transition element
   ============================================ */
.marquee {
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  background: var(--bg);
}

.marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee__track span {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
  padding: 0 1.5rem;
}

.marquee__dot {
  width: 4px !important;
  height: 4px;
  background: var(--amber);
  border-radius: 50%;
  display: inline-flex;
  align-self: center;
  flex-shrink: 0;
  padding: 0 !important;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS — Light theme base
   ============================================ */
.section {
  padding: 6rem 1.5rem;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.section-num {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

.section-label {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(55px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.exited {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }

/* ============================================
   DARK FLOATING CARD — shared style
   ============================================ */
@keyframes float-card {
  0%, 100% { transform: translateY(0px) rotateX(0deg); }
  50%       { transform: translateY(-8px) rotateX(1deg); }
}

@keyframes float-card-slow {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

.dark-card {
  background: var(--bg-dark);
  border: 1px solid rgba(200, 149, 108, 0.15);
  box-shadow:
    0 20px 60px rgba(10, 0, 0, 0.35),
    0 8px 24px rgba(10, 0, 0, 0.2),
    0 0 0 1px rgba(200, 149, 108, 0.06) inset;
  animation: float-card-slow 5s ease-in-out infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
  transition: box-shadow 0.5s ease, transform 0.5s var(--ease);
}

.dark-card:hover {
  box-shadow:
    0 32px 80px rgba(10, 0, 0, 0.5),
    0 12px 32px rgba(10, 0, 0, 0.3),
    0 0 40px rgba(200, 149, 108, 0.08),
    0 0 0 1px rgba(200, 149, 108, 0.12) inset;
  animation-play-state: paused;
  transform: translateY(-10px) rotateX(2deg) rotateY(-1deg);
}

/* ============================================
   ABOUT — Light with dark floating image card
   ============================================ */
.about {
  background: var(--bg);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 1rem;
}

/* Wrapper gives perspective context for the floating card */
.about__visual {
  perspective: 1200px;
}

.about__image {
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding: 2rem;
  /* Dark floating card treatment */
  background: var(--bg-dark);
  border: 1px solid rgba(200, 149, 108, 0.15);
  box-shadow:
    0 24px 64px rgba(10, 0, 0, 0.4),
    0 8px 24px rgba(10, 0, 0, 0.25),
    0 0 0 1px rgba(200, 149, 108, 0.06) inset;
  animation: float-card 6s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.5s ease, transform 0.5s var(--ease);
}

.about__image:hover {
  animation-play-state: paused;
  transform: translateY(-12px) rotateX(2deg) rotateY(2deg);
  box-shadow:
    0 40px 90px rgba(10, 0, 0, 0.55),
    0 16px 40px rgba(10, 0, 0, 0.3),
    0 0 50px rgba(200, 149, 108, 0.1),
    0 0 0 1px rgba(200, 149, 108, 0.14) inset;
}

.about__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(200, 149, 108, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(48, 0, 0, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative label inside the dark about card */
.about__image-label {
  position: relative;
  z-index: 1;
}

.about__image-label-text {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.5rem;
}

.about__image-text {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(245, 240, 235, 0.08);
  position: relative;
  z-index: 1;
  /* Remove old centered positioning */
}

.about__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 2rem;
}

.about__body {
  margin-bottom: 2rem;
}

.about__body p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}


/* ============================================
   BENEFITS — Light bg, mixed dark/light cards
   ============================================ */
.benefits {
  background: var(--bg-elevated);
}

.benefits__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 3rem;
}

/* 1-column mobile, 2-column tablet, 3-column desktop */
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
}

@media (min-width: 600px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Base benefit card — light */
.benefit-card {
  background: var(--bg-white);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.benefit-card__icon {
  color: var(--text-faint);
  display: flex;
  align-items: center;
}

.benefit-card--dark .benefit-card__icon {
  color: var(--amber);
}

.benefit-card:not(.benefit-card--dark):hover .benefit-card__icon {
  color: var(--amber);
  transition: color 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 8px 32px rgba(48, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* Dark floating variant — cards 1 and 5 (diagonal balance) */
.benefit-card--dark {
  background: var(--maroon);
  border: 1px solid rgba(200, 149, 108, 0.15);
  box-shadow:
    0 16px 48px rgba(10, 0, 0, 0.35),
    0 6px 18px rgba(10, 0, 0, 0.2),
    0 0 0 1px rgba(200, 149, 108, 0.05) inset;
  animation: float-card-slow 5.5s ease-in-out infinite;
  will-change: transform;
}

.benefit-card--dark:hover {
  animation-play-state: paused;
  transform: translateY(-10px) rotateX(1.5deg) rotateY(-1deg);
  box-shadow:
    0 28px 70px rgba(10, 0, 0, 0.5),
    0 10px 28px rgba(10, 0, 0, 0.3),
    0 0 35px rgba(200, 149, 108, 0.08),
    0 0 0 1px rgba(200, 149, 108, 0.12) inset;
}

/* Stagger dark card animation offset so they don't sync */
.benefit-card--dark:nth-of-type(5) {
  animation-delay: -2.5s;
}

.benefit-card__num {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-faint);
}

.benefit-card--dark .benefit-card__num {
  color: var(--amber);
  opacity: 0.7;
}

.benefit-card__content h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.benefit-card--dark .benefit-card__content h3 {
  color: var(--cream);
}

.benefit-card:not(.benefit-card--dark):hover .benefit-card__content h3 {
  color: var(--amber);
}

.benefit-card__content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.benefit-card--dark .benefit-card__content p {
  color: var(--cream-60);
}

/* ============================================
   SESSIONS — Dark section, 5-card grid
   ============================================ */
.sessions {
  background: var(--maroon);
}

.sessions .section-header {
  border-bottom-color: var(--border-dark);
}

.sessions .section-num {
  color: var(--cream-30);
}

.sessions .section-label {
  color: var(--amber);
}

.sessions__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--cream);
}

.sessions__title em {
  color: var(--amber);
}

.sessions__desc {
  font-size: 0.92rem;
  color: var(--cream-60);
  margin-bottom: 3.5rem;
  max-width: 36rem;
}

/* 6-col grid: Cycling+Rowing span 3 each (top row of 2),
   Yoga+Stretching+Pilates span 2 each (bottom row of 3)

   Column separators use inset box-shadow (not gap) to avoid sub-pixel
   rendering bugs at fractional column positions in 1fr grids. */
.sessions__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 0;
  row-gap: 1px;
  background: var(--cream-10);
  padding: 1px;
}

.session-card {
  background: var(--maroon);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.25s ease;
}

.session-card:hover {
  background: var(--maroon-mid);
}

/* Row 1: Cycling + Rowing — 2 wide cards */
.session-card:nth-child(1),
.session-card:nth-child(2) {
  grid-column: span 3;
}

/* Row 2: Yoga + Stretching + Pilates — 3 standard cards */
.session-card:nth-child(3),
.session-card:nth-child(4),
.session-card:nth-child(5) {
  grid-column: span 2;
}

/* Vertical separators: inset shadow is drawn relative to the card's own
   left edge, so it's immune to fractional column pixel positions */
.session-card:nth-child(2),
.session-card:nth-child(4),
.session-card:nth-child(5) {
  box-shadow: inset 1px 0 0 var(--cream-10);
}

.session-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.session-card__icon {
  color: var(--amber);
  opacity: 0.8;
}

.session-card__badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.session-card__badge {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--cream-30);
  color: var(--cream-60);
}

.session-card__badge--credit {
  border-color: var(--amber);
  color: var(--amber);
}

.session-card__name {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--cream);
  line-height: 1.2;
}

.session-card__tag {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.session-card__desc {
  font-size: 0.84rem;
  color: var(--cream-60);
  line-height: 1.75;
  flex: 1;
}

@media (max-width: 900px) {
  .sessions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .session-card:nth-child(1),
  .session-card:nth-child(2),
  .session-card:nth-child(3),
  .session-card:nth-child(4),
  .session-card:nth-child(5) {
    grid-column: span 1;
  }
  /* At 2-col layout, card 5 is alone in its row — no left separator */
  .session-card:nth-child(5) {
    box-shadow: none;
  }
}

@media (max-width: 600px) {
  .sessions__grid {
    grid-template-columns: 1fr;
  }
  .session-card:nth-child(1),
  .session-card:nth-child(2),
  .session-card:nth-child(3),
  .session-card:nth-child(4),
  .session-card:nth-child(5) {
    grid-column: span 1;
  }
  /* Single column — no vertical separators */
  .session-card:nth-child(2),
  .session-card:nth-child(4) {
    box-shadow: none;
  }
}

/* ============================================
   BOOKING — Light with clean widget area
   ============================================ */
.booking {
  background: var(--bg);
}

.booking__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 1rem;
}

.booking__desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.booking__widget {
  min-height: 480px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.booking__calendar {
  min-height: 480px;
  position: relative;
}

/* ============================================
   WIDGET LOADER
   ============================================ */
.widget-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: var(--bg-white);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.widget-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Spinner ring */
.widget-loader__spinner {
  width: 36px;
  height: 36px;
  border: 2px solid var(--border-strong);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: widget-spin 0.8s linear infinite;
}

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

/* Text */
.widget-loader__text {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Skeleton bars */
.widget-loader__skeletons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 200px;
  margin-top: 0.4rem;
}

.widget-loader__skel {
  height: 8px;
  background: var(--border);
  border-radius: 2px;
  animation: widget-pulse 1.6s ease-in-out infinite;
}

.widget-loader__skel--wide  { width: 100%; animation-delay: 0s; }
.widget-loader__skel--mid   { width: 72%;  animation-delay: 0.15s; }
.widget-loader__skel--narrow{ width: 48%;  animation-delay: 0.3s; }

@keyframes widget-pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ============================================
   PRICING — Light
   ============================================ */
.pricing {
  background: var(--bg-elevated);
}

.pricing__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 2rem;
}

.pricing__toggle {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border: 1px solid var(--border-strong);
  width: fit-content;
}

.pricing__toggle-btn {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  background: transparent;
  border: none;
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing__toggle-btn.active {
  background: var(--text);
  color: var(--bg);
}

.pricing__toggle-btn:not(.active):hover {
  color: var(--text-secondary);
}

.pricing__save-badge {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--amber);
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.price-card {
  background: var(--bg-white);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.4s var(--ease);
}

.price-card:hover {
  background: var(--bg);
}

.price-card--featured {
  background: var(--bg);
}

.price-card__badge {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--amber);
  padding: 0.3rem 0.8rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.price-card__head {
  margin-bottom: 2rem;
}

.price-card__label {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.8rem;
}

.price-card__price {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.price-card__sub {
  font-size: 0.8rem;
  color: var(--text-faint);
  display: block;
  margin-top: 0.3rem;
}

.price-card__list {
  list-style: none;
  margin-bottom: 2rem;
}

.price-card__list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.price-card__list li::before {
  content: '—';
  color: var(--text-faint);
  font-size: 0.7rem;
}

.price-card__btn {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--border-strong);
  padding: 0.85rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.price-card__btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.price-card__btn--primary {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}

.price-card__btn--primary:hover {
  background: var(--amber-bright);
  border-color: var(--amber-bright);
  color: #fff;
}

/* ============================================
   MEMBERSHIP — Light cream section
   ============================================ */
.membership {
  background: var(--bg-elevated);
}

.membership__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.membership__title em {
  color: var(--amber);
}

.membership__desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.membership__widget {
  min-height: 400px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* ============================================
   CREDITS — Dark maroon section
   ============================================ */
.credits {
  background: var(--maroon);
}

.credits .section-header {
  border-bottom-color: var(--border-dark);
}

.credits .section-num {
  color: var(--cream-30);
}

.credits .section-label {
  color: var(--amber);
}

.credits__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--cream);
}

.credits__title em {
  color: var(--amber);
}

.credits__desc {
  color: var(--cream-60);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.credits__widget {
  min-height: 400px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* ============================================
   FAQ — Accordion
   ============================================ */
.faq__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 3rem;
}

.faq__list {
  border-top: 1px solid var(--border);
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s ease;
}

.faq__q:hover { color: var(--amber); }

.faq__icon {
  flex-shrink: 0;
  color: var(--amber);
  transition: transform 0.4s var(--ease);
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
}

/* CSS grid trick — smooth height with no JS measurement */
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.faq__item.open .faq__a {
  grid-template-rows: 1fr;
}

.faq__a > div {
  overflow: hidden;
}

.faq__a p {
  padding-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.85;
}

.faq__a a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal {
  padding-top: 120px;
  padding-bottom: 6rem;
  min-height: 70vh;
}

.legal__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 3rem;
}

.legal__body h2 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 2.5rem 0 0.75rem;
  color: var(--text);
}

.legal__body h2:first-child { margin-top: 0; }

.legal__body p,
.legal__body li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.legal__body ul {
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
}

.legal__body a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   FOOTER — Dark cinematic bookend
   ============================================ */
.footer__top {
  padding: 6rem 1.5rem;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle warm glow in footer CTA area */
.footer__top::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(48, 0, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.footer__cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: relative;
}

.footer__headline {
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--text);
}

.footer__headline em {
  color: var(--amber);
}

.footer__bottom {
  padding: 3rem 1.5rem 1.5rem;
  background: var(--maroon);
  border-top: 1px solid var(--border-dark);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__logo {
  height: 32px;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.footer__desc {
  font-size: 0.82rem;
  color: var(--cream-30);
  line-height: 1.7;
}

.footer__heading {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-60);
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  font-size: 0.82rem;
  color: var(--cream-30);
  padding: 0.25rem 0;
}

.footer__links a {
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--cream);
}

.footer__social {
  display: flex;
  gap: 0.8rem;
}

.footer__social a {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-dark);
  color: var(--cream-30);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer__social a:hover {
  border-color: var(--cream);
  color: var(--cream);
}

.footer__bar {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__bar p {
  font-size: 0.7rem;
  color: var(--cream-30);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  row-gap: 0.4rem;
}

.footer__legal a {
  font-size: 0.7rem;
  color: var(--cream-30);
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--cream);
}

.footer__legal-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  font-size: 0.7rem;
  color: var(--cream-30);
  transition: color 0.3s ease;
}

.footer__legal-btn:hover {
  color: var(--cream);
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (min-width: 640px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
}

/* ============================================
   RESPONSIVE — Desktop
   ============================================ */
@media (min-width: 960px) {
  .section {
    padding: 8rem 2.5rem;
  }

  .header {
    padding: 0 3rem;
    height: 72px;
  }

  .hero {
    padding: 8rem 3rem 3rem;
  }

  .hero__bar {
    left: 3rem;
    right: 3rem;
  }

  .hero__bottom {
    flex-direction: column;
  }

  .about__layout {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .about__image {
    position: sticky;
    top: 100px;
  }

  .footer__top {
    padding: 8rem 2.5rem;
  }

  .footer__bar {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================
   RESPONSIVE — Desktop nav (1100px+)
   Show left nav links, login button, lang toggle.
   Hamburger stays visible at ALL widths (opens full-screen menu).
   ============================================ */
@media (min-width: 640px) {
  /* Hide the mobile-only title overlay on desktop */
  .about__image-title {
    display: none !important;
  }

  /* Show Credits kaufen pill, Login button, and Jetzt Buchen center pill */
  .header__pill {
    display: inline-flex;
  }

  .header__login {
    display: flex;
  }

  .header__right {
    gap: 0.75rem;
  }
}

@media (min-width: 1100px) {
  /* Show lang toggle */
  .lang-toggle {
    display: flex;
  }

  /* Slightly more generous gap in right panel on wide screens */
  .header__right {
    gap: 0.85rem;
  }
}

/* ============================================
   MOBILE FIRST — Small screens (< 640px)
   ============================================ */
@media (max-width: 639px) {
  /* Tighter section spacing */
  .section {
    padding: 4rem 1.25rem;
  }

  /* Hero */
  .hero {
    padding: 5.5rem 2.5rem 4.5rem;
  }

  .hero__title-line {
    font-size: clamp(2.4rem, 11vw, 8.5rem);
  }

  .hero__title-line:nth-child(3) {
    font-size: clamp(1.5rem, 7vw, 5.5rem);
  }

  .hero__top {
    margin-bottom: 1.5rem;
  }

  .hero__title {
    margin-bottom: 2rem;
  }

  .hero__desc {
    font-size: 0.8rem;
    margin-left: auto;
    margin-right: auto;
  }

  /* Centre all hero copy on mobile */
  .hero__content {
    text-align: center;
  }

  /* About — reel tile + maroon tile on mobile */
  .section.about {
    padding: 0;
  }

  .about__layout {
    display: block;
    gap: 0;
  }

  /* Tile 1: full-width portrait video — section padding is 0 so no breakout needed */
  .about__visual {
    width: 100%;
  }

  .about__image {
    aspect-ratio: 9 / 16;
    animation: none;
    transform: none !important;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .about__image:hover {
    transform: none !important;
    box-shadow: none;
  }

  /* Kill scroll-reveal shift on the visual so no gap opens between tiles */
  .about__visual.reveal,
  .about__visual.reveal.exited,
  .about__visual.reveal.visible {
    opacity: 1;
    transform: none !important;
    transition: none;
  }

  /* Gradient on ::after so it renders OVER the video (::before is behind it) but under the title (z-index 2) */
  .about__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #300000 0%, #300000 8%, transparent 55%);
    pointer-events: none;
    z-index: 1;
  }

  /* Title overlaid at bottom of video, above the gradient */
  .about__image-title {
    display: block !important;
    z-index: 2;
    padding: 0 1.5rem 1.75rem;
  }

  .about__image-title h2 {
    font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
    font-size: clamp(1.6rem, 8vw, 2.4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--cream);
  }

  .about__image-title h2 em {
    font-style: italic;
    color: var(--amber);
  }

  /* Tile 2: maroon block with body + CTA — same colour as gradient end so tiles stitch */
  .about__content {
    background: #300000;
    padding: 2rem 1.5rem 3rem;
  }

  /* Hide the desktop title and card label on mobile */
  .about__title,
  .about__image-label {
    display: none;
  }

  .about__body {
    display: block;
    margin-bottom: 1.5rem;
  }

  .about__body p {
    color: var(--cream-60);
    font-size: 0.85rem;
  }

  .about__content .btn-text {
    color: var(--cream);
  }

  /* Benefits */
  .benefit-card {
    padding: 1.6rem 1.4rem;
  }

  /* Credits how-grid — stay single column on all phones */
  .credits__how-grid {
    grid-template-columns: 1fr;
  }


  /* Pricing — stack toggle on mobile */
  .pricing__toggle {
    width: 100%;
  }

  .pricing__toggle-btn {
    flex: 1;
    justify-content: center;
    padding: 0.85rem 1rem;
  }

  .price-card {
    padding: 2rem 1.5rem;
  }

  /* Footer */
  .footer__top {
    padding: 5rem 1.25rem;
  }

  .footer__bottom {
    padding: 2.5rem 1.25rem 1.25rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 1.5rem;
  }

  /* Booking / credits / membership descriptions */
  .booking__desc,
  .credits__desc,
  .membership__desc {
    font-size: 0.85rem;
  }
}

/* ============================================
   ABOUT — Image card logo overlay
   ============================================ */
.about__image-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(80px, 40%, 140px);
  opacity: 0.12;
  pointer-events: none;
  filter: brightness(10);
}

.about__image-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Mobile-only title overlay — shown via mobile media query, hidden on desktop */
.about__image-title {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* ============================================
   MEMBERSHIP PLAN CARDS
   ============================================ */
.membership__plans {
  margin-bottom: 3rem;
}

.mem-plans__group {
  margin-bottom: 2.5rem;
}

.mem-plans__group-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.mem-plans__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .mem-plans__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mem-plan-card {
  background: var(--bg-white);
  padding: 2rem 1.8rem;
  position: relative;
  transition: background 0.3s ease;
}

.mem-plan-card:hover {
  background: var(--bg-elevated);
}

.mem-plan-card--featured {
  background: var(--maroon);
  border: 1px solid rgba(200, 149, 108, 0.25);
}

.mem-plan-card--featured:hover {
  background: var(--maroon-mid);
}

.mem-plan__label {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.mem-plan__price {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.mem-plan-card--featured .mem-plan__price {
  color: var(--cream);
}

.mem-plan__credits {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

.mem-plan-card--featured .mem-plan__credits {
  color: var(--cream-60);
}

.mem-plan__note {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-bottom: 1.2rem;
}

.mem-plan-card--featured .mem-plan__note {
  color: var(--cream-30);
}

/* Mehr Infos accordion */
.mem-plan__more {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.mem-plan-card--featured .mem-plan__more {
  border-top-color: var(--border-dark);
}

.mem-plan__more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 0;
  gap: 0.5rem;
  transition: opacity 0.2s ease;
}

.mem-plan__more-btn:hover { opacity: 0.75; }

.mem-plan__more-icon {
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
  color: var(--amber);
}

.mem-plan__more-btn[aria-expanded="true"] .mem-plan__more-icon {
  transform: rotate(45deg);
}

.mem-plan__more-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.mem-plan__more-body.open {
  grid-template-rows: 1fr;
}

.mem-plan__more-body > div {
  overflow: hidden;
}

.mem-plan__desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-top: 0.75rem;
}

.mem-plan-card--featured .mem-plan__desc {
  color: var(--cream-60);
}

/* Subscribe CTA on hydrated plan cards */
.mem-plan__subscribe-btn {
  display: block;
  width: 100%;
  margin-top: 1.4rem;
  padding: 0.75rem 1rem;
  background: var(--maroon);
  color: var(--cream);
  border: none;
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.mem-plan__subscribe-btn:hover { opacity: 0.78; }

.mem-plan-card--featured .mem-plan__subscribe-btn {
  background: var(--amber);
  color: #0a0000;
}
.mem-plan-card--featured .mem-plan__subscribe-btn:hover { opacity: 0.85; }

.mem-plan-card--featured .mem-plan__desc {
  color: var(--cream-60);
}

/* ============================================
   CREDITS — Custom section
   ============================================ */
.credits__brand {
  margin-bottom: 3.5rem;
}

.credits__brand-title {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.credits__brand-sub {
  font-size: 0.92rem;
  color: var(--cream-60);
  line-height: 1.7;
}

.credits__how {
  margin-bottom: 3.5rem;
}

.credits__how-title {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}

.credits__how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .credits__how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.credits__how-card {
  background: var(--maroon-mid);
  padding: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.credits__how-card--dark {
  background: var(--bg-white);
  border: 1px solid var(--border);
}

.credits__how-card--dark .credits__how-sessions strong {
  color: var(--text);
}

.credits__how-card--dark .credits__how-sessions p {
  color: var(--text-secondary);
}

.credits__how-sessions strong {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  display: block;
  margin-bottom: 0.4rem;
}

.credits__how-sessions p {
  font-size: 0.82rem;
  color: var(--cream-60);
  line-height: 1.6;
}

.credits__how-amount {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--amber);
  white-space: nowrap;
  flex-shrink: 0;
}

.credits__buy-header {
  margin-bottom: 1.5rem;
}

.credits__buy-title {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.credits__buy-desc {
  font-size: 0.88rem;
  color: var(--cream-60);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2rem;
}

.credits__packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .credits__packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .credits__packages-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.credit-pkg {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.credit-pkg__header {
  background: var(--amber);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
}

.credit-pkg__name {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0000;
  line-height: 1;
}

.credit-pkg__body {
  background: var(--bg-elevated);
  padding: 1.25rem;
  display: flex;
  flex-direction: row;
  gap: 0;
  flex: 1;
}

.credit-pkg__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.credit-pkg__credits-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 1rem;
  margin-left: 1rem;
  border-left: 1px solid var(--border-strong);
  flex-shrink: 0;
}

.credit-pkg__count {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.04em;
}

.credit-pkg__label {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.credit-pkg__price {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.credit-pkg__per {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--amber);
}

.credit-pkg__validity {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.credit-pkg__btn {
  margin-top: auto;
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--maroon);
  border: none;
  color: var(--cream);
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
}

.credit-pkg__btn:hover {
  background: var(--maroon-mid);
}

.credit-pkg__expand {
  border-top: 1px solid var(--border-strong);
  background: var(--bg-elevated);
}

.credit-pkg__expand-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  background: none;
  border: none;
  padding: 0.6rem 1.25rem;
  cursor: pointer;
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

.credit-pkg__expand-toggle:hover {
  color: var(--text);
}

.credit-pkg__expand-icon {
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}

.credit-pkg__expand-toggle[aria-expanded="true"] .credit-pkg__expand-icon {
  transform: rotate(180deg);
}

.credit-pkg__expand-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}

.credit-pkg__expand-body--open {
  max-height: 200px;
}

.credit-pkg__expand-text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding: 0 1.25rem 1rem;
}

.credits__welcome-note {
  font-size: 0.8rem;
  color: var(--cream-30);
  padding: 1rem 0;
  border-top: 1px solid var(--border-dark);
  font-style: italic;
}

.credits__welcome-note strong {
  color: var(--amber);
  font-style: normal;
}

@media (max-width: 480px) {
  .credit-pkg__count {
    font-size: 2rem;
  }
}

/* bsport Widget collapse toggle */
.widget-collapse {
  margin-top: 2rem;
}

.widget-collapse__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  cursor: pointer;
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 1rem 0;
  transition: color 0.3s ease;
}

.widget-collapse__toggle:hover {
  color: var(--amber);
}

.widget-collapse__toggle-icon {
  transition: transform 0.35s var(--ease);
}

.widget-collapse__toggle.open .widget-collapse__toggle-icon {
  transform: rotate(180deg);
}

.widget-collapse__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}

.widget-collapse__body.open {
  grid-template-rows: 1fr;
}

.widget-collapse__body > div {
  overflow: hidden;
}

/* ============================================
   PRICING — Dark section
   ============================================ */
.pricing {
  background: var(--maroon);
}

.pricing .section-header {
  border-bottom-color: var(--border-dark);
}

.pricing .section-num {
  color: var(--cream-30);
}

.pricing .section-label {
  color: var(--amber);
}

.pricing__title {
  color: var(--cream);
}

.pricing__title em {
  color: var(--amber);
}

.pricing__toggle {
  border-color: rgba(245, 240, 235, 0.15);
}

.pricing__toggle-btn {
  color: var(--cream-30);
}

.pricing__toggle-btn.active {
  background: var(--cream);
  color: var(--maroon);
}

.pricing__toggle-btn:not(.active):hover {
  color: var(--cream);
}

.pricing__save-badge {
  background: var(--amber);
}

.pricing__grid {
  background: rgba(245, 240, 235, 0.06);
  border-color: rgba(245, 240, 235, 0.06);
}

.price-card {
  background: var(--bg-dark-elevated);
}

.price-card:hover {
  background: var(--bg-dark);
}

.price-card--featured {
  background: rgba(200, 149, 108, 0.08);
  border: 1px solid rgba(200, 149, 108, 0.2);
}

.price-card--featured:hover {
  background: rgba(200, 149, 108, 0.12);
}

.price-card__label {
  color: var(--amber);
}

.price-card__price {
  color: var(--cream);
}

.price-card__sub {
  color: var(--cream-30);
}

.price-card__list li {
  color: var(--cream-60);
  border-bottom-color: var(--border-dark);
}

.price-card__list li::before {
  color: var(--cream-30);
}

.price-card__btn {
  color: var(--cream);
  border-color: rgba(245, 240, 235, 0.2);
}

.price-card__btn:hover {
  background: var(--cream);
  color: var(--maroon);
  border-color: var(--cream);
}

.price-card__btn--primary {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}

.price-card__btn--primary:hover {
  background: var(--amber-bright);
  border-color: var(--amber-bright);
  color: #fff;
}

/* ============================================
   FAQ — Dark maroon section
   ============================================ */
.faq {
  background: var(--maroon);
}

.faq .section-header {
  border-bottom-color: var(--border-dark);
}

.faq .section-num {
  color: var(--cream-30);
}

.faq .section-label {
  color: var(--amber);
}

.faq__title {
  color: var(--cream);
}

.faq__title em {
  color: var(--amber);
}

.faq__list {
  border-top-color: var(--border-dark);
}

.faq__item {
  border-bottom-color: var(--border-dark);
}

.faq__q {
  color: var(--cream);
}

.faq__q:hover {
  color: var(--amber);
}

.faq__a p {
  color: var(--cream-60);
}

.faq__a a {
  color: var(--amber);
}

/* ============================================
   FOOTER MAP CARD
   ============================================ */
.footer__map-card {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border-dark);
  margin-bottom: 3rem;
  overflow: hidden;
}

@media (min-width: 720px) {
  .footer__map-card {
    grid-template-columns: 1fr 320px;
  }
}

.footer__map-embed {
  position: relative;
  height: 220px;
  background: var(--bg-dark);
  overflow: hidden;
}

.footer__map-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-dark);
}

.footer__map-placeholder__text {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--cream-60);
  max-width: 260px;
}

.footer__map-placeholder__btn {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  background: var(--amber);
  border: none;
  color: #0f0101;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 14px rgba(200, 149, 108, 0.3);
}

.footer__map-placeholder__btn:hover {
  background: var(--amber-bright);
  box-shadow: 0 0 22px rgba(200, 149, 108, 0.5);
}

@media (min-width: 720px) {
  .footer__map-embed {
    height: auto;
    min-height: 280px;
  }
}

.footer__map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(0.6) invert(0.88) hue-rotate(180deg) brightness(0.75) contrast(1.1);
  opacity: 0.9;
  pointer-events: auto;
}

.footer__map-info {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-left: 1px solid var(--border-dark);
}

.footer__map-label {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.5rem;
}

.footer__map-street {
  font-size: 0.82rem;
  color: var(--cream-60);
  line-height: 1.6;
}

.footer__map-sub {
  font-size: 0.72rem;
  color: var(--cream-30);
  margin-top: 0.25rem;
}

.footer__map-times {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.footer__map-times-label {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-30);
}

.footer__map-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-dark);
}

.footer__map-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer__map-row-icon {
  color: var(--cream-30);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__map-row-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.footer__map-row-name {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream-60);
  white-space: nowrap;
}

.footer__map-row-chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.footer__map-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--border-dark);
}

.footer__map-chip--transit {
  color: var(--amber);
  border-color: rgba(200, 149, 108, 0.25);
}

.footer__map-chip--car {
  color: var(--cream-30);
}

.footer__map-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(200, 149, 108, 0.3);
  padding: 0.65rem 1rem;
  align-self: flex-start;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.footer__map-directions:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: #0f0101;
}



/* ============================================
   BSPORT GHOST — off-screen render container
   ============================================ */
.bsport-ghost {
  position: fixed;
  left: -9999px;
  top: 0;
  width: 700px;
  /* No z-index here on purpose: a fixed-position element with an
     explicit z-index creates a stacking context that traps ALL
     descendants — including modals the widget opens later (login,
     booking confirmation), even though those are position:fixed
     and correctly placed on-screen. left:-9999px alone is enough
     to keep the ghost's own content off-screen. */
}

/* ============================================
   BOOKING CUSTOM CALENDAR HYDRATION UI
   ============================================ */
.booking__calendar {
  position: relative;
}

/* Week nav bar */
.booking__cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.booking__cal-nav.ready {
  opacity: 1;
  pointer-events: auto;
}

.booking__cal-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.booking__cal-nav-btn:hover { background: var(--bg-elevated); }

.booking__cal-week {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

/* Day tabs */
.booking__cal-days {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.booking__cal-days::-webkit-scrollbar { display: none; }

.booking__day-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 8px;
  min-width: 54px;
  flex: 1;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.booking__day-tab:hover {
  border-color: var(--border-strong);
  color: var(--text);
  background: var(--bg-elevated);
}
.booking__day-tab.active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--cream);
}
.booking__day-tab.today:not(.active) .booking__day-tab__name {
  color: var(--amber);
}
.booking__day-tab__name {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.booking__day-tab__num {
  font-size: 1.05rem;
  font-weight: 700;
}

/* Activity filter pills */
.booking__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  min-height: 0;
}

.booking__filter-pill {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.32rem 0.8rem;
  border: 1px solid var(--border-strong);
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}

.booking__filter-pill:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.booking__filter-pill.active {
  background: var(--text);
  color: var(--cream);
  border-color: var(--text);
}

/* Session list */
.booking__cal-sessions {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.booking__session {
  display: grid;
  grid-template-columns: 3px 1fr auto;
  align-items: stretch;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: none;
  transition: background 0.15s;
}
.booking__session:first-of-type { border-top: 1px solid var(--border); }
.booking__session:hover { background: var(--bg-elevated); }

.booking__session-accent { flex-shrink: 0; }

.booking__session-info {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.booking__session-title {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}
.booking__session-time {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.booking__session-meta {
  display: flex;
  gap: 8px;
  margin-top: 3px;
  flex-wrap: wrap;
}
.booking__session-instructor {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.booking__session-level {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.booking__session-level::before { content: '· '; }

.booking__session-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  padding: 14px 18px;
  border-left: 1px solid var(--border);
  min-width: 120px;
}

.booking__session-status {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.booking__session-status--open { color: #2d8a4e; }
.booking__session-status--soon { color: var(--amber); }
.booking__session-status--full { color: var(--text-faint); }

.booking__session-btn {
  padding: 7px 16px;
  background: var(--maroon);
  color: var(--cream);
  border: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.booking__session-btn:hover { opacity: 0.75; }

/* No sessions / next available */
.booking__no-sessions {
  padding: 40px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  border: 1px solid var(--border);
  background: var(--bg-white);
}
.booking__next-session-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 9px 22px;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s;
}
.booking__next-session-btn:hover { background: var(--bg-elevated); }

/* Responsive — mobile */
@media (max-width: 540px) {
  .booking__day-tab { min-width: 44px; padding: 8px 6px; }
  .booking__day-tab__num { font-size: 0.95rem; }
  .booking__session-action { min-width: 100px; padding: 12px 14px; }
}

/* ============================================
   SCROLLBAR — Light
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--text-faint); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1200;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  box-shadow: 0 12px 40px rgba(48, 0, 0, 0.16);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}

.cookie-banner__text {
  flex: 1 1 380px;
  min-width: 0;
}

.cookie-banner__title {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.cookie-banner__desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.cookie-banner__desc a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  font-family: 'Montserrat', 'Montserrat-fallback', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.4rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.cookie-banner__btn--necessary {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--text);
}

.cookie-banner__btn--necessary:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.cookie-banner__btn--accept {
  background: var(--amber);
  border: 1.5px solid var(--amber);
  color: #0f0101;
  box-shadow: 0 0 18px rgba(200, 149, 108, 0.35);
}

.cookie-banner__btn--accept:hover {
  background: var(--amber-bright);
  border-color: var(--amber-bright);
  box-shadow: 0 0 28px rgba(200, 149, 108, 0.55);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .cookie-banner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; }
  .cookie-banner__inner { padding: 1.25rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; }
}
