/* =================================================================
   tangokult — Landingpage
   Farbtoken: Night Blue #141B5E · Antique Gold #D9A646
              Sage Green #81C784 · Off-White #FAFAF8
   ================================================================= */

:root {
  --night-blue: #141B5E;
  --night-blue-deep: #0C1140;
  --night-blue-soft: #232B78;
  --copper: #D9A646;
  --copper-light: #E8BC6E;
  --sage: #81C784;
  --sage-deep: #5DA563;
  --off-white: #FAFAF8;
  --cream: #F5F3EE;
  --ink: #20203A;
  --ink-soft: #565672;

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;

  --max-width: 1180px;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* subtle plaster-like noise texture, echoing the logo photo wall */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.eyebrow-dark { color: var(--copper); }

.section-title { margin-bottom: 18px; color: var(--off-white); }
.section-title-dark { color: var(--night-blue); }

.section-lead {
  font-size: 1.15rem;
  color: rgba(250, 250, 248, 0.78);
  max-width: 620px;
  margin-bottom: 56px;
}
.section-lead-dark { color: var(--ink-soft); }

em { font-style: italic; color: var(--copper-light); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 1.5px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--copper);
  color: var(--off-white);
  box-shadow: 0 8px 24px -8px rgba(184, 115, 51, 0.55);
}
.btn-primary:hover { background: var(--copper-light); transform: translateY(-2px); }
.btn-primary:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; }

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(250, 250, 248, 0.35);
}
.btn-ghost:hover { border-color: var(--off-white); transform: translateY(-2px); }
.btn-ghost:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; }

.btn-large { padding: 18px 40px; font-size: 1.05rem; }

.text-link {
  color: var(--copper);
  font-weight: 700;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: opacity var(--transition);
}
.text-link:hover { opacity: 0.7; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 2px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--night-blue-deep);
  box-shadow: 0 4px 28px -10px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--off-white);
}
.logo-knot {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-word {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  color: rgba(250, 250, 248, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--copper-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.main-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.main-nav a:not(.nav-cta):hover { color: var(--off-white); }

.nav-cta {
  background: var(--copper);
  color: var(--off-white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--copper-light); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--off-white);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse 140% 90% at 50% 0%, var(--night-blue-soft) 0%, var(--night-blue) 45%, var(--night-blue-deep) 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero-spotlight {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 226, 175, 0.16) 0%, rgba(255, 226, 175, 0.05) 35%, transparent 70%);
  z-index: 0;
  animation: spotlightDrift 14s ease-in-out infinite;
}
@keyframes spotlightDrift {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.hero-knot {
  position: absolute;
  right: -120px;
  bottom: -100px;
  width: 620px;
  height: 620px;
  object-fit: contain;
  opacity: 0.14;
  z-index: 0;
  animation: knotFloat 18s ease-in-out infinite;
}
@keyframes knotFloat {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-14px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 100px;
  max-width: 760px;
}

.hero h1 { color: var(--off-white); margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--copper-light); }

.hero-sub {
  font-size: 1.2rem;
  color: rgba(250, 250, 248, 0.82);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-note {
  font-size: 0.92rem;
  color: rgba(250, 250, 248, 0.6);
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(250, 250, 248, 0.4);
  border-radius: 16px;
  z-index: 1;
}
.scroll-hint span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 4px;
  margin-left: -2px;
  background: var(--copper-light);
  border-radius: 50%;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: 8px; opacity: 1; }
  70% { top: 24px; opacity: 0.2; }
  100% { top: 24px; opacity: 0; }
}

/* ---------- Section base ---------- */
.section { padding: 110px 0; position: relative; }
.section-light { background: var(--off-white); }
.section-dark {
  background: var(--night-blue);
  color: var(--off-white);
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 90% 10%, rgba(184,115,51,0.10), transparent 60%);
  pointer-events: none;
}

/* ---------- Intro / Willkommen ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: start;
}
.intro-text h2 { color: var(--night-blue); margin-bottom: 26px; }
.intro-text p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 18px; max-width: 560px; }

.intro-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-left: 2px solid var(--cream);
  padding-left: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--copper);
  font-weight: 600;
}
.stat-label { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Kurse ---------- */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.course-card {
  background: rgba(250, 250, 248, 0.04);
  border: 1px solid rgba(250, 250, 248, 0.14);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.course-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 115, 51, 0.5);
  background: rgba(250, 250, 248, 0.07);
}

.course-card-accent {
  border-color: var(--copper);
  background: rgba(184, 115, 51, 0.08);
}
.course-card-accent:hover { background: rgba(184, 115, 51, 0.13); }

.course-tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
}
.course-card-head h3 {
  color: var(--off-white);
  margin-top: 8px;
  margin-bottom: 2px;
}
.course-sub {
  font-size: 0.92rem;
  color: rgba(250,250,248,0.55);
  margin-bottom: 18px;
}
.course-desc {
  color: rgba(250,250,248,0.78);
  font-size: 0.98rem;
  margin-bottom: 22px;
  flex-grow: 1;
}
.course-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
}
.course-meta li {
  font-size: 0.88rem;
  color: rgba(250,250,248,0.7);
  padding-left: 18px;
  position: relative;
}
.course-meta li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--copper-light);
}
.course-link {
  font-weight: 700;
  color: var(--copper-light);
  font-size: 0.92rem;
  transition: opacity var(--transition);
}
.course-link:hover { opacity: 0.7; }

/* ---------- Termine / Schedule ---------- */
.schedule-group { margin-bottom: 56px; }
.schedule-group:last-child { margin-bottom: 0; }
.schedule-group-title {
  color: var(--night-blue);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.schedule-group-sub {
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 600px;
}

.schedule-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.schedule-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 22px 26px;
  border-left: 4px solid var(--copper);
  transition: transform var(--transition), box-shadow var(--transition);
}
.schedule-card:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 28px -16px rgba(26,35,126,0.25);
}

.schedule-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  color: var(--night-blue);
}
.schedule-day {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.schedule-daynum {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.schedule-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}
.schedule-time { font-weight: 700; color: var(--ink); }
.schedule-detail { font-size: 0.9rem; color: var(--ink-soft); }

.schedule-btn {
  flex-shrink: 0;
  background: var(--night-blue);
  color: var(--off-white);
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.88rem;
  transition: background var(--transition);
}
.schedule-btn:hover { background: var(--copper); }

.weekly-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 26px;
  border-top: 1px solid var(--cream);
}
.weekly-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: baseline;
  gap: 6px 18px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--cream);
}
.weekly-day {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.weekly-course {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--night-blue);
  font-size: 1.05rem;
}
.weekly-time {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}
.weekly-note {
  grid-column: 2 / -1;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ---------- Preise ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--copper);
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -18px rgba(20,27,94,0.22);
}
.price-card-accent {
  background: rgba(184,115,51,0.07);
  border-top-color: var(--night-blue);
}

.price-card h3 {
  color: var(--night-blue);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.price-tag {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 14px;
}
.price-unit {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.price-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 18px;
  flex-grow: 1;
}
.price-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.price-meta li {
  font-size: 0.86rem;
  color: var(--ink-soft);
  padding-left: 17px;
  position: relative;
}
.price-meta li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.price-footnote {
  margin-top: 36px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 680px;
}
.price-footnote-link {
  color: var(--copper);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(184,115,51,0.35);
  transition: color var(--transition);
}
.price-footnote-link:hover { color: var(--night-blue); }

/* ---------- Milonga ---------- */
.milonga-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 640px;
}
.milonga-text .section-lead { margin-bottom: 36px; }
.milonga-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.milonga-meta-item { display: flex; flex-direction: column; gap: 6px; }
.milonga-meta-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  font-weight: 700;
}
.milonga-meta-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--off-white);
}

/* ---------- About / Über uns ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--night-blue);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo.photo-missing img { display: none; }
.photo-fallback {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(160deg, var(--night-blue-soft), var(--night-blue-deep));
  color: rgba(250,250,248,0.5);
}
.about-photo.photo-missing .photo-fallback { display: flex; }
.photo-fallback svg { width: 70px; height: 70px; color: var(--copper); opacity: 0.7; }
.photo-fallback span { font-size: 0.85rem; letter-spacing: 0.05em; }

.about-text h2 { color: var(--night-blue); margin-bottom: 22px; }
.about-text p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 18px; max-width: 560px; }
.about-signoff {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--night-blue) !important;
  font-size: 1.15rem;
  margin-top: 28px;
}
.about-signoff span { font-style: normal; font-weight: 600; color: var(--copper); }

/* ---------- CTA ---------- */
.section-cta {
  background: linear-gradient(160deg, var(--night-blue) 0%, var(--night-blue-deep) 100%);
  color: var(--off-white);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-inner {
  max-width: 640px;
  position: relative;
  z-index: 1;
}
.cta-knot {
  width: 100px;
  height: 100px;
  object-fit: contain;
  opacity: 0.9;
  margin: 0 auto 28px;
  display: block;
}
.section-cta h2 { color: var(--off-white); margin-bottom: 20px; }
.cta-sub {
  color: rgba(250,250,248,0.78);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto 24px;
  text-align: left;
}
.cta-form-label {
  font-size: 0.82rem;
  color: rgba(250,250,248,0.65);
  font-weight: 500;
}
.cta-select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(250,250,248,0.25);
  background-color: rgba(250,250,248,0.06);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23D9A646'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
.cta-select:hover,
.cta-select:focus-visible {
  border-color: var(--copper);
  background-color: rgba(250,250,248,0.1);
}
.cta-select option {
  color: var(--ink);
  background: var(--off-white);
}

.cta-note {
  font-size: 0.88rem;
  color: rgba(250,250,248,0.5);
}

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-top: 3px solid var(--copper);
}
.contact-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--night-blue);
  font-weight: 600;
  transition: color var(--transition);
}
.contact-value-static { font-weight: 600; }
a.contact-value:hover { color: var(--copper); }
.contact-note {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--night-blue-deep);
  color: rgba(250,250,248,0.7);
  padding: 64px 0 36px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--off-white);
}
.footer-brand .logo-knot { width: 26px; height: 26px; }
.footer-brand .logo-word { font-size: 1.2rem; }
.footer-tagline { font-size: 0.92rem; max-width: 420px; }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 0.9rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--copper-light); }
.footer-legal { display: flex; gap: 20px; font-size: 0.82rem; }
.footer-legal a { text-decoration: underline; text-decoration-color: rgba(250,250,248,0.3); transition: color var(--transition); }
.footer-legal a:hover { color: var(--off-white); }
.footer-copy { font-size: 0.8rem; color: rgba(250,250,248,0.45); margin-top: 8px; }

/* ---------- Rechtstext-Seiten (Impressum / Datenschutz) ---------- */
.legal-hero {
  background: var(--night-blue);
  color: var(--off-white);
  padding: 150px 0 56px;
}
.legal-hero .eyebrow { margin-bottom: 16px; }
.legal-hero h1 {
  color: var(--off-white);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
}

.legal-content {
  padding: 64px 0 100px;
}
.legal-body {
  max-width: 720px;
  margin: 0 auto;
}
.legal-body h2 {
  color: var(--night-blue);
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  color: var(--night-blue);
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-body p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: 16px;
}
.legal-body ul {
  margin: 0 0 16px 0;
  padding-left: 0;
}
.legal-body ul li {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.legal-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--copper);
}
.legal-sublist {
  margin-top: 10px;
  padding-left: 4px;
}
.legal-sublist li {
  padding-left: 18px;
}
.legal-sublist li::before {
  width: 4px; height: 4px;
  background: var(--sage-deep);
  top: 11px;
}
.legal-body h2 .agb-par {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--copper);
  text-transform: uppercase;
  font-weight: 700;
  margin-right: 6px;
}
.legal-body strong { color: var(--ink); }
.legal-body a { color: var(--copper); text-decoration: underline; text-decoration-color: rgba(184,115,51,0.3); }
.legal-body a:hover { color: var(--night-blue); }
.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.legal-body table th,
.legal-body table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--cream);
  color: var(--ink-soft);
  vertical-align: top;
}
.legal-body table th {
  color: var(--night-blue);
  font-weight: 700;
  white-space: nowrap;
}
.price-fn {
  font-size: 0.86rem;
  color: rgba(250,250,248,0.65);
  margin-top: 8px;
  margin-bottom: 0;
  font-style: italic;
}
.price-fn a { color: var(--copper-light); }
.price-fn--dark { color: var(--ink-soft); }
.price-fn--dark a { color: var(--copper); }

/* ============ Preisseite: farbige Blöcke ============ */
.prices-intro {
  color: rgba(250,250,248,0.7);
  font-size: 0.92rem;
  margin-top: 12px;
}

/* Block-Basis */
.prices-block { padding: 80px 0; }

.prices-block--dark {
  background: var(--night-blue);
  color: var(--off-white);
  position: relative;
}
.prices-block--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 90% 10%, rgba(217,166,70,0.08), transparent 60%);
  pointer-events: none;
}

.prices-block--light { background: var(--off-white); }

.prices-block--copper { border-top: 4px solid var(--copper); }
.prices-block--sage   { border-top: 4px solid var(--sage); }

/* Block-Header (Nummer + Titel) */
.prices-block-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
}
.prices-block-header--dark { color: var(--ink); }

.prices-block-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--copper-light);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
}
.prices-block-num--dark { color: var(--copper); opacity: 1; }
.prices-block-num--sage { color: var(--sage-deep); }

.prices-block-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--off-white);
  margin-bottom: 6px;
}
.prices-block-title--dark { color: var(--night-blue); }

.prices-block-sub {
  color: rgba(250,250,248,0.7);
  font-size: 1rem;
}
.prices-block-sub--dark { color: var(--ink-soft); }

/* Tarif-Karten (Mitgliedschaft) */
.prices-tariff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.tariff-card {
  background: rgba(250,250,248,0.06);
  border: 1px solid rgba(250,250,248,0.14);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.tariff-card--highlight {
  background: rgba(217,166,70,0.1);
  border-color: var(--copper);
}
.tariff-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 10px;
}
.tariff-card--highlight .tariff-label { color: var(--copper-light); }
.tariff-desc {
  color: rgba(250,250,248,0.75);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.tariff-desc small { display: block; font-size: 0.82rem; opacity: 0.75; margin-top: 3px; }
.tariff-prices { margin-bottom: 8px; }
.tariff-price-main {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.1;
}
.tariff-per { font-family: var(--font-body); font-size: 0.85rem; font-weight: 400; color: rgba(250,250,248,0.6); margin-left: 4px; }
.tariff-price-reduced { font-size: 0.88rem; color: rgba(250,250,248,0.55); }
.tariff-extra { font-size: 0.82rem; color: rgba(250,250,248,0.45); margin-top: 8px; font-style: italic; }

/* Konditionen-Zeile */
.prices-conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  align-items: center;
  padding: 16px 20px;
  background: rgba(250,250,248,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(250,250,248,0.1);
  margin-bottom: 36px;
  font-size: 0.88rem;
  color: rgba(250,250,248,0.7);
}
.conditions-item { padding: 0 10px; }
.conditions-sep { color: var(--copper-light); opacity: 0.5; }

/* Vorteile-Block (Mitgliedschaft) */
.prices-benefits {
  background: rgba(250,250,248,0.04);
  border-left: 3px solid var(--copper);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
}
.prices-benefits-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--copper-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-bottom: 14px;
}
.prices-benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  margin-bottom: 14px;
}
.prices-benefits-list li {
  font-size: 0.95rem;
  color: rgba(250,250,248,0.8);
  padding-left: 18px;
  position: relative;
}
.prices-benefits-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
}

/* Tabellen-Gruppen (Kurse & Einzelbuchungen) */
.prices-table-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.prices-table-block {
  padding: 28px 0;
  border-top: 1px solid var(--cream);
}
.prices-table-block:first-child { border-top: none; padding-top: 0; }

.prices-table-title {
  font-size: 1.2rem;
  color: var(--night-blue);
  margin-bottom: 6px;
}
.prices-table-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.prices-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}
.prices-table thead tr {
  background: var(--night-blue);
  color: var(--off-white);
}
.prices-table thead th {
  padding: 10px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.prices-table tbody tr { border-bottom: 1px solid var(--cream); }
.prices-table tbody tr:last-child { border-bottom: none; }
.prices-table tbody td {
  padding: 12px 16px;
  color: var(--ink-soft);
  vertical-align: middle;
}
.prices-table tbody td strong { color: var(--ink); }
.prices-table tbody td:nth-child(2) strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--copper);
}

/* Copper-Block Tabellen-Hintergrund */
.prices-block--copper .prices-table tbody tr:nth-child(even) { background: var(--cream); }
.prices-block--sage .prices-table tbody tr:nth-child(even) { background: rgba(129,199,132,0.06); }

/* Sage-Akzent für Tabellen-Header in Sage-Block */
.prices-block--sage .prices-table thead tr { background: var(--sage-deep); }

/* Rechtliche Fußzeile */
.prices-legal-footer {
  background: var(--cream);
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.prices-legal-footer p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.prices-legal-footer a { color: var(--copper); text-decoration: underline; }

/* Responsive */
@media (max-width: 760px) {
  .prices-tariff-grid { grid-template-columns: 1fr; }
  .prices-benefits-list { grid-template-columns: 1fr; }
  .prices-conditions { flex-direction: column; align-items: flex-start; gap: 6px; }
  .conditions-sep { display: none; }
  .prices-block { padding: 56px 0; }
  .prices-block-header { gap: 16px; }
  .prices-block-num { font-size: 2.5rem; }
  .prices-table thead th,
  .prices-table tbody td { padding: 10px 12px; }
  .prices-table { font-size: 0.88rem; }
}


.legal-intro {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  color: rgba(250,250,248,0.7);
  margin-bottom: 20px;
  transition: color var(--transition);
}
.legal-back:hover { color: var(--off-white); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .intro-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .course-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: var(--night-blue-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 24px 28px;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }
  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid rgba(250,250,248,0.08); }
  .main-nav a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .nav-toggle { display: flex; }

  .section { padding: 76px 0; }
  .hero { margin-top: 84px; min-height: calc(100vh - 84px); }
  .hero-inner { padding-top: 56px; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .schedule-card { flex-wrap: wrap; gap: 14px; }
  .schedule-btn { width: 100%; text-align: center; }

  .weekly-item {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 12px 4px;
  }
  .weekly-time { text-align: left; }
  .weekly-note { grid-column: 1; }

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

  .container { padding: 0 22px; }
}
