/* ============================================================
   FILE: style.css
   PATH: .../projekt_website_relaunch/css/style.css
   PROJECT: Studio 85 Website Relaunch
   PURPOSE: Complete Design System - Premium Yoga & Pilates Studio
   ============================================================ */

/* ─────────────────────────────────────────────
   0. CSS RESET (Modern)
   ───────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

/* ─────────────────────────────────────────────
   1. DESIGN TOKENS (Light Theme — Default)
   ───────────────────────────────────────────── */

:root {
  /* Brand Colors */
  --color-primary: #7C9A6E;
  --color-primary-light: #9AB88C;
  --color-primary-dark: #5E7A52;
  --color-secondary: #C4A77D;
  --color-secondary-light: #D4BE9A;
  --color-secondary-dark: #A68B5F;
  --color-accent: #C17E5A;
  --color-accent-light: #D4A080;
  --color-accent-dark: #A06240;

  /* Backgrounds */
  --bg-primary: #FAF8F5;
  --bg-secondary: #F2EDE7;
  --bg-tertiary: #EAE4DC;
  --bg-card: #FFFFFF;
  --bg-elevated: #FFFFFF;
  --bg-overlay: rgba(26, 26, 31, 0.6);

  /* Text */
  --text-primary: #2D2D2D;
  --text-secondary: #5A5A5A;
  --text-tertiary: #8A8A8A;
  --text-inverse: #FAF8F5;
  --text-on-primary: #FFFFFF;

  /* Borders */
  --border-light: rgba(45, 45, 45, 0.08);
  --border-medium: rgba(45, 45, 45, 0.15);
  --border-strong: rgba(45, 45, 45, 0.25);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(45, 45, 45, 0.04);
  --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.06);
  --shadow-md: 0 4px 16px rgba(45, 45, 45, 0.08);
  --shadow-lg: 0 8px 32px rgba(45, 45, 45, 0.10);
  --shadow-xl: 0 16px 48px rgba(45, 45, 45, 0.14);
  --shadow-glow: 0 0 40px rgba(124, 154, 110, 0.15);

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Typography — Fluid */
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Outfit', 'system-ui', sans-serif;

  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --fs-sm: clamp(0.8125rem, 0.775rem + 0.25vw, 0.9375rem);
  --fs-base: clamp(0.9375rem, 0.875rem + 0.35vw, 1.0625rem);
  --fs-md: clamp(1rem, 0.925rem + 0.4vw, 1.1875rem);
  --fs-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --fs-xl: clamp(1.25rem, 1.05rem + 1vw, 1.75rem);
  --fs-2xl: clamp(1.5rem, 1.15rem + 1.75vw, 2.25rem);
  --fs-3xl: clamp(1.875rem, 1.35rem + 2.5vw, 3rem);
  --fs-4xl: clamp(2.25rem, 1.5rem + 3.5vw, 4rem);
  --fs-5xl: clamp(2.75rem, 1.75rem + 5vw, 5.5rem);
  --fs-display: clamp(3.5rem, 2rem + 7vw, 7.5rem);

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-tight: 1.1;
  --lh-snug: 1.25;
  --lh-normal: 1.6;
  --lh-relaxed: 1.75;

  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.05em;
  --ls-wider: 0.1em;
  --ls-widest: 0.2em;

  /* 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);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-slower: 800ms;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 720px;
  --container-wide: 1440px;
  --navbar-height: 80px;
  --section-padding: clamp(4rem, 8vw, 8rem);
}

/* ─────────────────────────────────────────────
   2. DARK THEME TOKENS
   ───────────────────────────────────────────── */

[data-theme="dark"] {
  --bg-primary: #1A1A1F;
  --bg-secondary: #222228;
  --bg-tertiary: #2A2A32;
  --bg-card: #26262E;
  --bg-elevated: #2E2E38;
  --bg-overlay: rgba(0, 0, 0, 0.7);

  --text-primary: #E8E4DF;
  --text-secondary: #B0AAA2;
  --text-tertiary: #7A756E;
  --text-inverse: #1A1A1F;

  --border-light: rgba(232, 228, 223, 0.06);
  --border-medium: rgba(232, 228, 223, 0.12);
  --border-strong: rgba(232, 228, 223, 0.2);

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(124, 154, 110, 0.1);
}

/* ─────────────────────────────────────────────
   3. BASE TYPOGRAPHY
   ───────────────────────────────────────────── */

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: background-color var(--duration-slow) var(--ease-out),
              color var(--duration-slow) var(--ease-out);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: var(--fw-medium);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--text-primary);
}

h1 { font-size: var(--fs-5xl); }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-3xl); }
h4 { font-size: var(--fs-2xl); }
h5 { font-size: var(--fs-xl); }
h6 { font-size: var(--fs-lg); }

p {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  max-width: 65ch;
}

.text-serif {
  font-family: var(--font-serif);
}

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* ─────────────────────────────────────────────
   4. LAYOUT & CONTAINER
   ───────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

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

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

section {
  padding-block: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: var(--fs-lg);
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  margin: var(--space-lg) auto;
  border: none;
}

/* ─────────────────────────────────────────────
   5. NAVBAR
   ───────────────────────────────────────────── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  background: transparent;
  transition: background-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out),
              backdrop-filter var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
  background: var(--bg-primary);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(26, 26, 31, 0.9);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  letter-spacing: var(--ls-tight);
  transition: color var(--duration-fast);
}

.navbar__logo span {
  color: var(--color-primary);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.navbar__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  position: relative;
  padding-block: var(--space-xs);
  transition: color var(--duration-fast) var(--ease-out);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--duration-normal) var(--ease-out);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--text-primary);
}

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

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Theme Toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color var(--duration-fast), background var(--duration-fast);
}

.theme-toggle:hover {
  color: var(--text-primary);
  background: var(--border-light);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }

[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--ease-out),
              opacity var(--duration-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar__links {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-2xl);
    transform: translateX(100%);
    transition: transform var(--duration-slow) var(--ease-out);
  }

  .navbar__links.open {
    transform: translateX(0);
  }

  .navbar__link {
    font-size: var(--fs-xl);
  }
}

/* ─────────────────────────────────────────────
   6. BUTTONS
   ───────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--text-on-primary);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-strong);
}

.btn--secondary:hover {
  background: var(--border-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--accent {
  background: var(--color-accent);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.btn--accent:hover {
  background: var(--color-accent-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  padding: 0.75rem 1rem;
}

.btn--ghost:hover {
  background: rgba(124, 154, 110, 0.08);
}

.btn--lg {
  padding: 1.125rem 2.5rem;
  font-size: var(--fs-base);
}

.btn--sm {
  padding: 0.625rem 1.5rem;
  font-size: var(--fs-xs);
}

/* ─────────────────────────────────────────────
   7. HERO SECTION
   ───────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg--gradient {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(124, 154, 110, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 167, 125, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(193, 126, 90, 0.08) 0%, transparent 50%),
    var(--bg-primary);
}

[data-theme="dark"] .hero__bg--gradient {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(124, 154, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 167, 125, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(193, 126, 90, 0.04) 0%, transparent 50%),
    var(--bg-primary);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding-inline: var(--space-lg);
}

.hero__label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  padding: var(--space-sm) var(--space-lg);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-full);
}

.hero__title {
  font-size: var(--fs-display);
  font-weight: var(--fw-light);
  line-height: 1.05;
  margin-bottom: var(--space-xl);
}

.hero__title em {
  font-style: italic;
  color: var(--color-primary);
}

.hero__subtitle {
  font-size: var(--fs-xl);
  color: var(--text-secondary);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-3xl);
  line-height: var(--lh-relaxed);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-3xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-tertiary);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero__scroll-indicator .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-tertiary), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─────────────────────────────────────────────
   8. CARDS
   ───────────────────────────────────────────── */

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

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

.card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/* Gradient Placeholders */
.gradient-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}

.gradient-placeholder--1 {
  background: linear-gradient(135deg, #7C9A6E 0%, #9AB88C 40%, #C4A77D 100%);
}
.gradient-placeholder--2 {
  background: linear-gradient(135deg, #C4A77D 0%, #D4BE9A 40%, #C17E5A 100%);
}
.gradient-placeholder--3 {
  background: linear-gradient(135deg, #C17E5A 0%, #D4A080 40%, #7C9A6E 100%);
}
.gradient-placeholder--4 {
  background: linear-gradient(135deg, #5E7A52 0%, #7C9A6E 40%, #C4A77D 100%);
}
.gradient-placeholder--5 {
  background: linear-gradient(135deg, #A68B5F 0%, #C4A77D 40%, #FAF8F5 100%);
}
.gradient-placeholder--6 {
  background: linear-gradient(135deg, #2D2D2D 0%, #5E7A52 40%, #7C9A6E 100%);
}
.gradient-placeholder--7 {
  background: linear-gradient(135deg, #C17E5A 0%, #C4A77D 50%, #7C9A6E 100%);
}
.gradient-placeholder--8 {
  background: linear-gradient(135deg, #9AB88C 0%, #7C9A6E 50%, #5E7A52 100%);
}

.gradient-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
}

.card__body {
  padding: var(--space-xl);
}

.card__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.card__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
}

.card__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* ─────────────────────────────────────────────
   9. GRID LAYOUTS
   ───────────────────────────────────────────── */

.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.grid--auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--auto-fill {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid--4,
  .grid--3,
  .grid--2 { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   10. PRICING CARDS
   ───────────────────────────────────────────── */

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
}

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

.pricing-card--featured {
  border-color: var(--color-primary);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.pricing-card--featured::before {
  content: 'Beliebt';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #FFFFFF;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--radius-full);
}

.pricing-card__name {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-lg);
}

.pricing-card__price {
  font-family: var(--font-serif);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.pricing-card__price span {
  font-size: var(--fs-base);
  color: var(--text-tertiary);
  font-family: var(--font-sans);
}

.pricing-card__desc {
  font-size: var(--fs-sm);
  color: var(--text-tertiary);
  margin-bottom: var(--space-2xl);
}

.pricing-card__features {
  text-align: left;
  margin-bottom: var(--space-2xl);
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  padding-block: var(--space-sm);
  border-bottom: 1px solid var(--border-light);
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   11. TEAM CARDS
   ───────────────────────────────────────────── */

.team-card {
  text-align: center;
}

.team-card__image {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-xl);
  overflow: hidden;
}

.team-card__name {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xs);
}

.team-card__role {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.team-card__bio {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  max-width: 320px;
  margin-inline: auto;
}

/* ─────────────────────────────────────────────
   12. TESTIMONIALS
   ───────────────────────────────────────────── */

.testimonial {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--border-light);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--color-primary);
  opacity: 0.15;
  position: absolute;
  top: var(--space-md);
  left: var(--space-xl);
  line-height: 1;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--text-primary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.testimonial__name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
}

.testimonial__info {
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
}

.testimonial__stars {
  color: var(--color-secondary);
  font-size: var(--fs-sm);
  letter-spacing: 2px;
}

/* ─────────────────────────────────────────────
   13. FORMS
   ───────────────────────────────────────────── */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  color: var(--text-primary);
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124, 154, 110, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-tertiary);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238A8A8A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ─────────────────────────────────────────────
   14. FOOTER
   ───────────────────────────────────────────── */

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding-block: var(--space-4xl) var(--space-xl);
}

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

.footer__brand-text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  max-width: 300px;
  margin-top: var(--space-md);
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-lg);
}

.footer__link {
  display: block;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  padding-block: var(--space-xs);
  transition: color var(--duration-fast);
}

.footer__link:hover {
  color: var(--color-primary);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  transition: all var(--duration-fast);
}

.footer__social-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(124, 154, 110, 0.08);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-light);
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
}

.footer__partners {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer__partner {
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
  padding: var(--space-xs) var(--space-md);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer__partners {
    justify-content: center;
  }
}

/* ─────────────────────────────────────────────
   15. SCHEDULE TABLE
   ───────────────────────────────────────────── */

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.schedule-table thead {
  background: var(--bg-secondary);
}

.schedule-table th {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-tertiary);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
}

.schedule-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border-light);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  vertical-align: top;
}

.schedule-table tbody tr:last-child td {
  border-bottom: none;
}

.schedule-table tbody tr:hover {
  background: var(--bg-secondary);
}

.schedule-slot {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(124, 154, 110, 0.08);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-xs);
}

.schedule-slot--pilates {
  background: rgba(196, 167, 125, 0.1);
  color: var(--color-secondary-dark);
}

.schedule-slot--meditation {
  background: rgba(193, 126, 90, 0.08);
  color: var(--color-accent);
}

/* Responsive Table */
@media (max-width: 768px) {
  .schedule-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .schedule-table {
    min-width: 700px;
  }
}

/* ─────────────────────────────────────────────
   16. ABOUT / SPLIT SECTIONS
   ───────────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.split__content {
  max-width: 520px;
}

.split__content h2 {
  margin-bottom: var(--space-lg);
}

.split__content p {
  margin-bottom: var(--space-md);
}

.split__content p:last-of-type {
  margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
  .split,
  .split--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: var(--space-2xl);
  }

  .split__image {
    aspect-ratio: 16 / 9;
  }
}

/* ─────────────────────────────────────────────
   17. LOCATION CARDS
   ───────────────────────────────────────────── */

.location-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.location-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.location-card__body {
  padding: var(--space-2xl);
}

.location-card__title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}

.location-card__address {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.location-card__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.location-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.location-card__feature::before {
  content: '•';
  color: var(--color-primary);
  font-weight: var(--fw-bold);
}

.location-card--coming-soon {
  position: relative;
}

.location-card--coming-soon::after {
  content: 'Coming Soon';
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  background: var(--color-accent);
  color: #FFFFFF;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
}

/* ─────────────────────────────────────────────
   18. FAQ ACCORDION
   ───────────────────────────────────────────── */

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) 0;
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--text-primary);
  text-align: left;
  transition: color var(--duration-fast);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  margin-left: var(--space-lg);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-tertiary);
  transition: transform var(--duration-normal) var(--ease-out);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out),
              padding var(--duration-slow) var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: var(--space-xl);
}

.faq-answer p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* ─────────────────────────────────────────────
   19. CTA SECTION
   ───────────────────────────────────────────── */

.cta-section {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(124, 154, 110, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(196, 167, 125, 0.1) 0%, transparent 50%),
    var(--bg-secondary);
  text-align: center;
  border-radius: var(--radius-2xl);
  padding: var(--space-5xl) var(--space-xl);
  margin-inline: var(--space-lg);
}

.cta-section h2 {
  margin-bottom: var(--space-md);
}

.cta-section p {
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}

/* ─────────────────────────────────────────────
   20. PARTNER LOGOS
   ───────────────────────────────────────────── */

.partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  padding-block: var(--space-3xl);
}

.partner-badge {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-tertiary);
  padding: var(--space-sm) var(--space-xl);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  transition: all var(--duration-fast);
  white-space: nowrap;
}

.partner-badge:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ─────────────────────────────────────────────
   21. PAGE HEADER (Inner pages)
   ───────────────────────────────────────────── */

.page-header {
  padding-top: calc(var(--navbar-height) + var(--space-5xl));
  padding-bottom: var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(124, 154, 110, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(196, 167, 125, 0.06) 0%, transparent 50%);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  margin-bottom: var(--space-md);
}

.page-header p {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  margin-inline: auto;
}

/* ─────────────────────────────────────────────
   22. CERTIFICATIONS
   ───────────────────────────────────────────── */

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.cert-badge__icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   23. HOURS TABLE
   ───────────────────────────────────────────── */

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border-light);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: var(--space-md) 0;
  font-size: var(--fs-sm);
}

.hours-table td:first-child {
  font-weight: var(--fw-medium);
  color: var(--text-primary);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-secondary);
}

/* ─────────────────────────────────────────────
   24. SCROLL ANIMATIONS
   ───────────────────────────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Children */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 100ms; }
.stagger > *:nth-child(3) { transition-delay: 200ms; }
.stagger > *:nth-child(4) { transition-delay: 300ms; }
.stagger > *:nth-child(5) { transition-delay: 400ms; }
.stagger > *:nth-child(6) { transition-delay: 500ms; }
.stagger > *:nth-child(7) { transition-delay: 600ms; }
.stagger > *:nth-child(8) { transition-delay: 700ms; }

/* ─────────────────────────────────────────────
   25. UTILITY CLASSES
   ───────────────────────────────────────────── */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bg-primary { background-color: var(--bg-primary); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-tertiary { background-color: var(--bg-tertiary); }

.text-primary-color { color: var(--color-primary); }
.text-secondary-color { color: var(--color-secondary); }
.text-accent-color { color: var(--color-accent); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.mx-auto { margin-inline: auto; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ─────────────────────────────────────────────
   26. CONTACT INFO BLOCK
   ───────────────────────────────────────────── */

.contact-info {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: 1px solid var(--border-light);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding-block: var(--space-md);
}

.contact-info__item + .contact-info__item {
  border-top: 1px solid var(--border-light);
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(124, 154, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: var(--fs-md);
}

.contact-info__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-xs);
}

.contact-info__value {
  font-size: var(--fs-sm);
  color: var(--text-primary);
}

/* ─────────────────────────────────────────────
   27. OPENING HOURS (Standorte page)
   ───────────────────────────────────────────── */

.hours-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
}

.hours-card__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-lg);
}

/* ─────────────────────────────────────────────
   28. MISC / HELPERS
   ───────────────────────────────────────────── */

/* Smooth page transition body offset for fixed nav */
main {
  padding-top: var(--navbar-height);
}

/* Exception: Hero pages have no padding-top on main */
.has-hero main {
  padding-top: 0;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Divider */
.divider {
  border: none;
  height: 1px;
  background: var(--border-light);
  margin-block: var(--space-2xl);
}

/* Info Box */
.info-box {
  background: rgba(124, 154, 110, 0.06);
  border: 1px solid rgba(124, 154, 110, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.info-box p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

/* Chip / Tag */
.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  background: rgba(124, 154, 110, 0.08);
  color: var(--color-primary);
}

.chip--secondary {
  background: rgba(196, 167, 125, 0.1);
  color: var(--color-secondary-dark);
}

.chip--accent {
  background: rgba(193, 126, 90, 0.08);
  color: var(--color-accent);
}

/* ─────────────────────────────────────────────
   29. PRINT STYLES
   ───────────────────────────────────────────── */

@media print {
  .navbar,
  .theme-toggle,
  .hamburger,
  .hero__scroll-indicator,
  .footer__social {
    display: none !important;
  }

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

  main {
    padding-top: 0;
  }
}
