:root {
  /* Color Palette - Modern, Trustworthy, and Natural */
  --primary-color: #5d6d4f;
  /* Warmer, softer sage green */
  --primary-light: #f4f6f2;
  --accent-color: #67755a;
  /* Warmer accent */
  --text-dark: #2c332a;
  --text-light: #5b6358;
  --bg-white: #ffffff;
  --bg-off-white: #fbfcfa;
  --footer-bg: #2c332a;
  --footer-text: #e8ede4;

  /* Layout */
  --max-width: 1200px;
  --section-padding: 120px 0;

  /* Typography */
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", "Open Sans", system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  overflow-x: hidden;
  width: 100%;
}

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

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

/* Skip link: visually hidden off-screen until keyboard focus (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1.25rem;
  background: var(--bg-white);
  color: var(--text-dark);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

/* --- New High-Fidelity Hero Section --- */
.hero-new {
  position: relative;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.15) contrast(1.03) saturate(1.05);
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.hero-content-new {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 1.5rem;
  text-align: center;
}

.hero-tagline-new {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.hero-title-new {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title-new span.italic {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
}

.hero-new h1,
.hero-new h2,
.hero-new h3 {
  color: white;
}

.hero-seo {
  height: 40vh;
  min-height: 300px;
}

.hero-seo .hero-title-new {
  font-size: 3rem;
}

.hero-divider-new {
  width: 6rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 1.5rem auto;
}

.hero-subtext-new {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  opacity: 0.95;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-cta-new {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Animations */
.animate-fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Badges */
.hero-badges {
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 100%;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  z-index: 10;
}

@media (min-width: 768px) {
  .hero-badges {
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
  }
}

.glass-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.glass-badge .material-symbols-outlined {
  font-size: 0.875rem;
  margin-right: 0.5rem;
  color: #86efac;
  /* green-300 */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-new {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-content-new {
    padding: 0 1.2rem;
  }

  .hero-title-new {
    font-size: 2.2rem !important;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-subtext-new {
    font-size: 1.15rem !important;
    margin-bottom: 1.8rem;
    line-height: 1.5;
  }

  .hero-cta-new {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    gap: 0.75rem;
  }

  .hero-cta-new .btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero-badges {
    position: relative;
    bottom: auto;
    margin-top: 3rem;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 1rem;
    width: 100%;
  }

  .glass-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }

  .glass-badge .material-symbols-outlined {
    font-size: 0.8rem;
    margin-right: 0.3rem;
  }
}

@media (max-width: 480px) {
  .hero-title-new {
    font-size: 2rem !important;
  }

  .hero-subtext-new {
    font-size: 1.1rem !important;
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  line-height: 1;
  gap: 0.8rem;
}

.material-symbols-outlined {
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.btn-primary-hero {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(93, 109, 79, 0.3);
}

.btn-secondary-hero {
  background-color: white;
  color: #111827;
  /* gray-900 */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary-hero:hover {
  background-color: #f9fafb;
  transform: translateY(-4px);
}

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

.btn-primary:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 103, 65, 0.3);
}

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

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Base Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img {
  height: 60px;
  width: auto;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
  transition: 0.3s;
}

@media (max-width: 991px) {
  .nav-container {
    height: 75px;
  }

  .logo img {
    height: 48px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
    padding: 2rem;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateX(50px);
    transition: 0.5s ease;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  /* Staggered Animation */
  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.active li:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-links.active li:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-links.active li:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-links.active li:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-links.active li:nth-child(6) {
    transition-delay: 0.35s;
  }

  .nav-links.active li:nth-child(7) {
    transition-delay: 0.4s;
  }

  .nav-links.active li:nth-child(8) {
    transition-delay: 0.45s;
  }

  .nav-links a {
    font-size: 1.2rem;
    font-weight: 600;
    width: 100%;
    display: block;
    padding: 1.5rem 0;
    letter-spacing: 2px;
  }
}

/* Section Helpers */
.section-bg {
  background-color: var(--bg-off-white);
}

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

.grid {
  display: grid;
  gap: 4rem;
}

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

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

.items-center {
  align-items: center;
}

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

/* IMP-001: <picture> wrappers (WebP sources) must not become layout boxes —
   the <img> stays the direct flex/grid child, so every existing layout is unchanged. */
picture {
  display: contents;
}

.rounded {
  border-radius: 12px;
}

.rounded-top {
  border-radius: 12px 12px 0 0;
}

.shadow {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: block;
}

/* Spacing Utilities */
.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2.2rem;
}

.mb-5 {
  margin-bottom: 3.5rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 3.5rem;
}

.pt-5 {
  padding-top: 5rem;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1.2rem;
}

.p-3 {
  padding: 2rem;
}

.p-4 {
  padding: 2.5rem;
}

.p-5 {
  padding: 3.5rem;
}

.w-100 {
  width: 100%;
}

.m-auto {
  margin: 0 auto;
}

.max-600 {
  max-width: 600px;
}

/* Service Cards */
.service-card {
  background: var(--bg-white);
  transition: transform 0.3s ease;
  height: 100%;
  overflow: hidden;
}

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

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 2.5rem;
}

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* Checklists */
.check-list {
  list-style: none;
  margin-top: 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Wellness Intro List */
.intro-list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.intro-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.intro-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1.5rem;
  line-height: 1;
  top: -0.2rem;
}

/* Service Badges Grid */
.services-badges-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.8rem;
  max-width: 550px;
}

.service-badge {
  background: var(--bg-white);
  border: 1px solid rgba(93, 109, 79, 0.15);
  display: flex;
  align-items: center;
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01);
}

.service-badge:hover {
  background: var(--primary-light);
  border-color: var(--primary-color);
  transform: translateX(4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.service-badge .material-symbols-outlined {
  font-size: 1.2rem;
  margin-right: 0.8rem;
  color: var(--accent-color);
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.service-badge:hover .material-symbols-outlined {
  color: var(--primary-color);
}

/* Quote Box */
.quote-box {
  padding: 1.5rem 2rem;
  background: var(--primary-light);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 2rem 0;
  position: relative;
}

.quote-box.with-border {
  border-left: 4px solid var(--accent-color);
}

/* Price List */
.price-list {
  max-width: 800px;
  margin: 0 auto;
  background: white;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px dashed #eee;
}

.price-item:last-child {
  border-bottom: none;
}

.price-title {
  font-weight: 500;
}

.price-value {
  font-weight: 700;
  color: var(--primary-color);
}

/* Form Styles */
.contact-form .form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
}

.contact-form .form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(137, 196, 54, 0.2);
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-row .form-group {
  margin-bottom: 0;
}

.flex-1 {
  flex: 1;
}

/* Footer */
footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-grid h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

/* Biography / Persönlich */
.bio-image {
  width: 100%;
  height: auto; /* IMP-001 loop 2: keep intrinsic ratio despite width/height attributes */
  max-width: 350px;
}

.timeline {
  border-left: 2px solid var(--primary-light);
  padding-left: 2rem;
  margin-top: 3rem;
  position: relative;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.4rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 3px solid var(--bg-white);
}

.timeline-year {
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

/* Massagen Revamp Section */
.massagen-revamp {
  background-color: var(--bg-off-white);
}

.massagen-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: stretch;
}

.massagen-nav {
  flex: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.massagen-nav .tab-btn {
  flex: 1 1 auto;
  min-width: 200px;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.massagen-nav .tab-btn .icon-right {
  display: none;
}

.massagen-nav .tab-btn:hover {
  background: #fff;
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.massagen-nav .tab-btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 10px 15px -3px rgba(93, 109, 79, 0.2);
}

.massagen-content-wrapper {
  flex: none;
  width: 100%;
  min-height: 520px;
}

.content-card {
  background: white;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
}

.content-item {
  display: none;
  height: 100%;
  animation: fadeIn 0.5s ease;
}

.content-item.active {
  display: block;
}

.content-item .item-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  height: 100%;
}

.item-media {
  position: relative;
  padding: 1rem;
}

.item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}

.item-info {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-header .line {
  width: 2rem;
  height: 1px;
  background: #cbd5e1;
}

.info-header .category {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #64748b;
}

.item-info h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.item-info p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.item-info .feature-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.item-info .feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.item-info .feature-list li .check {
  width: 1.5rem;
  height: 1.5rem;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #64748b;
}

.info-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid #f1f5f9;
}

.info-footer .duration {
  display: flex;
  flex-direction: column;
}

.info-footer .duration .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.info-footer .duration .value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsiveness for Massagen Revamp */
@media (max-width: 1024px) {
  .massagen-layout {
    flex-direction: column;
  }

  .massagen-nav {
    flex: none;
    width: 100%;
    margin-bottom: 2rem;
  }

  .content-item .item-grid {
    display: flex;
    flex-direction: column;
  }

  .item-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
  }
}

@media (max-width: 768px) {
  .item-info {
    padding: 2rem;
  }

  .item-info h3 {
    font-size: 2rem;
  }

  .info-footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .info-footer .btn {
    width: 100%;
  }
}

/* Section Highlights with Fixed Background */
.section-overlap-bg {
  position: relative;
  padding: 120px 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.section-overlap-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.section-overlap-bg .container {
  position: relative;
  z-index: 1;
}

.section-overlap-bg h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
  .grid.col-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid.col-2,
  .grid.col-3 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .contact-form {
    padding: 1.5rem;
    width: 100% !important;
    margin: 0;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }

  .form-row .form-group {
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .section-overlap-bg {
    padding: 60px 0;
    background-attachment: scroll;
  }

  .p-4 {
    padding: 1.5rem !important;
  }

  .p-5 {
    padding: 2rem 1.25rem !important;
  }

  .bio-hero h1 {
    font-size: 2.2rem !important;
  }

  .bio-hero p {
    font-size: 1.125rem !important;
  }
}

/* Wellness Intro Styles */
.wellness-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-images-container {
  position: relative;
  padding: 2.5rem;
}

.img-circle-main {
  width: 100%;
  height: auto; /* IMP-001 loop 2: keep intrinsic ratio despite width/height attributes */
  max-width: 500px;
  border-radius: 50%;
  border: 12px solid var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.quote-bubble-blue {
  position: absolute;
  top: 0;
  right: -20px;
  width: 220px;
  height: 220px;
  background: #7db2c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: white;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.img-circle-small {
  position: absolute;
  bottom: -30px;
  right: 40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 10px solid #c5b081;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.img-circle-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2.5rem;
  margin-top: 3rem;
}

.intro-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.05rem;
}

.intro-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

@media (max-width: 992px) {
  .wellness-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .intro-images-container {
    order: -1;
    max-width: 550px;
    margin: 0 auto;
  }

  .intro-list {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 400px;
    margin: 3rem auto 0;
  }

  .quote-bubble-blue {
    width: 180px;
    height: 180px;
    font-size: 1rem;
    right: 0;
  }

  .img-circle-small {
    width: 220px;
    height: 220px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  .intro-images-container {
    padding: 1.5rem;
    max-width: 320px;
    margin: 0 auto;
  }

  .img-circle-main {
    border-width: 8px;
  }

  .quote-bubble-blue {
    width: 120px;
    height: 120px;
    font-size: 0.75rem;
    padding: 1rem;
    top: -5px;
    right: -5px;
    z-index: 4;
  }

  .img-circle-small {
    width: 130px;
    height: 130px;
    bottom: -15px;
    left: -5px;
    right: auto;
    border-width: 6px;
    z-index: 5;
  }
}

/* New Tarife Section */
.tarife-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tarif-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out;
}

.tarif-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.tarif-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(74, 103, 65, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.tarif-icon .material-symbols-outlined {
  font-size: 24px;
}

.tarif-desc {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.tarif-footer {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f8fafc;
  padding-top: 1.5rem;
}

.tarif-footer-multi {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: stretch;
}

.tarif-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.tarif-duration {
  color: #64748b;
  font-weight: 500;
  font-size: 0.9rem;
}

.tarif-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  font-style: italic;
  font-family: var(--font-serif);
  white-space: nowrap;
}

.tarif-footer-multi .tarif-price {
  font-size: 1.35rem;
}

.tarif-card-highlight {
  grid-column: span 2;
  background: var(--primary-color);
  color: white;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  padding: 3rem;
  border: none;
}

.tarif-card-highlight .tarif-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.tarif-highlight-main {
  flex: 1;
  position: relative;
  z-index: 1;
}

.tarif-highlight-divider {
  width: 1px;
  height: 6rem;
  background: rgba(255, 255, 255, 0.2);
}

.tarif-highlight-pricing {
  width: auto;
  text-align: right;
  position: relative;
  z-index: 1;
}

.tarif-highlight-duration {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.tarif-highlight-price {
  font-size: 2.8rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: italic;
}

.tarif-highlight-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-top: 0.5rem;
}

.payment-box {
  max-width: 100%;
  margin: 4rem auto 0;
  background: rgba(74, 103, 65, 0.05);
  border: 1px solid rgba(74, 103, 65, 0.1);
  border-radius: 2rem;
  padding: 3.5rem;
  text-align: center;
}

.paypal-btn {
  background: var(--primary-color);
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 3rem;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(74, 103, 65, 0.3);
  transition: all 0.3s;
}

.paypal-btn:hover {
  background: #3d5536;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(74, 103, 65, 0.3);
}

.paypal-btn .material-symbols-outlined:last-child {
  transition: transform 0.3s ease;
}

.paypal-btn:hover .material-symbols-outlined:last-child {
  transform: translateX(5px);
}

.payment-footer {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.payment-info {
  font-size: 0.95rem;
  color: #5b6358;
  font-weight: 600;
}

.payment-subinfo {
  font-size: 0.85rem;
  color: #8c9588;
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {
  .tarife-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tarif-card-highlight {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .tarife-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tarif-card-highlight {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .tarif-highlight-divider {
    width: 100%;
    height: 1px;
    margin: 1rem 0;
  }

  .tarif-highlight-pricing {
    text-align: center;
  }

  .payment-box {
    padding: 2rem;
  }
}

/* Tarife Mobile Improvement */
@media (max-width: 576px) {
  .price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.2rem 0;
  }

  .price-value {
    font-size: 1.3rem;
    color: var(--primary-color);
  }
}

/* --- Redesigned Kombination Section --- */
.kombination-section {
  background-color: var(--bg-off-white);
}

.intro-lead {
  max-width: 800px;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.kombination-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.kombination-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(93, 109, 79, 0.1);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.03),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.kombination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px -5px rgba(93, 109, 79, 0.15);
  border-color: var(--primary-color);
}

.kombination-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(93, 109, 79, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.kombination-card-icon .material-symbols-outlined {
  font-size: 24px;
}

.kombination-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

.kombination-card-sub {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--text-light);
  margin-top: -0.8rem;
  display: block;
}

.kombination-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Benefit badges flow */
.kombination-benefits-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.benefit-badge {
  background: var(--bg-white);
  border: 1px solid rgba(93, 109, 79, 0.15);
  display: flex;
  align-items: center;
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
}

.benefit-badge:hover {
  background: var(--primary-light);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(93, 109, 79, 0.08);
}

.benefit-badge .material-symbols-outlined {
  font-size: 1.2rem;
  margin-right: 0.8rem;
  color: var(--accent-color);
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.benefit-badge:hover .material-symbols-outlined {
  color: var(--primary-color);
}

/* Footer card styling */
.kombination-footer-card {
  background: var(--primary-light);
  border-radius: 1.5rem;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  border: 1px solid rgba(93, 109, 79, 0.08);
}

.kombination-footer-text {
  flex: 1;
  text-align: left;
}

.kombination-footer-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.kombination-meta-info {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.meta-item .material-symbols-outlined {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.kombination-footer-action {
  flex-shrink: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .kombination-footer-card {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 2.5rem;
  }

  .kombination-footer-text {
    text-align: center;
  }

  .kombination-meta-info {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .kombination-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .kombination-card {
    padding: 2rem;
  }

  .kombination-footer-card {
    padding: 2rem 1.5rem;
  }

  .kombination-footer-action {
    width: 100%;
    flex-direction: column;
    gap: 0.8rem;
  }

  .kombination-footer-action .btn {
    width: 100%;
  }
}

/* --- Redesigned Persönlich Section & Subpage --- */
.bio-hero {
  background-color: var(--primary-light);
  padding: 130px 0 80px 0;
}

.bio-path {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.bio-development {
  padding: 100px 0;
}

.bio-resources {
  padding: 100px 0;
}

.education {
  padding: 100px 0;
}

.bio-cta {
  padding: 100px 0;
  background-color: var(--bg-off-white);
}

.bio-card {
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
  border: 1px solid rgba(93, 109, 79, 0.05);
}

.bio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(93, 109, 79, 0.12);
  border-color: var(--primary-color);
}

.bio-resources-card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  .bio-resources-card .grid.col-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .bio-resources-card {
    padding: 2.5rem 1.5rem !important;
  }
}

/* --- Modern Centered Timeline --- */
.modern-timeline {
  max-width: 900px;
  margin: 4rem auto 0 auto;
  position: relative;
}

.timeline-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 2.5rem;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

.timeline-time {
  text-align: right;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  padding-right: 1.5rem;
}

.timeline-dot-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}

.timeline-line {
  position: absolute;
  width: 2px;
  background: rgba(93, 109, 79, 0.15);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-row:first-child .timeline-line {
  top: 50%;
}

.timeline-row:last-child .timeline-line {
  bottom: 50%;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 3px solid var(--bg-white);
  position: relative;
  z-index: 2;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  box-shadow: 0 0 0 1px rgba(93, 109, 79, 0.1);
}

.timeline-row:hover .timeline-dot {
  transform: scale(1.3);
  background-color: var(--accent-color);
}

.timeline-desc-card {
  background: var(--bg-white);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(93, 109, 79, 0.08);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
  text-align: left;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
}

.timeline-row:hover .timeline-desc-card {
  transform: translateX(5px);
  box-shadow: 0 12px 24px rgba(93, 109, 79, 0.08);
  border-color: var(--primary-color);
}

.timeline-desc-card h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--primary-color);
}

.timeline-desc-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Responsive Timeline overrides */
@media (max-width: 768px) {
  .timeline-row {
    grid-template-columns: 40px 1fr;
    gap: 0;
    margin-bottom: 2rem;
    align-items: flex-start;
  }

  .timeline-time {
    grid-column: 2;
    text-align: left;
    padding-right: 0;
    padding-left: 1.5rem;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    margin-top: 0.2rem;
  }

  .timeline-dot-wrapper {
    grid-column: 1;
    grid-row: 1 / span 2;
    justify-content: flex-start;
    padding-left: 10px;
  }

  .timeline-line {
    left: 16px;
    transform: none;
  }

  .timeline-row:first-child .timeline-line {
    top: 15px;
  }

  .timeline-row:last-child .timeline-line {
    bottom: calc(100% - 15px);
  }

  .timeline-dot {
    margin-top: 8px;
  }

  .timeline-desc-card {
    grid-column: 2;
    padding: 1.25rem 1.5rem;
    margin-left: 1.5rem;
  }

  .timeline-row:hover .timeline-desc-card {
    transform: translateY(-2px);
  }
}

/* --- Redesigned 2-Punkt-Transformationsmethode Section --- */
.transformation-procedure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.procedure-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(93, 109, 79, 0.08);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.02),
    0 2px 4px -1px rgba(0, 0, 0, 0.01);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
  text-align: left;
}

.procedure-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(93, 109, 79, 0.1);
  border-color: var(--primary-color);
}

.procedure-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.5rem;
}

.procedure-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.procedure-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.transformation-quote-box {
  max-width: 800px;
  margin: 4rem auto;
  padding: 1.5rem 2rem;
  position: relative;
}

.transformation-quote-box p {
  font-size: 1.4rem;
  color: var(--primary-color);
  line-height: 1.6;
}

.transformation-disclaimer {
  font-size: 0.85rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Mobile responsive overrides for Transformationsmethode */
@media (max-width: 768px) {
  .transformation-procedure-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .procedure-card {
    padding: 2rem 1.5rem;
  }

  .transformation-quote-box p {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .transformation-quote-box {
    margin: 3rem auto;
    padding: 1rem 0;
  }
}

/* --- Redesigned Grouped Education & Professional Journey --- */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.edu-card {
  background: var(--bg-white);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(93, 109, 79, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.edu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(93, 109, 79, 0.06);
  border-color: rgba(93, 109, 79, 0.25);
}

.edu-card-icon {
  background: rgba(93, 109, 79, 0.08);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.edu-card-icon .material-symbols-outlined {
  font-size: 1.8rem;
}

.edu-card h3 {
  color: var(--primary-color);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.edu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.edu-item {
  position: relative;
}

.edu-meta {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.2rem;
}

.edu-title {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.4;
  display: block;
}

.edu-subtitle {
  color: #64748b;
  font-size: 0.9rem;
  display: block;
  margin-top: 0.2rem;
  line-height: 1.5;
}

.edu-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-color);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.edu-lifeschool h3 {
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .edu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .edu-card {
    padding: 2rem 1.5rem;
  }
}

/* --- SEO Landing Pages Content Polish --- */
.seo-main-content {
  padding-right: 2.5rem;
}

.seo-main-content h2 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  color: var(--primary-color);
  line-height: 1.25;
}

.seo-main-content h3 {
  margin-top: 2.8rem;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  color: var(--primary-color);
  font-family: var(--font-serif);
  line-height: 1.3;
}

.seo-main-content p {
  margin-top: 0;
  margin-bottom: 1.6rem;
  line-height: 1.75;
  color: #4a5568;
  font-size: 1rem;
}

/* Premium Checklist layout replacing the simple arrows */
.seo-main-content .intro-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.85rem 1.2rem;
}

.seo-main-content .intro-list li {
  background: var(--bg-white);
  border: 1px solid rgba(93, 109, 79, 0.12);
  border-radius: 8px;
  padding: 0.75rem 1rem 0.75rem 2.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.01);
}

.seo-main-content .intro-list li::before {
  content: "check";
  font-family: "Material Symbols Outlined";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: 1.25rem;
  font-weight: normal;
}

.seo-main-content .intro-list li:hover {
  background: var(--primary-light);
  border-color: var(--primary-color);
  transform: translateX(4px);
  box-shadow: 0 4px 10px rgba(93, 109, 79, 0.05);
}

/* Beatrice mini bio in SEO page */
.beatrice-bio-mini {
  margin-top: 3.5rem !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 2.5rem;
}

@media (max-width: 768px) {
  .seo-main-content {
    padding-right: 0;
  }

  .seo-main-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .seo-main-content h3 {
    font-size: 1.4rem;
    margin-top: 2.2rem;
    margin-bottom: 1rem;
  }

  .seo-main-content .intro-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* --- Added by Antigravity on 2026-05-31 --- */

/* Mobile Text Wrapping & Hyphenation to prevent text clipping */
h1,
h2,
h3,
h4,
.tab-btn,
.tab-label,
.tarif-duration,
.tarif-price,
.hero-title-new {
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

/* 2-Punkt Dual Image Grid Layout */
.transformation-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.transformation-images-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.transformation-images-grid img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .transformation-images-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .transformation-images-grid img {
    height: 240px;
  }
}

/* Form Checkbox & Privacy Notice Styling */
.form-checkbox {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-checkbox label {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-color);
  font-weight: 400 !important;
  cursor: pointer;
  user-select: none;
}

.form-checkbox label a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color var(--transition-normal);
}

.form-checkbox label a:hover {
  color: var(--accent-color);
}

.form-checkbox input[type="checkbox"] {
  accent-color: var(--primary-color);
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
  margin-top: 3px;
  flex-shrink: 0;
}

/* --- Redesigned 3-Column Massagen Layout for viewport optimization --- */
.content-item .item-grid {
  display: grid;
  grid-template-columns: 28% 1fr 1fr;
  gap: 2.5rem;
  height: 100%;
  padding: 2.5rem;
  align-items: stretch;
}

.item-media {
  padding: 0;
  height: 100%;
}

.item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}

.item-desc {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.item-desc h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

.item-desc p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.item-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid #f1f5f9;
  padding-left: 2.5rem;
}

.item-details .feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.item-details .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.4;
}

.item-details .feature-list li .check {
  width: 1.25rem;
  height: 1.25rem;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #64748b;
  flex-shrink: 0;
  margin-top: 2px;
}

.item-details .duration-box {
  background: var(--primary-light);
  padding: 0.65rem 1.1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Responsiveness overrides for Massagen Layout */
@media (max-width: 1024px) {
  .content-item .item-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }

  .item-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .item-details {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #f1f5f9;
    padding-top: 2rem;
  }
}

/* --- Discover Massagen Section in Biography Page --- */
.discover-massagen {
  padding: 120px 0;
  background-color: var(--primary-light);
  border-top: 1px solid rgba(93, 109, 79, 0.1);
}

.discover-massagen .subtitle {
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 600;
}

.discover-massagen h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.discover-massagen .discover-text {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem !important;
}

.discover-massagen .discover-action {
  display: flex;
  justify-content: center;
  width: 100%;
}

.discover-massagen .btn-primary {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

/* --- Added by Antigravity on 2026-06-02 --- */

/* Shrinking Fixed Navigation on Scroll */
nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

nav.scrolled .nav-container {
  height: 70px;
}

nav.scrolled .logo img {
  height: 45px;
}

@media (max-width: 991px) {
  nav.scrolled .nav-container {
    height: 65px;
  }
  nav.scrolled .logo img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  nav.scrolled .nav-container {
    height: 55px;
  }
  nav.scrolled .logo img {
    height: 35px;
  }
}

/* Address Map Link Styling */
.address-link {
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px dotted var(--primary-color);
  display: inline-block;
  transition:
    color 0.3s ease,
    border-bottom-color 0.3s ease;
}

.address-link:hover {
  color: var(--primary-color);
  border-bottom-style: solid;
  border-bottom-color: var(--primary-color);
}

/* Custom 2-Column Split Grid for Kinesiologie and 2-Punkt Sections */
.section-split-grid {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 991px) {
  .section-split-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Single Image wrapper and sizing control */
.section-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.section-single-image {
  width: 100%;
  height: auto; /* IMP-001 loop 2: the height="" attribute is a presentational hint that would otherwise beat aspect-ratio */
  max-width: 480px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  .section-single-image {
    max-width: 380px;
    margin: 0 auto;
  }
}

/* Natural Viewport Scroll Entrance Animations - Disabled for responsiveness stability */
.scroll-animate {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  will-change: auto;
}

.anim-fade-in-up {
  transform: none !important;
}

.anim-fade-in-left {
  transform: none !important;
}

.anim-fade-in-right {
  transform: none !important;
}

.scroll-animate.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger Animation Delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.45s;
}

.delay-5 {
  transition-delay: 0.6s;
}

/* --- Contact Section Layout Polish --- */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 2.5rem auto 4rem auto;
}

.contact-card {
  background: var(--bg-white);
  padding: 2.2rem 1.8rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(93, 109, 79, 0.1);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.02),
    0 2px 4px -1px rgba(0, 0, 0, 0.01);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  color: var(--text-dark);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(93, 109, 79, 0.12);
  border-color: var(--primary-color);
}

.contact-card-icon {
  width: 3.2rem;
  height: 3.2rem;
  background: rgba(93, 109, 79, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.contact-card-icon .material-symbols-outlined {
  font-size: 1.5rem;
}

.contact-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0;
  color: var(--primary-color);
  font-family: var(--font-sans);
  font-weight: 600;
}

.contact-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.contact-form-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.contact-form .form-grid textarea {
  height: 120px;
  resize: none;
}

@media (max-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem auto 3rem auto;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(93, 109, 79, 0.15);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  transition: bottom 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 2rem 0;
}

.cookie-banner.active {
  bottom: 0;
}

.cookie-banner-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cookie-banner-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0;
  color: var(--primary-color);
  font-family: var(--font-serif);
}

.cookie-banner-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-settings-details {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(93, 109, 79, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(93, 109, 79, 0.1);
}

.cookie-settings-details.active {
  display: flex;
}

.cookie-checkbox-group {
  display: flex;
  align-items: flex-start;
}

.cookie-checkbox-group label {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-dark);
  cursor: pointer;
}

.cookie-checkbox-group input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--primary-color);
  width: 1.1rem;
  height: 1.1rem;
  cursor: pointer;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.cookie-banner-actions .btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.825rem;
}

/* Maps Notice styling */
.maps-notice {
  border-radius: 12px;
  border: 1px solid rgba(93, 109, 79, 0.1);
  background: #f1f5f9;
  text-align: center;
  padding: 2rem;
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 1.5rem 0;
  }

  .cookie-banner-content {
    padding: 0 1.2rem;
  }

  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.6rem;
  }

  .cookie-banner-actions .btn-sm {
    width: 100%;
  }
}

/* Contact-form status modal (success/error) - replaces the old unstyled inline
   alert; shown by assets/js/main.js based on ?status= in the URL. */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 51, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2000;
}
.modal-overlay[hidden] {
  display: none;
}
.modal-box {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem 2rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modal-pop 0.25s ease-out;
}
@keyframes modal-pop {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  border-radius: 50%;
}
.modal-close:hover {
  background: var(--primary-light);
}
.modal-icon .material-symbols-outlined {
  font-size: 3rem;
}
.modal-box.is-success .modal-icon .material-symbols-outlined {
  color: var(--primary-color);
}
.modal-box.is-error .modal-icon .material-symbols-outlined {
  color: #b3462c;
}
.modal-box.is-info .modal-icon .material-symbols-outlined {
  color: var(--accent-color);
}
.modal-title {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.4rem;
}
.modal-message {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
body.modal-open {
  overflow: hidden;
}

/* Submit button loading state (contact forms) - assets/js/main.js toggles this
   the moment "Senden" is clicked, so the visitor sees the click registered while
   reCAPTCHA + the page round-trip run. */
.contact-form button[type="submit"].is-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.contact-form button[type="submit"].is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 1.2rem;
  margin: -0.6rem 0 0 -0.6rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}
@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}
