/* ============================================================
 * FILE: style.css
 * PATH: .../themes/theme-neroberg-zen/css/style.css
 * PROJECT: Studio 85 — Neroberg Zen Theme
 * PURPOSE: Premium Yoga Studio Theme — Waldgruen, Nebel, Zen
 * ============================================================ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  /* Farben */
  --c-primary: #3D5A3E;
  --c-primary-light: #5A7D5A;
  --c-primary-dark: #2A3F2B;
  --c-secondary: #B8860B;
  --c-secondary-light: #D4A030;
  --c-secondary-soft: rgba(184, 134, 11, 0.15);
  --c-accent: #8B7DB8;
  --c-accent-soft: rgba(139, 125, 184, 0.15);
  --c-dark: #121A12;
  --c-dark-mid: #1E2D1E;
  --c-light: #F5F2ED;
  --c-light-warm: #EDE8DF;
  --c-white: #FAFAF7;
  --c-text: #2A2A25;
  --c-text-muted: #6B6B60;
  --c-text-light: rgba(245, 242, 237, 0.85);
  --c-text-on-dark: #D4D0C8;
  --c-border: rgba(61, 90, 62, 0.12);
  --c-border-light: rgba(61, 90, 62, 0.06);

  /* Gradients */
  --grad-hero: linear-gradient(180deg, #121A12 0%, #1E2D1E 30%, #3D5A3E 70%, #5A7D5A 100%);
  --grad-forest: linear-gradient(135deg, #121A12 0%, #1E2D1E 50%, #2A3F2B 100%);
  --grad-mist: linear-gradient(180deg, rgba(245,242,237,0) 0%, rgba(245,242,237,0.8) 40%, #F5F2ED 100%);
  --grad-gold: linear-gradient(135deg, #B8860B 0%, #D4A030 50%, #B8860B 100%);
  --grad-zen: radial-gradient(ellipse at 50% 50%, rgba(139,125,184,0.08) 0%, transparent 70%);

  /* Typography */
  --f-heading: 'Fraunces', Georgia, serif;
  --f-body: 'DM Sans', -apple-system, sans-serif;
  --f-size-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --f-size-sm: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  --f-size-base: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  --f-size-md: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  --f-size-lg: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  --f-size-xl: clamp(2rem, 1.5rem + 2.5vw, 3.2rem);
  --f-size-xxl: clamp(2.5rem, 1.8rem + 3.5vw, 4.5rem);
  --f-size-hero: clamp(3rem, 2rem + 5vw, 6.5rem);

  /* Spacing */
  --s-xs: 0.5rem;
  --s-sm: 1rem;
  --s-md: 1.5rem;
  --s-lg: 2.5rem;
  --s-xl: 4rem;
  --s-xxl: 6rem;
  --s-section: clamp(5rem, 4rem + 5vw, 10rem);

  /* Layout */
  --max-w: 1280px;
  --max-w-narrow: 900px;
  --max-w-text: 680px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-organic: 60% 40% 50% 50% / 50% 60% 40% 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(18, 26, 18, 0.06);
  --shadow-md: 0 4px 24px rgba(18, 26, 18, 0.08);
  --shadow-lg: 0 8px 48px rgba(18, 26, 18, 0.12);
  --shadow-glow-gold: 0 0 40px rgba(184, 134, 11, 0.15);
  --shadow-glow-accent: 0 0 40px rgba(139, 125, 184, 0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 200ms;
  --t-base: 400ms;
  --t-slow: 800ms;
  --t-slower: 1200ms;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--f-body);
  font-size: var(--f-size-base);
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-light);
  overflow-x: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-out);
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--c-dark);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--f-size-hero); font-weight: 300; }
h2 { font-size: var(--f-size-xxl); }
h3 { font-size: var(--f-size-xl); }
h4 { font-size: var(--f-size-lg); }
h5 { font-size: var(--f-size-md); }

p + p { margin-top: 1em; }

.text-muted { color: var(--c-text-muted); }
.text-accent { color: var(--c-accent); }
.text-gold { color: var(--c-secondary); }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 3vw, 3rem);
}

.container--narrow {
  max-width: var(--max-w-narrow);
}

.container--text {
  max-width: var(--max-w-text);
}

/* ─── Section ─── */
.section {
  padding: var(--s-section) 0;
  position: relative;
}

.section--dark {
  background: var(--c-dark);
  color: var(--c-text-on-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--c-light);
}

.section--forest {
  background: var(--grad-forest);
  color: var(--c-text-on-dark);
}

.section--forest h2,
.section--forest h3 {
  color: var(--c-light);
}

.section-label {
  font-family: var(--f-body);
  font-size: var(--f-size-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--s-md);
}

.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--c-secondary);
}

.section-title {
  margin-bottom: var(--s-lg);
}

.section-intro {
  font-size: var(--f-size-md);
  color: var(--c-text-muted);
  max-width: 600px;
  margin-bottom: var(--s-xl);
  line-height: 1.6;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--t-base) var(--ease-out);
}

.nav.scrolled {
  background: rgba(18, 26, 18, 0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 3vw, 3rem);
}

.nav__logo {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--c-light);
  letter-spacing: 0.05em;
  display: flex;
  align-items: baseline;
  gap: 0.3em;
}

.nav__logo-number {
  font-size: 0.65em;
  color: var(--c-secondary);
  font-weight: 400;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: var(--f-size-sm);
  color: var(--c-text-on-dark);
  font-weight: 400;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--t-fast) var(--ease-out);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-secondary);
  transition: width var(--t-base) var(--ease-out);
}

.nav__link:hover {
  color: var(--c-light);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link.active {
  color: var(--c-secondary-light);
}

.nav__cta {
  font-size: var(--f-size-sm);
  font-weight: 500;
  color: var(--c-dark) !important;
  background: var(--c-secondary);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  transition: all var(--t-fast) var(--ease-out);
}

.nav__cta:hover {
  background: var(--c-secondary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-gold);
}

.nav__cta::after { display: none; }

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--c-light);
  border-radius: 2px;
  transition: all var(--t-base) var(--ease-out);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-hero);
  overflow: hidden;
  perspective: 1200px;
}

.hero__bg-layers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Fog Layers */
.fog-layer {
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  left: -50%;
  background: radial-gradient(ellipse at center, rgba(245,242,237,0.06) 0%, transparent 60%);
  animation: fogDrift linear infinite;
  will-change: transform;
}

.fog-layer--1 {
  animation-duration: 30s;
  top: 10%;
  opacity: 0.5;
  transform: translateZ(20px);
}

.fog-layer--2 {
  animation-duration: 45s;
  animation-direction: reverse;
  top: 30%;
  opacity: 0.35;
  transform: translateZ(40px);
  background: radial-gradient(ellipse at center, rgba(139,125,184,0.05) 0%, transparent 55%);
}

.fog-layer--3 {
  animation-duration: 60s;
  top: 50%;
  opacity: 0.25;
  transform: translateZ(60px);
}

@keyframes fogDrift {
  0% { transform: translateX(-10%) translateZ(var(--fog-z, 20px)); }
  50% { transform: translateX(10%) translateZ(var(--fog-z, 20px)); }
  100% { transform: translateX(-10%) translateZ(var(--fog-z, 20px)); }
}

/* Mountain Parallax Silhouettes */
.mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  pointer-events: none;
}

.mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: transform 0.1s linear;
}

.mountain--back {
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(30, 45, 30, 0.4) 100%);
  clip-path: polygon(0% 100%, 5% 65%, 15% 45%, 25% 60%, 35% 30%, 45% 50%, 55% 25%, 65% 45%, 75% 35%, 85% 55%, 95% 40%, 100% 60%, 100% 100%);
}

.mountain--mid {
  height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(25, 38, 25, 0.6) 100%);
  clip-path: polygon(0% 100%, 8% 55%, 18% 70%, 30% 40%, 42% 55%, 52% 30%, 62% 50%, 72% 35%, 82% 60%, 92% 45%, 100% 70%, 100% 100%);
}

.mountain--front {
  height: 30%;
  background: linear-gradient(180deg, rgba(18, 26, 18, 0.3) 0%, rgba(18, 26, 18, 0.9) 100%);
  clip-path: polygon(0% 100%, 10% 60%, 20% 75%, 35% 50%, 48% 65%, 60% 40%, 72% 60%, 85% 50%, 95% 70%, 100% 55%, 100% 100%);
}

/* Leaf Canvas */
#leafCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}

.hero__label {
  font-family: var(--f-body);
  font-size: var(--f-size-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--c-secondary);
  margin-bottom: var(--s-md);
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 0.5s forwards;
}

.hero__title {
  font-size: var(--f-size-hero);
  font-weight: 200;
  color: var(--c-light);
  line-height: 1.05;
  margin-bottom: var(--s-md);
  opacity: 0;
  animation: fadeInUp 1.2s var(--ease-out) 0.7s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--c-secondary-light);
  font-weight: 300;
}

.hero__subtitle {
  font-size: var(--f-size-md);
  color: var(--c-text-on-dark);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto var(--s-lg);
  opacity: 0;
  animation: fadeInUp 1.2s var(--ease-out) 0.9s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1.2s var(--ease-out) 1.1s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-text-on-dark);
  font-size: var(--f-size-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 1.5s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--c-secondary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: var(--f-size-sm);
  font-weight: 500;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--c-secondary);
  color: var(--c-dark);
}

.btn--primary:hover {
  background: var(--c-secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
}

.btn--ghost {
  border: 1px solid rgba(245, 242, 237, 0.25);
  color: var(--c-light);
}

.btn--ghost:hover {
  border-color: var(--c-secondary);
  color: var(--c-secondary-light);
  background: rgba(184, 134, 11, 0.08);
}

.btn--dark {
  background: var(--c-dark);
  color: var(--c-light);
}

.btn--dark:hover {
  background: var(--c-dark-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  border: 1px solid var(--c-border);
  color: var(--c-primary);
}

.btn--outline:hover {
  border-color: var(--c-primary);
  background: rgba(61, 90, 62, 0.05);
}

.btn--lg {
  padding: 1.1rem 2.8rem;
  font-size: var(--f-size-base);
}

.btn__icon {
  font-size: 1.2em;
  transition: transform var(--t-fast) var(--ease-out);
}

.btn:hover .btn__icon {
  transform: translateX(3px);
}

/* ─── Zen Circle ─── */
.zen-circle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.zen-circle__svg {
  width: 100%;
  height: 100%;
}

.zen-circle__path {
  fill: none;
  stroke: var(--c-secondary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  filter: drop-shadow(0 0 8px rgba(184, 134, 11, 0.3));
  transition: stroke-dashoffset 2.5s var(--ease-in-out);
}

.zen-circle.animate .zen-circle__path {
  stroke-dashoffset: 0;
}

.zen-circle--hero {
  width: clamp(280px, 40vw, 500px);
  height: clamp(280px, 40vw, 500px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.12;
  z-index: 1;
}

.zen-circle--section {
  width: 120px;
  height: 120px;
  margin-bottom: var(--s-lg);
}

/* ─── Breathing Animation ─── */
.breathing {
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale3d(1, 1, 1); }
  50% { transform: scale3d(1.05, 1.05, 1.05); }
}

.breathing-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(184, 134, 11, 0.2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breathing-circle::before,
.breathing-circle::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139, 125, 184, 0.15);
}

.breathing-circle::before {
  inset: 15px;
  animation: breathe 8s ease-in-out infinite;
}

.breathing-circle::after {
  inset: 35px;
  animation: breathe 8s ease-in-out 1s infinite;
  border-color: rgba(184, 134, 11, 0.15);
}

/* ─── Cards ─── */
.card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--s-lg);
  border: 1px solid var(--c-border-light);
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card:hover::before {
  opacity: 1;
}

.card--dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

.card--dark:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(184, 134, 11, 0.2);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--c-secondary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-md);
  font-size: 1.5rem;
  transition: all var(--t-base) var(--ease-out);
}

.card:hover .card__icon {
  background: var(--c-secondary);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow-gold);
}

.card__title {
  font-family: var(--f-heading);
  font-size: var(--f-size-lg);
  font-weight: 400;
  margin-bottom: var(--s-sm);
  color: var(--c-dark);
}

.card--dark .card__title {
  color: var(--c-light);
}

.card__text {
  font-size: var(--f-size-sm);
  color: var(--c-text-muted);
  line-height: 1.7;
}

.card--dark .card__text {
  color: var(--c-text-on-dark);
}

.card__meta {
  display: flex;
  gap: 1rem;
  margin-top: var(--s-md);
  font-size: var(--f-size-xs);
  color: var(--c-text-muted);
}

.card__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: var(--f-size-xs);
  font-weight: 500;
  background: var(--c-secondary-soft);
  color: var(--c-secondary);
}

/* Breathing Hover on Cards */
.card--breathing:hover {
  animation: breatheCard 4s ease-in-out infinite;
}

@keyframes breatheCard {
  0%, 100% { transform: translateY(-4px) scale(1); }
  50% { transform: translateY(-4px) scale(1.01); }
}

/* ─── Kurs Grid ─── */
.kurs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--s-lg);
}

.kurs-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  transition: all var(--t-base) var(--ease-out);
}

.kurs-card__visual {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.kurs-card__gradient {
  width: 100%;
  height: 100%;
  transition: transform var(--t-slow) var(--ease-out);
}

.kurs-card:hover .kurs-card__gradient {
  transform: scale(1.05);
}

.kurs-card__level {
  position: absolute;
  top: var(--s-sm);
  right: var(--s-sm);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: var(--f-size-xs);
  font-weight: 500;
  background: rgba(18, 26, 18, 0.7);
  color: var(--c-light);
  backdrop-filter: blur(8px);
}

.kurs-card__body {
  padding: var(--s-md);
}

.kurs-card__title {
  font-family: var(--f-heading);
  font-size: var(--f-size-lg);
  margin-bottom: 0.5rem;
}

.kurs-card__desc {
  font-size: var(--f-size-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--s-md);
}

.kurs-card__info {
  display: flex;
  gap: 1.5rem;
  font-size: var(--f-size-xs);
  color: var(--c-text-muted);
}

.kurs-card__info span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.kurs-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* ─── Team Grid ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--s-lg);
}

.team-card {
  text-align: center;
  padding: var(--s-lg);
}

.team-card__avatar {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-organic);
  margin: 0 auto var(--s-md);
  position: relative;
  overflow: hidden;
  transition: all var(--t-base) var(--ease-out);
}

.team-card__avatar-bg {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.team-card:hover .team-card__avatar {
  border-radius: 50%;
  transform: scale(1.05);
  box-shadow: var(--shadow-glow-gold);
}

.team-card__name {
  font-family: var(--f-heading);
  font-size: var(--f-size-lg);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: var(--f-size-sm);
  color: var(--c-secondary);
  margin-bottom: var(--s-sm);
}

.team-card__bio {
  font-size: var(--f-size-sm);
  color: var(--c-text-muted);
}

/* ─── Pricing ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-lg);
  align-items: start;
}

.pricing-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--s-xl) var(--s-lg);
  text-align: center;
  border: 1px solid var(--c-border-light);
  position: relative;
  transition: all var(--t-base) var(--ease-out);
}

.pricing-card--featured {
  border-color: var(--c-secondary);
  transform: scale(1.03);
  box-shadow: var(--shadow-glow-gold);
}

.pricing-card--featured::before {
  content: 'Beliebteste Wahl';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-gold);
  color: var(--c-dark);
  font-size: var(--f-size-xs);
  font-weight: 600;
  padding: 0.35rem 1.2rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card__name {
  font-family: var(--f-heading);
  font-size: var(--f-size-lg);
  margin-bottom: var(--s-sm);
}

.pricing-card__price {
  font-family: var(--f-heading);
  font-size: var(--f-size-xxl);
  font-weight: 300;
  color: var(--c-primary);
  margin-bottom: 0.25rem;
}

.pricing-card__price small {
  font-size: 0.4em;
  color: var(--c-text-muted);
  font-family: var(--f-body);
}

.pricing-card__desc {
  font-size: var(--f-size-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--s-lg);
}

.pricing-card__features {
  text-align: left;
  margin-bottom: var(--s-lg);
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: var(--f-size-sm);
  color: var(--c-text);
}

.pricing-card__feature::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-secondary-soft);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23B8860B'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── Standorte ─── */
.standort-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  transition: all var(--t-base) var(--ease-out);
}

.standort-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.standort-card__visual {
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

.standort-card__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.standort-card__body {
  padding: var(--s-xl) var(--s-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.standort-card__name {
  font-family: var(--f-heading);
  font-size: var(--f-size-xl);
  margin-bottom: var(--s-sm);
}

.standort-card__address {
  font-size: var(--f-size-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--s-md);
}

.standort-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.standort-card__feature-tag {
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: var(--f-size-xs);
  background: var(--c-secondary-soft);
  color: var(--c-secondary);
  font-weight: 500;
}

/* ─── Testimonials ─── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--s-lg);
}

.testimonial {
  padding: var(--s-lg);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.testimonial__quote {
  font-family: var(--f-heading);
  font-size: var(--f-size-md);
  font-style: italic;
  color: var(--c-light);
  line-height: 1.6;
  margin-bottom: var(--s-md);
}

.testimonial__quote::before {
  content: '\201E';
  display: block;
  font-size: 3rem;
  color: var(--c-secondary);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-style: normal;
}

.testimonial__author {
  font-size: var(--f-size-sm);
  color: var(--c-text-on-dark);
}

.testimonial__author strong {
  display: block;
  color: var(--c-light);
  font-weight: 500;
}

/* ─── Kontakt / Formular ─── */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  font-size: var(--f-size-sm);
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: 0.4rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: var(--f-body);
  font-size: var(--f-size-base);
  color: var(--c-text);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: all var(--t-base) var(--ease-out);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(61, 90, 62, 0.1);
}

/* Breathing Focus */
.form-input:focus,
.form-textarea:focus {
  animation: breatheFocus 8s ease-in-out infinite;
}

@keyframes breatheFocus {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(61, 90, 62, 0.1);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(61, 90, 62, 0.06), 0 0 20px rgba(139, 125, 184, 0.08);
  }
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* ─── Partner ─── */
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-lg);
  justify-content: center;
  align-items: center;
}

.partner-item {
  padding: var(--s-md) var(--s-lg);
  border-radius: var(--radius-md);
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  font-family: var(--f-heading);
  font-size: var(--f-size-md);
  color: var(--c-text-muted);
  transition: all var(--t-base) var(--ease-out);
}

.partner-item:hover {
  color: var(--c-primary);
  border-color: var(--c-primary);
  transform: translateY(-2px);
}

/* ─── Footer ─── */
.footer {
  background: var(--c-dark);
  color: var(--c-text-on-dark);
  padding: var(--s-xxl) 0 var(--s-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-xl);
  margin-bottom: var(--s-xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--f-heading);
  font-size: 1.5rem;
  color: var(--c-light);
  font-weight: 300;
  display: flex;
  align-items: baseline;
  gap: 0.3em;
  margin-bottom: var(--s-sm);
}

.footer__logo-number {
  font-size: 0.65em;
  color: var(--c-secondary);
}

.footer__desc {
  font-size: var(--f-size-sm);
  line-height: 1.7;
  margin-bottom: var(--s-md);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--t-fast) var(--ease-out);
}

.footer__social-link:hover {
  border-color: var(--c-secondary);
  background: rgba(184, 134, 11, 0.1);
  color: var(--c-secondary);
}

.footer__col-title {
  font-family: var(--f-heading);
  font-size: var(--f-size-base);
  color: var(--c-light);
  margin-bottom: var(--s-md);
  font-weight: 400;
}

.footer__link {
  display: block;
  font-size: var(--f-size-sm);
  padding: 0.3rem 0;
  transition: color var(--t-fast) var(--ease-out);
}

.footer__link:hover {
  color: var(--c-secondary-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--s-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--f-size-xs);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--t-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Divider ─── */
.divider {
  width: 60px;
  height: 1px;
  background: var(--c-secondary);
  margin: var(--s-lg) 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Feature List ─── */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--s-md);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: var(--s-sm);
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-secondary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.feature-item__text h5 {
  font-size: var(--f-size-base);
  margin-bottom: 0.2rem;
}

.feature-item__text p {
  font-size: var(--f-size-sm);
  color: var(--c-text-muted);
}

/* ─── Badge ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: var(--f-size-xs);
  font-weight: 500;
}

.badge--gold {
  background: var(--c-secondary-soft);
  color: var(--c-secondary);
}

.badge--accent {
  background: var(--c-accent-soft);
  color: var(--c-accent);
}

.badge--green {
  background: rgba(61, 90, 62, 0.1);
  color: var(--c-primary);
}

/* ─── Utility ─── */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--s-sm); }
.mt-md { margin-top: var(--s-md); }
.mt-lg { margin-top: var(--s-lg); }
.mt-xl { margin-top: var(--s-xl); }
.mb-sm { margin-bottom: var(--s-sm); }
.mb-md { margin-bottom: var(--s-md); }
.mb-lg { margin-bottom: var(--s-lg); }
.mb-xl { margin-bottom: var(--s-xl); }

/* ─── Page Header (Inner Pages) ─── */
.page-header {
  background: var(--grad-hero);
  padding: calc(80px + var(--s-xxl)) 0 var(--s-xxl);
  position: relative;
  overflow: hidden;
}

.page-header .fog-layer {
  opacity: 0.3;
}

.page-header__title {
  font-size: var(--f-size-xxl);
  color: var(--c-light);
  font-weight: 200;
  margin-bottom: var(--s-sm);
}

.page-header__subtitle {
  font-size: var(--f-size-md);
  color: var(--c-text-on-dark);
  font-weight: 300;
  max-width: 500px;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .standort-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 26, 18, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-base) var(--ease-out);
  }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav__links .nav__link {
    font-size: var(--f-size-lg);
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .hero__content {
    padding: 0 1.5rem;
  }

  .kurs-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--s-lg);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fog-layer,
  .breathing,
  .breathing-circle::before,
  .breathing-circle::after {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ─── Print ─── */
@media print {
  .nav, .hero__bg-layers, #leafCanvas, .fog-layer, .mountains {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section--dark, .section--forest {
    background: #fff !important;
    color: #000 !important;
  }
}