/* ═══════════════════════════════════════════════════════
   TSV Rösrath – main.css  v1.0.0
   ═══════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ──────────────────────────────── */
:root {
  --navy:      #1A2B4A;
  --gold:      #C8972A;
  --gold-lt:   #E8B84B;
  --blue:      #2E4D7B;
  --cream:     #f8f6f2;
  --sand:      #EDE8DF;
  --white:     #ffffff;
  --text:      #2a2a2a;
  --text-lt:   #666666;
  --green:     #27AE60;
  --radius:    10px;
  --shadow:    0 8px 40px rgba(26,43,74,.12);
  --shadow-sm: 0 2px 16px rgba(26,43,74,.08);
  --trans:     .3s cubic-bezier(.4,0,.2,1);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-serif:'Lora', serif;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; color: var(--navy); }
p { line-height: 1.75; font-weight: 400; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }

/* ── LAYOUT ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.site-wrapper { /* wraps everything between header & footer */ }
.section { padding: 100px 0; }
.section--sm { padding: 72px 0; }

/* ── SHARED ELEMENTS ─────────────────────────────────── */
.section__label {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: .8rem;
}
.section__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 1rem;
}
.section__title span { color: var(--gold); }
.section__title--white { color: #fff; }
.section__sub { font-size: 1.05rem; color: var(--text-lt); max-width: 560px; line-height: 1.7; font-weight: 400; }
.gold-line { width: 56px; height: 4px; background: var(--gold); border-radius: 2px; margin: 1rem 0 1.5rem; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 7px;
  font-family: var(--font-head); font-size: .85rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; cursor: pointer;
  transition: var(--trans); border: 2px solid transparent;
  text-decoration: none;
}
.btn--primary  { background: var(--gold);  color: #fff; border-color: var(--gold); }
.btn--primary:hover { background: #fff; color: var(--gold); }
.btn--navy     { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--navy:hover { background: var(--gold); border-color: var(--gold); }
.btn--outline  { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--outline-white:hover { background: #fff; color: var(--gold); border-color: #fff; }
.btn--ghost { background: rgba(255,255,255,.15); color: #fff; border-color: transparent; }
.btn--ghost:hover { background: rgba(255,255,255,.25); }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,151,42,.2);
  box-shadow: 0 2px 24px rgba(26,43,74,.08);
  transition: var(--trans);
}
.site-nav__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px;
}
.site-nav__logo {
  display: flex; align-items: center; gap: .9rem; cursor: pointer;
  text-decoration: none;
}
.logo-icon {
  width: 44px; height: 44px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: var(--gold); font-weight: 900; letter-spacing: -1px;
  flex-shrink: 0; position: relative; overflow: hidden;
}
.logo-icon::after {
  content: ''; position: absolute; bottom: -4px; right: -4px;
  width: 18px; height: 18px; background: var(--gold); border-radius: 50%;
}
.logo-text strong { display: block; font-size: .95rem; font-weight: 800; color: var(--navy); }
.logo-text span   { font-size: .68rem; color: var(--gold); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }

.site-nav__menu { display: flex; gap: .2rem; }
.site-nav__menu li a {
  display: block; padding: .5rem .85rem; border-radius: 6px;
  font-size: .8rem; font-weight: 600; letter-spacing: .5px;
  color: var(--text); transition: var(--trans); text-transform: uppercase;
}
.site-nav__menu li a:hover,
.site-nav__menu li.current-menu-item > a { color: var(--gold); background: rgba(200,151,42,.08); }
/* Kontakt-Link als Button */
.site-nav__menu li:last-child a {
  background: var(--gold); color: #fff; border-radius: 6px;
}
.site-nav__menu li:last-child a:hover { background: var(--navy); }

/* Mobile toggle */
.site-nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.site-nav__toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--trans); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: #fff; padding: 1.5rem 2rem 2rem;
  box-shadow: 0 8px 32px rgba(26,43,74,.12);
  transform: translateY(-20px); opacity: 0; pointer-events: none;
  transition: var(--trans);
}
.mobile-menu.open { transform: none; opacity: 1; pointer-events: all; }
.mobile-menu__list li a { display: block; padding: .85rem 0; font-weight: 600; font-size: 1rem; border-bottom: 1px solid var(--sand); color: var(--navy); }
.mobile-menu__list li:last-child a { color: var(--gold); border: none; }

/* ═══════════════════════════════════════════════════════
   HERO (Startseite)
   ═══════════════════════════════════════════════════════ */
.hero {
  height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; background: var(--navy);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200,151,42,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 20%, rgba(46,77,123,.4) 0%, transparent 50%),
    linear-gradient(135deg, #0d1b30 0%, #1A2B4A 40%, #1e3560 100%);
}
.hero__decoration { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.dance-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(200,151,42,.12);
  animation: pulse-ring 6s ease-in-out infinite;
}
.dance-ring:nth-child(1) { width: 500px; height: 500px; top: -100px; right: -100px; }
.dance-ring:nth-child(2) { width: 350px; height: 350px; top: 50px; right: 50px; animation-delay: 1s; border-color: rgba(200,151,42,.08); }
.dance-ring:nth-child(3) { width: 700px; height: 700px; bottom: -200px; left: -150px; animation-delay: 2s; }
.dance-ring:nth-child(4) { width: 200px; height: 200px; top: 40%; left: 8%; animation-delay: .5s; border-color: rgba(200,151,42,.2); }
@keyframes pulse-ring { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.05);opacity:1} }
.hero-dot { position: absolute; border-radius: 50%; background: var(--gold); opacity: .25; animation: float-dot 8s ease-in-out infinite; }
.hero-dot:nth-child(5) { width: 6px; height: 6px; top: 25%; left: 15%; }
.hero-dot:nth-child(6) { width: 4px; height: 4px; top: 60%; left: 80%; animation-delay: 2s; }
.hero-dot:nth-child(7) { width: 8px; height: 8px; top: 80%; left: 40%; animation-delay: 4s; opacity: .15; }
@keyframes float-dot { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

.hero__content {
  position: relative; z-index: 2; text-align: center; padding: 0 1.5rem;
  animation: hero-enter .9s cubic-bezier(.16,1,.3,1) both;
}
@keyframes hero-enter { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:none} }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem; padding: .45rem 1.2rem;
  border: 1px solid rgba(200,151,42,.35); border-radius: 100px; background: rgba(200,151,42,.08);
}
.hero__eyebrow::before { content: '✦'; font-size: .65rem; }
.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900; color: #fff;
  line-height: 1.05; margin-bottom: .5rem; letter-spacing: -1px;
}
.hero__title--gold { color: var(--gold); }
.hero__title--outline { color: transparent; -webkit-text-stroke: 2px var(--gold); }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.72);
  max-width: 540px; margin: 1.4rem auto 2.8rem; line-height: 1.7;
  font-weight: 400; font-family: var(--font-serif); font-style: italic;
}
.hero__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.4); font-size: .65rem; letter-spacing: 2px; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll::after { content: ''; width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(200,151,42,.6), transparent); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ═══════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════ */
.stats-bar { background: var(--navy); }
.stats-bar__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.06); }
.stat-item { padding: 2rem 1.5rem; border-right: 1px solid rgba(255,255,255,.06); text-align: center; transition: var(--trans); }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(200,151,42,.07); }
.stat-item__num   { font-size: 2.2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-item__label { font-size: .72rem; color: rgba(255,255,255,.5); letter-spacing: 1.5px; text-transform: uppercase; margin-top: .4rem; font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   INFO CARDS
   ═══════════════════════════════════════════════════════ */
.aktuelles { background: var(--cream); }
.info-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.info-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow-sm); transition: var(--trans); position: relative; overflow: hidden;
}
.info-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: var(--trans);
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.info-card:hover::before { transform: scaleX(1); }
.info-card__icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(200,151,42,.1); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.2rem; }
.info-card__title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.info-card__text { font-size: .88rem; color: var(--text-lt); line-height: 1.75; font-weight: 400; }

/* ═══════════════════════════════════════════════════════
   USP GRID
   ═══════════════════════════════════════════════════════ */
.usps { background: var(--white); }
.usp-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--sand); margin-top: 3.5rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.usp-item { background: var(--white); padding: 2.5rem; transition: var(--trans); display: flex; gap: 1.5rem; align-items: flex-start; }
.usp-item:hover { background: #fafdf7; }
.usp-item__num  { font-size: 3rem; font-weight: 900; color: rgba(200,151,42,.15); line-height: 1; flex-shrink: 0; width: 48px; }
.usp-item__title{ font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.usp-item__text { font-size: .87rem; color: var(--text-lt); line-height: 1.7; font-weight: 400; }

/* ═══════════════════════════════════════════════════════
   TRAINER TEASER (Startseite)
   ═══════════════════════════════════════════════════════ */
.trainer-teaser {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3560 100%);
  position: relative; overflow: hidden;
}
.trainer-teaser::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,151,42,.1) 0%, transparent 70%);
}
.trainer-teaser__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 100px 2rem; }
.trainer-teaser__visual { position: relative; display: flex; justify-content: center; }
.trainer-photo {
  width: 320px; height: 380px; border-radius: 20px;
  background: linear-gradient(145deg, #2a4070, #1a2b4a);
  overflow: hidden; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.4); border: 2px solid rgba(200,151,42,.3);
  display: flex; align-items: flex-end; justify-content: center;
}
.trainer-photo__img { width: 100%; height: 100%; object-fit: cover; }
.trainer-photo__placeholder { font-size: 10rem; opacity: .08; line-height: 1; color: white; margin-bottom: -1rem; }
.trainer-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--gold); color: #fff; padding: .9rem 1.2rem; border-radius: 12px;
  text-align: center; box-shadow: 0 8px 24px rgba(200,151,42,.4);
}
.trainer-badge__num { font-size: 1.6rem; font-weight: 900; line-height: 1; }
.trainer-badge__txt { font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: .9; }
.trainer-teaser__bio { color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 1.8rem; font-weight: 400; font-size: .95rem; }
.achievements { margin-bottom: 2rem; }
.achievements li { display: flex; align-items: center; gap: .8rem; font-size: .85rem; color: rgba(255,255,255,.8); margin-bottom: .5rem; }
.achievements li::before { content: '🏆'; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #C8972A 0%, #a87820 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '✦  DÜRFEN WIR BITTEN?  ✦';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 8rem; font-weight: 900; color: rgba(255,255,255,.05);
  white-space: nowrap; pointer-events: none; letter-spacing: 8px;
}
.cta-banner__title { font-size: clamp(1.8rem,3.5vw,2.5rem); font-weight: 800; color: white; margin-bottom: .8rem; }
.cta-banner__sub { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1rem; font-weight: 400; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   PAGE HERO (Unterseiten)
   ═══════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 160px 0 80px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: var(--cream); clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero__label { color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: .8rem; }
.page-hero__title { font-size: clamp(2.5rem,5vw,4rem); font-weight: 900; color: white; line-height: 1.1; }

/* ═══════════════════════════════════════════════════════
   ÜBER UNS
   ═══════════════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.about-text p { color: var(--text-lt); line-height: 1.85; margin-bottom: 1.2rem; font-size: .97rem; }
.about-quote {
  background: var(--navy); border-radius: var(--radius); padding: 2rem;
  margin: 2rem 0; position: relative; overflow: hidden; border-left: 4px solid var(--gold);
  font-family: var(--font-serif); font-style: italic; color: rgba(255,255,255,.85); font-size: 1.05rem;
  line-height: 1.7;
}
.download-cards { display: flex; flex-direction: column; gap: 1rem; }
.dl-card {
  background: var(--white); border-radius: var(--radius); padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 1rem;
  transition: var(--trans); cursor: pointer; border: 1px solid var(--sand); text-decoration: none;
}
.dl-card:hover { border-color: var(--gold); transform: translateX(6px); }
.dl-card__icon { width: 44px; height: 44px; background: rgba(200,151,42,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.dl-card__info strong { display: block; font-size: .9rem; font-weight: 700; color: var(--navy); }
.dl-card__info span { font-size: .78rem; color: var(--text-lt); }
.dl-card__arrow { margin-left: auto; color: var(--gold); font-size: 1.1rem; }
.quick-facts { background: var(--white); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); margin-top: 2.5rem; }
.quick-fact { display: flex; align-items: flex-start; gap: .8rem; padding: .6rem 0; border-bottom: 1px solid var(--sand); font-size: .88rem; color: var(--text-lt); }
.quick-fact:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════════════════
   TRAINING
   ═══════════════════════════════════════════════════════ */
.training-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.training-card { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow-sm); border-top: 4px solid var(--gold); }
.training-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 1.2rem; display: flex; align-items: center; gap: .7rem; }
.time-display { background: var(--navy); border-radius: 10px; padding: 1.5rem; text-align: center; margin: 1rem 0; }
.time-display__big { font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.time-display__sub { color: rgba(255,255,255,.6); font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase; margin-top: .4rem; }
.info-row { display: flex; align-items: flex-start; gap: .8rem; padding: .6rem 0; border-bottom: 1px solid var(--sand); font-size: .88rem; }
.info-row:last-child { border-bottom: none; }
.info-row strong { color: var(--navy); }
.info-row span { color: var(--text-lt); line-height: 1.6; }
.map-embed { border-radius: var(--radius); overflow: hidden; }
.map-embed iframe { width: 100%; height: 400px; border: 0; display: block; }
.map-placeholder {
  width: 100%; height: 300px; border-radius: var(--radius);
  background: linear-gradient(135deg, #e8f4f8 0%, #d4e8f0 100%);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden; border: 2px dashed rgba(46,77,123,.2);
}
.map-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg,transparent,transparent 39px,rgba(46,77,123,.06) 39px,rgba(46,77,123,.06) 40px),
              repeating-linear-gradient(90deg,transparent,transparent 39px,rgba(46,77,123,.06) 39px,rgba(46,77,123,.06) 40px);
}
.map-placeholder__pin { font-size: 3rem; }
.map-placeholder__label { color: var(--blue); font-size: .85rem; font-weight: 600; text-align: center; line-height: 1.6; }
.map-placeholder small { display: block; margin-top: .3rem; opacity: .6; }

/* ═══════════════════════════════════════════════════════
   TRAINER (Profilseite)
   ═══════════════════════════════════════════════════════ */
.trainer-profile { display: grid; grid-template-columns: 380px 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.profile-photo-wrap { position: sticky; top: 100px; }
.profile-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: 20px;
  background: linear-gradient(145deg, #2a4070, #1a2b4a); overflow: hidden; position: relative;
  box-shadow: 0 24px 64px rgba(26,43,74,.25); border: 2px solid rgba(200,151,42,.2);
  display: flex; align-items: flex-end; justify-content: center;
}
.profile-photo__img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.profile-photo__inner { position: relative; z-index: 2; padding: 1.5rem; width: 100%; }
.profile-name-overlay { background: rgba(26,43,74,.9); border-radius: 10px; padding: 1rem 1.2rem; }
.profile-name-overlay strong { display: block; font-size: 1.1rem; color: white; font-weight: 800; }
.profile-name-overlay span { font-size: .78rem; color: var(--gold); letter-spacing: 1px; }
.big-silhouette { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 12rem; opacity: .05; color: white; }
.profile-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.p-stat { background: var(--white); border-radius: 10px; padding: 1rem; text-align: center; box-shadow: var(--shadow-sm); }
.p-stat__num   { font-size: 1.6rem; font-weight: 900; color: var(--gold); }
.p-stat__label { font-size: .7rem; color: var(--text-lt); letter-spacing: 1px; text-transform: uppercase; margin-top: .2rem; }
.profile-content h2 { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: .3rem; }
.profile-role  { color: var(--gold); font-weight: 700; font-size: .9rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem; }
.profile-bio   { color: var(--text-lt); line-height: 1.85; margin-bottom: 2.5rem; font-size: .97rem; }
.trophy-list   { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.trophy-item {
  background: var(--white); border-radius: 10px; padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 1.2rem;
  transition: var(--trans); border-left: 4px solid transparent;
}
.trophy-item:hover { border-left-color: var(--gold); transform: translateX(4px); }
.trophy-item__yr  { font-size: 1.2rem; font-weight: 900; color: rgba(200,151,42,.25); }
.trophy-item__text{ font-size: .88rem; color: var(--navy); font-weight: 600; line-height: 1.4; }
.trophy-item__sub { font-size: .78rem; color: var(--text-lt); margin-top: .2rem; }
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: .8rem; }
.skill-tag { background: rgba(200,151,42,.08); border: 1px solid rgba(200,151,42,.2); border-radius: 8px; padding: .7rem 1rem; font-size: .82rem; font-weight: 600; color: var(--navy); text-align: center; }

/* ═══════════════════════════════════════════════════════
   PRESSE / BLOG
   ═══════════════════════════════════════════════════════ */
.press-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.press-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--trans); }
.press-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.press-card__thumb {
  height: 180px; background: linear-gradient(135deg,var(--navy),var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,.15); position: relative; overflow: hidden;
}
.press-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.date-badge { position: absolute; top: 1rem; right: 1rem; background: var(--gold); color: white; font-size: .7rem; font-weight: 700; padding: .3rem .7rem; border-radius: 100px; letter-spacing: .5px; }
.press-card__body { padding: 1.5rem; }
.press-card__title { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; line-height: 1.4; }
.press-card__title a { color: inherit; }
.press-card__excerpt { font-size: .83rem; color: var(--text-lt); line-height: 1.6; }
.press-card__link { color: var(--gold); font-size: .8rem; font-weight: 700; margin-top: .8rem; display: inline-flex; align-items: center; gap: .3rem; }

/* ═══════════════════════════════════════════════════════
   GALERIE
   ═══════════════════════════════════════════════════════ */
.gallery-filter { display: flex; gap: .5rem; margin: 2rem 0 2.5rem; flex-wrap: wrap; }
.filter-btn {
  padding: .5rem 1.2rem; border-radius: 100px; font-size: .8rem; font-weight: 600;
  cursor: pointer; transition: var(--trans); border: none;
  background: var(--white); color: var(--text-lt); box-shadow: var(--shadow-sm);
  font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: #fff; box-shadow: 0 4px 16px rgba(200,151,42,.3); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 1; background: var(--sand); cursor: pointer; position: relative; transition: var(--trans); }
.gallery-item:nth-child(7) { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item:hover { transform: scale(.98); box-shadow: var(--shadow); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item__overlay { position: absolute; inset: 0; background: rgba(26,43,74,.7); opacity: 0; transition: var(--trans); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold); }
.gallery-hint { text-align: center; color: var(--text-lt); font-size: .85rem; margin-top: 2rem; }

/* ═══════════════════════════════════════════════════════
   KONTAKT
   ═══════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.contact-info-card {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-sm); display: flex; align-items: flex-start; gap: 1.2rem;
  transition: var(--trans); margin-bottom: 1rem;
}
.contact-info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-info-card__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-info-card__label { font-size: .7rem; font-weight: 700; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: .3rem; }
.contact-info-card__value { font-size: .95rem; font-weight: 600; color: var(--navy); }
.contact-info-card__sub { font-size: .82rem; color: var(--text-lt); margin-top: .2rem; }
.form-card { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.form-card__title { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .78rem; font-weight: 700; color: var(--navy); letter-spacing: .5px; margin-bottom: .4rem; }
.form-control {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--sand); border-radius: 8px;
  font-family: var(--font-body); font-size: .9rem; color: var(--text);
  background: var(--cream); transition: var(--trans); outline: none;
}
.form-control:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(200,151,42,.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-check { display: flex; gap: .7rem; align-items: flex-start; font-size: .8rem; color: var(--text-lt); line-height: 1.5; margin: 1rem 0; }
.form-check input { margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.form-hint { text-align: center; font-size: .75rem; color: var(--text-lt); margin-top: .8rem; }
/* CF7 overrides */
.wpcf7 .wpcf7-submit { width: 100%; } /* Contact Form 7 submit button */

/* ═══════════════════════════════════════════════════════
   IMPRESSUM / LEGAL
   ═══════════════════════════════════════════════════════ */
.legal-content { background: var(--white); border-radius: var(--radius); padding: 3rem; box-shadow: var(--shadow-sm); margin-top: 2rem; max-width: 780px; }
.legal-content h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 1.5rem 0 .5rem; }
.legal-content h3:first-child { margin-top: 0; }
.legal-content p { font-size: .9rem; color: var(--text-lt); line-height: 1.8; font-weight: 400; }
.page-content { max-width: 780px; }
.page-content h2 { font-size: 1.5rem; margin: 2rem 0 1rem; }
.page-content p  { color: var(--text-lt); font-size: .97rem; }

/* ═══════════════════════════════════════════════════════
   SINGLE POST
   ═══════════════════════════════════════════════════════ */
.single-post__meta { color: var(--text-lt); font-size: .82rem; margin-bottom: 2rem; }
.single-post__nav { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--sand); display: flex; justify-content: space-between; font-size: .88rem; font-weight: 600; color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer { background: var(--navy); padding: 72px 0 0; position: relative; overflow: hidden; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--blue), var(--gold)); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand { }
.footer-brand .logo-text strong { color: white; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .85rem; line-height: 1.7; margin-top: 1rem; max-width: 260px; font-weight: 400; }
.footer-col__title { font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.2rem; }
.footer-nav li { margin-bottom: .6rem; }
.footer-nav li a { color: rgba(255,255,255,.65); font-size: .87rem; transition: var(--trans); font-weight: 400; }
.footer-nav li a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: .6rem; margin-bottom: .7rem; color: rgba(255,255,255,.65); font-size: .85rem; align-items: flex-start; }
.footer-contact .ico { color: var(--gold); flex-shrink: 0; }
.site-footer__bottom { margin-top: 3rem; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,.07); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { color: rgba(255,255,255,.3); font-size: .78rem; }
.footer-legal__list { display: flex; gap: 1.5rem; }
.footer-legal__list li a { color: rgba(255,255,255,.3); font-size: .78rem; transition: var(--trans); }
.footer-legal__list li a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ═══════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════ */
.pagination { margin-top: 3rem; display: flex; justify-content: center; gap: .5rem; }
.pagination .page-numbers { padding: .6rem 1rem; border-radius: 6px; background: var(--white); color: var(--navy); font-weight: 600; box-shadow: var(--shadow-sm); transition: var(--trans); }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--gold); color: white; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .trainer-profile { grid-template-columns: 300px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .site-nav__menu { display: none; }
  .site-nav__toggle { display: flex; }
  .mobile-menu { display: block; }
  .stats-bar__inner { grid-template-columns: repeat(2,1fr); }
  .info-cards { grid-template-columns: 1fr; max-width: 480px; }
  .usp-grid { grid-template-columns: 1fr; }
  .trainer-teaser__inner { grid-template-columns: 1fr; gap: 3rem; }
  .trainer-profile { grid-template-columns: 1fr; }
  .profile-photo-wrap { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .training-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item:nth-child(7) { grid-column: span 1; aspect-ratio: 1; }
  .press-grid { grid-template-columns: 1fr 1fr; }
  .profile-stats { grid-template-columns: repeat(4,1fr); }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero__title { font-size: 2.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .profile-stats { grid-template-columns: repeat(2,1fr); }
}
