/* ============================================================
 * FILE: style.css
 * PROJECT: Studio 85 — Thermal Springs Theme
 * PURPOSE: Premium Yoga Studio Website — Wiesbaden Hot Springs Concept
 * ============================================================ */

/* ─────────────────────────────────────────────
   0. GOOGLE FONTS IMPORT
   ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ─────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES
   ───────────────────────────────────────────── */
:root {
  /* Thermal Springs Palette */
  --thermal-orange: #C4693D;
  --thermal-orange-light: #D4845E;
  --thermal-orange-dark: #A85530;
  --warm-stone: #A89882;
  --warm-stone-light: #C4B8A6;
  --warm-stone-dark: #8A7D6B;
  --quell-cyan: #48A9A6;
  --quell-cyan-light: #6DC4C1;
  --quell-cyan-dark: #358583;
  --vulkan-dark: #1A1210;
  --vulkan-medium: #2A2220;
  --vulkan-light: #3A3230;
  --dampf-white: #F8F4F0;
  --dampf-cream: #F0EAE2;
  --dampf-warm: #E8DFD4;

  /* Gradients */
  --gradient-thermal: radial-gradient(ellipse at 50% 120%, #C4693D 0%, #1A1210 70%);
  --gradient-steam: linear-gradient(180deg, rgba(248,244,240,0) 0%, rgba(248,244,240,0.6) 50%, rgba(248,244,240,0) 100%);
  --gradient-warm-glow: radial-gradient(ellipse at center, rgba(196,105,61,0.15) 0%, transparent 70%);
  --gradient-water: linear-gradient(135deg, #48A9A6 0%, #358583 50%, #2A6E6C 100%);

  /* Typography */
  --font-heading: 'Tenor Sans', serif;
  --font-body: 'Source Sans 3', sans-serif;

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

  /* Border Radius — organische Formen */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-organic: 30% 70% 70% 30% / 30% 30% 70% 70%;
  --radius-blob: 60% 40% 30% 70% / 60% 30% 70% 40%;

  /* Transitions */
  --ease-thermal: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-flow: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.4s;
  --duration-slow: 0.8s;

  /* Shadows */
  --shadow-warm: 0 4px 24px rgba(196, 105, 61, 0.15);
  --shadow-deep: 0 8px 40px rgba(26, 18, 16, 0.25);
  --shadow-glow: 0 0 40px rgba(196, 105, 61, 0.2);
  --shadow-card: 0 2px 16px rgba(26, 18, 16, 0.08);

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --nav-height: 80px;
}

/* ─────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--vulkan-dark);
  background-color: var(--dampf-white);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

::selection {
  background: rgba(196, 105, 61, 0.2);
  color: var(--vulkan-dark);
}

/* ─────────────────────────────────────────────
   3. TYPOGRAPHY
   ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--vulkan-medium);
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.25rem;
}

.text-xl {
  font-size: 1.5rem;
  line-height: 1.6;
}

.text-thermal {
  color: var(--thermal-orange);
}

.text-cyan {
  color: var(--quell-cyan);
}

.text-stone {
  color: var(--warm-stone);
}

/* ─────────────────────────────────────────────
   4. LAYOUT UTILITIES
   ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

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

.section--dark {
  background-color: var(--vulkan-dark);
  color: var(--dampf-white);
}

.section--dark p {
  color: var(--warm-stone-light);
}

.section--cream {
  background-color: var(--dampf-cream);
}

.section--warm {
  background-color: var(--dampf-warm);
}

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

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

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

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

.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

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

.flex--column {
  flex-direction: column;
}

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* ─────────────────────────────────────────────
   5. NAVIGATION
   ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--duration-normal) var(--ease-flow);
}

.nav--transparent {
  background: transparent;
}

.nav--scrolled {
  background: rgba(26, 18, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(26, 18, 16, 0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dampf-white);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--thermal-orange);
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--thermal-orange);
  transition: all var(--duration-normal) var(--ease-thermal);
}

.nav__logo:hover .nav__logo-number {
  background: var(--thermal-orange);
  color: var(--dampf-white);
}

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

.nav__link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(248, 244, 240, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--duration-fast) var(--ease-flow);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--thermal-orange);
  transition: width var(--duration-normal) var(--ease-thermal);
}

.nav__link:hover,
.nav__link--active {
  color: var(--dampf-white);
}

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

.nav__cta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dampf-white);
  background: var(--thermal-orange);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-xl);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--duration-normal) var(--ease-thermal);
}

.nav__cta:hover {
  background: var(--thermal-orange-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
}

/* Mobile Navigation */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dampf-white);
  transition: all var(--duration-normal) var(--ease-thermal);
  transform-origin: center;
}

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

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

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

.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 18, 16, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  transform: translateY(-20px);
  transition: all var(--duration-normal) var(--ease-thermal);
}

.nav__mobile--open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.nav__mobile .nav__link {
  font-size: 1.5rem;
  color: var(--dampf-white);
}

/* ─────────────────────────────────────────────
   6. HERO SECTION
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-thermal);
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero__steam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.steam-layer {
  position: absolute;
  bottom: -20%;
  width: 120%;
  left: -10%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(248,244,240,0.08) 0%, transparent 60%);
  animation: steam-rise 8s ease-in-out infinite;
  opacity: 0;
}

.steam-layer:nth-child(1) {
  animation-delay: 0s;
  animation-duration: 7s;
}

.steam-layer:nth-child(2) {
  animation-delay: 2s;
  animation-duration: 9s;
  width: 80%;
  left: 10%;
}

.steam-layer:nth-child(3) {
  animation-delay: 4s;
  animation-duration: 11s;
  width: 60%;
  left: 20%;
}

.steam-layer:nth-child(4) {
  animation-delay: 1s;
  animation-duration: 8s;
  width: 100%;
  left: 0;
  background: radial-gradient(ellipse at center, rgba(196,105,61,0.05) 0%, transparent 50%);
}

@keyframes steam-rise {
  0% {
    transform: translateY(0) scale3d(1, 1, 1);
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.4;
    transform: translateY(-40vh) scale3d(1.3, 1.2, 1);
  }
  80% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(-80vh) scale3d(1.6, 1.4, 1);
    opacity: 0;
  }
}

.hero__glow {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 60%;
  background: radial-gradient(ellipse at center bottom, rgba(196,105,61,0.25) 0%, transparent 60%);
  z-index: 1;
  animation: warm-glow-pulse 6s ease-in-out infinite;
}

@keyframes warm-glow-pulse {
  0%, 100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
  }
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: var(--space-md);
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--quell-cyan);
  border: 1px solid rgba(72, 169, 166, 0.4);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-md);
  backdrop-filter: blur(10px);
  background: rgba(72, 169, 166, 0.08);
}

.hero__title {
  color: var(--dampf-white);
  margin-bottom: var(--space-sm);
  line-height: 1.1;
}

.hero__title span {
  display: block;
  background: linear-gradient(135deg, var(--thermal-orange-light) 0%, var(--thermal-orange) 50%, var(--quell-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(248, 244, 240, 0.7);
  margin-bottom: var(--space-lg);
  font-weight: 300;
  line-height: 1.6;
}

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

.hero__scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(248, 244, 240, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scroll-hint 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(196,105,61,0.6) 0%, transparent 100%);
}

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

/* ─────────────────────────────────────────────
   7. BUTTONS
   ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-xl);
  transition: all var(--duration-normal) var(--ease-thermal);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--thermal-orange);
  color: var(--dampf-white);
}

.btn--primary:hover {
  background: var(--thermal-orange-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-warm);
}

.btn--secondary {
  background: transparent;
  color: var(--dampf-white);
  border: 1px solid rgba(248, 244, 240, 0.3);
}

.btn--secondary:hover {
  border-color: var(--thermal-orange);
  color: var(--thermal-orange);
  transform: translateY(-3px);
}

.btn--outline {
  background: transparent;
  color: var(--thermal-orange);
  border: 2px solid var(--thermal-orange);
}

.btn--outline:hover {
  background: var(--thermal-orange);
  color: var(--dampf-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-warm);
}

.btn--dark {
  background: var(--vulkan-dark);
  color: var(--dampf-white);
}

.btn--dark:hover {
  background: var(--vulkan-medium);
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
}

.btn--cyan {
  background: var(--quell-cyan);
  color: var(--dampf-white);
}

.btn--cyan:hover {
  background: var(--quell-cyan-light);
  transform: translateY(-3px);
}

.btn--lg {
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
}

/* Ripple-Effekt */
.btn::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* ─────────────────────────────────────────────
   8. SECTION HEADERS
   ───────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.section-header__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--thermal-orange);
  margin-bottom: var(--space-sm);
}

.section--dark .section-header__badge {
  color: var(--quell-cyan);
}

.section-header__title {
  margin-bottom: var(--space-sm);
}

.section-header__divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--thermal-orange), var(--quell-cyan));
  margin: var(--space-sm) auto;
  border-radius: 3px;
}

.section-header__text {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────
   9. CARDS
   ───────────────────────────────────────────── */
.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-thermal);
  box-shadow: var(--shadow-card);
}

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

.card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--gradient-thermal);
}

.card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.3;
  color: var(--dampf-white);
}

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

.card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--thermal-orange);
  margin-bottom: var(--space-xs);
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.card__text {
  font-size: 0.95rem;
  color: var(--warm-stone-dark);
  margin-bottom: var(--space-sm);
}

.card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--warm-stone);
}

.card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Card Dark Variant */
.card--dark {
  background: var(--vulkan-medium);
  color: var(--dampf-white);
}

.card--dark .card__text {
  color: var(--warm-stone-light);
}

.card--dark .card__tag {
  color: var(--quell-cyan);
}

/* Card Thermal Variant */
.card--thermal {
  background: linear-gradient(135deg, var(--vulkan-dark) 0%, var(--vulkan-medium) 100%);
  color: var(--dampf-white);
  border: 1px solid rgba(196, 105, 61, 0.2);
}

.card--thermal:hover {
  border-color: rgba(196, 105, 61, 0.5);
  box-shadow: var(--shadow-glow);
}

/* ─────────────────────────────────────────────
   10. ORGANIC SHAPES / DECORATIVE
   ───────────────────────────────────────────── */
.blob {
  position: absolute;
  border-radius: var(--radius-blob);
  opacity: 0.08;
  filter: blur(40px);
  pointer-events: none;
  animation: blob-morph 12s ease-in-out infinite;
}

.blob--orange {
  background: var(--thermal-orange);
}

.blob--cyan {
  background: var(--quell-cyan);
}

.blob--stone {
  background: var(--warm-stone);
}

@keyframes blob-morph {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  50% {
    border-radius: 50% 60% 30% 60% / 30% 40% 70% 60%;
  }
  75% {
    border-radius: 40% 60% 50% 40% / 60% 50% 40% 60%;
  }
}

.divider-wave {
  width: 100%;
  height: 80px;
  overflow: hidden;
  position: relative;
}

.divider-wave svg {
  width: 100%;
  height: 100%;
}

/* Liquid SVG Background */
.liquid-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.liquid-bg svg {
  position: absolute;
  width: 100%;
  bottom: 0;
}

/* Heat Distortion Effect */
.heat-distortion {
  position: relative;
}

.heat-distortion::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: transparent;
  filter: blur(1px);
  animation: heat-shimmer 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

@keyframes heat-shimmer {
  0%, 100% {
    filter: blur(0.5px);
    transform: scaleY(1);
  }
  25% {
    filter: blur(1.5px);
    transform: scaleY(1.01);
  }
  50% {
    filter: blur(0.8px);
    transform: scaleY(0.99);
  }
  75% {
    filter: blur(1.2px);
    transform: scaleY(1.005);
  }
}

/* ─────────────────────────────────────────────
   11. KURS-KARTEN (Spezifisch)
   ───────────────────────────────────────────── */
.kurs-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-thermal);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(168, 152, 130, 0.15);
}

.kurs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--thermal-orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--duration-normal) var(--ease-thermal);
}

.kurs-card:hover::before {
  transform: scaleY(1);
}

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

.kurs-card__level {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-sm);
}

.kurs-card__level--beginner {
  background: rgba(72, 169, 166, 0.1);
  color: var(--quell-cyan-dark);
}

.kurs-card__level--mixed {
  background: rgba(196, 105, 61, 0.1);
  color: var(--thermal-orange-dark);
}

.kurs-card__level--advanced {
  background: rgba(26, 18, 16, 0.08);
  color: var(--vulkan-dark);
}

.kurs-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.kurs-card__desc {
  font-size: 0.95rem;
  color: var(--warm-stone-dark);
  margin-bottom: var(--space-sm);
}

.kurs-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(168, 152, 130, 0.15);
  font-size: 0.85rem;
  color: var(--warm-stone);
}

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

.kurs-card__detail svg {
  width: 16px;
  height: 16px;
  stroke: var(--thermal-orange);
}

/* ─────────────────────────────────────────────
   12. TEAM SECTION
   ───────────────────────────────────────────── */
.team-card {
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-thermal);
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card__avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto var(--space-sm);
  overflow: hidden;
  position: relative;
  background: var(--gradient-thermal);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid transparent;
  transition: border-color var(--duration-normal) var(--ease-thermal);
}

.team-card:hover .team-card__avatar {
  border-color: var(--thermal-orange);
}

.team-card__avatar-placeholder {
  font-size: 3rem;
  color: rgba(248, 244, 240, 0.4);
  font-family: var(--font-heading);
}

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

.team-card__role {
  font-size: 0.9rem;
  color: var(--thermal-orange);
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.team-card__bio {
  font-size: 0.9rem;
  color: var(--warm-stone-dark);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   13. PRICING TABLE
   ───────────────────────────────────────────── */
.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-thermal);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(168, 152, 130, 0.15);
}

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

.pricing-card--featured {
  background: linear-gradient(180deg, var(--vulkan-dark) 0%, var(--vulkan-medium) 100%);
  color: var(--dampf-white);
  border: 2px solid var(--thermal-orange);
  transform: scale(1.05);
}

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

.pricing-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--thermal-orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 0 var(--radius-md);
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--thermal-orange);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.pricing-card__price sup {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-card__period {
  font-size: 0.85rem;
  color: var(--warm-stone);
  margin-bottom: var(--space-md);
}

.pricing-card--featured .pricing-card__period {
  color: var(--warm-stone-light);
}

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

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--vulkan-medium);
  border-bottom: 1px solid rgba(168, 152, 130, 0.1);
}

.pricing-card--featured .pricing-card__feature {
  color: var(--warm-stone-light);
  border-bottom-color: rgba(248, 244, 240, 0.1);
}

.pricing-card__feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(72, 169, 166, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-card__feature-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--quell-cyan);
}

/* ─────────────────────────────────────────────
   14. STANDORTE / LOCATIONS
   ───────────────────────────────────────────── */
.location-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--duration-normal) var(--ease-thermal);
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.location-card__map {
  height: 200px;
  background: var(--dampf-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.location-card__map-pin {
  width: 48px;
  height: 48px;
  background: var(--thermal-orange);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pin-bounce 2s ease-in-out infinite;
}

.location-card__map-pin::after {
  content: '';
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  transform: rotate(45deg);
}

@keyframes pin-bounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-8px); }
}

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

.location-card__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.location-card__address {
  font-size: 0.95rem;
  color: var(--warm-stone-dark);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

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

.location-card__feature {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-xl);
  background: rgba(196, 105, 61, 0.08);
  color: var(--thermal-orange-dark);
}

/* ─────────────────────────────────────────────
   15. CONTACT / KONTAKT
   ───────────────────────────────────────────── */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vulkan-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--vulkan-dark);
  background: white;
  border: 2px solid rgba(168, 152, 130, 0.25);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-flow);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--thermal-orange);
  box-shadow: 0 0 0 4px rgba(196, 105, 61, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--warm-stone);
}

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

/* Dark form variant */
.section--dark .form-input,
.section--dark .form-textarea,
.section--dark .form-select {
  background: var(--vulkan-light);
  border-color: rgba(168, 152, 130, 0.2);
  color: var(--dampf-white);
}

.section--dark .form-input:focus,
.section--dark .form-textarea:focus {
  border-color: var(--thermal-orange);
  box-shadow: 0 0 0 4px rgba(196, 105, 61, 0.15);
}

.section--dark .form-label {
  color: var(--dampf-cream);
}

/* ─────────────────────────────────────────────
   16. THERMAL FEATURES GRID
   ───────────────────────────────────────────── */
.feature-card {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid rgba(168, 152, 130, 0.12);
  transition: all var(--duration-normal) var(--ease-thermal);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--thermal-orange), var(--quell-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-thermal);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-warm);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(196, 105, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
  transition: all var(--duration-normal) var(--ease-thermal);
}

.feature-card:hover .feature-card__icon {
  background: var(--thermal-orange);
  color: white;
  transform: scale(1.1);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--warm-stone-dark);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   17. WIESBADEN QUELLEN SECTION
   ───────────────────────────────────────────── */
.quellen-strip {
  display: flex;
  overflow: hidden;
  padding: var(--space-md) 0;
  position: relative;
}

.quellen-strip::before,
.quellen-strip::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.quellen-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--dampf-white), transparent);
}

.quellen-strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--dampf-white), transparent);
}

.section--dark .quellen-strip::before {
  background: linear-gradient(90deg, var(--vulkan-dark), transparent);
}

.section--dark .quellen-strip::after {
  background: linear-gradient(-90deg, var(--vulkan-dark), transparent);
}

.quellen-strip__track {
  display: flex;
  gap: var(--space-md);
  animation: scroll-strip 30s linear infinite;
  will-change: transform;
}

.quellen-strip__item {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(196, 105, 61, 0.06);
  border: 1px solid rgba(196, 105, 61, 0.15);
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--warm-stone-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section--dark .quellen-strip__item {
  background: rgba(196, 105, 61, 0.1);
  border-color: rgba(196, 105, 61, 0.2);
  color: var(--warm-stone-light);
}

.quellen-strip__item-temp {
  font-weight: 600;
  color: var(--thermal-orange);
}

@keyframes scroll-strip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   18. TESTIMONIALS
   ───────────────────────────────────────────── */
.testimonial {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  position: relative;
  box-shadow: var(--shadow-card);
}

.testimonial__quote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: var(--space-md);
}

.testimonial__quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--thermal-orange);
  line-height: 1;
}

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

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-thermal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dampf-white);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial__detail {
  font-size: 0.8rem;
  color: var(--warm-stone);
}

/* ─────────────────────────────────────────────
   19. FOOTER
   ───────────────────────────────────────────── */
.footer {
  background: var(--vulkan-dark);
  color: var(--dampf-white);
  padding: var(--space-xl) 0 var(--space-md);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--thermal-orange), transparent);
}

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

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--thermal-orange);
  border-radius: 50%;
  font-size: 0.95rem;
  color: var(--thermal-orange);
}

.footer__desc {
  font-size: 0.9rem;
  color: var(--warm-stone);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(168, 152, 130, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-flow);
  font-size: 0.85rem;
}

.footer__social-link:hover {
  background: var(--thermal-orange);
  border-color: var(--thermal-orange);
  color: white;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  color: var(--dampf-white);
}

.footer__link {
  display: block;
  font-size: 0.9rem;
  color: var(--warm-stone);
  padding: 0.3rem 0;
  transition: color var(--duration-fast) var(--ease-flow);
}

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

.footer__bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(168, 152, 130, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__copyright {
  font-size: 0.85rem;
  color: var(--warm-stone);
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}

.footer__legal a {
  font-size: 0.85rem;
  color: var(--warm-stone);
}

.footer__legal a:hover {
  color: var(--thermal-orange);
}

/* ─────────────────────────────────────────────
   20. ANIMATIONS (Scroll Reveal)
   ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-thermal), transform 0.8s var(--ease-thermal);
}

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

.reveal--left {
  transform: translateX(-40px);
}

.reveal--left.reveal--visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--right.reveal--visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.9);
}

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

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-thermal), transform 0.6s var(--ease-thermal);
}

.stagger--visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger--visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger--visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger--visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger--visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger--visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger--visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   21. SCHEDULE TABLE (Kursplan)
   ───────────────────────────────────────────── */
.schedule {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.schedule th {
  background: var(--vulkan-dark);
  color: var(--dampf-white);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.9rem;
  padding: 1rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.schedule td {
  padding: 0.75rem;
  text-align: center;
  border-bottom: 1px solid rgba(168, 152, 130, 0.1);
  font-size: 0.85rem;
  vertical-align: top;
}

.schedule tr:hover td {
  background: rgba(196, 105, 61, 0.03);
}

.schedule__kurs {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(196, 105, 61, 0.08);
  color: var(--thermal-orange-dark);
  margin: 2px 0;
  width: 100%;
  text-align: center;
}

.schedule__kurs--vinyasa {
  background: rgba(196, 105, 61, 0.1);
  color: var(--thermal-orange-dark);
}

.schedule__kurs--hatha {
  background: rgba(72, 169, 166, 0.1);
  color: var(--quell-cyan-dark);
}

.schedule__kurs--yin {
  background: rgba(168, 152, 130, 0.12);
  color: var(--warm-stone-dark);
}

.schedule__kurs--power {
  background: rgba(26, 18, 16, 0.08);
  color: var(--vulkan-dark);
}

.schedule__kurs--meditation {
  background: rgba(72, 169, 166, 0.08);
  color: var(--quell-cyan-dark);
}

/* ─────────────────────────────────────────────
   22. PAGE HERO (Inner Pages)
   ───────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-thermal);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.page-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.page-hero__title {
  color: var(--dampf-white);
  margin-bottom: var(--space-sm);
}

.page-hero__subtitle {
  font-size: 1.2rem;
  color: rgba(248, 244, 240, 0.7);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────
   23. FAQ ACCORDION
   ───────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(168, 152, 130, 0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--vulkan-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-flow);
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

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

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

.faq-icon::after {
  width: 2px;
  height: 16px;
  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-normal) var(--ease-thermal),
              padding var(--duration-normal) var(--ease-thermal);
}

.faq-item--open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--warm-stone-dark);
}

.section--dark .faq-question {
  color: var(--dampf-white);
}

.section--dark .faq-item {
  border-bottom-color: rgba(168, 152, 130, 0.15);
}

.section--dark .faq-answer p {
  color: var(--warm-stone-light);
}

/* ─────────────────────────────────────────────
   24. STATS / NUMBERS
   ───────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.stat {
  text-align: center;
  padding: var(--space-md);
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--thermal-orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--warm-stone);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section--dark .stat__label {
  color: var(--warm-stone-light);
}

/* ─────────────────────────────────────────────
   25. CTA BANNER
   ───────────────────────────────────────────── */
.cta-banner {
  position: relative;
  background: var(--gradient-thermal);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(72, 169, 166, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner__title {
  color: var(--dampf-white);
  margin-bottom: var(--space-sm);
  position: relative;
}

.cta-banner__text {
  color: rgba(248, 244, 240, 0.7);
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   26. 3D WAVE CANVAS
   ───────────────────────────────────────────── */
.wave-canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}

/* ─────────────────────────────────────────────
   27. LIQUID MORPH SVG
   ───────────────────────────────────────────── */
.liquid-morph {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
}

.liquid-morph path {
  fill: var(--thermal-orange);
}

.liquid-morph--cyan path {
  fill: var(--quell-cyan);
}

/* ─────────────────────────────────────────────
   28. KONTAKT INFO
   ───────────────────────────────────────────── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(196, 105, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration-normal) var(--ease-thermal);
}

.contact-info__item:hover .contact-info__icon {
  background: var(--thermal-orange);
  color: white;
}

.contact-info__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--warm-stone);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 1rem;
  color: var(--vulkan-dark);
}

.contact-info__value a {
  color: var(--thermal-orange);
}

.contact-info__value a:hover {
  text-decoration: underline;
}

/* ─────────────────────────────────────────────
   29. BREADCRUMB
   ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(248, 244, 240, 0.5);
  margin-bottom: var(--space-sm);
}

.breadcrumb a {
  color: rgba(248, 244, 240, 0.5);
}

.breadcrumb a:hover {
  color: var(--thermal-orange);
}

.breadcrumb__sep {
  color: rgba(248, 244, 240, 0.3);
}

/* ─────────────────────────────────────────────
   30. RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .pricing-card--featured {
    transform: scale(1);
  }

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

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 5rem;
  }

  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

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

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

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .stat__number {
    font-size: 2.5rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .schedule {
    display: block;
    overflow-x: auto;
  }

  .cta-banner {
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
  }

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

  .page-hero {
    min-height: 40vh;
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
  }

  .btn--lg {
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
  }
}

/* ─────────────────────────────────────────────
   31. PRINT
   ───────────────────────────────────────────── */
@media print {
  .nav,
  .hero__canvas,
  .hero__steam,
  .hero__glow,
  .blob,
  .wave-canvas,
  .liquid-morph {
    display: none !important;
  }

  body {
    color: black;
    background: white;
  }

  .section--dark {
    background: white;
    color: black;
  }
}
