:root {
  --color-primary: #1E4E8C;
  --color-primary-dark: #143561;
  --color-primary-light: #2E6BB8;
  --color-primary-50: #EFF4FA;
  --color-primary-100: #DCE7F4;
  --color-accent: #F5C518;
  --color-accent-dark: #D4A70E;
  --color-ink: #0F1A2B;
  --color-charcoal: #2A3442;
  --color-muted: #6B7280;
  --color-muted-light: #9CA3AF;
  --color-line: #E5E9EF;
  --color-line-dark: #CBD3DE;
  --color-surface: #FFFFFF;
  --color-surface-alt: #F7F9FC;
  --color-surface-alt-2: #EDF2F8;

  --font-display: 'Bitter', Georgia, serif;
  --font-editorial: 'Bitter', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  --text-xs: clamp(.75rem, .7rem + .25vw, .85rem);
  --text-sm: clamp(.875rem, .8rem + .35vw, .95rem);
  --text-base: clamp(1rem, .92rem + .4vw, 1.075rem);
  --text-lg: clamp(1.125rem, 1rem + .6vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1rem + 1.2vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1rem + 2vw, 2rem);
  --text-3xl: clamp(1.875rem, 1rem + 3.5vw, 2.75rem);
  --text-4xl: clamp(2.25rem, 1rem + 5vw, 3.75rem);
  --text-5xl: clamp(2.75rem, 1rem + 6.5vw, 5rem);

  --sp-2:.5rem; --sp-3:.75rem; --sp-4:1rem; --sp-5:1.25rem;
  --sp-6:1.5rem; --sp-8:2rem; --sp-10:2.5rem; --sp-12:3rem;
  --sp-16:4rem; --sp-20:5rem; --sp-24:6rem; --sp-32:8rem;

  --r-sm:8px; --r-md:16px; --r-lg:16px; --r-xl:16px;
  --max-w:1280px;

  --sh-sm:0 2px 8px rgba(15,26,43,.04);
  --sh-md:0 8px 30px rgba(15,26,43,.08);
  --sh-lg:0 20px 60px rgba(15,26,43,.12);
  --sh-primary:0 12px 36px -8px rgba(30,78,140,.45);
  --sh-accent:0 12px 36px -8px rgba(245,197,24,.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--color-primary) transparent; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-charcoal);
  background: var(--color-surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
::selection { background: var(--color-accent); color: var(--color-ink); }
::-moz-selection { background: var(--color-accent); color: var(--color-ink); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); border-radius: 10px; border: 2px solid var(--color-surface); }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-dark) 100%); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s ease; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--color-ink);
}
h1 { font-size: var(--text-5xl); font-weight: 700; }
h2 { font-size: var(--text-4xl); font-weight: 600; }
h3 { font-size: var(--text-xl); font-weight: 600; }
p { max-width: 68ch; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6); }
section { padding: var(--sp-32) 0; position: relative; }
@media (max-width: 768px) { section { padding: var(--sp-20) 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--color-primary);
  margin-bottom: var(--sp-4);
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--color-accent); }

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(.985);
  filter: blur(12px);
  transition:
    opacity 1.1s cubic-bezier(.16,.84,.32,1),
    transform 1.1s cubic-bezier(.16,.84,.32,1),
    filter 1.1s cubic-bezier(.16,.84,.32,1);
  will-change: opacity, transform, filter;
}
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible { opacity: 1; transform: none; filter: none; transition: none; }
}

/* Tilt hover: snappier transform transitions */
.leistung-card:hover, .stat-item:hover, .test-card:hover, .gal-card:hover {
  transition: box-shadow .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, transform .18s cubic-bezier(.25,.9,.3,1);
}
.leistung-card, .stat-item, .test-card, .gal-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.stagger > .reveal:nth-child(1) { transition-delay: .05s; }
.stagger > .reveal:nth-child(2) { transition-delay: .12s; }
.stagger > .reveal:nth-child(3) { transition-delay: .2s; }
.stagger > .reveal:nth-child(4) { transition-delay: .28s; }
.stagger > .reveal:nth-child(5) { transition-delay: .36s; }
.stagger > .reveal:nth-child(6) { transition-delay: .44s; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: 1em 2em;
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: 999px;
  transition: all .4s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 60%; height: 100%;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.45) 50%, transparent 75%);
  transform: skewX(-20deg);
  transition: left .9s cubic-bezier(.2,.7,.2,1);
  z-index: -1;
  pointer-events: none;
}
.btn:hover::before { left: 150%; }
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  box-shadow: 0 6px 20px -6px rgba(30,78,140,.45), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 18px 40px -10px rgba(30,78,140,.6), 0 2px 8px rgba(30,78,140,.2), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #FFD43D 100%);
  color: var(--color-ink);
  box-shadow: 0 6px 20px -6px rgba(245,197,24,.5), inset 0 1px 0 rgba(255,255,255,.45);
}
.btn-accent:hover {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 18px 40px -10px rgba(245,197,24,.65), 0 2px 8px rgba(245,197,24,.3), inset 0 1px 0 rgba(255,255,255,.5);
}
.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; transform: translateY(-3px) scale(1.015); box-shadow: var(--sh-primary); }
.btn-outline-light {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.45);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.btn-outline-light:hover {
  background: #fff; color: var(--color-primary); border-color: #fff;
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 18px 40px -10px rgba(255,255,255,.4);
}
.btn svg { width: 16px; height: 16px; transition: transform .3s ease; }
.btn:hover svg { transform: translateX(5px); }
.btn.btn-lg { padding: 1.2em 2.4em; font-size: var(--text-base); }
.btn.btn-xl { padding: 1.3em 2.8em; font-size: var(--text-lg); font-weight: 700; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: var(--sp-6) 0 var(--sp-4);
  transition: all .4s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  padding: var(--sp-3) 0 var(--sp-3);
}
@media (max-width: 640px) {
  .nav { padding: var(--sp-10) 0 var(--sp-4); }
  .nav.scrolled { padding: var(--sp-6) 0 var(--sp-3); }
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  transition: all .35s ease;
}
.nav-logo img {
  height: 140px;
  width: auto;
  display: block;
}
.nav.scrolled .nav-logo img {
  height: 100px;
}
@media (max-width: 640px) {
  .nav-logo img { height: 80px; }
  .nav.scrolled .nav-logo img { height: 64px; }
}
@media (max-width: 640px) {
  .nav-logo { width: 150px; height: 48px; }
  .nav.scrolled .nav-logo { width: 140px; height: 44px; }
}
.nav-menu { display: flex; align-items: center; gap: var(--sp-8); list-style: none; }
.nav-menu a {
  color: rgba(255,255,255,.92);
  font-size: var(--text-sm);
  font-weight: 500;
  position: relative; padding: .25em 0;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--color-accent);
  transition: width .3s ease;
}
.nav-menu a:hover::after { width: 100%; }
.nav.scrolled .nav-menu a { color: var(--color-charcoal); }
.nav-cta {
  padding: .7em 1.4em;
  background: var(--color-accent);
  color: var(--color-ink);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: 999px;
  transition: all .3s ease;
}
.nav-cta:hover { background: var(--color-accent-dark); transform: translateY(-1px); box-shadow: var(--sh-accent); }

.hamburger { display: none; width: 32px; height: 24px; position: relative; z-index: 110; }
.hamburger span { position: absolute; left: 0; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: all .3s ease; }
.hamburger span:nth-child(1) { top: 4px; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 18px; }
.nav.scrolled .hamburger span { background: var(--color-primary); }
.hamburger.open span { background: #fff !important; }
.hamburger.open span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--color-primary);
  z-index: 105;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--sp-6);
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.77,0,.175,1);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-display); font-size: var(--text-3xl); color: #fff; font-weight: 600; }
.mobile-menu a:hover { color: var(--color-accent); }
@media (max-width: 1024px) { .nav-menu, .nav-cta { display: none; } .hamburger { display: block; } }

/* === HERO === */
.hero {
  min-height: 115vh;
  position: relative;
  display: flex; align-items: center;
  padding: var(--sp-32) 0 var(--sp-24);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(.5) saturate(1.08);
  transform: scale(1.06) scaleX(-1);
  z-index: 0;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.06) scaleX(-1); }
  100% { transform: scale(1.12) scaleX(-1); }
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at var(--spot-x, 25%) var(--spot-y, 40%), rgba(245,197,24,.09) 0%, transparent 55%),
    linear-gradient(180deg, rgba(15,26,43,.6) 0%, rgba(15,26,43,.3) 45%, rgba(15,26,43,.92) 100%),
    linear-gradient(90deg, rgba(30,78,140,.55) 0%, rgba(30,78,140,.2) 50%, transparent 100%);
  transition: background .4s ease;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  left: var(--cursor-x, 50%); top: var(--cursor-y, 50%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245,197,24,.06) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s ease;
  z-index: 1;
  mix-blend-mode: screen;
  filter: blur(40px);
}
.hero:hover::before { opacity: 1; }
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-badges {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  padding: .5em 1.1em;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: var(--text-xs);
  color: #fff;
  letter-spacing: .08em;
  margin-bottom: var(--sp-6);
  text-transform: uppercase;
  font-weight: 500;
}
.hero-badges .dot { width: 8px; height: 8px; background: var(--color-accent); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 {
  color: #fff;
  max-width: 16ch;
  margin-bottom: var(--sp-6);
  font-weight: 800;
  font-size: clamp(3.25rem, 1rem + 8.5vw, 6.5rem);
  letter-spacing: -.025em;
  line-height: 1;
  text-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.hero h1 em {
  font-style: normal;
  color: var(--color-accent);
  font-weight: 800;
  text-shadow: 0 4px 30px rgba(245,197,24,.35);
}
.hero-sub {
  font-size: var(--text-lg);
  max-width: 56ch;
  color: rgba(255,255,255,.88);
  margin-bottom: var(--sp-10);
}
.hero-cta { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: var(--sp-3);
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-16);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .75em 1.35em;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: .01em;
  transition: all .3s ease;
}
.hero-trust-item:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(245,197,24,.5);
  transform: translateY(-2px);
}
.hero-trust-item svg {
  width: 18px; height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}
.hero-meta {
  position: absolute; bottom: var(--sp-8); left: 0; right: 0;
  display: flex; justify-content: space-between;
  padding: 0 var(--sp-6);
  max-width: var(--max-w); margin: 0 auto;
  font-size: var(--text-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  z-index: 2;
}
.hero-meta .scroll-ind { display: flex; align-items: center; gap: .75em; }
.hero-meta .scroll-ind::after {
  content: ''; width: 2px; height: 48px;
  background: linear-gradient(180deg, var(--color-accent) 0%, transparent 100%);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(.5); opacity: .3; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}
@media (max-width: 640px) { .hero-meta { flex-direction: column; gap: var(--sp-4); } .hero-meta .scroll-ind::after { display: none; } }

/* === STATS === */
.stats {
  background:
    radial-gradient(ellipse at top right, rgba(30,78,140,.07) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(245,197,24,.08) 0%, transparent 50%),
    var(--color-surface);
  padding: var(--sp-24) 0;
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.stats-head .eyebrow { margin-bottom: var(--sp-5); }
.stats-head h2 {
  margin-bottom: var(--sp-12);
  font-size: clamp(2.25rem, 1rem + 5vw, 3.75rem);
  font-weight: 700;
}
.stats-head h2 em { font-style: normal; color: var(--color-primary); font-weight: 700; }
.stats-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.stat-item {
  background: linear-gradient(145deg, rgba(255,255,255,.9) 0%, rgba(247,249,252,.7) 100%);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(30,78,140,.1);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  box-shadow: 0 10px 40px -10px rgba(15,26,43,.08), inset 0 1px 0 rgba(255,255,255,.7);
  transition: all .45s cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px -15px rgba(30,78,140,.22), inset 0 1px 0 rgba(255,255,255,.85);
  border-color: rgba(30,78,140,.22);
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 1rem + 4vw, 4rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-3);
  letter-spacing: -.02em;
}
.stat-num .suffix { color: var(--color-accent); }
.stat-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--sp-2);
  display: block;
  letter-spacing: -.005em;
}
.stat-desc { font-size: var(--text-sm); color: var(--color-muted); line-height: 1.55; }
.stats-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  position: relative;
}
.stats-img img { width: 100%; height: 100%; object-fit: cover; }
.stats-img::before {
  content: ''; position: absolute;
  top: -24px; right: -24px;
  width: 140px; height: 140px;
  background: var(--color-accent);
  border-radius: 50%;
  z-index: -1;
  opacity: .8;
}
.stats-img-wrap { position: relative; }
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .stats-list { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}
@media (max-width: 560px) { .stats-list { grid-template-columns: 1fr; } }

/* === ABOUT === */
.about { background: var(--color-surface-alt); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  position: relative;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrap::before {
  content: '';
  position: absolute;
  bottom: -28px; left: -28px;
  width: 200px; height: 200px;
  background: var(--color-primary-50);
  border-radius: 50%;
  z-index: 0;
}
.about-text h2 { margin-bottom: var(--sp-6); }
.about-text h2 em { font-style: italic; color: var(--color-primary); font-weight: 500; }
.about-text p { color: var(--color-muted); font-size: var(--text-lg); margin-bottom: var(--sp-4); }
.about-features {
  list-style: none;
  margin-top: var(--sp-10);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.about-features li {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .75em 1.2em;
  background: var(--color-surface);
  border: 1.5px solid var(--color-line);
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-charcoal);
  box-shadow: 0 2px 8px rgba(15,26,43,.04);
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  cursor: default;
}
.about-features li:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: 0 12px 28px -8px rgba(30,78,140,.3);
  background: var(--color-surface);
}
.about-features li:hover svg { color: var(--color-primary); transform: scale(1.15); }
.about-features svg {
  flex-shrink: 0;
  color: var(--color-accent);
  width: 18px; height: 18px;
  transition: all .35s ease;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } .about-features { grid-template-columns: 1fr; } }

/* === STUDIO TOUR TEASER === */
.tour { background: var(--color-surface); padding-top: var(--sp-16); padding-bottom: var(--sp-16); }
.tour-poster {
  position: relative;
  aspect-ratio: 21/9;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.tour-poster img { width: 100%; height: 100%; object-fit: cover; }
.tour-poster::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,26,43,.7) 0%, rgba(15,26,43,.35) 50%, rgba(15,26,43,.1) 100%);
  z-index: 1;
}
.tour-overlay {
  position: absolute;
  top: 50%; left: var(--sp-12);
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  max-width: 55%;
}
.tour-overlay .eyebrow { color: var(--color-accent); }
.tour-overlay .eyebrow::before { background: var(--color-accent); }
.tour-overlay h2 { color: #fff; margin-bottom: var(--sp-6); font-size: var(--text-3xl); }
.tour-overlay p { color: rgba(255,255,255,.88); margin-bottom: var(--sp-6); font-size: var(--text-base); }
@media (max-width: 900px) {
  .tour-poster { aspect-ratio: 4/5; }
  .tour-overlay { left: var(--sp-6); right: var(--sp-6); max-width: none; top: auto; bottom: var(--sp-8); transform: none; }
}

/* === SECTION HEAD === */
.sec-head { text-align: center; max-width: 62ch; margin: 0 auto var(--sp-16); }
.sec-head .eyebrow { justify-content: center; }
.sec-head .eyebrow::before { display: none; }
.sec-head .eyebrow-center { position: relative; padding: 0 var(--sp-8); }
.sec-head .eyebrow-center::before,
.sec-head .eyebrow-center::after {
  content: ''; position: absolute; top: 50%;
  width: 28px; height: 2px; background: var(--color-accent);
}
.sec-head .eyebrow-center::before { left: -20px; }
.sec-head .eyebrow-center::after { right: -20px; }
.sec-head h2 em { font-style: italic; color: var(--color-primary); font-weight: 500; }
.sec-head p { margin: var(--sp-4) auto 0; color: var(--color-muted); }

/* === LEISTUNGEN === */
.leistungen { background: var(--color-surface-alt); }
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.leistung-card {
  background: var(--color-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .45s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 4px 20px -4px rgba(15,26,43,.06);
  display: flex; flex-direction: column;
  border: 1px solid rgba(229,233,239,.8);
  position: relative;
}
.leistung-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 2px;
  background: linear-gradient(135deg, transparent 0%, transparent 50%, var(--color-accent) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.leistung-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px -20px rgba(30,78,140,.28), 0 8px 20px -8px rgba(15,26,43,.12);
  border-color: transparent;
}
.leistung-card:hover::after { opacity: 1; }
.leistung-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.leistung-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.leistung-card:hover .leistung-img img { transform: scale(1.08); }
.leistung-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,26,43,.4));
}
.leistung-badge {
  position: absolute; top: var(--sp-4); left: var(--sp-4); z-index: 2;
  padding: .35em .8em;
  background: var(--color-accent);
  color: var(--color-ink);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
}
.leistung-body { padding: var(--sp-8); display: flex; flex-direction: column; flex: 1; }
.leistung-body h3 { margin-bottom: var(--sp-3); }
.leistung-body p { color: var(--color-muted); font-size: var(--text-sm); margin-bottom: var(--sp-6); flex: 1; }
.leistung-link {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
}
.leistung-link svg { width: 14px; height: 14px; transition: transform .3s ease; }
.leistung-card:hover .leistung-link svg { transform: translateX(5px); }
.leistung-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1.1fr; align-items: stretch; }
.leistung-card-wide .leistung-img { aspect-ratio: auto; min-height: 340px; }
.leistung-card-wide .leistung-body { padding: var(--sp-12); justify-content: center; }
.leistung-card-wide h3 { font-size: var(--text-2xl); margin-bottom: var(--sp-4); }
.leistung-card-wide p { font-size: var(--text-base); max-width: 52ch; }
.leistung-kicker {
  display: inline-block;
  padding: .4em 1em;
  background: var(--color-primary-50);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: var(--sp-4);
}
@media (max-width: 900px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
  .leistung-card-wide { grid-template-columns: 1fr; }
  .leistung-card-wide .leistung-img { min-height: 240px; }
  .leistung-card-wide .leistung-body { padding: var(--sp-8); }
}
@media (max-width: 600px) { .leistungen-grid { grid-template-columns: 1fr; } }

/* === GALERIE (Ladys-Style mit Label+Description) === */
.galerie { background: var(--color-surface); }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.gal-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--sh-sm);
  transition: transform .4s ease, box-shadow .4s ease;
}
.gal-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.gal-card-img { aspect-ratio: 4/3; overflow: hidden; }
.gal-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gal-card:hover .gal-card-img img { transform: scale(1.06); }
.gal-card-body { padding: var(--sp-6) var(--sp-6) var(--sp-8); }
.gal-card-label {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-ink);
  display: block;
  margin-bottom: var(--sp-2);
}
.gal-card-desc { font-size: var(--text-sm); color: var(--color-muted); }
@media (max-width: 900px) { .galerie-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .galerie-grid { grid-template-columns: 1fr; } }

/* === KURSE === */
.kurse { background: var(--color-surface-alt); }
.kurse-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: end;
  margin-bottom: var(--sp-12);
}
.kurse-intro h2 em { color: var(--color-primary); font-style: italic; font-weight: 500; }
.kurse-intro p { color: var(--color-muted); max-width: 48ch; }
.kurse-tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-8); justify-content: center; }
.kurs-tag {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  padding: .6em 1.2em;
  border: 1.5px solid var(--color-line);
  background: var(--color-surface);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-charcoal);
  border-radius: 999px;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(15,26,43,.03);
}
.kurs-tag svg { width: 11px; height: 11px; color: var(--color-muted-light); transition: all .35s ease; }
.kurs-tag:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -8px rgba(30,78,140,.35);
}
.kurs-tag:hover svg { color: var(--color-accent); transform: translate(2px,-2px); }
.kurs-tag-static { cursor: default; }
.kurs-tag-static:hover { transform: translateY(-2px); box-shadow: 0 8px 20px -8px rgba(30,78,140,.25); }

.kursplan-wrap {
  background: linear-gradient(145deg, #fff 0%, #fafbfd 100%);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(15,26,43,.18), 0 4px 12px rgba(15,26,43,.05);
  border: 1px solid rgba(229,233,239,.8);
  overflow-x: auto;
  position: relative;
}
.kursplan-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  z-index: 3;
}
.kursplan-table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); }
.kursplan-table th {
  background: var(--color-primary);
  padding: var(--sp-4) var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: #fff;
  text-align: left;
}
.kursplan-table td {
  padding: var(--sp-4) var(--sp-3);
  border-bottom: 1px solid var(--color-line);
  vertical-align: top;
  color: var(--color-charcoal);
}
.kursplan-table tr:last-child td { border-bottom: 0; }
.kursplan-table .zeit {
  font-size: var(--text-xs);
  color: var(--color-primary);
  display: block;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.kursplan-table .kurs { font-weight: 500; color: var(--color-ink); display: block; margin-top: 2px; }
.kursplan-table td.empty { color: var(--color-muted); opacity: .35; }

.kurse-cta-wrap { text-align: center; margin-top: var(--sp-12); }
.kurse-footer { text-align: center; margin-top: var(--sp-6); color: var(--color-muted); font-size: var(--text-xs); }
.kurse-footer .legend { margin: 0 var(--sp-3); letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 900px) {
  .kurse-intro { grid-template-columns: 1fr; gap: var(--sp-6); align-items: start; }
  .kursplan-table { font-size: .8rem; min-width: 760px; }
}

/* === WELLNESS === */
.wellness { background: var(--color-ink); color: #fff; }
.wellness h2, .wellness h3 { color: #fff; }
.wellness .sec-head p { color: rgba(255,255,255,.72); }
.wellness .eyebrow { color: var(--color-accent); }
.wellness .eyebrow-center::before, .wellness .eyebrow-center::after { background: var(--color-accent); }
.wellness-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: var(--sp-4);
}
.wellness-tile { position: relative; overflow: hidden; border-radius: var(--r-md); }
.wellness-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.wellness-tile:hover img { transform: scale(1.07); }
.wellness-tile .wellness-img-contain {
  object-fit: contain;
  background: linear-gradient(145deg, #0d1624 0%, #1b2d47 100%);
  padding: 0;
  transform: scale(1.6);
  transform-origin: center 58%;
}
.wellness-tile:hover .wellness-img-contain { transform: scale(1.68); }
.wellness-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 55%, transparent 100%);
  z-index: 1;
}
.wellness-caption { position: absolute; bottom: var(--sp-6); left: var(--sp-6); right: var(--sp-6); z-index: 2; }
.wellness-caption .kicker {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: .35em;
}
.wellness-caption h3 { font-size: var(--text-xl); margin-bottom: .4em; color: #fff; }
.wellness-caption p { font-size: var(--text-sm); color: rgba(255,255,255,.8); max-width: 42ch; }
.wellness-tile.large { grid-row: span 2; }
.wellness-tile.large .wellness-caption h3 { font-size: var(--text-2xl); }
.wellness-link {
  display: inline-block;
  margin-top: .8em;
  font-size: var(--text-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 2px;
  font-weight: 600;
}
.wellness-link:hover { color: #fff; border-color: #fff; }
@media (max-width: 900px) {
  .wellness-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .wellness-tile { min-height: 280px; }
  .wellness-tile.large { grid-column: span 2; grid-row: auto; min-height: 360px; }
}
@media (max-width: 600px) {
  .wellness-grid { grid-template-columns: 1fr; }
  .wellness-tile.large { grid-column: auto; }
}

/* === PHYSIO === */
.physio {
  background:
    radial-gradient(ellipse at top left, rgba(30,78,140,.08) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(245,197,24,.08) 0%, transparent 50%),
    var(--color-surface-alt);
}
.physio-card {
  background: linear-gradient(145deg, #fff 0%, #fafbfd 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-16);
  box-shadow: 0 30px 80px -30px rgba(30,78,140,.28), 0 6px 16px rgba(15,26,43,.06);
  border: 1px solid rgba(229,233,239,.8);
  position: relative;
  overflow: hidden;
}
.physio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}
.physio-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.physio-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.physio-logo-banner {
  aspect-ratio: 416/121;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 6px 20px -6px rgba(15,26,43,.12);
  max-width: 300px;
  margin: 0 0 var(--sp-2);
}
.physio-logo-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.physio-gallery-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  background: var(--color-surface-alt-2);
}
.physio-gallery-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.physio-gallery-img:hover img { transform: scale(1.04); }
.physio-text h2 {
  font-size: clamp(2rem, 1rem + 3.5vw, 3.25rem);
  margin-bottom: var(--sp-5);
  font-weight: 700;
  letter-spacing: -.015em;
}
.physio-text h2 .studio-line {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--sp-3);
}
.physio-text h2 em { font-style: normal; color: var(--color-primary); font-weight: 700; }
.physio-text p { color: var(--color-muted); margin-bottom: var(--sp-4); font-size: var(--text-base); line-height: 1.75; }
.physio-pills {
  list-style: none;
  margin: var(--sp-8) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.physio-pills li {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .7em 1.15em;
  background: var(--color-surface);
  border: 1.5px solid var(--color-line);
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-charcoal);
  box-shadow: 0 2px 8px rgba(15,26,43,.04);
  transition: all .35s cubic-bezier(.2,.7,.2,1);
}
.physio-pills li:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: 0 12px 28px -8px rgba(30,78,140,.3);
}
.physio-pills li:hover svg { color: var(--color-primary); transform: scale(1.15); }
.physio-pills svg {
  flex-shrink: 0;
  color: var(--color-accent);
  width: 18px; height: 18px;
  transition: all .35s ease;
}
@media (max-width: 900px) {
  .physio-card { padding: var(--sp-10); }
  .physio-grid { grid-template-columns: 1fr; }
  .physio-logo-banner { max-width: 260px; }
}
@media (max-width: 560px) { .physio-card { padding: var(--sp-8); } }

/* === FORM SECTION (Ladys-Style) === */
.form-sec { background: var(--color-surface-alt); }
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.form-wrap > h2 { margin-bottom: var(--sp-3); }
.form-wrap > h2 em { font-style: italic; color: var(--color-primary); font-weight: 500; }
.form-wrap > p { color: var(--color-muted); margin: 0 auto var(--sp-10); font-size: var(--text-lg); max-width: 55ch; }
.form-card {
  background: var(--color-surface);
  padding: var(--sp-12);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-group { margin-bottom: var(--sp-5); }
.form-group.full { grid-column: span 2; }
.form-group label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--sp-2);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .9em 1.1em;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-ink);
  background: var(--color-surface-alt);
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  transition: all .3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-surface);
  box-shadow: 0 0 0 4px rgba(30,78,140,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.checkbox-row {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  margin: var(--sp-6) 0 var(--sp-4);
  font-size: var(--text-sm);
  color: var(--color-muted);
}
.checkbox-row input[type=checkbox] { margin-top: 4px; accent-color: var(--color-primary); width: 16px; height: 16px; }
.checkbox-row a { color: var(--color-primary); text-decoration: underline; }
.form-submit-wrap { text-align: center; margin-top: var(--sp-6); }
.form-submit-wrap .btn { width: 100%; justify-content: center; padding: 1.1em 2em; }
.form-trust {
  text-align: center;
  margin-top: var(--sp-6);
  font-size: var(--text-xs);
  color: var(--color-muted);
  display: inline-flex; align-items: center; gap: .4em;
  width: 100%;
  justify-content: center;
}
.form-trust svg { width: 14px; height: 14px; color: var(--color-primary); }

/* === FORM SUCCESS OVERLAY === */
.form-card { position: relative; overflow: hidden; }
.form-success-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--color-surface) 0%, var(--color-primary-50) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-8);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(.97);
  transition: all .65s cubic-bezier(.2,.9,.3,1.1);
  border-radius: inherit;
  z-index: 10;
}
.form-success-overlay.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.form-success-icon {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, #FFD43D 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(245,197,24,.5);
  animation: successPulse 2.2s ease-out infinite;
  position: relative;
}
.form-success-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(245,197,24,.35), transparent 40%, transparent 60%, rgba(245,197,24,.35));
  animation: successRotate 3s linear infinite;
  z-index: -1;
}
.form-success-icon svg {
  width: 48px; height: 48px;
  stroke: var(--color-ink);
  stroke-width: 3.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: successCheck .65s .25s cubic-bezier(.65,0,.45,1) forwards;
}
@keyframes successCheck { to { stroke-dashoffset: 0; } }
@keyframes successPulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,197,24,.55), 0 16px 40px -10px rgba(245,197,24,.6); }
  70%  { box-shadow: 0 0 0 24px rgba(245,197,24,0), 0 16px 40px -10px rgba(245,197,24,.6); }
  100% { box-shadow: 0 0 0 0 rgba(245,197,24,0),   0 16px 40px -10px rgba(245,197,24,.6); }
}
@keyframes successRotate { to { transform: rotate(360deg); } }
.form-success-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--color-ink);
  margin-top: var(--sp-3);
}
.form-success-title em { font-family: var(--font-editorial); font-style: italic; color: var(--color-primary); }
.form-success-text { color: var(--color-muted); max-width: 42ch; }
.form-success-overlay.error { background: linear-gradient(160deg, #fff 0%, #fef2f2 100%); }
.form-success-overlay.error .form-success-icon { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
.form-success-overlay.error .form-success-icon svg { stroke: #fff; }
.form-success-overlay.error .form-success-title em { color: #dc2626; }

.spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: -2px;
  margin-right: .4em;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 640px) {
  .form-card { padding: var(--sp-8); }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
}

/* === BIG CTA === */
.big-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-cta::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,197,24,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.big-cta::after {
  content: '';
  position: absolute; bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,107,184,.3) 0%, transparent 70%);
  border-radius: 50%;
}
.big-cta .container { position: relative; z-index: 1; }
.big-cta h2 { color: #fff; max-width: 22ch; margin: 0 auto var(--sp-6); font-weight: 700; }
.big-cta h2 em { font-style: italic; color: var(--color-accent); font-weight: 500; }
.big-cta p { color: rgba(255,255,255,.85); max-width: 60ch; margin: 0 auto var(--sp-10); font-size: var(--text-lg); }
.big-cta .eyebrow { color: var(--color-accent); justify-content: center; }
.big-cta .eyebrow-center::before, .big-cta .eyebrow-center::after { background: var(--color-accent); }
.big-cta-buttons { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

/* === TESTIMONIALS === */
.testimonials { background: var(--color-surface); }
.rating-overview { text-align: center; margin-bottom: var(--sp-12); }
.rating-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5rem);
  color: var(--color-primary);
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-2);
  font-weight: 700;
}
.rating-stars { color: var(--color-accent); letter-spacing: .18em; font-size: var(--text-2xl); margin-bottom: var(--sp-3); }
.rating-count { color: var(--color-muted); font-size: var(--text-sm); letter-spacing: .08em; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.test-card {
  background: var(--color-surface);
  padding: var(--sp-8);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--color-line);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.test-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.test-card .quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-accent);
  line-height: 1;
  position: absolute;
  top: var(--sp-4); right: var(--sp-6);
  opacity: .4;
  font-weight: 700;
}
.test-stars { color: var(--color-accent); letter-spacing: .1em; font-size: var(--text-sm); margin-bottom: var(--sp-4); }
.test-quote {
  font-size: var(--text-base);
  color: var(--color-charcoal);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
  font-style: italic;
}
.test-author { border-top: 1px solid var(--color-line); padding-top: var(--sp-4); display: flex; justify-content: space-between; align-items: center; }
.test-author strong { font-weight: 600; color: var(--color-ink); font-size: var(--text-sm); }
.test-author span { font-size: var(--text-xs); color: var(--color-muted); }
@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }

/* === KONTAKT (Ladys-Style: 4-Block-Grid) === */
.kontakt { background: var(--color-surface-alt); }
.kontakt-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-16);
}
.kontakt-block {
  background: var(--color-surface);
  padding: var(--sp-8);
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.kontakt-block:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.kontakt-block-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-primary-50);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-4);
}
.kontakt-block-icon svg { width: 24px; height: 24px; }
.kontakt-block-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--sp-3);
  display: block;
}
.kontakt-block-value {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-ink);
  font-weight: 500;
  line-height: 1.5;
}
.kontakt-block-value a:hover { color: var(--color-primary); }
.kontakt-block-value .oeff-row {
  display: flex; justify-content: space-between;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  padding: .25em 0;
}
.kontakt-block-value .oeff-row .day { color: var(--color-muted); font-weight: 400; }
.kontakt-block-value .oeff-row .time { font-variant-numeric: tabular-nums; font-weight: 600; }

.kontakt-map {
  aspect-ratio: 21/9;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.kontakt-map iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 900px) { .kontakt-blocks { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .kontakt-blocks { grid-template-columns: 1fr; } }

/* === FOOTER === */
.footer {
  background: var(--color-ink);
  color: rgba(255,255,255,.7);
  padding: var(--sp-20) 0 var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-16);
}
.footer-brand .footer-logo {
  display: inline-block;
  width: 230px;
  height: 72px;
  background-color: #fff;
  background-image: url('../Logos/sporttreff-logo-transparent.png');
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-5);
}
.footer-brand p { font-size: var(--text-sm); max-width: 42ch; margin-top: var(--sp-3); }
.footer h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-4);
}
.footer ul { list-style: none; }
.footer li { margin-bottom: var(--sp-3); font-size: var(--text-sm); }
.footer a:hover { color: var(--color-accent); }
.socials { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.socials a {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
  color: #fff;
}
.socials a:hover { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-ink); }
.socials svg { width: 16px; height: 16px; }
.footer-bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,.55);
  flex-wrap: wrap; gap: var(--sp-3);
}
.footer-bottom a:hover { color: var(--color-accent); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* === HORIZONTAL SCROLL PROGRESS (TOP) === */
.thread {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 101;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(30,78,140,.08) 0%, rgba(30,78,140,.12) 50%, rgba(30,78,140,.08) 100%);
}
.thread-line { display: none; }
.thread-progress {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 30%, var(--color-accent) 100%);
  box-shadow: 0 0 14px 0 rgba(245,197,24,.6), 0 0 28px 0 rgba(30,78,140,.35);
  transition: transform .12s linear;
  border-radius: 0 4px 4px 0;
}
.thread-progress::after {
  content: '';
  position: absolute;
  top: 0; right: -1px; bottom: 0;
  width: 24px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.85) 50%, transparent 100%);
  animation: progressShine 2.4s ease-in-out infinite;
  opacity: .65;
  mix-blend-mode: overlay;
}
@keyframes progressShine {
  0%, 100% { opacity: .3; transform: translateX(0); }
  50%      { opacity: .9; transform: translateX(-6px); }
}
.thread-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow:
    0 0 0 3px rgba(255,255,255,.95),
    0 0 0 5px rgba(245,197,24,.35),
    0 0 22px 4px rgba(245,197,24,.7);
  transform: translate(-50%, -50%);
  transition: left .12s linear;
}
.thread-dot::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
  opacity: .92;
}
.thread-label {
  position: absolute;
  top: 14px;
  left: 0;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--color-accent);
  white-space: nowrap;
  padding: .35em .9em;
  background: rgba(15,26,43,.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(245,197,24,.35);
  border-radius: 999px;
  box-shadow: 0 8px 24px -6px rgba(15,26,43,.45), 0 0 18px -4px rgba(245,197,24,.4);
  opacity: 0;
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), left .12s linear;
  pointer-events: none;
}
.thread-label.visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.thread-label:not(.visible) { transform: translateX(-50%) translateY(-4px); }
@media (max-width: 640px) {
  .thread { height: 3px; }
  .thread-dot { width: 12px; height: 12px; }
  .thread-label { display: none; }
}

.to-top {
  position: fixed;
  bottom: var(--sp-6); right: var(--sp-6);
  width: 48px; height: 48px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: all .3s ease;
  z-index: 50;
  box-shadow: var(--sh-md);
}
.to-top.visible { opacity: 1; pointer-events: auto; }
.to-top:hover { background: var(--color-accent); color: var(--color-ink); transform: translateY(-2px); }

/* === MODALS === */
.modal {
  position: fixed; inset: 0;
  background: rgba(15,26,43,.75);
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: var(--sp-6);
  overflow-y: auto;
}
.modal.open { display: flex; }
.modal-content {
  background: var(--color-surface);
  max-width: 780px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: var(--sp-12);
  border-radius: var(--r-lg);
  position: relative;
}
.modal-close {
  position: absolute;
  top: var(--sp-4); right: var(--sp-4);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-surface-alt);
  font-size: 1.2rem;
  color: var(--color-ink);
  transition: all .3s ease;
}
.modal-close:hover { background: var(--color-primary); color: #fff; }
.modal h2 { margin-bottom: var(--sp-6); color: var(--color-primary); }
.modal h3 { font-size: var(--text-base); margin: var(--sp-6) 0 var(--sp-3); color: var(--color-ink); }
.modal p, .modal li { font-size: var(--text-sm); color: var(--color-charcoal); margin-bottom: var(--sp-3); }
.modal ul { padding-left: var(--sp-6); }
.modal strong { color: var(--color-ink); }

/* === COOKIE === */
.cookie-banner {
  position: fixed; bottom: var(--sp-4); left: var(--sp-4); right: var(--sp-4);
  max-width: 560px;
  background: var(--color-ink);
  color: #fff;
  padding: var(--sp-6);
  border-radius: var(--r-md);
  z-index: 300;
  display: none;
  box-shadow: var(--sh-lg);
  border-top: 3px solid var(--color-accent);
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: var(--text-sm); color: rgba(255,255,255,.88); margin-bottom: var(--sp-4); max-width: none; }
.cookie-banner a { color: var(--color-accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.cookie-actions button {
  padding: .7em 1.3em;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .06em;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  transition: all .3s ease;
}
.cookie-actions button.primary { background: var(--color-accent); color: var(--color-ink); border-color: var(--color-accent); }

/* === SUBPAGE STYLES === */
.sub-hero {
  min-height: 72vh;
  position: relative;
  display: flex; align-items: center;
  padding: var(--sp-32) 0 var(--sp-20);
  color: #fff;
  overflow: hidden;
}
.sub-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(.5) saturate(1.05);
  z-index: 0;
}
.sub-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,26,43,.55) 0%, rgba(15,26,43,.35) 50%, rgba(15,26,43,.9) 100%),
    linear-gradient(90deg, rgba(30,78,140,.5) 0%, rgba(30,78,140,.15) 55%, transparent 100%);
}
.sub-hero-inner { position: relative; z-index: 2; width: 100%; }
.sub-hero .eyebrow { color: var(--color-accent); }
.sub-hero .eyebrow::before { background: var(--color-accent); }
.sub-hero h1 {
  color: #fff;
  max-width: 20ch;
  margin-bottom: var(--sp-5);
  font-weight: 700;
  font-size: clamp(2.5rem, 1rem + 6vw, 5rem);
  line-height: 1;
}
.sub-hero h1 em { font-style: italic; color: var(--color-accent); font-weight: 500; }
.sub-hero-sub {
  font-size: var(--text-lg);
  max-width: 56ch;
  color: rgba(255,255,255,.88);
  margin-bottom: var(--sp-8);
}
.sub-hero-back {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: var(--sp-8);
  transition: color .3s ease;
}
.sub-hero-back:hover { color: var(--color-accent); }
.sub-hero-back svg { width: 14px; height: 14px; transition: transform .3s ease; }
.sub-hero-back:hover svg { transform: translateX(-3px); }

.topic-nav {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  margin-top: var(--sp-10);
}
.topic-nav a {
  padding: .55em 1.2em;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(255,255,255,.85);
  transition: all .35s cubic-bezier(.2,.7,.2,1);
}
.topic-nav a:hover { background: rgba(255,255,255,.16); border-color: rgba(245,197,24,.5); transform: translateY(-2px); color: #fff; }
.topic-nav a.is-active { background: var(--color-accent); color: var(--color-ink); border-color: var(--color-accent); }

.sub-article { background: var(--color-surface); padding: var(--sp-32) 0; }
.sub-article-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.sub-article-text h2 { font-size: clamp(2rem, 1rem + 3.5vw, 3rem); margin-bottom: var(--sp-6); }
.sub-article-text h2 em { font-style: italic; color: var(--color-primary); font-weight: 500; }
.sub-article-text p { color: var(--color-muted); font-size: var(--text-base); line-height: 1.75; margin-bottom: var(--sp-4); }
.sub-article-img {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: relative;
}
.sub-article-img img { width: 100%; height: 100%; object-fit: cover; }
.sub-article-img::before {
  content: '';
  position: absolute;
  bottom: -24px; left: -24px;
  width: 160px; height: 160px;
  background: var(--color-accent);
  border-radius: 50%;
  z-index: -1;
  opacity: .5;
}
.sub-article-img-wrap { position: relative; }
@media (max-width: 900px) { .sub-article-grid { grid-template-columns: 1fr; } }

.sub-features { background: var(--color-surface-alt); padding: var(--sp-24) 0; }
.sub-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.sub-feature {
  background: var(--color-surface);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(229,233,239,.8);
  transition: all .4s cubic-bezier(.2,.7,.2,1);
}
.sub-feature:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--color-primary); }
.sub-feature-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-4);
}
.sub-feature-num .suffix { color: var(--color-accent); }
.sub-feature h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.sub-feature p { color: var(--color-muted); font-size: var(--text-sm); }
@media (max-width: 900px) { .sub-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sub-features-grid { grid-template-columns: 1fr; } }

/* Clickable card: cursor + hover */
.leistung-card { cursor: pointer; }

/* =============================================
   MOBILE OPTIMIERUNGEN (max-width: 640px)
   ============================================= */
@media (max-width: 640px) {

  /* --- Hero --- */
  .hero {
    min-height: 100svh;
    padding: var(--sp-32) 0 var(--sp-16);
    align-items: flex-end;
  }
  .hero h1 {
    font-size: clamp(2.25rem, 8vw + 0.5rem, 3.5rem);
    max-width: 100%;
  }
  .hero-sub {
    font-size: var(--text-base);
    max-width: 100%;
  }
  .hero-badges { margin-bottom: var(--sp-4); }
  .hero-cta { flex-direction: column; gap: var(--sp-2); }
  .hero-cta .btn { width: 100%; justify-content: center; min-height: 0; }
  .hero-trust { gap: var(--sp-2); margin-top: var(--sp-8); margin-bottom: var(--sp-8); }
  .hero-trust-item { font-size: 0.8rem; padding: .6em 1em; }
  .hero-meta { display: none; }

  /* --- Nav --- */
  .nav { padding: var(--sp-2) 0; }
  .nav.scrolled { padding: var(--sp-2) 0; }
  .nav-logo img { height: 80px; }
  .nav.scrolled .nav-logo img { height: 64px; }

  /* --- Stats --- */
  .stats-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .stats-img-wrap { display: none; }
  .stats-list { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: clamp(2.25rem, 8vw, 3rem); }

  /* --- About --- */
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .about-img { aspect-ratio: 16/9; }
  .about-features { grid-template-columns: 1fr; }

  /* --- Tour --- */
  .tour-poster { aspect-ratio: 3/2; }

  /* --- Leistungen --- */
  .leistungen-grid { grid-template-columns: 1fr; }
  .leistung-card-wide { grid-template-columns: 1fr; }
  .leistung-card-wide .leistung-img { min-height: 220px; }

  /* --- Wellness --- */
  .wellness-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .wellness-tile { grid-column: unset !important; grid-row: unset !important; min-height: 240px; }

  /* --- Physio --- */
  .physio-grid { grid-template-columns: 1fr; }
  .physio-logo-banner { max-width: 200px; }
  .physio-card { padding: var(--sp-6); }
  .physio-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .physio-logo-banner { grid-column: 1 / -1; }

  /* --- Kurse --- */
  .kurse-header { flex-direction: column; align-items: flex-start; gap: var(--sp-4); }

  /* --- Kontakt --- */
  .kontakt-blocks { grid-template-columns: 1fr; }
  .kontakt-map { aspect-ratio: 4/3; }

  /* --- Footer --- */
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }

  /* --- Buttons --- */
  .btn { min-height: 0; }
  .btn-xl { font-size: var(--text-sm); padding: .75em 1.5em; }

  /* --- Mobile Menu --- */
  .mobile-menu a { min-height: 56px; display: flex; align-items: center; }

  /* --- Testimonials --- */
  .test-grid { grid-template-columns: 1fr; }

  /* --- Form --- */
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .form-card { padding: var(--sp-6); }
  .form-label { font-size: var(--text-sm); }

  /* --- Große CTA Sektion --- */
  .cta-section { padding: var(--sp-16) 0; }
  .cta-section h2 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
}
