/* =========================================================
   Sportgemeinschaft WWA München – Prototyp
   Design-System
   ========================================================= */
:root{
  /* Warme, familiäre Palette */
  --ink:        #2c2118;   /* warmes Espresso (Überschriften, dunkle Flächen) */
  --ink-2:      #574a3e;   /* warmer Fließtext */
  --muted:      #7a6757;   /* warmes Taupe */
  --brand:      #c0492f;   /* Trikot-Rot / Terrakotta */
  --brand-deep: #9b3520;
  --brand-bright:#e07a3e;  /* warmes Orange */
  --accent:     #e6a23c;   /* Honiggelb */
  --accent-deep:#d2851f;
  --green:      #5d8a4f;   /* Wiesengrün */
  --lake:       #5f8195;   /* gedämpftes Seeblau (Wasser-Bezug) */
  --winter:     #5f8195;
  --bg:         #fffdf9;   /* warmes Creme */
  --bg-soft:    #f6ecdc;   /* warmer Sand */
  --bg-sand:    #fbf2e3;
  --line:       #e8dcc8;
  --white:      #ffffff;

  /* Verläufe */
  --grad-brand: linear-gradient(135deg,#c0492f 0%,#a3361f 100%);  /* tiefes Rot – sicher hinter weißem Text */
  --grad-accent:linear-gradient(135deg,#d05a36 0%,#b03a22 100%);  /* warmes Rot-Orange */
  --grad-sun:   linear-gradient(135deg,#eeae46 0%,#e0853c 100%);  /* Honig/Sonne – nur dekorativ */

  /* Form */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Schatten (warm getönt) */
  --sh-sm: 0 1px 3px rgba(60,40,20,.10);
  --sh:    0 10px 26px rgba(80,50,20,.12);
  --sh-lg: 0 22px 50px rgba(70,45,20,.18);

  /* Typo */
  --font-head:"Fraunces", Georgia, "Times New Roman", serif;
  --font-body:"Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-hand:"Caveat", "Segoe Script", cursive;

  --maxw: 1160px;
  --header-h: 72px;
}

/* ---------- Reset / Basis ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--bg);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3{ font-family:var(--font-head); line-height:1.12; color:var(--ink); margin:0 0 .4em; letter-spacing:-.01em; }
h1{ font-size:clamp(2.1rem,6vw,3.6rem); font-weight:800; }
h2{ font-size:clamp(1.7rem,3.8vw,2.6rem); font-weight:700; }
h3{ font-size:1.25rem; font-weight:700; }
p{ margin:0 0 1rem; }
button{ font-family:inherit; cursor:pointer; }

.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:20px; }

.section{ padding:clamp(56px,9vw,104px) 0; }
.section-soft{ background:var(--bg-soft); }

.kicker{
  font-family:var(--font-hand); font-weight:700; font-size:1.45rem;
  letter-spacing:0; text-transform:none; color:var(--brand-deep);
  line-height:1; margin:0 0 .35rem;
}
.kicker-light{ color:var(--brand-deep); }
.section-head{ max-width:720px; margin:0 auto clamp(34px,5vw,56px); text-align:center; }
.section-lead{ color:var(--muted); font-size:1.08rem; margin:0; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.5rem; padding:.85rem 1.5rem; border-radius:999px;
  font-family:var(--font-head); font-weight:700; font-size:.98rem;
  border:2px solid transparent; transition:transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn-accent{ background:var(--grad-accent); color:#fff; box-shadow:0 8px 20px rgba(255,90,44,.35); }
.btn-accent:hover{ box-shadow:0 12px 28px rgba(255,90,44,.45); transform:translateY(-2px); }
.btn-ghost{ background:rgba(255,255,255,.12); color:#fff; border-color:rgba(255,255,255,.55); backdrop-filter:blur(4px); }
.btn-ghost:hover{ background:rgba(255,255,255,.22); }
.btn-ghost-light{ background:transparent; color:#fff; border-color:rgba(255,255,255,.6); }
.btn-ghost-light:hover{ background:rgba(255,255,255,.14); }
.btn-outline{ background:#fff; color:var(--brand-deep); border-color:var(--line); }
.btn-outline:hover{ border-color:var(--brand); background:var(--bg-sand); }

.link-arrow{
  display:inline-flex; align-items:center; gap:.4rem; font-weight:700;
  font-family:var(--font-head); color:var(--brand); margin-top:.4rem;
}
.link-arrow::after{ content:"→"; transition:transform .2s ease; }
.link-arrow:hover::after{ transform:translateX(4px); }

/* ---------- Prototyp-Leiste ---------- */
.proto-bar{
  background:var(--ink); color:#ede2d4; font-size:.82rem;
  display:flex; align-items:center; justify-content:center; gap:1rem;
  padding:.5rem 1rem; text-align:center;
}
.proto-bar strong{ color:#fff; }
.proto-close{ background:none; border:none; color:#8fb6c5; font-size:1.3rem; line-height:1; width:44px; height:44px; display:grid; place-items:center; margin:-.5rem -.5rem -.5rem 0; flex:0 0 auto; }
.proto-close:hover{ color:#fff; }
.proto-bar.hide{ display:none; }

/* ---------- Header / Nav ---------- */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(255,255,255,.82);
  backdrop-filter:saturate(160%) blur(12px);
  border-bottom:1px solid transparent;
  transition:box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.scrolled{ box-shadow:var(--sh-sm); border-color:var(--line); }
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; height:var(--header-h); gap:1rem; }
.brand{ display:flex; align-items:center; gap:.7rem; }
.brand-mark svg{ display:block; filter:drop-shadow(0 4px 8px rgba(60,40,20,.3)); }
.brand-text{ display:flex; flex-direction:column; line-height:1.05; }
.brand-text strong{ font-family:var(--font-head); font-size:1.05rem; font-weight:800; color:var(--ink); }
.brand-text small{ font-size:.74rem; color:var(--brand); font-weight:600; letter-spacing:.02em; }
.brand-text.light strong{ color:#fff; }
.brand-text.light small{ color:#e2b59a; }

.main-nav{ display:flex; align-items:center; gap:.35rem; }
.main-nav a{
  font-family:var(--font-head); font-weight:600; font-size:.96rem;
  color:var(--ink-2); padding:.5rem .8rem; border-radius:999px; transition:color .15s, background .15s;
}
.main-nav a:hover{ color:var(--brand-deep); background:var(--bg-soft); }
.main-nav a.active{ color:var(--brand-deep); }
.main-nav .nav-cta{
  background:var(--grad-brand); color:#fff; margin-left:.4rem;
  box-shadow:0 6px 16px rgba(160,60,40,.3);
}
.main-nav .nav-cta:hover{ color:#fff; filter:brightness(1.06); }

.nav-toggle{
  display:none; flex-direction:column; gap:5px; width:44px; height:44px;
  border:none; background:transparent; align-items:center; justify-content:center;
}
.nav-toggle span{ width:24px; height:2.5px; background:var(--ink); border-radius:2px; transition:transform .3s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }

.nav-backdrop{ position:fixed; inset:0; background:rgba(40,26,16,.5); z-index:55; opacity:0; transition:opacity .3s; }
.nav-backdrop.show{ opacity:1; }

/* ---------- Hero ---------- */
.hero{ position:relative; min-height:min(88vh,760px); min-height:min(88dvh,760px); display:flex; align-items:center; color:#fff; overflow:hidden; }
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; object-position:center 30%; }
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(95deg, rgba(40,22,12,.66) 0%, rgba(40,22,12,.34) 38%, rgba(40,22,12,.06) 62%, rgba(40,22,12,0) 100%),
    linear-gradient(180deg, rgba(34,22,12,0) 52%, rgba(34,22,12,.42) 100%);
}
.hero-content{ position:relative; z-index:2; padding-top:60px; padding-bottom:60px; max-width:760px; }
.eyebrow{
  display:inline-block; font-family:var(--font-hand); font-weight:700; font-size:1.2rem;
  letter-spacing:0; text-transform:none; color:#ffe7cc;
  background:rgba(40,20,10,.28); padding:.2rem .95rem; border-radius:999px;
  border:1px solid rgba(255,255,255,.22); margin:0 0 1rem; backdrop-filter:blur(4px);
}
.hero h1{ color:#fff; text-shadow:0 2px 12px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.5); margin-bottom:.5em; }
.hero-sub{ font-size:clamp(1.02rem,2vw,1.2rem); color:#f3e9dc; max-width:560px; margin-bottom:1.8rem; text-shadow:0 1px 6px rgba(0,0,0,.55); }
.hero-actions{ display:flex; flex-wrap:wrap; gap:.8rem; margin-bottom:2.4rem; }
.hero-stats{ display:flex; gap:2.2rem; flex-wrap:wrap; }
.hero-stats div{ display:flex; flex-direction:column; }
.hero-stats strong{ font-family:var(--font-head); font-size:2rem; font-weight:800; line-height:1; }
.hero-stats span{ font-size:.85rem; color:#efe0cf; letter-spacing:.02em; }

.scroll-hint{ position:absolute; bottom:22px; left:50%; transform:translateX(-50%); z-index:2; width:26px; height:42px; border:2px solid rgba(255,255,255,.6); border-radius:14px; }
.scroll-hint span{ position:absolute; top:8px; left:50%; width:4px; height:8px; background:#fff; border-radius:2px; transform:translateX(-50%); animation:scrolldot 1.6s infinite; }
@keyframes scrolldot{ 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,14px)} }

/* ---------- Intro ---------- */
.intro-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(32px,5vw,72px); align-items:center; }
.intro-text .kicker{ text-align:left; }
.check-list{ list-style:none; padding:0; margin:1.2rem 0 1.6rem; display:grid; gap:.7rem; }
.check-list li{ position:relative; padding-left:2rem; color:var(--ink-2); font-weight:500; }
.check-list li::before{
  content:"✓"; position:absolute; left:0; top:50%; transform:translateY(-50%);
  width:1.4rem; height:1.4rem; display:grid; place-items:center;
  background:var(--grad-brand); color:#fff; border-radius:50%; font-size:.78rem; font-weight:800;
}
.intro-photo{
  margin:0; background:#fff; padding:14px 14px 6px; border-radius:6px;
  box-shadow:var(--sh-lg); transform:rotate(-2.2deg); transition:transform .35s ease;
}
.intro-photo:hover{ transform:rotate(0); }
.intro-photo img{ width:100%; border-radius:3px; aspect-ratio:4/3; object-fit:cover; }
.intro-photo figcaption{
  font-family:var(--font-hand); font-size:1.5rem; color:var(--ink-2);
  text-align:center; padding:.5rem .3rem .1rem; line-height:1.1;
}

/* ---------- Kalender ---------- */
.cal-layout{ display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(24px,3.5vw,40px); align-items:start; }
.calendar{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:clamp(18px,2.5vw,28px); box-shadow:var(--sh); }
.cal-header{ display:flex; align-items:center; justify-content:space-between; margin-bottom:1.1rem; }
.cal-header h3{ margin:0; font-size:1.3rem; text-transform:capitalize; }
.cal-nav{
  width:40px; height:40px; border-radius:50%; border:1px solid var(--line);
  background:#fff; color:var(--brand-deep); font-size:1.4rem; line-height:1;
  display:grid; place-items:center; transition:background .15s, border-color .15s;
}
.cal-nav:hover{ background:var(--bg-soft); border-color:var(--brand-bright); }
.cal-weekdays{ display:grid; grid-template-columns:repeat(7,1fr); gap:4px; margin-bottom:6px; }
.cal-weekdays span{ text-align:center; font-size:.72rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.04em; }
.cal-grid{ display:grid; grid-template-columns:repeat(7,1fr); gap:4px; }
.cal-cell{
  position:relative; aspect-ratio:1; border-radius:10px; border:1px solid transparent;
  background:var(--bg-soft); display:flex; flex-direction:column; align-items:center; justify-content:center;
  font-family:inherit; font-size:.92rem; font-weight:600; color:var(--ink-2);
  transition:transform .12s, background .15s, box-shadow .15s;
}
.cal-cell.empty{ background:transparent; }
.cal-cell.has-event{ cursor:pointer; background:#fff; border-color:var(--line); }
.cal-cell.has-event:hover{ transform:translateY(-2px); box-shadow:var(--sh-sm); border-color:var(--brand-bright); }
.cal-cell.today{ outline:2px solid var(--accent); outline-offset:-2px; color:var(--accent-deep); }
.cal-cell.selected{ background:var(--grad-brand); color:#fff; border-color:transparent; }
.cal-cell.selected .cal-dots .dot{ box-shadow:0 0 0 1.5px rgba(255,255,255,.7); }
.cal-dots{ position:absolute; bottom:6px; display:flex; gap:3px; }
.dot{ width:6px; height:6px; border-radius:50%; display:inline-block; }
.dot-sommer{ background:var(--accent); }
.dot-winter{ background:var(--lake); }
.dot-training{ background:var(--green); }
.dot-event{ background:var(--brand); }
.cal-legend{ display:flex; flex-wrap:wrap; gap:.4rem 1rem; margin-top:1.1rem; padding-top:1rem; border-top:1px solid var(--line); font-size:.8rem; color:var(--muted); }
.cal-legend span{ display:inline-flex; align-items:center; gap:.4rem; }

/* Termin-Liste */
.upcoming h3{ margin-bottom:1rem; }
.event-list{ list-style:none; padding:0; margin:0; display:grid; gap:.7rem; }
.event-item{
  display:grid; grid-template-columns:auto 1fr; gap:1rem; align-items:center;
  background:#fff; border:1px solid var(--line); border-left-width:4px; border-radius:var(--r);
  padding:.85rem 1rem; transition:transform .12s, box-shadow .15s;
}
.event-item:hover{ transform:translateX(3px); box-shadow:var(--sh-sm); }
.event-item.is-sommer{ border-left-color:var(--accent); }
.event-item.is-winter{ border-left-color:var(--lake); }
.event-item.is-training{ border-left-color:var(--green); }
.event-item.is-event{ border-left-color:var(--brand); }
.ev-date{ text-align:center; min-width:54px; }
.ev-date .d{ font-family:var(--font-head); font-size:1.5rem; font-weight:800; color:var(--ink); line-height:1; }
.ev-date .m{ display:block; font-size:.72rem; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); font-weight:700; }
.ev-body{ display:flex; flex-direction:column; gap:.15rem; }
.ev-body .ev-title{ display:block; font-family:var(--font-head); font-weight:700; color:var(--ink); line-height:1.25; }
.ev-body .ev-meta{ display:block; font-size:.84rem; color:var(--muted); line-height:1.35; }
.cal-note{ font-size:.8rem; color:var(--muted); font-style:italic; margin-top:1rem; }

/* ---------- Cards ---------- */
.cards{ display:flex; flex-wrap:wrap; justify-content:center; gap:24px; }
.card{
  flex:0 1 calc(25% - 18px);
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden;
  display:flex; flex-direction:column; box-shadow:var(--sh-sm);
  transition:transform .2s ease, box-shadow .25s ease;
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--sh-lg); }
.card-media{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.card-media img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.card:hover .card-media img{ transform:scale(1.06); }
.card-tag{
  position:absolute; top:12px; left:12px; font-family:var(--font-head); font-weight:700;
  font-size:.72rem; letter-spacing:.04em; text-transform:uppercase; color:#fff;
  padding:.3rem .7rem; border-radius:999px; backdrop-filter:blur(3px);
}
.tag-sommer{ background:rgba(230,162,60,.95); }
.tag-winter{ background:rgba(95,129,149,.95); }
.tag-event{ background:rgba(192,73,47,.95); }
.tag-training{ background:rgba(93,138,79,.95); }
.tag-wellpass{ background:rgba(44,33,24,.6); }
.card-media-icon{ display:grid; place-items:center; background:linear-gradient(135deg,#5f8195 0%,#43677a 100%); }
.card-media-icon .card-icon{ font-size:3.6rem; line-height:1; filter:drop-shadow(0 4px 12px rgba(0,0,0,.22)); }
.card-body{ padding:1.2rem 1.3rem 1.4rem; }
.card-body h3{ margin-bottom:.5rem; }
.card-body p{ color:var(--muted); font-size:.93rem; margin:0; }

/* ---------- Training ---------- */
.training-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.train-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg);
  padding:1.6rem 1.3rem; text-align:center; box-shadow:var(--sh-sm);
  transition:transform .2s, box-shadow .2s;
}
.train-card:hover{ transform:translateY(-4px); box-shadow:var(--sh); }
.train-icon{
  width:64px; height:64px; margin:0 auto 1rem; border-radius:20px;
  display:grid; place-items:center; font-size:1.9rem; background:var(--bg-soft);
}
.train-card h3{ margin-bottom:.3rem; }
.train-time{ font-family:var(--font-head); font-weight:700; color:var(--brand-deep); margin:0 0 .2rem; }
.train-meta{ font-size:.85rem; color:var(--muted); margin:0; }

/* ---------- Galerie ---------- */
.gallery{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:200px; gap:18px; }
.gal-item{
  border:6px solid #fff; padding:0; margin:0; border-radius:4px; overflow:hidden; cursor:pointer;
  position:relative; background:#fff; box-shadow:var(--sh);
  transition:transform .3s ease, box-shadow .3s ease;
}
.gal-item:nth-child(odd){ transform:rotate(-1.4deg); }
.gal-item:nth-child(even){ transform:rotate(1.4deg); }
.gal-item img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.gal-item:hover{ transform:rotate(0) scale(1.03); box-shadow:var(--sh-lg); z-index:2; }
.gal-item:hover img{ transform:scale(1.05); }
.gal-item::after{
  content:"🔍"; position:absolute; inset:0; display:grid; place-items:center;
  background:rgba(40,24,14,.32); color:#fff; font-size:1.6rem; opacity:0; transition:opacity .25s;
}
.gal-item:hover::after{ opacity:1; }
.gal-lg{ grid-column:span 2; grid-row:span 2; }

/* ---------- Galerie-Alben (pro Ereignis) ---------- */
.albums{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.album-card{ border:none; background:transparent; padding:0; cursor:pointer; text-align:left; font:inherit; }
.album-cover{
  position:relative; border:7px solid #fff; border-radius:6px; box-shadow:var(--sh);
  overflow:hidden; aspect-ratio:4/3; transition:transform .3s ease, box-shadow .3s ease; display:block;
}
.album-card:nth-child(odd) .album-cover{ transform:rotate(-1.2deg); }
.album-card:nth-child(even) .album-cover{ transform:rotate(1.2deg); }
.album-cover img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.album-card:hover .album-cover{ transform:rotate(0) scale(1.02); box-shadow:var(--sh-lg); }
.album-card:hover .album-cover img{ transform:scale(1.05); }
.album-count{
  position:absolute; top:10px; right:10px; background:rgba(40,24,14,.78); color:#fff;
  font-size:.76rem; font-weight:600; padding:.22rem .65rem; border-radius:999px;
}
.album-cover::after{
  content:"Album ansehen"; position:absolute; inset:0; display:flex; align-items:flex-end; justify-content:center;
  padding-bottom:14px; color:#fff; font-family:var(--font-hand); font-size:1.35rem;
  background:linear-gradient(180deg,transparent 55%,rgba(40,24,14,.6)); opacity:0; transition:opacity .25s;
}
.album-card:hover .album-cover::after{ opacity:1; }
.album-info{ display:block; padding:.7rem .2rem 0; }
.album-title{ display:block; font-family:var(--font-head); font-weight:700; font-size:1.12rem; color:var(--ink); line-height:1.18; }
.album-sub{ display:block; font-size:.86rem; color:var(--muted); }
@media (max-width:1000px){ .albums{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .albums{ grid-template-columns:1fr 1fr; gap:16px; } }

.timeline{ margin-top:clamp(34px,5vw,56px); max-width:760px; }
.timeline h3{ margin-bottom:1.1rem; }
.timeline ul{ list-style:none; padding:0; margin:0; border-left:2px solid var(--line); }
.timeline li{ position:relative; padding:0 0 1.2rem 1.6rem; }
.timeline li::before{ content:""; position:absolute; left:-7px; top:4px; width:12px; height:12px; border-radius:50%; background:var(--grad-brand); }
.tl-date{ font-family:var(--font-head); font-weight:800; color:var(--brand-deep); margin-right:.6rem; }
.tl-text{ color:var(--ink-2); }

/* ---------- Stimmen aus dem Verein ---------- */
.quotes{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.quote-card{
  margin:0; background:#fff; border:1px solid var(--line); border-radius:var(--r-lg);
  padding:1.7rem 1.5rem 1.5rem; box-shadow:var(--sh-sm); position:relative;
}
.quote-card:nth-child(even){ transform:rotate(-1deg); }
.quote-card:nth-child(odd){ transform:rotate(1deg); }
.quote-card::before{
  content:"\201C"; position:absolute; top:.1rem; left:1rem;
  font-family:var(--font-head); font-size:4rem; line-height:1; color:var(--brand); opacity:.16;
}
.quote-card blockquote{ margin:0 0 1.1rem; position:relative; color:var(--ink-2); font-size:1.05rem; }
.quote-card figcaption{ display:flex; flex-direction:column; }
.q-name{ font-family:var(--font-hand); font-size:1.55rem; line-height:1; color:var(--brand-deep); }
.q-role{ font-size:.85rem; color:var(--muted); }

/* ---------- CTA Band ---------- */
.cta-band{ background:linear-gradient(135deg,#fbe7d2 0%,#f6d6b0 100%); color:var(--ink); position:relative; overflow:hidden; }
.cta-band::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 82% 18%, rgba(255,255,255,.45), transparent 46%); }
.cta-inner{ position:relative; display:flex; align-items:center; justify-content:space-between; gap:2.5rem; flex-wrap:wrap; }
.cta-text{ max-width:640px; }
.cta-text h2{ color:var(--ink); }
.cta-text p{ color:var(--ink-2); }
.cta-actions{ display:flex; flex-wrap:wrap; gap:.8rem; margin-top:1.4rem; }
.cta-note{
  flex-shrink:0; width:235px; background:#fff7da; border:1px solid #efe0a4;
  border-radius:6px; padding:1.7rem 1.4rem 1.4rem; text-align:center;
  box-shadow:var(--sh); transform:rotate(3deg); position:relative;
}
.note-pin{
  position:absolute; top:-9px; left:50%; transform:translateX(-50%);
  width:16px; height:16px; border-radius:50%; background:var(--brand);
  box-shadow:0 2px 5px rgba(0,0,0,.3), inset 0 -2px 3px rgba(0,0,0,.18);
}
.note-hand{ font-family:var(--font-hand); font-size:1.95rem; line-height:1.05; color:var(--brand-deep); margin:.2rem 0 .6rem; }
.note-sub{ font-size:.85rem; color:var(--ink-2); margin:0; }

/* ---------- Kontakt ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.board-list{ list-style:none; padding:0; margin:0; display:grid; gap:.2rem; }
.board-list li{
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:1rem 1.2rem; border-radius:var(--r); background:#fff; border:1px solid var(--line);
  transition:border-color .15s, transform .12s;
}
.board-list li:hover{ border-color:var(--brand-bright); transform:translateX(3px); }
.board-list .role{ color:var(--muted); font-size:.9rem; }
.board-list .name{ font-family:var(--font-head); font-weight:700; color:var(--ink); }
.contact-box{ background:var(--ink); color:#ede2d4; border-radius:var(--r-lg); padding:clamp(24px,3vw,36px); }
.contact-box h3{ color:#fff; margin-bottom:1.2rem; }
.contact-mail{
  display:flex; align-items:center; gap:.7rem; font-family:var(--font-body); font-weight:600;
  color:#fff; background:rgba(255,255,255,.09); border:1px solid rgba(255,255,255,.18);
  padding:.9rem 1.1rem; border-radius:var(--r); word-break:break-all; transition:background .15s;
}
.contact-mail:hover{ background:rgba(255,255,255,.18); }
.contact-mail .ci{ font-size:1.2rem; }
.contact-addr{ color:#cbb5a2; font-size:.92rem; margin:1.2rem 0; }
.downloads{ display:flex; flex-wrap:wrap; gap:.7rem; }
.dl{
  display:inline-flex; align-items:center; gap:.5rem; font-weight:600; font-size:.9rem;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16);
  padding:.6rem 1rem; border-radius:999px; color:#f0e6d8; transition:background .15s;
}
.dl:hover{ background:rgba(255,255,255,.18); }

/* ---------- Footer ---------- */
.site-footer{ background:#2a2018; color:#c9b8a6; padding:clamp(40px,6vw,64px) 0 28px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:32px; padding-bottom:28px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand p{ margin:.8rem 0 0; font-size:.92rem; }
.footer-nav, .footer-legal{ display:flex; flex-direction:column; gap:.6rem; }
.footer-nav a, .footer-legal a{ color:#c9b8a6; font-size:.94rem; transition:color .15s; width:max-content; }
.footer-nav a:hover, .footer-legal a:hover{ color:#fff; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:.6rem; padding-top:20px; font-size:.84rem; color:#a89580; }
.footer-proto{ background:rgba(255,255,255,.08); padding:.25rem .7rem; border-radius:999px; }

/* ---------- Lightbox ---------- */
.lightbox{ position:fixed; inset:0; z-index:100; background:rgba(28,18,10,.93); display:flex; align-items:center; justify-content:center; padding:24px; backdrop-filter:blur(4px); }
.lightbox[hidden]{ display:none; }
.lb-figure{ margin:0; max-width:min(1000px,92vw); max-height:86vh; display:flex; flex-direction:column; align-items:center; }
.lb-figure img{ max-width:100%; max-height:78vh; border-radius:var(--r); box-shadow:var(--sh-lg); object-fit:contain; }
.lb-figure figcaption{ color:#ece1d3; margin-top:.9rem; font-size:.95rem; text-align:center; }
.lb-close{ position:absolute; top:18px; right:22px; width:46px; height:46px; border-radius:50%; border:none; background:rgba(255,255,255,.14); color:#fff; font-size:1.8rem; line-height:1; }
.lb-close:hover{ background:rgba(255,255,255,.26); }
.lb-nav{ position:absolute; top:50%; transform:translateY(-50%); width:52px; height:52px; border-radius:50%; border:none; background:rgba(255,255,255,.14); color:#fff; font-size:2rem; line-height:1; display:grid; place-items:center; }
.lb-nav:hover{ background:rgba(255,255,255,.26); }
.lb-prev{ left:18px; } .lb-next{ right:18px; }

/* ---------- Scroll-Reveal ---------- */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1000px){
  .cards .card{ flex-basis:calc(50% - 12px); }
  .training-grid{ grid-template-columns:repeat(2,1fr); }
  .cal-layout{ grid-template-columns:1fr; }
  .gallery{ grid-template-columns:repeat(2,1fr); grid-auto-rows:180px; }
  .gal-lg{ grid-column:span 2; grid-row:span 1; }
}

/* Navigation klappt früh genug ein, um die Tablet-Engstelle zu vermeiden */
@media (max-width:900px){
  .nav-toggle{ display:flex; }
  .main-nav{
    position:fixed; top:0; right:0; height:100dvh; width:min(82vw,340px);
    flex-direction:column; align-items:stretch; gap:.2rem;
    background:#fff; padding:calc(var(--header-h) + 18px) 20px 28px;
    box-shadow:-20px 0 50px rgba(50,32,18,.25);
    transform:translateX(100%); visibility:hidden;
    transition:transform .32s cubic-bezier(.4,0,.2,1), visibility .32s;
    z-index:58; overflow-y:auto;
  }
  .main-nav.open{ transform:translateX(0); visibility:visible; }
  .main-nav a{ font-size:1.1rem; padding:.85rem 1rem; border-radius:var(--r); }
  .main-nav .nav-cta{ margin:.6rem 0 0; text-align:center; justify-content:center; padding:.9rem; }
}

@media (max-width:760px){
  :root{ --header-h:64px; }
  .intro-grid{ grid-template-columns:1fr; }
  .intro-photo{ order:-1; }
  .intro-text .kicker{ text-align:left; }

  .contact-grid{ grid-template-columns:1fr; }
  .quotes{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:24px; }

  .hero{ min-height:88vh; min-height:88dvh; }
  .hero-stats{ gap:1.5rem; }
  .hero-stats strong{ font-size:1.6rem; }
  .cta-inner{ flex-direction:column-reverse; align-items:flex-start; }
  .cta-price{ width:130px; height:130px; }
  .price-num{ font-size:2rem; }

  .board-list li{ flex-direction:column; align-items:flex-start; gap:.15rem; }
}

@media (max-width:520px){
  .cards .card{ flex-basis:100%; }
  .training-grid{ grid-template-columns:1fr 1fr; }
  .gallery{ grid-template-columns:1fr 1fr; grid-auto-rows:140px; }
  .cal-cell{ font-size:.8rem; }
  .hero-actions .btn{ width:100%; }
  .section-head{ text-align:left; }
  .section-head{ margin-left:0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; scroll-behavior:auto !important; }
  .reveal{ opacity:1; transform:none; transition:none; }
}
