@font-face{font-family:'Bebas Neue';font-style:normal;font-weight:400;font-display:swap;src:url('/assets/fonts/bebas-neue-400.ttf') format('truetype')}
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:300;font-display:swap;src:url('/assets/fonts/cormorant-garamond-300.ttf') format('truetype')}
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:400;font-display:swap;src:url('/assets/fonts/cormorant-garamond-400.ttf') format('truetype')}
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:600;font-display:swap;src:url('/assets/fonts/cormorant-garamond-600.ttf') format('truetype')}
@font-face{font-family:'Cormorant Garamond';font-style:italic;font-weight:300;font-display:swap;src:url('/assets/fonts/cormorant-garamond-italic-300.ttf') format('truetype')}
@font-face{font-family:'Cormorant Garamond';font-style:italic;font-weight:400;font-display:swap;src:url('/assets/fonts/cormorant-garamond-italic-400.ttf') format('truetype')}
@font-face{font-family:'Cormorant Garamond';font-style:italic;font-weight:600;font-display:swap;src:url('/assets/fonts/cormorant-garamond-italic-600.ttf') format('truetype')}
@font-face{font-family:'Inter';font-style:normal;font-weight:300;font-display:swap;src:url('/assets/fonts/inter-300.ttf') format('truetype')}
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('/assets/fonts/inter-400.ttf') format('truetype')}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('/assets/fonts/inter-500.ttf') format('truetype')}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('/assets/fonts/inter-600.ttf') format('truetype')}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;src:url('/assets/fonts/inter-700.ttf') format('truetype')}
@font-face{font-family:'Inter';font-style:normal;font-weight:800;font-display:swap;src:url('/assets/fonts/inter-800.ttf') format('truetype')}

/* ═══════════════════════════════════════════
   ZivaMovement – Design
   Style: Light, feminine, editorial, elegant
   ═══════════════════════════════════════════ */

:root {
  /* Backgrounds – warm off-white */
  --bg:      #FDFAF7;
  --bg-2:    #F7F1EB;
  --bg-3:    #F0E8E0;

  /* Dark tones – warm near-black */
  --dark:    #1A100A;
  --dark-2:  #2E1C14;
  --dark-3:  #3D2820;

  /* Brand – vivid signal red */
  --brand:   #FF0600;
  --brand-2: #FF0600;
  --brand-3: #FF0600;
  --brand-bg: rgba(255,6,0,0.08);

  /* Text */
  --text:    #1A100A;
  --text-2:  #5C3D30;
  --muted:   #9A7B6E;
  --muted-2: #C4A898;

  /* Borders */
  --border:   rgba(26,16,10,0.10);
  --border-b: rgba(255,6,0,0.18);

  /* Misc */
  --r:    6px;
  --r-lg: 16px;
  --t:    0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-head:   'Bebas Neue', 'Impact', sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }

.leaf-frame {
  position: relative;
  isolation: isolate;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--dark);
  margin-bottom: 0;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85em;
  color: var(--brand);
  letter-spacing: 0;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--t);
  min-height: 48px;
  max-width: 100%;
  white-space: normal;
}
.btn-primary:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,75,58,0.28);
}
.btn-disabled {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
  pointer-events: auto;
  filter: grayscale(0.12);
}
.btn-full { width: 100%; justify-content: center; }

.btn-hero {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--t);
  backdrop-filter: blur(8px);
  min-height: 48px;
  text-align: center;
  justify-content: center;
}
.btn-hero:hover {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}


/* ════════════════ NAV ════════════════ */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 250, 247, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  transition: background var(--t), box-shadow var(--t);
}
.nav-wrap.scrolled {
  background: rgba(253, 250, 247, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  min-width: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  min-height: 44px;
  transition: opacity var(--t);
}
.nav-logo:hover { opacity: 0.75; }
.nav-logo-img { height: 40px; width: auto; }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  color: var(--dark);
}
.nav-logo-text em { color: var(--brand); font-style: normal; }

.nav-links {
  position: fixed;
  top: 72px;
  right: max(16px, calc((100vw - 1200px) / 2 + 32px));
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: min(340px, calc(100vw - 32px));
  max-height: calc(100svh - 88px);
  padding: 14px;
  background: rgba(18,10,8,0.46);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
  backdrop-filter: blur(22px) saturate(135%);
  overflow-y: auto;
}
.nav-links.open { display: flex; }
.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 12px rgba(0,0,0,0.42);
  transition: color var(--t), background var(--t);
}
.nav-links a:hover { background: rgba(255,255,255,0.14); color: #fff; }
.nav-enrol {
  background: var(--brand) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: all var(--t) !important;
}
.nav-enrol:hover {
  background: var(--brand-2) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,75,58,0.25);
}
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  min-width: 58px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(253,250,247,0.92);
  box-shadow: 0 8px 24px rgba(26,16,10,0.10);
  backdrop-filter: blur(14px);
  transition: background var(--t), border-color var(--t), box-shadow var(--t), transform var(--t);
}
.nav-burger:hover { transform: translateY(-1px); background: rgba(255,6,0,0.88); border-color: rgba(255,255,255,0.74); }
.nav-burger span { display: block; width: 28px; height: 2px; border-radius: 999px; background: var(--dark); transition: all var(--t); }
.nav-wrap.scrolled .nav-burger { background: rgba(253,250,247,0.92); border-color: var(--border); box-shadow: 0 8px 24px rgba(26,16,10,0.10); }
.nav-wrap.scrolled .nav-burger span { background: var(--dark); }
.nav-burger.open { background: var(--brand); border-color: rgba(255,255,255,0.74); }
.nav-burger.open span { background: #fff; }
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }

/* ════════════════ HERO ════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
}
/* Fallback when no video */
.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2A1208 0%, #1A0D18 50%, #0F0A0A 100%);
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
}
/* Light-left gradient overlay – keeps video visible, text readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right, rgba(20,8,4,0.78) 0%, rgba(20,8,4,0.3) 55%, rgba(20,8,4,0.05) 100%),
    linear-gradient(to top, rgba(20,8,4,0.85) 0%, rgba(20,8,4,0.05) 45%),
    linear-gradient(to bottom, rgba(20,8,4,0.45) 0%, transparent 18%);
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: clamp(84px, 9vh, 120px) 0 clamp(40px, 6vh, 72px);
}
.hero-inner {
  width: min(86vw, 920px);
  max-width: 920px;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-mark {
  display: block;
  width: min(54vw, 578px);
  max-width: 100%;
  max-height: min(43vh, 394px);
  height: auto;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  filter: drop-shadow(0 18px 46px rgba(0,0,0,0.5));
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-3);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--brand-3);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(6rem, 14vw, 13rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 28px;
}
.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-3);
  font-size: 0.72em;
  letter-spacing: 0;
  display: block;
  line-height: 1;
}
.hero-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-scroll-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color var(--t);
}
.hero-scroll-link:hover { color: #fff; }
.scroll-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  font-size: 1rem;
  animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.hero-bottom-bar {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  background: rgba(20,8,4,0.35);
}
.hero-bar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 56px;
  flex-wrap: wrap;
}
.hb-item {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}
.hb-item span {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--brand-3);
  margin-right: 5px;
  letter-spacing: 0.04em;
}
.hb-sep { color: rgba(255,255,255,0.18); font-size: 0.55rem; }
.hb-ig {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  margin-left: auto;
  transition: color var(--t);
}
.hb-ig:hover { color: var(--brand-3); }

/* ════════════════ ABOUT ════════════════ */
.about {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-left { position: sticky; top: 120px; }
.about-right p {
  color: var(--text-2);
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.about-lead {
  font-family: var(--font-serif);
  font-size: 1.25rem !important;
  font-weight: 400;
  color: var(--dark) !important;
  line-height: 1.65;
  font-style: italic;
}
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 36px 0;
}
.fact {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  background: var(--bg-2);
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.fact:hover {
  border-color: var(--border-b);
  background: #fff;
  box-shadow: 0 4px 20px rgba(184,75,58,0.08);
}
.fact strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.fact span { font-size: 0.8rem; color: var(--muted); }

/* ════════════════ KURSE ════════════════ */
.kurse { background: var(--bg-2); border-top: 1px solid var(--border); }
.kurse-head {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  padding: 34px 112px;
  min-height: 184px;
  text-align: center;
}
.kurse-section-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.kurse-section-label.leaf-frame {
  width: min(560px, 100%);
  min-height: 116px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  padding: 28px 92px;
  text-align: center;
}
.kurse-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.kurse-grid-specials {
  grid-template-columns: repeat(3, 1fr);
}
.kurs-tile {
  background: #fff;
  padding: 36px 28px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  transition: background var(--t), box-shadow var(--t);
  position: relative;
  cursor: pointer;
  min-width: 0;
}
.kurs-tile:hover { background: var(--bg-3); }
.kurs-tile.featured { background: var(--brand-bg); }
.kurs-tile.featured:hover { background: rgba(184,75,58,0.12); }
.kurs-tile.special-tile { background: var(--bg); }
.kurs-tile.special-tile:hover { background: var(--bg-2); }

.kurs-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.special-badge {
  background: var(--bg-3);
  color: var(--brand);
}
.kurs-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: rgba(26,16,10,0.1);
  letter-spacing: 0.05em;
  line-height: 1;
}
.kurs-tile.featured .kurs-num { color: rgba(184,75,58,0.2); }
.kurs-info h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 5px;
  overflow-wrap: anywhere;
}
.kurs-tile.featured .kurs-info h3 { color: var(--brand); }
.kurs-info p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; overflow-wrap: anywhere; }
.kurs-detail-line {
  margin-top: 10px;
  margin-bottom: 0;
}
.kurs-detail-line--title {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}
.kurs-schedule-list {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}
.kurs-schedule-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding-left: 12px;
  position: relative;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}
.kurs-schedule-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 6, 0, 0.8);
}
.kurs-schedule-place {
  color: var(--dark);
  font-weight: 600;
}
.kurs-schedule-time {
  color: var(--muted);
}
.special-info-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 10px 0 2px;
  padding: 7px 10px 6px;
  border-radius: 999px;
  background: rgba(184,75,58,0.1);
  color: var(--brand);
  border: 1px solid rgba(184,75,58,0.2);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.special-info-pill::before {
  content: "i";
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: none;
}
.special-info-pill[hidden] {
  display: none;
}
.special-info-pill--book {
  margin-top: 12px;
  padding: 10px 14px 9px;
  background: linear-gradient(135deg, var(--brand), #f77449);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(184,75,58,0.28);
  animation: bookPulse 1.8s ease-in-out infinite;
}
.special-info-pill--book::before {
  content: "→";
  background: rgba(255,255,255,0.22);
  color: #fff;
}
@keyframes bookPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 10px 24px rgba(184,75,58,0.24); }
  50% { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(184,75,58,0.36); }
}
#chairdanceDateLine {
  margin-top: 6px;
  font-size: 0.74rem;
  color: var(--brand);
  letter-spacing: 0.04em;
}
#highHeelsDateLine,
#hipHopDateLine,
#privateDateLine,
#jgaDateLine {
  margin-top: 6px;
  font-size: 0.74rem;
  color: var(--brand);
  letter-spacing: 0.04em;
}
#chairdanceMetaLine {
  margin-top: 2px;
  font-size: 0.72rem;
  color: var(--muted);
}
#highHeelsMetaLine,
#hipHopMetaLine,
#privateMetaLine,
#jgaMetaLine {
  margin-top: 2px;
  font-size: 0.72rem;
  color: var(--muted);
}

.kurs-arrow {
  font-size: 1.1rem;
  color: var(--muted-2);
  transition: all var(--t);
}
.kurs-tile:hover .kurs-arrow { color: var(--brand); transform: translateX(4px); }

/* ════════════════ ZIVA BAND ════════════════ */
.ziva-band {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.ziva-band .container {
  display: flex;
  align-items: center;
  gap: 80px;
}
.ziva-definition {
  flex: 1;
  min-width: 0;
}
.ziva-def-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.ziva-word {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
}
.ziva-pos {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--brand-3);
  font-weight: 300;
  padding-top: 8px;
}
.ziva-pos em { font-style: italic; color: var(--brand-3); }
.ziva-lines {
  border-left: 2px solid var(--brand);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ziva-lines p {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  font-weight: 300;
}
/* ════════════════ INSTAGRAM ════════════════ */
.ig-section { background: var(--bg); }
.ig-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 56px;
}
.ig-desc { color: var(--muted); font-size: 0.9rem; margin-top: 10px; max-width: 440px; }

.ig-profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.ig-profile-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 28px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: #fff;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  min-width: 0;
}
.ig-profile-card:hover {
  border-color: var(--border-b);
  box-shadow: 0 8px 30px rgba(184,75,58,0.1);
  transform: translateY(-3px);
}
.ig-profile-main {
  border-color: var(--border-b);
  background: var(--brand-bg);
}
.ig-profile-icon { color: var(--brand); flex-shrink: 0; }
.ig-profile-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.ig-profile-handle {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--dark);
  overflow-wrap: anywhere;
}
.ig-profile-role {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.ig-profile-arrow {
  margin-left: auto;
  color: var(--muted-2);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--t);
}
.ig-profile-card:hover .ig-profile-arrow { color: var(--brand); transform: translateX(4px); }

/* ╔════════════════ KONTAKT ════════════════ */
.kontakt { background: var(--bg-2); border-top: 1px solid var(--border); }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.kontakt-left p { color: var(--text-2); margin: 20px 0 36px; font-size: 0.95rem; }
.kontakt-left .section-title {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 0.98;
}
.k-details { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.k-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.k-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 100px;
}
.k-row span, .k-row a { font-size: 0.9rem; color: var(--text-2); display: block; }
.k-row a:hover { color: var(--brand); }

.kontakt-response-note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--muted);
  padding-left: 14px;
  border-left: 2px solid var(--border-b);
}

.kontakt-cards { display: flex; flex-direction: column; gap: 16px; }
.k-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--t);
  min-width: 0;
}
.k-card:hover {
  box-shadow: 0 8px 32px rgba(184,75,58,0.1);
  transform: translateY(-3px);
}
.k-card--wa { border-left: 3px solid #25D366; }
.k-card--wa:hover { border-color: #25D366; box-shadow: 0 8px 32px rgba(37,211,102,0.1); }
.k-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--brand-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  transition: background var(--t);
}
.k-card--wa .k-card-icon { background: rgba(37,211,102,0.1); color: #25D366; }
.k-card-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.k-card-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.k-card-num {
  font-family: var(--font-head);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--dark);
  line-height: 1.1;
  word-break: break-all;
  overflow-wrap: anywhere;
}
.k-card-cta { font-size: 0.78rem; color: var(--muted); transition: color var(--t); }
.k-card:hover .k-card-cta { color: var(--brand); }
.k-card--wa:hover .k-card-cta { color: #25D366; }

/* ════════════════ FOOTER ════════════════ */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { padding: 40px 0; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; min-height: 44px; }
.footer-logo-img { height: 36px; width: auto; }
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #fff;
}
.footer-logo-text em { color: var(--brand-3); font-style: normal; }
.footer-nav { display: flex; gap: 32px; min-width: 0; }
.footer-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color var(--t);
}
.footer-nav a:hover { color: #fff; }
.footer-ig-links { display: flex; gap: 12px; }
.footer-ig-link {
  color: rgba(255,255,255,0.4);
  transition: color var(--t);
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
}
.footer-ig-link:hover { color: var(--brand-3); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 0;
}
.footer-bottom p, .footer-bottom a { font-size: 0.78rem; color: rgba(255,255,255,0.3); overflow-wrap: anywhere; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.footer-bottom div { display: flex; gap: 20px; }
.footer-credit a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.footer-credit a:hover {
  color: var(--brand-3);
}

/* ════════════════ REVEAL ════════════════ */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-left { position: static; }
  .about-facts { grid-template-columns: 1fr 1fr; }
  .kurse-grid { grid-template-columns: 1fr 1fr; }
  .kurse-grid-specials { grid-template-columns: 1fr 1fr; }
  .angebote-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
  .ziva-band .container { flex-direction: column; gap: 48px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .container { padding: 0 22px; }
  .section { padding: 72px 0; }

  /* Nav */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0 0;
    width: auto;
    max-height: none;
    background: rgba(18,10,8,0.50);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 34px 22px max(34px, env(safe-area-inset-bottom));
    gap: 20px;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(22px) saturate(135%);
    overflow-y: auto;
    max-width: 100vw;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: min(100%, 340px);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 12px rgba(0,0,0,0.42);
  }
  .nav-burger { display: flex; }
  .nav-wrap.scrolled .nav-burger span { background: var(--dark); }

  /* Kurse */
  .kurse-grid { grid-template-columns: 1fr; }
  .kurse-grid-specials { grid-template-columns: 1fr; }
  .kurs-tile { grid-template-columns: auto minmax(0, 1fr) auto; }
  .kurse-head { flex-direction: column; align-items: center; margin-bottom: 24px; padding: 28px 64px; }
  .kontakt-cards { gap: 12px; }
  .k-card { padding: 22px 24px; gap: 18px; }

  /* Formular – iOS-Zoom verhindern (font-size < 16px löst Zoom aus) */
  .f-row { grid-template-columns: 1fr; }
  .f-group input, .f-group select, .f-group textarea { font-size: 16px; }

  /* Instagram */
  .ig-profiles { grid-template-columns: 1fr; max-width: 480px; }
  .ig-head { margin-bottom: 36px; }
  .ig-profile-card { padding: 20px; gap: 14px; }

  /* Hero Bottom Bar */
  .hero-bottom-bar { padding: 4px 0; }
  .hero-bar-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; height: auto; }
  .hb-item { padding: 12px 16px; font-size: 0.75rem; }
  .hb-sep { display: none; }
  .hb-ig { grid-column: span 2; padding: 10px 16px; border-top: 1px solid rgba(255,255,255,0.07); margin-left: 0; justify-content: center; }

  /* Hero */
  .hero {
    height: 100svh;
    min-height: 720px;
    background: #0b0504;
  }
  .hero-video-wrap {
    inset: 0;
    overflow: hidden;
  }
  .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 300%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    transform: translate(-50%, -50%);
  }
  .hero-overlay {
    background:
      radial-gradient(circle at 52% 48%, rgba(20,8,4,0.05) 0%, rgba(20,8,4,0.38) 48%, rgba(20,8,4,0.82) 100%),
      linear-gradient(to bottom, rgba(9,4,3,0.9) 0%, rgba(9,4,3,0.34) 28%, rgba(9,4,3,0.28) 62%, rgba(9,4,3,0.92) 100%);
  }
  .hero-content {
    padding: clamp(110px, 14vh, 170px) 0 clamp(46px, 8vh, 84px);
  }
  .hero-inner {
    width: min(84vw, 720px);
    max-width: 720px;
  }
  .hero-logo-mark {
    width: min(52vw, 472px);
    max-height: min(37vh, 319px);
  }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }

  /* Abstände */
  .about-grid { gap: 36px; }
  .kontakt-grid { gap: 36px; }

  /* Kontakt-Details – lange Texte umbrechen */
  .k-row { flex-wrap: wrap; gap: 4px; }

  /* Ziva Band */
  .ziva-band { padding: 72px 0; }
  .ziva-band .container { gap: 32px; }

  /* Footer */
  .footer-nav { flex-wrap: wrap; gap: 16px; }
  .footer-inner { padding: 28px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-title { font-size: clamp(2.2rem, 11vw, 3rem); }

  /* Hero */
  .hero {
    min-height: 620px;
  }
  .hero-video {
    width: auto;
    height: 300%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-position: center center;
  }
  .hero-logo-mark {
    width: min(63vw, 327px);
    max-height: min(29vh, 220px);
  }
  .hero-title { font-size: clamp(3.35rem, 15vw, 5.1rem); line-height: 0.9; }
  .hero-eyebrow { font-size: 0.58rem; letter-spacing: 0.16em; gap: 8px; margin-bottom: 18px; }
  .hero-eyebrow::before { width: 18px; }
  .hero-sub { max-width: 310px; font-size: 0.64rem; letter-spacing: 0.12em; line-height: 1.9; margin-bottom: 28px; }
  .hero-inner { width: min(88vw, 430px); }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .btn-hero { width: 100%; justify-content: center; }

  /* Hero Bottom Bar */
  .hero-bar-inner { grid-template-columns: 1fr; }
  .hb-ig { grid-column: span 1; }

  /* About */
  .about-facts { grid-template-columns: 1fr; }
  .about-grid { gap: 24px; }
  .about-lead { font-size: 1.1rem !important; }

  /* Kontakt */
  .kontakt-grid { gap: 24px; }
  .k-label { min-width: auto; width: 100%; font-size: 0.65rem; }
  .k-row { gap: 0; padding: 12px 0; }
  .k-row span, .k-row a { font-size: 0.88rem; }
  .k-row a { min-height: 44px; display: inline-flex; align-items: center; }

  /* Instagram */
  .ig-head { margin-bottom: 24px; }
  .ig-profile-card { padding: 16px; gap: 12px; }
  .ig-profile-handle { font-size: 0.95rem; }

  /* Ziva Band */
  .ziva-band { padding: 56px 0; }
  .ziva-word { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  .ziva-def-header { margin-bottom: 18px; flex-direction: column; gap: 6px; }
  .ziva-lines { padding-left: 14px; }
  .ziva-lines p { font-size: 0.85rem; }

  /* Kurse */
  .kurs-tile { padding: 28px 16px 22px; gap: 12px; align-items: start; }
  .kurs-num { font-size: 1.3rem; }
  .kurs-info h3 { font-size: 1.1rem; }
  .kurs-arrow { padding-top: 1px; }
  .kurs-badge { position: static; grid-column: 1 / -1; justify-self: start; margin-bottom: -4px; }

  /* Footer */
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .footer-nav,
  .footer-ig-links,
  .footer-bottom div {
    justify-content: center;
    width: 100%;
  }
  .footer-nav {
    gap: 10px 16px;
    align-items: center;
  }
  .footer-bottom div {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}

@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .section-title { font-size: clamp(2rem, 10vw, 2.55rem); }
  .label { letter-spacing: 0.22em; }
  .nav-logo-img { height: 34px; }
  .hero-logo-mark { width: min(70vw, 260px); }
  .kurs-tile { grid-template-columns: minmax(0, 1fr) auto; }
  .kurs-num { display: none; }
  .ig-profile-card,
  .k-card { align-items: flex-start; }
  .footer-nav a,
  .footer-bottom p,
  .footer-bottom a { font-size: 0.72rem; }
}

/* ════════════════ HERO PRIMARY BUTTON ════════════════ */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: var(--brand);
  color: #fff;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--t);
  box-shadow: 0 4px 24px rgba(184,75,58,0.35);
}
.btn-hero-primary:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(184,75,58,0.5);
}

/* ════════════════ ANGEBOTE / PRICING ════════════════ */
.angebote {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.angebote.section {
  padding: 92px 0 108px;
}
.angebote .container {
  max-width: 1240px;
}
.angebote-head {
  text-align: center;
  margin: 0 auto 52px;
  max-width: 760px;
  min-height: 176px;
  padding: 30px 130px 28px;
  display: grid;
  place-items: center;
}
.angebote-head .section-title {
  margin: 0 auto 16px;
  max-width: 520px;
  line-height: .9;
  font-size: clamp(3.2rem, 5.8vw, 5.4rem);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #120d09;
}
.angebote-head .section-title span {
  display: block;
}
.angebote-head .section-title em {
  font-family: var(--font-head);
  font-style: normal;
  color: var(--dark);
}
.angebote-sub {
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.55;
}
.angebote-cta {
  display: flex;
  justify-content: center;
}
.btn-angebote-open {
  min-width: min(100%, 320px);
  padding: 17px 38px;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(194,24,7,.18);
}
.offers-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  padding: 24px;
  overflow-y: auto;
}
.offers-modal.open {
  display: block;
}
.offers-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 13, 9, .58);
  backdrop-filter: blur(12px);
}
.offers-modal-panel {
  position: relative;
  width: min(1120px, 100%);
  margin: 42px auto;
  background: var(--bg-2);
  border: 1px solid rgba(194,24,7,.22);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(18,13,9,.28);
  overflow: hidden;
}
.offers-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 30px 20px;
  border-bottom: 1px solid var(--border);
}
.offers-modal-head .label {
  margin-bottom: 8px;
}
.offers-modal-head h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: .9;
  color: var(--brand);
  text-transform: uppercase;
}
.offers-modal-close {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fffdfa;
  color: var(--brand);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: all var(--t);
}
.offers-modal-close:hover {
  background: var(--brand);
  color: #fff;
}
.offers-modal-body {
  padding: 30px;
}
.angebote-grid--modal {
  max-width: none;
  margin: 0;
}
.angebote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.angebot-card {
  background: #fffdfa;
  border: 2px solid var(--brand);
  border-radius: 22px;
  position: relative;
  transition: box-shadow var(--t), transform var(--t);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.angebot-card:hover {
  box-shadow: 0 16px 52px rgba(184,75,58,0.16);
  transform: translateY(-5px);
}
.angebot-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--brand);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
}
.angebot-inner {
  padding: 34px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.angebot-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.angebot-type {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--brand);
}
.angebot-title {
  font-family: var(--font-head);
  font-size: clamp(1.95rem, 2.7vw, 2.65rem);
  letter-spacing: .04em;
  color: var(--brand);
  line-height: .94;
}
.angebot-price-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.angebot-price-val {
  font-family: var(--font-head);
  font-size: clamp(3rem, 4.4vw, 4.5rem);
  letter-spacing: .04em;
  color: var(--brand);
  line-height: 1;
}
.angebot-price-cur {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--brand);
  letter-spacing: .05em;
  align-self: flex-start;
  margin-top: 4px;
}
.angebot-price-unit {
  font-size: .62rem;
  color: var(--muted);
  letter-spacing: .06em;
  align-self: center;
  margin-left: 4px;
}
.angebot-price-flat {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.angebot-price-label {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
.angebot-price-membership {
  font-family: var(--font-head);
  font-size: clamp(2.35rem, 3vw, 3.1rem);
  letter-spacing: .06em;
  color: var(--brand);
  line-height: .95;
}
.angebot-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.angebot-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.38;
}
.angebot-features li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: .82rem;
}
.btn-angebot-featured {
  background: var(--brand);
  font-size: .74rem;
  position: relative;
  min-height: 52px;
  letter-spacing: .12em;
}
.btn-angebot-main {
  margin-top: auto;
}
.btn-angebot-featured:hover {
  background: var(--brand-2);
}
.btn-angebot-featured.is-loading {
  pointer-events: none;
  color: transparent;
}
.btn-angebot-featured.is-loading::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-top-color: transparent;
  animation: classic-loader-spin .8s linear infinite;
}
.angebot-availability-note {
  margin-top: 6px;
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}

@media (max-width: 1000px) {
  .angebote-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .offers-modal {
    padding: 12px;
  }
  .offers-modal-panel {
    margin: 18px auto;
    border-radius: 20px;
  }
  .offers-modal-head {
    padding: 22px 18px 16px;
    align-items: flex-start;
  }
  .offers-modal-body {
    padding: 18px;
  }
  .angebote-head {
    margin-bottom: 40px;
    padding: 28px 62px;
    min-height: 164px;
  }
  .kurse-section-label.leaf-frame { padding-left: 62px; padding-right: 62px; }
  .angebote .container {
    max-width: none;
  }
  .angebote-head .section-title {
    max-width: 440px;
    font-size: clamp(2.5rem, 10vw, 3.8rem);
  }
  .angebot-inner {
    padding: 28px 24px 24px;
  }
  .angebot-badge {
    top: 14px;
    right: 14px;
  }
}

@media (max-width: 480px) {
  .btn-angebote-open {
    width: 100%;
  }
  .offers-modal {
    padding: 8px;
  }
  .offers-modal-body {
    padding: 14px;
  }
  .angebote-grid {
    gap: 12px;
  }
  .angebote-head {
    max-width: 100%;
  }
  .kurse-head,
  .kurse-section-label.leaf-frame { padding-left: 36px; padding-right: 36px; }
  .angebote-head .section-title {
    max-width: 260px;
    font-size: clamp(2.3rem, 12vw, 3.2rem);
  }
  .angebot-inner {
    padding: 24px 20px 22px;
  }
  .angebot-price-membership {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }
  .angebot-features li {
    font-size: .8rem;
  }
}

/* ════════════════ ZIVA CTA BUTTON ════════════════ */
.ziva-cta {
  margin-top: 40px;
}
.btn-ziva-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.75);
  padding: 13px 30px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--t);
  backdrop-filter: blur(8px);
}
.btn-ziva-cta:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,75,58,0.38);
}

/* ════════════════ LEGAL PAGES ════════════════ */
.legal-page {
  min-height: 100vh;
  background: var(--bg);
  padding-top: 72px;
}
.legal-hero {
  background: var(--dark);
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-hero .label {
  color: var(--brand-3);
}
.legal-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1;
  margin-top: 8px;
}
.legal-content {
  padding: 80px 0 120px;
  max-width: 760px;
}
.legal-content h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin: 28px 0 10px;
}
.legal-content p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}
.legal-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.legal-content a:hover {
  color: var(--brand-2);
}
.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-content ul li {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 4px;
}
.legal-placeholder {
  display: inline-block;
  background: rgba(184,75,58,0.1);
  border: 1px dashed var(--brand);
  border-radius: 4px;
  padding: 1px 8px;
  color: var(--brand);
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: text;
}
.legal-notice {
  background: var(--brand-bg);
  border: 1px solid var(--border-b);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  margin-bottom: 40px;
}
.legal-notice p {
  font-size: 0.85rem;
  color: var(--brand);
  margin-bottom: 0;
  font-weight: 500;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--t);
  margin-bottom: 48px;
}
.legal-back:hover { color: var(--brand); }

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .btn-hero-primary {
    width: 100%;
    justify-content: center;
  }
}

/* ════════════════ MEMBERSHIP LANDING ════════════════ */
.simple-confirm-wrap {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
}
.simple-confirm-card {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(40, 20, 10, 0.06);
}
.simple-confirm-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 12px;
}
.simple-confirm-card h1 {
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  font-size: clamp(2.1rem, 7vw, 3.2rem);
  line-height: 1;
  margin-bottom: 14px;
}
.simple-confirm-card p {
  color: var(--text-2);
  margin-bottom: 0;
}
.simple-confirm-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════ LEGAL MODAL ════════════════ */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
}
.legal-modal.open { display: block; }
.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 3, 0.68);
  backdrop-filter: blur(3px);
}
.legal-modal-panel {
  position: relative;
  width: min(900px, calc(100% - 40px));
  max-height: calc(100vh - 60px);
  margin: 30px auto;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  max-width: calc(100vw - 40px);
}
.legal-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.legal-modal-head h2 {
  margin: 0;
  font-family: var(--font-head) !important;
  font-size: 2.2rem !important;
  letter-spacing: 0.05em !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  line-height: 1;
}
.legal-modal-close {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-2);
}
.legal-modal-body {
  overflow: auto;
  padding: 22px 24px 28px;
  overflow-wrap: anywhere;
}
.legal-entry h3 {
  font-family: var(--font-head) !important;
  font-size: 1.45rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 20px 0 10px;
  color: var(--dark);
  font-weight: 400;
}
.legal-entry p {
  font-family: var(--font-body) !important;
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0 0 12px;
  overflow-wrap: anywhere;
}
.legal-entry a {
  color: var(--brand);
  text-decoration: underline;
}
body.modal-open { overflow: hidden; }

@media (max-width: 520px) {
  .legal-modal-panel {
    width: calc(100% - 20px);
    max-width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
    margin: 10px auto;
    border-radius: 12px;
  }
  .legal-modal-head {
    padding: 16px 14px;
    gap: 10px;
  }
  .legal-modal-head h2 {
    font-size: 1.75rem !important;
    overflow-wrap: anywhere;
  }
  .legal-modal-body {
    padding: 16px 14px 20px;
  }
  .legal-entry h3 {
    font-size: 1.18rem !important;
  }
  .legal-entry p {
    font-size: 0.92rem;
    line-height: 1.62;
  }
}


.btn-primary,
.btn-full,
.btn-angebot-featured {
  justify-content: center !important;
  text-align: center !important;
}

