/* ===========================
   Psychotherapie Ortner – Style
   =========================== */

@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/merriweather-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/merriweather-700.woff2') format('woff2');
}


/* --- Design Tokens --- */
:root {
  --color-primary: #0077b3;
  --color-primary-hover: #005f8f;
  --color-accent: #4DB7CA;
  --color-text: #333;
  --color-text-light: #555;
  --color-heading: #0e0e0e;
  --color-bg: #fff;
  --color-bg-light: #f5f8fa;
  --color-bg-warm: #f8f6f2;
  --color-bg-dark: #2c3e50;
  --color-border: #e0e0e0;
  --font: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1100px;
  --header-height: 70px;
  --radius: 6px;
  --shadow: 0 2px 20px rgba(0,0,0,0.07);
  --shadow-hover: 0 6px 30px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-hover); }
ul { list-style: none; }

/* --- Base --- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2 {
  font-family: 'Merriweather', serif;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

h3, h4 {
  color: var(--color-primary);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 0.8rem; text-transform: uppercase; }
h3 { font-size: 1.2rem; margin-bottom: 0.6rem; font-weight: 600; }
h4 { font-size: 1rem; margin-bottom: 0.4rem; font-weight: 600; }
p { margin-bottom: 1rem; }
strong { font-weight: 600; }
small { font-size: 0.85em; color: var(--color-text-light); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 60px 0;
}
.section--light {
  background: var(--color-bg-light);
}
.section--dark {
  background: var(--color-bg-dark);
  color: #fff;
}
.section--accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  color: #fff;
}
.section--accent h2,
.section--accent h3,
.section--accent p { color: #fff; }
.section--warm {
  background: var(--color-bg-warm);
}
.grid {
  display: grid;
  gap: 30px;
}
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .section { padding: 80px 0; }
}
.text-center { text-align: center; }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  height: var(--header-height);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.logo img { height: 42px; width: auto; }
.main-nav ul {
  display: flex;
  gap: 8px;
  align-items: center;
}
.main-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary-hover);
  background: var(--color-bg-light);
}
.nav-cta {
  background: var(--color-primary) !important;
  color: #fff !important;
}
.nav-cta:hover {
  background: var(--color-primary-hover) !important;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}
@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 20px;
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }
  .main-nav a {
    padding: 12px 16px;
    border-radius: var(--radius);
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #1a8dbf 0%, #2e9bcc 40%, #5abfcf 100%);
  padding: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

/* --- Hero: Mobile first --- */
.hero-content {
  padding: 30px 0 35px;
  text-align: center;
}
.hero h1 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  line-height: 1.2;
  text-transform: none;
}
.hero h1 .hero-location {
  display: block;
  font-size: 0.55em;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.85;
  margin-top: 6px;
  font-weight: 400;
}
.hero-method {
  font-size: 0.82rem;
  opacity: 0.7;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}
.hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-buttons .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* Hero Visual – organic image */
.hero-visual {
  align-self: end;
  order: -1;
  position: relative;
}
.hero-visual img {
  width: 100%;
  height: 320px;
  border-radius: 0 0 30% 30%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.hero-name-overlay {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.3px;
  background: rgba(26, 141, 191, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 12px;
  border-radius: 20px;
}
.hero-name-overlay .degree {
  font-weight: 300;
  font-size: 0.8em;
  opacity: 0.85;
}

/* --- Hero: Desktop --- */
@media (min-width: 768px) {
  .hero { padding: 80px 0 0; }
  .hero-split {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .hero-content {
    padding: 0 0 60px;
    text-align: left;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  }
  .hero-method {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
  }
  .hero-buttons {
    justify-content: flex-start;
  }
  .hero-buttons .btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
  .hero-visual {
    order: 1;
  }
  .hero-visual img {
    max-width: 480px;
    height: auto;
    border-radius: 40% 40% 0 0;
    object-position: center;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
    margin: 0 auto;
  }
  .hero-name-overlay {
    font-size: 1.1rem;
    padding: 4px 14px;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--outline:hover {
  background: #fff;
  color: var(--color-primary);
}
.btn--outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline-dark:hover {
  background: var(--color-primary);
  color: #fff;
}

/* --- Cards (Soft Cards) --- */
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 25px 25px; /* Reduced padding */
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: left; /* Changed from center */
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.card-icon {
  width: 48px; /* Reduced from 70px */
  height: 48px; /* Reduced from 70px */
  border-radius: 50%;
  background: var(--color-primary); /* Keep brand color prominent */
  color: #fff; /* White icon content */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon svg {
  width: 24px; /* Reduced from 32px */
  height: 24px;
  stroke-width: 2;
}

/* Align text tightly with the icon */
.card h3 { 
  margin: 0; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  font-size: 1.1rem;
  line-height: 1.2;
}

.card p { 
  color: var(--color-text-light); 
  font-size: 0.95rem; 
  margin-bottom: 15px;
  flex-grow: 1; /* Push the link to the bottom */
}

/* Elegant Text Link Replacement for Cards */
.btn-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition), transform var(--transition);
  margin-top: auto; 
}
.btn-link:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px); /* Slight arrow jump effect */
}

/* --- About Teaser --- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px; /* Reduced from 40px */
  align-items: center;
}
.about-teaser p {
  margin-bottom: 0.2rem; /* Drastically reduce space after paragraphs (Supervisor, Methoden, etc.) */
}
.about-teaser h2 {
  margin-bottom: 0.2rem;
}
@media (min-width: 768px) {
  .about-teaser { grid-template-columns: 300px 1fr; gap: 20px; }
  .about-teaser--img-right { grid-template-columns: 1fr 300px; }
}

/* Specific Home Page Mobile Layout */
.about-teaser--index {
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .about-teaser--index { gap: 0; align-items: center; text-align: center; }
  .about-teaser__info { order: 1; margin-bottom: 5px; }
  .about-teaser__text-1 { order: 2; margin-top: 0; }
  .about-photo { order: 3; margin: 5px auto 5px; }
  .about-teaser__text-2 { order: 4; }
  .about-teaser__badges { order: 5; margin-top: 5px; width: 100%; }
  
  .about-teaser__text-2 p { margin-bottom: 0; }
  
  .about-teaser__text-2 .btn { 
    margin: 5px auto 0 !important; 
    display: inline-block; 
  }
  
  .trust-badges { justify-content: center; margin-top: 5px; gap: 8px; }
}

@media (min-width: 768px) {
  .about-teaser--index {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px; /* Reduced from 40px */
    align-items: center;
  }
  .about-teaser--index .about-photo {
    grid-column: 2;
    grid-row: 1 / span 5; /* Span across all left column elements */
  }
}

.about-photo {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  object-fit: cover;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

/* --- Image Background Sections --- */
.section--image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: #fff;
}
@media (min-width: 768px) {
  .section--image { background-attachment: fixed; }
}
.section--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.section--image > .container {
  position: relative;
  z-index: 1;
}
.section--image h2 { color: #fff; }

/* --- Quote Section --- */
.quote-section {
  padding: 50px 0;
  text-align: center;
}
.quote-section blockquote {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-style: italic;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}
.quote-section cite {
  display: block;
  margin-top: 12px;
  font-size: 0.95rem;
  opacity: 0.8;
  font-style: normal;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 50px 0;
}
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 1.5rem; }
.cta-phone {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  margin-bottom: 1rem;
}
.cta-phone:hover { color: rgba(255,255,255,0.85); }

/* --- Page Header (Subpages) --- */
.page-header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  padding: 50px 0 40px;
}
.page-header h1 { color: #fff; margin-bottom: 0.3rem; }
.breadcrumb {
  font-size: 0.85rem;
  opacity: 0.8;
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 6px; }

/* --- Content Sections --- */
.content-block { margin-bottom: 40px; }
.content-block h2 { margin-top: 1.5rem; }

.highlight-list {
  list-style: none;
  padding: 0;
}
.highlight-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}
.highlight-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.2rem;
  top: 6px; /* Precise vertical alignment string center */
}

/* --- Specialty Tags --- */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.tag {
  background: var(--color-bg-light);
  color: var(--color-primary);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--color-border);
}

/* --- Expandable Tags --- */
.tags-expandable {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.tag-detail {
  border: 1px solid var(--color-border);
  border-radius: 30px;
  overflow: hidden;
  transition: all var(--transition);
}
.tag-detail[open] {
  border-radius: var(--radius);
  flex-basis: 100%;
  border-color: var(--color-primary);
  background: var(--color-bg-light);
}
.tag-detail summary {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}
.tag-detail summary::-webkit-details-marker { display: none; }
.tag-detail summary:hover {
  background: var(--color-bg-light);
}
.tag-detail[open] summary {
  border-bottom: 1px solid var(--color-border);
  padding: 10px 18px;
}
.tag-detail[open] summary::after {
  content: ' ×';
  font-weight: 300;
  opacity: 0.5;
}
.tag-detail p {
  padding: 12px 18px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Price Box --- */
.price-box {
  background: var(--color-bg-light);
  border-left: 4px solid var(--color-primary);
  padding: 25px 30px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 30px 0;
}
.price-box .price {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-primary);
}
.price-box .price-detail {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 30px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 5px;
  bottom: 5px;
  width: 2px;
  background: var(--color-border);
}
.timeline-item {
  position: relative;
  margin-bottom: 25px;
  padding-left: 20px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--color-primary);
}
.timeline-date {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 600;
}
.timeline-title {
  font-weight: 600;
  color: var(--color-heading);
}
.timeline-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* --- Process Steps --- */
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px;
  padding-left: 80px;
  margin-bottom: 30px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

/* --- FAQ Accordion --- */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] {
  border-color: var(--color-primary);
  background: var(--color-bg-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.faq-item summary {
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition);
  color: var(--color-heading);
}
.faq-item summary:hover { 
  background: var(--color-bg-light); 
  color: var(--color-primary);
}
.faq-item[open] summary {
  color: var(--color-primary);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 10px;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform 0.4s ease;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer {
  padding: 0 24px 20px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- Logo Grid (Referenzen) --- */
.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
.logo-grid img {
  height: 40px;
  width: auto;
  filter: grayscale(40%);
  opacity: 0.8;
  transition: all var(--transition);
}
.logo-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- Location Cards --- */
.location-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.location-card h3 {
  margin-bottom: 15px;
}
.location-card p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.location-card .address {
  color: var(--color-text-light);
}
.location-card .maps-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Contact Info --- */
.contact-info {
  font-size: 1.05rem;
}
.contact-info li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Downloads --- */
.download-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}
.download-list a {
  font-weight: 600;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.site-footer h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.site-footer a {
  color: rgba(255,255,255,0.7);
}
.site-footer a:hover { color: #fff; }
.site-footer p { margin-bottom: 6px; font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}
.footer-bottom a { margin: 0 8px; }

/* --- News Strip --- */
.news-strip {
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--color-text-light);
}
.news-label {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 10px;
  border-radius: 3px;
  margin-right: 10px;
  vertical-align: middle;
}

/* --- News Banner (Kontakt) --- */
.news-banner {
  background: var(--color-bg-light);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin: 20px 0;
  font-size: 0.95rem;
}
.news-banner strong { color: var(--color-primary); }

/* --- Skip Link (Barrierefreiheit) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  z-index: 200;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  color: #fff;
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* --- Praxis Parallax Divider --- */
.praxis-parallax {
  height: 300px;
  background-position: center 40%;
}
.praxis-parallax::before {
  display: none;
}
@media (min-width: 768px) {
  .praxis-parallax {
    height: 400px;
  }
}

/* --- Praxis Gallery --- */
.praxis-subtitle {
  color: var(--color-text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 30px;
}
.praxis-gallery-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 15px;
}
.praxis-gallery-label small {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.praxis-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.praxis-gallery figure {
  overflow: hidden;
  border-radius: var(--radius);
  margin: 0;
}
.praxis-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.5s ease;
  display: block;
}
.praxis-gallery__hero img {
  height: 320px;
}
.praxis-gallery figure:hover img {
  transform: scale(1.03);
}
@media (min-width: 768px) {
  .praxis-gallery {
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
  }
  .praxis-gallery__hero {
    grid-row: 1 / 3;
  }
  .praxis-gallery__hero img {
    height: 100%;
    min-height: 420px;
  }
  .praxis-gallery img {
    height: 205px;
  }
}

/* --- Mirrored Gallery --- */
@media (min-width: 768px) {
  .praxis-gallery--mirrored {
    grid-template-columns: 2fr 3fr;
  }
  .praxis-gallery--mirrored .praxis-gallery__hero {
    grid-column: 2;
    grid-row: 1 / 3;
  }
}

/* --- Mobile Swipe Slider --- */
@media (max-width: 767px) {
  .praxis-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px 0 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }
  .praxis-gallery::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }
  .praxis-gallery figure {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
  .praxis-gallery img {
    height: 280px;
  }
  .praxis-gallery__hero img {
    height: 280px;
  }
}

/* --- Practice Toggle --- */
.praxis-toggle {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 15px;
  gap: 20px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 8px;
}
.toggle-btn {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 4px 0;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--color-text-light);
}
.toggle-btn small {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-left: 4px;
  opacity: 1;
}
.toggle-btn:hover {
  color: var(--color-primary);
}
.toggle-btn.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
@media (max-width: 500px) {
  .praxis-toggle {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
}
.praxis-gallery-container {
  display: none;
  animation: fadeIn 0.4s ease;
}
.praxis-gallery-container.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Intervention Images --- */
.intervention-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.intervention-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.intervention-gallery figure:first-child {
  grid-column: 1 / -1;
}
.intervention-gallery img {
  border-radius: var(--radius);
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.intervention-gallery figure:first-child img {
  height: 220px;
}
.intervention-gallery figure:hover img {
  transform: scale(1.05);
}
.intervention-gallery figcaption {
  font-size: 0.75rem;
  color: var(--color-text-light);
  padding: 6px 2px 0;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .intervention-gallery { grid-template-columns: repeat(3, 1fr); }
  .intervention-gallery figure:first-child img { height: 260px; }
  .intervention-gallery img { height: 140px; }
}

/* --- Two Column Content --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col--wide-left { grid-template-columns: 2fr 1fr; }
  .two-col--wide-right { grid-template-columns: 1fr 2fr; }
}

/* --- Trust / Membership Badges --- */
.badges-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-primary);
  margin: 30px 0 15px;
  display: block;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px; /* Tighter gap */
  align-items: stretch;
  justify-content: flex-start; /* Aligned left */
  margin: 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--color-text-light);
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  transition: all var(--transition);
}
.trust-badge img {
  height: 24px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition);
}
.trust-badge:hover {
  border-color: var(--color-primary);
  color: var(--color-text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.trust-badge:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.trust-badge-label {
  font-weight: 600;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .trust-badges { justify-content: center; }
  .badges-title { text-align: center; }
}

/* --- Map Embed --- */
.map-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .map-grid { grid-template-columns: 1fr 1fr; }
}
.map-grid iframe {
  border-radius: var(--radius);
  width: 100%;
  height: 400px;
  border: 0;
}
.map-item {
  display: flex;
  flex-direction: column;
}
.map-google-link {
  display: block;
  text-align: center;
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* --- Card Accent Borders --- */
.card {
  border-top: 3px solid transparent;
}
.grid--3 .card:nth-child(1) { border-top-color: var(--color-primary); }
.grid--3 .card:nth-child(2) { border-top-color: var(--color-accent); }
.grid--3 .card:nth-child(3) { border-top-color: #7ab648; }

/* --- Scroll Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-scroll {
  opacity: 0;
}
.animate-on-scroll.is-visible {
  animation: fadeInUp 0.6s ease forwards;
}
.animate-on-scroll.is-visible:nth-child(2) { animation-delay: 0.1s; }
.animate-on-scroll.is-visible:nth-child(3) { animation-delay: 0.2s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll { opacity: 1; }
  .animate-on-scroll.is-visible { animation: none; }
}

/* --- Sticky Mobile CTA --- */
.sticky-cta {
  display: none;
}
@media (max-width: 767px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--color-primary);
    color: #fff;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    transition: background var(--transition);
  }
  .sticky-cta:hover {
    background: var(--color-primary-hover);
    color: #fff;
  }
  .sticky-cta svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
  }
  /* Add bottom padding to footer so CTA doesn't overlap */
  .site-footer { padding-bottom: 70px; }
}

/* --- Lightbox Modal --- */
.lightbox-modal {
  border: none;
  border-radius: var(--radius);
  padding: 0;
  max-width: 90vw;
  max-height: 90vh;
  margin: auto;
  background: transparent;
}
.lightbox-modal::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(3px);
}
.lightbox-content {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.lightbox-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  position: relative;
}
.lightbox-image-container img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: rgba(0,0,0,0.8);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  z-index: 10;
}
.lightbox-nav:hover {
  background: rgba(0,0,0,0.8);
}
.lightbox-prev { left: 15px; }
.lightbox-next { right: 15px; }
.lightbox-caption {
  padding: 15px;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  background: #fff;
  margin: 0;
}

/* --- Supervision Page Extras --- */
.status-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  margin: 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-badge--warning {
  background: #fff4e5;
  color: #a35200;
  border: 1px solid #ffd599;
}
.status-badge--success {
  background: #e6f7ed;
  color: #1e4620;
  border: 1px solid #c3e6cb;
}
.price-note {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-top: 15px;
  font-style: italic;
  line-height: 1.4;
}
.price-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.price-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 20px;
  text-transform: uppercase;
  transform: rotate(45deg) translate(25%, -50%);
  transform-origin: top right;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.price-box:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.price-box h3 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.price-box .price {
  margin-bottom: 0;
}

/* --- Color Card & Original Card Layouts (For A/B/C Test) --- */

/* Ansatz 2: Color Blocking */
.card-color {
  border-radius: var(--radius);
  padding: 35px 30px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  color: #fff;
}
.card-color:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-color.color-blue { background: #0088cc; }
.card-color.color-teal { background: #4DB7CA; }
.card-color.color-green { background: #4dbf8c; }

.card-color h3 { 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  color: #fff; 
}
.card-color p { 
  color: rgba(255,255,255,0.9); 
  font-size: 0.95rem; 
}
.card-icon-color {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
}
.card-icon-color svg { width: 32px; height: 32px; stroke-width: 1.5; }
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
  margin-top: 15px;
}
.btn--outline-light:hover {
  background: #fff;
  color: var(--color-primary);
}

/* Ursprung (Klassisch) */
.card-original {
  background: #fff;
  border-radius: var(--radius);
  padding: 35px 30px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.card-original:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-icon-orig {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-primary);
}
.card-icon-orig svg { width: 32px; height: 32px; stroke-width: 1.5; }
.card-original h3 { text-transform: uppercase; letter-spacing: 1px; }
.card-original p { color: var(--color-text-light); font-size: 0.95rem; }
.card-original .btn { margin-top: 15px; }

/* --- Contact Form --- */
.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--color-heading);
}
.contact-form .required {
  color: #c0392b;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.12);
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}
.form-checkbox label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}
.form-status {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.form-status--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.form-status--error {
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ef9a9a;
}
.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
