/* =================================================================
   KG AHLE HOOT 1950 e.V. — site.css
   Redesign: parchment cream + forest green + vintage gold + ink
   ================================================================= */

:root {
  /* ── Colors (forest palette, default) ── */
  --green-deep:  #0E3A22;
  --green:       #1F8A4C;
  --green-mid:   #2EB264;
  --green-soft:  #E6F2EB;
  --gold:        #C99A3C;
  --gold-light:  #E8C66B;
  --gold-deep:   #8E6A1F;
  --cream:       #F5EFE0;
  --paper:       #FBF7EE;
  --ink:         #14110E;
  --ink-soft:    #3D362F;
  --red:         #B43230;
  --red-deep:    #8B1F1D;
  --line:        #E1D9C3;

  --bg:          var(--paper);
  --fg:          var(--ink);

  /* ── Type ── */
  --f-display: 'DM Serif Display', 'Georgia', serif;
  --f-label:   'Familjen Grotesk', system-ui, sans-serif;
  --f-body:    'Manrope', system-ui, sans-serif;

  /* ── Scale ── */
  --container: 1240px;
  --pad-x:     clamp(20px, 5vw, 64px);
  --radius:    14px;
  --radius-sm: 8px;
  --shadow-md: 0 18px 40px -20px rgba(14,58,34,0.30);
  --shadow-lg: 0 30px 60px -30px rgba(14,58,34,0.45);
}

/* ── Palette variants (Tweaks) ── */
.theme-burgundy {
  --green-deep: #4A1418;
  --green:      #8B1F1D;
  --green-mid:  #B43230;
  --green-soft: #F4E6E6;
  --gold:       #D2A24C;
  --gold-light: #ECD080;
  --line:       #E5D6C6;
}
.theme-midnight {
  --green-deep: #0F1A2E;
  --green:      #2B3F6A;
  --green-mid:  #4A6BA8;
  --green-soft: #E7ECF5;
  --gold:       #D8B65C;
  --gold-light: #F0DA94;
  --cream:      #F0EDE3;
  --paper:      #F8F6EE;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; }

/* ── Type tokens ── */
.eyebrow {
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 1.1rem;
}
.eyebrow--red   { color: var(--red); }
.eyebrow--gold  { color: var(--gold); }
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor; flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(180,50,48,0.15);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(180,50,48,0.15); }
  50%     { box-shadow: 0 0 0 8px rgba(180,50,48,0.05); }
}

.display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--green-deep);
  text-wrap: balance;
  margin-bottom: 1.2rem;
}
.display em {
  font-style: italic;
  color: var(--gold-deep);
}
.display--white { color: var(--cream); }
.display--white em { color: var(--gold-light); }

.lede {
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
  text-wrap: pretty;
}
.lede + .lede { margin-top: 0.9rem; }
.lede--muted { color: rgba(20,17,14,0.55); }
.lede--on-dark { color: rgba(245,239,224,0.78); }
.lede strong { color: var(--ink); font-weight: 700; }
.lede--on-dark strong { color: var(--cream); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s, color 0.18s, border-color 0.18s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--green-deep);
  box-shadow: 0 8px 24px -10px rgba(201,154,60,0.7), inset 0 1px 0 rgba(255,255,255,0.6);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(201,154,60,0.85), inset 0 1px 0 rgba(255,255,255,0.6); }
.btn--ghost {
  background: transparent;
  color: var(--green-deep);
  border-color: currentColor;
}
.btn--ghost:hover { background: var(--green-deep); color: var(--cream); }
.btn--dark { color: var(--green-deep); }
.btn--ghost.btn--dark:hover { background: var(--green-deep); color: var(--cream); }

/* ═════════════════════════════════════════════════════════════════
   TICKER
   ═════════════════════════════════════════════════════════════════ */
.ticker {
  background: var(--ink);
  color: var(--gold-light);
  overflow: hidden;
  border-bottom: 1px solid rgba(232,198,107,0.2);
}
.ticker__track {
  display: inline-flex;
  gap: 2.4rem;
  white-space: nowrap;
  padding: 0.55rem 0;
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: ticker var(--ticker-speed, 60s) linear infinite;
  will-change: transform;
}
.ticker__track span:not([aria-hidden]) { color: var(--cream); }
.ticker__track span[aria-hidden] { color: var(--gold); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═════════════════════════════════════════════════════════════════
   NAV
   ═════════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.85rem var(--pad-x);
  background: rgba(251,247,238,0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(14,58,34,0.08);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--green-deep);
}
.nav__mark {
  width: 44px; height: 44px;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 12px -4px rgba(14,58,34,0.4);
  overflow: hidden;
}
.nav__mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__name {
  font-family: var(--f-display);
  font-size: 1.12rem;
  color: var(--green-deep);
}
.nav__sub {
  font-family: var(--f-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.nav__links {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
  font-family: var(--f-label);
  font-weight: 600;
  font-size: 0.92rem;
}
.nav__links a {
  position: relative;
  padding: 0.4rem 0;
  color: var(--ink-soft);
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--green-deep); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.65rem 1.15rem;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: 999px;
  border: 2px solid var(--green-deep);
  transition: background 0.2s, color 0.2s, transform 0.18s;
}
.nav__cta:hover { background: var(--gold); border-color: var(--gold); color: var(--green-deep); transform: translateY(-1px); }

/* ═════════════════════════════════════════════════════════════════
   HERO
   ═════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(232,198,107,0.18), transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(46,178,100,0.10), transparent 70%),
    var(--cream);
  padding: clamp(48px, 7vw, 96px) var(--pad-x) clamp(40px, 5vw, 80px);
  overflow: hidden;
}
.hero::before {
  /* paper texture */
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 35%, rgba(14,17,14,0.025) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 65%, rgba(14,17,14,0.02) 0 1px, transparent 1px);
  background-size: 9px 9px, 13px 13px;
  pointer-events: none;
}
.hero__confetti {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.55;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.98;
  color: var(--green-deep);
  letter-spacing: -0.015em;
  margin-bottom: 1.6rem;
  text-wrap: balance;
}
.hero__title span { display: block; }
.hero__line1 { font-style: normal; }
.hero__line2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
  position: relative;
  display: inline-block;
}
.hero__line2 em::after {
  content: '';
  position: absolute;
  left: 4%; right: 4%;
  bottom: -0.08em;
  height: 0.16em;
  background: var(--gold);
  border-radius: 999px;
  opacity: 0.6;
  transform: skewY(-1deg);
}
.hero__line3 { font-size: 0.62em; color: var(--ink-soft); }

.hero__lede {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 1.8rem;
}
.hero__lede strong { color: var(--green-deep); font-weight: 700; }

.hero__cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 540px;
}
.hero__facts li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.7rem 0 0.7rem 1rem;
  border-left: 2px solid var(--gold);
}
.hero__facts strong {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1;
}
.hero__facts span {
  font-family: var(--f-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Medallion */
.medallion {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  margin: 0 auto;
  filter: drop-shadow(0 30px 40px rgba(14,58,34,0.18));
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%     { transform: translateY(-8px) rotate(1deg); }
}
.medallion__svg { width: 100%; height: 100%; display: block; }
.medallion__ribbon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: var(--green-deep);
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 6px 16px -8px rgba(142,106,31,0.6), inset 0 1px 0 rgba(255,255,255,0.6);
}
.medallion__ribbon::before,
.medallion__ribbon::after {
  content: '';
  position: absolute;
  top: 0;
  width: 14px;
  height: 100%;
  background: inherit;
}
.medallion__ribbon::before { left: -10px; clip-path: polygon(0 50%, 100% 0, 100% 100%); }
.medallion__ribbon::after  { right: -10px; clip-path: polygon(100% 50%, 0 0, 0 100%); }
.medallion__ribbon--top {
  top: -2px;
  border-radius: 4px;
}
.medallion__ribbon--bot {
  bottom: -2px;
}

.hero__divider {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  max-width: var(--container);
  margin: clamp(48px,6vw,80px) auto 0;
  position: relative;
  z-index: 1;
}
.hero__rule {
  flex: 1;
  height: 2px;
  background:
    linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  position: relative;
}
.hero__rule::before, .hero__rule::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.hero__rule::before { left: 0; }
.hero__rule::after { right: 0; }
.hero__alaaf {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--green-deep);
}

/* ═════════════════════════════════════════════════════════════════
   ANNIVERSARY
   ═════════════════════════════════════════════════════════════════ */
.anniv {
  background: var(--paper);
  padding: clamp(60px,8vw,120px) var(--pad-x);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.anniv__watermark {
  position: absolute;
  right: -60px;
  top: 50%;
  width: clamp(280px, 36vw, 520px);
  transform: translateY(-50%) rotate(-8deg);
  opacity: 0.06;
  pointer-events: none;
  filter: saturate(0) brightness(0.4);
}
.anniv__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.anniv__big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 24px);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(7rem, 14vw, 13rem);
  line-height: 0.9;
  color: var(--green-deep);
  letter-spacing: -0.04em;
  position: relative;
}
.anniv__times {
  font-style: normal;
  font-size: 0.55em;
  color: var(--gold);
  transform: translateY(-6%);
}
.anniv__num {
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-deep) 55%, var(--gold) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 0 rgba(14,58,34,0.06);
}

/* ═════════════════════════════════════════════════════════════════
   TERMINE
   ═════════════════════════════════════════════════════════════════ */
.termine {
  background: var(--green-deep);
  color: var(--cream);
  padding: clamp(70px,9vw,130px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.termine::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(232,198,107,0.06) 1px, transparent 0);
  background-size: 18px 18px;
  pointer-events: none;
}
.termine__head {
  max-width: var(--container);
  margin: 0 auto 3rem;
  position: relative;
}
.termine__head .eyebrow { color: var(--gold-light); }

.events {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.4rem;
  position: relative;
}

.event {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  border: 1px solid rgba(232,198,107,0.4);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  outline: none;
}
.event:hover, .event:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.event:focus-visible { border-color: var(--gold); }

.event--highlight {
  background: linear-gradient(160deg, var(--gold-light) 0%, var(--gold) 70%, var(--gold-deep));
  color: var(--green-deep);
  grid-column: span 2;
}
@media (max-width: 720px) {
  .event--highlight { grid-column: span 1; }
}
.event--highlight .event__plate { background: var(--ink); }

/* Calendar plate */
.event__plate {
  background: var(--ink);
  color: var(--cream);
  border-radius: 8px;
  padding: 0.9rem 0.8rem 0.7rem;
  width: 78px;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 14px -6px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.event__plate-tabs {
  position: absolute;
  top: -7px; left: 0; right: 0;
  display: flex; justify-content: space-around;
  pointer-events: none;
}
.event__plate-tabs i {
  display: block;
  width: 8px; height: 14px;
  background: var(--ink);
  border-radius: 2px;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.1);
}
.event__day {
  display: block;
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.event__year {
  display: block;
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--red);
  line-height: 1;
}

.event__main { min-width: 0; }
.event__num {
  font-family: var(--f-label);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 0.4rem;
}
.event--highlight .event__num { color: var(--green-deep); }
.event__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  color: var(--green-deep);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin-bottom: 0.5rem;
}
.event__title em { color: var(--gold-deep); font-style: italic; }
.event--highlight .event__title em { color: var(--red-deep); }
.event__meta {
  font-family: var(--f-label);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.event__count {
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--red);
  letter-spacing: 0.06em;
}
.event__more {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin 0.3s ease;
}
.event__more p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  border-top: 1px dashed rgba(14,58,34,0.2);
  padding-top: 0.9rem;
}
.event[aria-expanded="true"] .event__more {
  max-height: 200px;
  margin-top: 0.4rem;
}

/* Flyer aside */
.flyer-aside {
  max-width: var(--container);
  margin: clamp(48px,6vw,80px) auto 0;
  background: rgba(245,239,224,0.04);
  border: 1px solid rgba(232,198,107,0.3);
  border-radius: var(--radius);
  padding: clamp(20px,2.5vw,32px);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(20px,3vw,40px);
  align-items: center;
}
.flyer-aside__img img {
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
  border: 1px solid rgba(232,198,107,0.3);
}
.flyer-aside__text .eyebrow { color: var(--gold-light); margin-bottom: 0.6rem; }
.flyer-aside__text h3 {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 0.7rem;
}
.flyer-aside__text p {
  color: rgba(245,239,224,0.7);
  font-size: 0.96rem;
  margin-bottom: 1.1rem;
  max-width: 50ch;
}
.flyer-aside .btn--ghost.btn--dark {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.flyer-aside .btn--ghost.btn--dark:hover {
  background: var(--gold-light);
  color: var(--green-deep);
}

/* ═════════════════════════════════════════════════════════════════
   GRUPPEN
   ═════════════════════════════════════════════════════════════════ */
.gruppen {
  background: var(--cream);
  padding: clamp(70px,9vw,130px) var(--pad-x);
  position: relative;
}
.gruppen__head {
  max-width: var(--container);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px,3vw,60px);
  align-items: end;
}
.gruppen__head .lede { justify-self: end; }

.gruppen__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.group {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  overflow: hidden;
}
.group::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-mid) 100%);
  transform: translateY(-100%);
  transition: transform 0.25s ease;
}
.group:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.group:hover::before { transform: translateY(0); }

.group--feature {
  background: linear-gradient(165deg, var(--green-deep) 0%, var(--green) 100%);
  color: var(--cream);
  border-color: transparent;
}
.group--feature::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.group--feature:hover::before { transform: translateY(0); }

.group--bambini { background: linear-gradient(165deg, var(--gold-light) 0%, var(--gold) 100%); }

.group__head {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.3rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px dashed rgba(14,58,34,0.2);
}
.group--feature .group__head { border-bottom-color: rgba(245,239,224,0.25); }
.group__age {
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  align-self: flex-start;
  white-space: nowrap;
  padding: 0.25rem 0.6rem;
  background: rgba(201,154,60,0.13);
  border-radius: 999px;
}
.group--feature .group__age { background: rgba(232,198,107,0.18); color: var(--gold-light); }
.group--bambini .group__age { background: rgba(14,58,34,0.12); color: var(--green-deep); }
.group__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  line-height: 1.05;
  color: var(--green-deep);
  letter-spacing: -0.005em;
}
.group--feature .group__name { color: var(--cream); }
.group__name em {
  display: block;
  font-style: italic;
  font-size: 0.78em;
  color: var(--gold-deep);
  margin-top: 0.1rem;
}
.group--feature .group__name em { color: var(--gold-light); }

.group__schedule {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.group__schedule div {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: baseline;
  gap: 0.8rem;
  min-width: 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px dotted rgba(14,58,34,0.12);
}
.group__schedule div:last-child { border-bottom: none; padding-bottom: 0; }
.group--feature .group__schedule div { border-bottom-color: rgba(245,239,224,0.15); }
.group--bambini .group__schedule div { border-bottom-color: rgba(14,58,34,0.18); }
.group__schedule dt {
  font-family: var(--f-label);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
}
.group--feature .group__schedule dt { color: var(--gold-light); opacity: 0.85; }
.group__schedule dd {
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--green-deep);
  line-height: 1.2;
  text-align: right;
  word-break: normal;
}
.group--feature .group__schedule dd { color: var(--cream); }
.group__blurb {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.group--feature .group__blurb { color: rgba(245,239,224,0.8); }
.group--bambini .group__blurb { color: var(--green-deep); }

.gruppen__cta {
  max-width: var(--container);
  margin: clamp(40px,5vw,72px) auto 0;
  background: var(--green-deep);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(28px,4vw,48px) clamp(28px,4vw,56px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px,3vw,48px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.gruppen__cta::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 65%);
  opacity: 0.18;
  pointer-events: none;
}
.gruppen__cta-text h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.gruppen__cta-text h3 em { font-style: italic; color: var(--gold-light); }
.gruppen__cta-text p { color: rgba(245,239,224,0.7); max-width: 50ch; font-size: 0.98rem; }
.gruppen__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
}
.gruppen__cta-actions .btn--ghost.btn--dark {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.gruppen__cta-actions .btn--ghost.btn--dark:hover {
  background: var(--gold-light);
  color: var(--green-deep);
}

/* ═════════════════════════════════════════════════════════════════
   KONTAKT
   ═════════════════════════════════════════════════════════════════ */
.kontakt {
  background: linear-gradient(165deg, var(--green-deep) 0%, var(--ink) 100%);
  color: var(--cream);
  padding: clamp(48px,6vw,84px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.kontakt::after {
  content: '★';
  position: absolute;
  top: 10%; left: 8%;
  font-size: 14rem;
  color: var(--gold);
  opacity: 0.04;
  pointer-events: none;
  font-family: var(--f-display);
}
.kontakt__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px,3vw,44px);
  position: relative;
}
.kontakt__intro { max-width: 720px; }
.kontakt__intro .display { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0.8rem; }
.kontakt__intro .lede { font-size: 1rem; }
.kontakt__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.social {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.1rem;
  background: rgba(245,239,224,0.04);
  border: 1px solid rgba(232,198,107,0.22);
  border-radius: var(--radius-sm);
  color: var(--cream);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.social:hover {
  transform: translateY(-2px);
  background: rgba(245,239,224,0.08);
  border-color: var(--gold);
}
.social__icon {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
}
.social__icon svg { width: 20px; height: 20px; }
.social--ig .social__icon {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
  color: white;
}
.social--fb .social__icon { background: #1877f2; color: white; }
.social__label {
  font-family: var(--f-label);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.social__handle {
  font-family: var(--f-label);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--cream);
  display: block;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.social__arrow {
  font-size: 1rem;
  color: var(--gold-light);
  transition: transform 0.2s;
}
.social:hover .social__arrow { transform: translate(2px,-2px); }

/* ═════════════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════════════ */
.foot {
  background: var(--ink);
  color: rgba(245,239,224,0.65);
  padding: clamp(36px,4vw,56px) var(--pad-x);
  border-top: 4px solid var(--gold);
}
.foot__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
}
.foot__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.foot__mark {
  color: var(--cream);
  background: var(--green-deep);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  overflow: hidden;
}
.foot__mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.foot__title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.1;
}
.foot__sub {
  font-family: var(--f-label);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(245,239,224,0.5);
  margin-top: 0.2rem;
}
.foot__links {
  display: flex;
  gap: 1.4rem;
  font-family: var(--f-label);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}
.foot__links a {
  color: rgba(245,239,224,0.65);
  transition: color 0.15s;
}
.foot__links a:hover { color: var(--gold-light); }
.foot__copy {
  grid-column: 1 / -1;
  font-family: var(--f-label);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(245,239,224,0.4);
  border-top: 1px solid rgba(245,239,224,0.08);
  padding-top: 1rem;
}

/* ═════════════════════════════════════════════════════════════════
   LEGAL PAGES
   ═════════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(165deg, var(--green-deep), var(--ink));
  color: var(--cream);
  padding: clamp(60px,7vw,100px) var(--pad-x) clamp(40px,5vw,72px);
  border-bottom: 4px solid var(--gold);
}
.page-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.page-crumb {
  font-family: var(--f-label);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: inline-block;
}
.page-crumb:hover { color: var(--cream); }
.page-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
}

.prose-section {
  background: var(--paper);
  padding: clamp(60px,7vw,100px) var(--pad-x);
}
.prose {
  max-width: 780px;
  margin: 0 auto;
}
.prose h2 {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 400;
  color: var(--green-deep);
  margin-top: 2.5rem;
  margin-bottom: 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--f-label);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green);
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.prose p, .prose li {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}
.prose ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}
.prose ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}
.prose ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  top: 0;
}
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--green); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(31,138,76,0.3); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--green); }

/* ═════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .medallion { max-width: 360px; }
  .anniv__inner { grid-template-columns: 1fr; text-align: left; }
  .anniv__big { justify-content: flex-start; }
  .gruppen__head { grid-template-columns: 1fr; }
  .gruppen__head .lede { justify-self: start; }
  .gruppen__cta { grid-template-columns: 1fr; }
  .kontakt__inner { grid-template-columns: 1fr; }
  .kontakt__cards { grid-template-columns: 1fr; }
  .flyer-aside { grid-template-columns: 1fr; }
  .flyer-aside__img { max-width: 280px; margin: 0 auto; }
  .foot__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .foot__brand { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .nav__cta { display: none; }
  .hero__facts { grid-template-columns: repeat(2, 1fr); }
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.6rem); }
  .gruppen__cta-actions { flex-direction: column; }
  .gruppen__cta-actions .btn { width: 100%; }
}
