/* ═══════════════════════════════════════════
   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 – terracotta / warm red (logo-derived) */
  --brand:   #B84B3A;
  --brand-2: #D4614D;
  --brand-3: #E8907F;
  --brand-bg: rgba(184,75,58,0.07);

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

  /* Borders */
  --border:   rgba(26,16,10,0.10);
  --border-b: rgba(184,75,58,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; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { 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 { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }

.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;
  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);
}
.btn-primary:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,75,58,0.28);
}
.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);
}
.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;
  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;
}
.nav-logo {
  display: flex;
  align-items: center;
  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 {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--dark); }
.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: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--dark); transition: all var(--t); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) 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: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 72px;
}
.hero-inner {
  max-width: 660px;
  padding: 60px 0;
}
.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); }

/* ════════════════ TICKER ════════════════ */
.ticker {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.ticker-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-track span {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--muted-2);
  white-space: nowrap;
}
.ticker-track .sep { color: var(--brand); opacity: 0.6; font-size: 0.7rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ════════════════ KURSE ════════════════ */
.kurse { background: var(--bg-2); }
.kurse-head {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
}
.kurse-section-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.kurse-grid {
  display: grid;
  grid-template-columns: repeat(3, 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(2, 1fr);
}
.kurs-tile {
  background: #fff;
  padding: 36px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  transition: background var(--t), box-shadow var(--t);
  position: relative;
  cursor: pointer;
}
.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;
}
.kurs-tile.featured .kurs-info h3 { color: var(--brand); }
.kurs-info p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
.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;
}
.ziva-zitat-img {
  width: 280px;
  flex-shrink: 0;
  opacity: 0.9;
  border-radius: var(--r-lg);
}

/* ════════════════ 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);
}
.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);
}
.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; }
.k-details { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.k-row {
  display: flex;
  align-items: baseline;
  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); }
.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);
}
.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;
}
.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; }
.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; }
.footer-nav a {
  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); }
.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;
}
.footer-bottom p, .footer-bottom a { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.footer-bottom div { display: flex; gap: 20px; }

/* ════════════════ 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; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
  .ziva-band .container { flex-direction: column; gap: 48px; }
  .ziva-zitat-img { width: 200px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

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

  /* Nav – Burger sichtbar, weiß über dunklem Hero */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(253,250,247,0.98);
    padding: 48px 32px;
    gap: 20px;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(16px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; color: var(--dark); }
  .nav-burger { display: flex; }
  .nav-burger span { background: rgba(255,255,255,0.9); }
  .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 1fr auto; }
  .kurse-head { flex-direction: column; align-items: flex-start; margin-bottom: 24px; padding-bottom: 24px; }
  .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-inner { padding: 32px 0; }

  /* 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-zitat-img { display: none; }
  .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-title { font-size: clamp(3.8rem, 16vw, 5.5rem); }
  .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.18em; }
  .hero-eyebrow::before { width: 18px; }
  .hero-sub { font-size: 0.72rem; letter-spacing: 0.12em; margin-bottom: 28px; }
  .hero-inner { padding: 20px 0; }
  .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; }

  /* 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: 24px 16px; gap: 12px; }
  .kurs-num { font-size: 1.3rem; }
  .kurs-info h3 { font-size: 1.1rem; }

  /* Ticker */
  .ticker-track { gap: 24px; }
  .ticker-track span { font-size: 0.95rem; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom div { justify-content: center; }
  .footer-nav { gap: 10px; }
}

/* ════════════════ 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-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.angebote-head .section-title {
  margin-bottom: 18px;
}
.angebote-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}
.angebote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.angebot-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  transition: box-shadow var(--t), transform var(--t);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.angebot-card:hover {
  box-shadow: 0 16px 52px rgba(26,16,10,0.1);
  transform: translateY(-5px);
}
.angebot-featured {
  border-color: var(--brand);
  background: var(--bg);
  border-width: 2px;
}
.angebot-featured:hover {
  box-shadow: 0 16px 52px rgba(184,75,58,0.2);
}
/* ── Dual-option card ── */
.angebot-dual-card {
  grid-column: 1 / -1;
  max-width: 820px;
  width: 100%;
  margin-inline: auto;
}
.angebot-inner--dual {
  flex-direction: row;
  padding: 0;
  gap: 0;
}
.angebot-option {
  flex: 1;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.angebot-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  flex-shrink: 0;
  margin: 0;
}
.angebot-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--brand);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.angebot-inner {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 100%;
}
.angebot-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.angebot-type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand);
}
.angebot-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  letter-spacing: 0.06em;
  color: var(--dark);
  line-height: 1;
}
.angebot-featured .angebot-title {
  color: var(--brand);
}
.angebot-price-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 24px 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(3.2rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  color: var(--brand);
  line-height: 1;
}
.angebot-price-cur {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--brand);
  letter-spacing: 0.05em;
  align-self: flex-start;
  margin-top: 4px;
}
.angebot-price-unit {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  align-self: center;
  margin-left: 8px;
}
.angebot-price-flat {
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.angebot-price-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.angebot-price-membership {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  color: var(--brand);
  line-height: 1;
}
.angebot-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.angebot-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.4;
}
.angebot-features li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.82rem;
}
.btn-angebot-featured {
  background: var(--brand);
  font-size: 0.82rem;
}
.btn-angebot-featured:hover {
  background: var(--brand-2);
}

/* ── Standard-Flat: volle Breite, horizontales Layout ── */
.angebot-card--full {
  grid-column: span 2;
}
.angebot-card--full .angebot-inner {
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  padding: 0;
}
.angebot-full-left {
  flex: 0 0 220px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border-b);
}
.angebot-full-mid {
  flex: 1;
  padding: 40px 36px;
  display: flex;
  align-items: center;
}
.angebot-full-mid .angebot-features {
  flex: none;
  width: 100%;
}
.angebot-full-right {
  flex: 0 0 240px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border-left: 1px solid var(--border-b);
  background: rgba(184,75,58,0.04);
}
.angebot-full-right .angebot-price-block {
  border-top: none;
  border-bottom: none;
  padding: 0;
}

/* ════════════════ 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;
}
.legal-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.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); }

/* ════════════════ RESPONSIVE – ANGEBOTE ════════════════ */
@media (max-width: 768px) {
  .angebote-grid {
    grid-template-columns: 1fr;
  }
  .angebot-inner {
    padding: 32px 28px;
  }
  .angebot-inner--dual {
    flex-direction: column;
  }
  .angebot-divider {
    width: auto;
    height: 1px;
    align-self: auto;
  }
  .angebot-option {
    padding: 32px 28px;
  }

  /* ── Standard-Flat: vertikal stapeln auf Mobile ── */
  .angebot-card--full {
    grid-column: 1 / -1;
  }
  .angebot-card--full .angebot-inner {
    flex-direction: column;
    padding: 0;
  }
  .angebot-full-left {
    flex: none;
    width: 100%;
    padding: 28px 24px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .angebot-full-mid {
    flex: none;
    width: 100%;
    padding: 24px;
    border-bottom: 1px solid var(--border);
  }
  .angebot-full-right {
    flex: none;
    width: 100%;
    padding: 24px 24px 28px;
    border-left: none;
  }
  .angebot-badge {
    top: 14px;
    right: 14px;
  }
}
@media (max-width: 480px) {
  .angebot-inner {
    padding: 28px 20px;
  }
  .angebot-full-left,
  .angebot-full-mid,
  .angebot-full-right {
    padding-left: 20px;
    padding-right: 20px;
  }
  .angebot-price-membership {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .btn-hero-primary {
    width: 100%;
    justify-content: center;
  }
}

