/* ---------- LuheYoga | Janina Grupp ---------- */

:root {
  --sage-50:  #f5f7f1;
  --sage-100: #e8eee0;
  --sage-200: #d2dcc6;
  --sage-400: #9bb08c;     /* logo green */
  --sage-500: #819a72;
  --sage-600: #5d7a52;
  --sage-700: #3f5638;
  --cream:    #faf7f1;
  --ink:      #2f3a2a;
  --ink-soft: #5a6553;
  --line:     #e3e6dc;
  --white:    #ffffff;
  --shadow:   0 12px 40px -16px rgba(63,86,56,.25);
  --radius:   18px;
  --radius-sm:10px;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.65;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--sage-600); text-decoration: none; }
a:hover { color: var(--sage-700); }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,241,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: auto; height: 64px; }
/* Logo enthält bereits Schriftzug -> Textversion nur für Screenreader/SEO */
.brand-text {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.nav-list {
  display: flex; gap: 26px; list-style: none; margin: 0; padding: 0;
  align-items: center;
}
.nav-list a {
  color: var(--ink-soft); font-weight: 500; font-size: .95rem;
  position: relative; padding: 6px 0;
}
.nav-list a:hover { color: var(--sage-700); }
.nav-list a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--sage-400); transform: scaleX(0);
  transition: transform .25s ease; transform-origin: left;
}
.nav-list a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--sage-600); color: var(--white) !important;
  padding: 8px 18px !important; border-radius: 999px;
}
.nav-cta:hover { background: var(--sage-700); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 38px; height: 38px; padding: 0;
  flex-direction: column; gap: 5px; justify-content: center; align-items: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--sage-700); border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 110px;
  background:
    radial-gradient(ellipse at 80% 20%, var(--sage-100) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 100%, var(--sage-50) 0%, transparent 50%),
    var(--cream);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 4px;
  font-size: .78rem; font-weight: 600;
  color: var(--sage-600); margin: 0 0 18px;
}
.eyebrow.center { text-align: center; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.05; margin: 0 0 22px;
  color: var(--sage-700);
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: italic; color: var(--sage-500);
}
.lead {
  font-size: 1.12rem; color: var(--ink-soft);
  max-width: 520px; margin: 0 0 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--sage-600); color: var(--white); }
.btn-primary:hover { background: var(--sage-700); color: var(--white); }
.btn-ghost {
  background: transparent; color: var(--sage-700);
  border-color: var(--sage-400);
}
.btn-ghost:hover { background: var(--sage-100); color: var(--sage-700); }

.hero-art {
  position: relative; aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-blob {
  position: absolute; inset: 8% 8% 8% 8%;
  background: radial-gradient(circle at 40% 40%, var(--sage-200), var(--sage-100) 60%, transparent 75%);
  border-radius: 50%;
  filter: blur(2px);
}
.hero-lotus {
  position: relative; z-index: 1;
  width: 88%; height: auto; max-width: 460px;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

/* ---------- Sections ---------- */
.section {
  padding: 90px 0;
}
.section-light { background: var(--white); }
.section-soft  { background: var(--sage-50); }
.section-accent {
  background: linear-gradient(135deg, var(--sage-100), var(--sage-200));
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: var(--sage-700);
  margin: 0 0 18px;
  letter-spacing: -0.3px;
}
.section-title.center { text-align: center; }
.section-intro {
  max-width: 640px; margin: 0 auto 50px;
  color: var(--ink-soft); font-size: 1.05rem;
}
.center { text-align: center; }

/* Zitat unter Sektions-Überschrift */
.section-quote {
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
}
.section-quote blockquote {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.3vw, 1.55rem);
  line-height: 1.35;
  color: var(--sage-600);
}
.section-quote figcaption {
  font-size: .88rem;
  letter-spacing: .5px;
  color: var(--ink-soft);
}

/* ---------- Cards (Angebot) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--sage-200);
}
.card-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--sage-100);
  color: var(--sage-700);
  border-radius: 14px;
  margin-bottom: 20px;
}
.card-icon svg { width: 32px; height: 32px; }
.card h3 {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 600;
  margin: 0 0 10px; color: var(--sage-700);
}
.card p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* ---------- Two-Column Layouts ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}
.two-col.reverse .two-col-card { order: -1; }

.check-list {
  list-style: none; padding: 0; margin: 20px 0 32px;
}
.check-list li {
  position: relative; padding-left: 30px;
  margin-bottom: 10px; color: var(--ink-soft);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 16px; height: 9px;
  border-left: 2px solid var(--sage-500);
  border-bottom: 2px solid var(--sage-500);
  transform: rotate(-45deg);
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}
.quote-mark {
  position: absolute; top: -10px; left: 24px;
  font-family: var(--serif); font-size: 7rem;
  color: var(--sage-200); line-height: 1;
}
.quote-card p {
  font-family: var(--serif);
  font-size: 1.55rem; line-height: 1.35;
  color: var(--sage-700);
  margin: 0;
}
.quote-author {
  margin-top: 20px !important;
  font-family: var(--sans) !important;
  font-size: .9rem !important;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--sage-500) !important;
}

/* ---------- Kids ---------- */
.kids-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}
.kids-logo {
  width: 100%; max-width: 420px; height: auto;
  margin: 0 auto; display: block;
}

.age-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 28px 0 32px;
}
.age {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 18px;
}
.age h4 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.2rem; color: var(--sage-700);
}
.age p { margin: 0; font-size: .88rem; color: var(--ink-soft); }

/* ---------- Über mich ---------- */
.about { max-width: 780px; margin: 0 auto; }
.about-portrait {
  display: flex; justify-content: center;
  margin: 0 auto 30px;
}
.about-portrait img {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 30% 28%;
  image-orientation: from-image;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
  background: var(--sage-100);
}
@media (min-width: 700px) {
  .about-portrait img { width: 240px; height: 240px; }
}

/* "Ab Herbst 2026" Badge */
.badge-soon {
  display: inline-block;
  background: var(--sage-100);
  color: var(--sage-700);
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 6px;
  white-space: nowrap;
}
.card-soon, .age-soon, .schedule-soon {
  position: relative;
}
.card-soon { background: var(--sage-50); }
.card-soon h3 { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.age-soon { background: var(--sage-50); }
.age-soon h4 { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.schedule-soon { background: var(--sage-50); }
.schedule-soon span:nth-child(2) { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.about-lead {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-style: italic;
  color: var(--sage-600);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.4;
}
.about-text p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.about-text strong { color: var(--sage-700); font-weight: 600; }
.about-text em { color: var(--sage-600); font-style: italic; }
.about-closing {
  text-align: center;
  margin-top: 28px !important;
  padding: 24px 28px;
  background: var(--sage-50);
  border-left: 3px solid var(--sage-400);
  border-radius: var(--radius-sm);
}
.about-badges {
  justify-content: center;
  margin-top: 36px !important;
}

/* Über-mich: Galerie unten */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.about-gallery-item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--sage-100);
  box-shadow: 0 14px 40px -20px rgba(63,86,56,.4);
}
.about-gallery-item img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  image-orientation: from-image;
}
@media (max-width: 640px) {
  .about-gallery { grid-template-columns: 1fr; gap: 14px; }
  .about-gallery-item img { height: 280px; }
}
.badges {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.badges li {
  background: var(--sage-100);
  color: var(--sage-700);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: .85rem; font-weight: 500;
}

.portrait-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}
.portrait-logo { width: 80%; max-width: 280px; margin: 0 auto 16px; }
.portrait-tag {
  margin: 0;
  font-size: .82rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--sage-500);
}

/* ---------- Kursplan ---------- */
.schedule {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  margin: 40px 0 20px;
}
.schedule-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.2fr 1fr;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.schedule-row:last-child { border-bottom: 0; }
.schedule-row:not(.schedule-head):hover { background: var(--sage-50); }
.schedule-head {
  background: var(--sage-100);
  font-size: .78rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--sage-700); font-weight: 600;
}
.schedule-row span:first-child { font-weight: 600; color: var(--sage-700); }

/* CMS-Variante: Kursplan kommt als Markdown-Tabelle (acc-web). Wir stylen
   das gerenderte <table> so, dass es exakt wie die statische .schedule-Grid
   aussieht (Salbei-Kopf, Zeilen-Trenner, Hover). Auf der statischen Seite
   gibt es kein .cms-table, daher harmlos. */
.schedule.cms-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
}
.schedule.cms-table thead th {
  background: var(--sage-100);
  color: var(--sage-700);
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  padding: 16px 24px;
}
.schedule.cms-table tbody td {
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  vertical-align: middle;
}
.schedule.cms-table tbody tr:hover { background: var(--sage-50); }
.schedule.cms-table tbody td:first-child {
  font-weight: 600;
  color: var(--sage-700);
}
@media (max-width: 640px) {
  .schedule.cms-table { overflow-x: auto; }
  .schedule.cms-table thead th,
  .schedule.cms-table tbody td {
    padding: 12px 14px;
    font-size: .9rem;
    white-space: nowrap;
  }
}

.note {
  color: var(--ink-soft); font-style: italic; margin-top: 20px;
}
.notice {
  background: var(--cream);
  border: 1px solid var(--sage-200);
  border-left: 4px solid var(--sage-500);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 24px auto 36px;
  max-width: 720px;
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.55;
}
.notice strong {
  color: var(--sage-700);
  display: inline-block;
  margin-right: 8px;
  letter-spacing: .3px;
}
.notice strong:first-child {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: .5px;
}

/* ---------- Preise ---------- */
.prices {
  max-width: 960px;
  margin: 40px auto 24px;
}
.prices-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sage-700);
  text-align: center;
  margin: 0 0 22px;
}
.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.price-card-highlight {
  background: var(--sage-50);
  border-color: var(--sage-200);
}
.price-label {
  font-size: .78rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--sage-600); margin: 0 0 8px; font-weight: 600;
}
.price-amount {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--sage-700);
  margin: 0 0 6px;
  line-height: 1.1;
}
.price-amount span {
  display: block;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 1px;
  margin-top: 4px;
}
.price-hint {
  margin: 6px 0 0;
  font-size: .85rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- Individuell ---------- */
.occasions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin: 40px 0 40px;
}
.occasion {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.occasion:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--sage-200);
}
.occasion-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--sage-100);
  color: var(--sage-700);
  border-radius: 16px;
  margin-bottom: 18px;
}
.occasion-icon svg { width: 32px; height: 32px; }
.occasion h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sage-700);
  margin: 0 0 10px;
}
.occasion p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.6;
}
.occasion-open {
  background: transparent;
  border: 2px dashed var(--sage-300, #b9c8a8);
}
.occasion-open .occasion-icon {
  background: transparent;
  border: 2px dashed var(--sage-300, #b9c8a8);
  color: var(--sage-600);
}
.occasion-open h3 {
  color: var(--sage-600);
  font-style: italic;
}

.individual-cta {
  background: linear-gradient(135deg, var(--sage-50), var(--sage-100));
  border-radius: var(--radius);
  padding: 36px 36px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--sage-200);
}
.individual-price {
  display: flex; align-items: baseline; justify-content: center;
  gap: 14px;
  margin: 0 0 12px;
}
.individual-price-label {
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage-600);
  font-weight: 700;
}
.individual-price-value {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--sage-700);
}
.individual-note {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 auto 24px;
  max-width: 520px;
}

/* ---------- Events ---------- */
.event-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 1000px;
  margin: 40px auto 0;
}

.event-art {
  position: relative;
  background: linear-gradient(160deg, #fbeed0, #f0f3e8 70%, #e3ead7);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 30px;
  min-height: 340px;
  overflow: hidden;
}
.event-art img {
  position: relative; z-index: 1;
  width: 100%; max-width: 240px; height: auto;
  filter: drop-shadow(0 6px 18px rgba(63,86,56,.15));
}
.event-art-bg {
  position: absolute;
  inset: -10% -10% auto auto;
  width: 120%; height: 60%;
  background: radial-gradient(circle at top right, #fbeed0 0%, transparent 60%);
  opacity: .7;
}

.event-body {
  padding: 38px 40px 36px;
}

.event-date-row {
  display: flex; align-items: center; gap: 14px;
  margin: 0 0 14px;
  flex-wrap: wrap;
}
.event-date-badge {
  background: var(--sage-100);
  color: var(--sage-700);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: .5px;
}
.event-time {
  color: var(--ink-soft);
  font-size: .92rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.event-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--sage-700);
  margin: 0 0 14px;
  letter-spacing: -.3px;
}
.event-title-soft {
  display: block;
  font-size: .55em;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--sage-500);
  font-weight: 700;
  margin-bottom: 4px;
}
.event-title em {
  font-style: italic;
  font-weight: 600;
  color: #a36a1e;     /* warmer Sonnen-Akzent */
}

.event-lead {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--sage-700);
  line-height: 1.45;
  margin: 0 0 14px;
}
.event-lead strong {
  font-style: normal;
  color: #a36a1e;
  font-weight: 700;
}

.event-text {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 22px;
}
.event-text strong { color: var(--sage-700); font-weight: 600; }

.event-meta {
  list-style: none; padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 14px;
}
.event-meta li {
  display: grid;
  grid-template-columns: 180px 1fr;
  column-gap: 20px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.event-meta li:first-child { border-top: 0; padding-top: 0; }
.event-meta li:last-child  { padding-bottom: 0; }
.event-meta-label {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-600);
  font-weight: 700;
  align-self: center;
}
.event-meta-value {
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.5;
}
.event-meta-value strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--sage-700);
  font-weight: 700;
  display: inline-block;
  line-height: 1;
  margin-right: 6px;
  vertical-align: -2px;
}
.event-meta-value small {
  display: block;
  margin-top: 4px;
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.event-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* Ausklappbares Anmelde-Formular (acc-web). Das <summary> sieht aus wie ein
   Button; der Default-Marker (Dreieck) wird entfernt. Form klappt darunter auf. */
.event-anmelde { width: 100%; }
.event-anmelde summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  user-select: none;
}
.event-anmelde summary::-webkit-details-marker { display: none; }
.event-anmelde summary::marker { content: ""; }
.event-anmelde[open] summary { margin-bottom: 4px; }
.event-anmelde .contact-form { max-width: 480px; }

@media (max-width: 760px) {
  .event-card { grid-template-columns: 1fr; }
  .event-art { min-height: 220px; padding: 30px 20px; }
  .event-art img { max-width: 180px; }
  .event-body { padding: 28px 24px; }
  .event-meta li { grid-template-columns: 1fr; gap: 4px; }
  .event-meta-label { padding-top: 0; }
}

/* ---------- Kontakt ---------- */
.contact-list {
  list-style: none; padding: 0; margin: 24px 0 0;
}
.contact-list li {
  display: grid; grid-template-columns: 120px 1fr;
  padding: 14px 0; border-top: 1px solid rgba(95,122,82,.2);
  align-items: start;
}
.contact-list li:first-child { border-top: 0; }
.contact-list strong {
  font-size: .78rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--sage-700); padding-top: 3px;
}
.contact-list span, .contact-list a { color: var(--ink); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  display: grid; gap: 16px;
}
.contact-form label {
  display: grid; gap: 6px;
}
.contact-form span {
  font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--sage-700); font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sage-400);
  background: var(--white);
}
.contact-form .btn { justify-self: start; margin-top: 4px; }
.form-success {
  background: var(--sage-100);
  color: var(--sage-700);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin: 0;
  font-weight: 500;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--sage-700);
  color: var(--sage-100);
  padding: 50px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.footer-brand {
  display: flex; align-items: center; gap: 16px;
}
.footer-brand img {
  width: auto; height: 68px;
  background: var(--white);
  border-radius: 12px;
  padding: 6px 10px;
}
.footer-brand strong {
  font-family: var(--serif); font-size: 1.3rem;
  color: var(--white); letter-spacing: .5px;
}
.footer-brand span { font-size: .85rem; color: var(--sage-200); }
/* Im Footer ist der Schriftzug im Logo schon da -> Textspalte ausblenden */
.footer-brand > div {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.footer-nav {
  display: flex; gap: 22px; flex-wrap: wrap; justify-content: center;
}
.footer-nav a {
  color: var(--sage-100); font-size: .92rem;
}
.footer-nav a:hover { color: var(--white); }
.footer-copy {
  text-align: right; margin: 0; font-size: .85rem; color: var(--sage-200);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { padding: 60px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 360px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse .two-col-card { order: 0; }
  .section { padding: 70px 0; }
  .schedule-row {
    grid-template-columns: 1fr 1fr;
    grid-gap: 8px;
    padding: 16px 20px;
  }
  .schedule-head { display: none; }
  .schedule-row span:nth-child(3),
  .schedule-row span:nth-child(4) {
    color: var(--ink-soft); font-size: .9rem;
  }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-copy { text-align: center; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute; top: 100%; right: 4%; left: 4%;
    flex-direction: column; align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
    gap: 4px;
    display: none;
  }
  .nav-list.open { display: flex; }
  .nav-list li { width: 100%; }
  .nav-list a { display: block; padding: 10px 12px; }
  .nav-cta { text-align: center; }
}
