/**
 * Consolidated Stylesheet - Psychotherapie Perterer
 * Desktop-first approach, 1250px wrapper
 * Structure: Colors → Base Styles → Components → Subpage Styles → Media Queries
 */

/* ========================================
   LOCAL FONTS
   ======================================== */
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito-light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/nunito-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   COLOR SYSTEM
   ======================================== */

:root {
  /* Primary Colors */
  --color-primary: #41402B;        /* Dark olive - main brand color */
  --color-primary-light: #484536;  /* Lighter olive variant */
  --color-primary-transparent: #41402b7e;
  
  /* Secondary Colors */
  --color-secondary: #5F3B25;      /* Dark brown */
  --color-accent: #987057;         /* Medium brown/taupe */
  
  /* Nature/Organic Colors */
  --color-sage: #A6A25B;           /* Sage green/olive */
  
  /* Background Colors */
  --color-bg-dark: #0E0503;        /* Almost black */
  --color-bg-light: #FFFDF9;       /* Off-white/cream */
  --color-bg-beige: #E8E2D2;       /* Light beige */
  
  /* Text Colors */
  --color-text-primary: #0E0503;   /* Dark text on light backgrounds */
  --color-text-light: #FFFDF9;     /* Light text on dark backgrounds */
  --color-text-muted: #484536;     /* Muted text */
}

/* ========================================
   MAIN STYLES
   ======================================== */

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--color-text-primary);
  background-color: var(--color-bg-light);
  line-height: 1.8;
}

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

/* === BASE TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
}

h2 {
  font-size: 2rem;
  font-weight: 400;
  margin: 0rem 0 1.5rem;
  color: var(--color-text-primary);
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2rem 0 1rem;
  color: var(--color-text-primary);
  line-height: 1.4;
}

h4 {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 1.5rem 0 0.75rem;
  color: var(--color-text-primary);
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: var(--color-text-primary);
}

ul, ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 1rem 1.5rem;
  border-radius: 0.3125rem;
  text-decoration: none;
  font-size: 1.125rem;
  font-family: 'Nunito', sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

/* === LAYOUT === */
.wrapper {
  max-width: 78.125rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.875rem 0;
  background-color: transparent;
  transition: all 0.3s ease;
}

/* Scrolled State + Subpages */
.subpage .header,
.header.scrolled {
  background-color: #fffdf9f2;
  padding: 0.9375rem 0;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}

.header.scrolled header-nav a {
  color: var(--color-text-primary);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.125rem;
}

.header-logo {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: block;
}

.header-logo img {
  height: 2.5rem;
  width: auto;
  max-width: 100%;
  display: block;
}

.subpage .header .header-logo,
.header.scrolled .header-logo {
  opacity: 1;
  visibility: visible;
}

.header-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.125rem;
}

.header-nav a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.03125rem;
  transition: color 0.3s ease;
  position: relative;
}

.header-nav a:not(.btn-contact)::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 0.125rem;
  background-color: var(--color-bg-beige);
  transition: width 0.3s ease;
}

.header-nav a:not(.btn-contact):hover::after {
  width: 100%;
}

.subpage .header .header-nav a,
.header.scrolled .header-nav a {
  color: var(--color-text-primary);
}

.header-nav .btn-contact {
  background-color: var(--color-bg-beige);
  color: var(--color-text-primary);
  padding: 0.5rem 1rem;
  border-radius: 0.3125rem;
  transition: all 0.3s ease;
}

.header-nav .btn-contact:hover {
  background-color: #9FA662;
  color: var(--color-text-light);
}

.subpage .header .header-nav .btn-contact:hover,
.header.scrolled .header-nav .btn-contact:hover {
  color: var(--color-text-light);
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

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

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 100;
  text-align: center;
  color: var(--color-text-light);
}

.hero-name {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.875rem;
  padding-top: 4rem;
  letter-spacing: 0.0625rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.hero-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 0.125rem;
  background-color: var(--color-accent);
  opacity: 0.7;
}

.hero-headline {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.875rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subheadline {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 3.125rem;
  opacity: 0.9;
}

.hero-button {
  background-color: var(--color-accent);
  color: var(--color-text-light);
  font-size: 1.2rem;
}

.hero-button:hover {
  background-color: var(--color-secondary);
  transform: translateY(-0.125rem);
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.3);
}

/* === SECTIONS === */
section {
  position: relative;
  background-color: var(--color-bg-light);
  padding: 9rem 0;
  z-index: 10;
}

/* === ABOUT SECTION === */
.about-section {
  background-color: #f8f7f3;
}

.about-content {
  display: flex;
  gap: 5rem;
  align-items: center;
}

.about-image {
  flex: 0 0 31.25rem;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.about-text {
  flex: 1;
}

.about-button {
  background-color: #41402B;
  color: var(--color-text-light);
  margin-top: 1.25rem;
}

.about-button:hover {
  background-color: rgba(65, 64, 43, 0.85);
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
}

/* === THERAPY SECTION === */
.therapy-section {
  position: relative;
  overflow: hidden;
}

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

.therapy-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
}

.therapy-section .wrapper {
  position: relative;
  z-index: 1;
}

.therapy-headline {
  text-align: center;
  margin-bottom: 3.75rem;
  color: var(--color-text-light);
}

.therapy-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
  gap: 2rem;
  justify-content: center;
}

.therapy-box {
  background-color: var(--color-bg-light);
  padding: 2.5rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 280px;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text-primary);
}

.therapy-box:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

.box-image {
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f7f3;
}

.box-image img {
  width: auto;
  height: 100%;
  display: block;
  object-fit: contain;
}

.box-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.box-content {
  font-size: 1rem !important;
  line-height: 1.7;
  color: var(--color-text-primary);
}

.box-content ul {
  list-style-position: inside;
  margin-bottom: 1rem;
  padding-left: 0;
}

.box-content ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem !important;
  line-height: 1.5;
}

.box-content p {
  margin-bottom: 1rem;
  font-size: 1rem !important;
}

.box-content p:last-child {
  margin-bottom: 1.5rem;
}

.box-button {
  background-color: #41402B;
  color: var(--color-text-light);
  margin-top: auto;
  padding-top: 1.25rem;
  display: inline-block;
  pointer-events: none;
}

.box-button:hover {
  background-color: rgba(65, 64, 43, 0.85);
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
}

/* === CONTACT SECTION === */
.contact-section {
  background-color: #f8f7f3;
}

.contact-header {
  margin-bottom: 3.75rem;
}

.contact-subtext {
  color: var(--color-text-primary);
  max-width: 50rem;
}

.contact-form {
  max-width: 100%;
  margin-bottom: 3.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #d1d1d1;
  border-radius: 0.3125rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--color-text-primary);
  background-color: var(--color-bg-light);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #9FA662;
}

.form-group textarea {
  resize: vertical;
  min-height: 8.75rem;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.625rem;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-group label a {
  color: #41402B;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.checkbox-group label a:hover {
  opacity: 0.7;
}

.contact-submit {
  background-color: #41402B;
  color: var(--color-text-light);
}

.contact-submit:hover {
  background-color: rgba(65, 64, 43, 0.85);
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3.75rem;
  padding-top: 3.75rem;
  border-top: 1px solid #d1d1d1;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon {
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.phone-icon {
  background-color: #9FA662;
  color: white;
}

.email-icon {
  background-color: #9FA662;
  color: white;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  font-size: 1.125rem;
  font-weight: 600;
}

.contact-value a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value a:hover {
  color: #9FA662;
}

.contact-times {
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.25rem;
}

/* === FOOTER === */
.footer {
  background-color: #484536;
  color: var(--color-text-light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-col h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.footer-col a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-col a:hover {
  opacity: 0.8;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  opacity: 0.9;
  margin: 0;
}

.doctolib-widget{position:fixed;top:200px;right:0;display:block;text-align:center;background:#3e2102 !important;color:#451e05 !important;text-decoration:none !important;font-size:16px !important;font-weight:700;font-family:'Montserrat',sans-serif;width:auto; border: #f6f6f692 solid 0.8px;border-radius:4px 0 0 4px;padding:10px;z-index:999;opacity:.8;box-shadow:1px 2px 4px rgba(0,0,0,.2);line-height:1.4}
.doctolib-widget a{display:block;color:#4c1c00;text-decoration:none;padding:6px;margin-top:5px;background:#fff;border-radius:4px;font-weight:700;transition:.2s}
.doctolib-widget a:hover,.doctolib-widget a:focus{opacity:.9;outline:2px solid #f5f5f5;outline-offset:2px}
.doctolib-widget img{display:inline-block;height:18px;margin:3px 0;vertical-align:middle;width:auto}@media(max-width:600px){
.doctolib-widget{top:auto;bottom:10px;right:0px;width:auto !important;padding:4px}
.doctolib-widget a{text-decoration:none;font-size:16px;font-weight:700;padding:5px}}@media(prefers-reduced-motion:reduce){*{transition:none!important}}

/* ========================================
   SUBPAGE STYLES
   ======================================== */

.page-title-section h1 {
  font-size: 3rem;
  font-weight: 400;
  margin: 0;
  color: #41402B;
}

.page-title-section h1.centered {
  text-align: center;
}

.page-section.bg-light {
  background-color: #f8f7f3;
}

.wrapper-narrow {
  max-width: 50rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #41402B;
}

.section-intro {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  color: #666;
}

.text-content {
  font-size: 1.125rem;
  line-height: 1.8;
}


.text-content h2,
.text-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2rem 0 1rem;
  color: var(--color-text-primary);
}

/* Boxes Grid */
.boxes-grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 40rem;
  margin: 0 auto;
}

.boxes-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
  gap: 2rem;
  justify-content: center;
}

.boxes-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
  gap: 2rem;
  justify-content: center;
}

.box-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* List Items */
.list-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 60rem;
  margin: 0 auto;
}

.list-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.05);
}

.list-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9FA662;
}

.list-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.list-content {
  flex: 1;
}

.list-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2rem 0 1rem;
  color: var(--color-text-primary);
}

.list-content p {
  margin: 0;
  color: #666;
}

/* Content Grid with Image */
.content-grid.image-left {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.content-grid.image-right {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.content-grid.image-right .content-main {
  order: 2;
}

.content-grid.image-right .content-image {
  order: 1;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Highlight Box (für Preise, wichtige Infos) */
.text-content .highlight-box {
  max-width: 35rem;
  margin: 2rem auto;
  padding: 3rem 2rem;
  background-color: #9FA662;
  border-radius: 1rem;
  text-align: center;
  color: #fff;
}

.text-content .highlight-box h2,
.text-content .highlight-box h3 {
  color: #fff;
  margin: 2rem 0 1rem;
}

.text-content .highlight-box h2:first-child,
.text-content .highlight-box h3:first-child {
  margin-top: 0;
}

.text-content .highlight-box .price {
  font-size: 3.5rem;
  font-weight: 600;
  margin: 1rem 0;
  line-height: 1;
}

.text-content .highlight-box p {
  margin: 0.5rem 0;
  opacity: 0.95;
}

/* === PAGE HERO === */
.page-hero {
  position: relative;
  min-height: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f7f3;
  padding: 8rem 0 4rem;
}

.page-hero.simple-hero {
  min-height: auto;
  padding: 6rem 0 3rem;
  background-color: #E8E2D2;
}

.page-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

.page-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
}

.page-hero-content h1 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-primary);
  opacity: 0.8;
}

/* === SIMPLE HEADER === */
.simple-header {
  padding: 8rem 0 2rem;
  background-color: #f8f7f3;
}

.simple-header h1 {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-text-primary);
  max-width: 50rem;
  margin: 0 auto;
}

/* === CONTENT SECTIONS === */
.content-section {
  background-color: var(--color-bg-light);
}

.intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 50rem;
  margin: 0 auto 3rem;
}

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

.section-headline {
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-text-primary);
}

/* === CONTENT GRID (About Page) === */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.content-main {
  font-size: 1.125rem;
  line-height: 1.8;
}



/* === ABOUT INTRO GRID === */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-intro-image {
  position: sticky;
}

.about-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
}

/* Image Slider */
.image-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
}

.slider-slide {
  display: none;
  width: 100%;
}

.slider-slide.active {
  display: block;
}

.slider-slide img {
  width: 100%;
  height: 28rem;
  display: block;
  border-radius: 0.5rem;
  object-fit: cover;
  object-position: center;
}

.about-intro-image img {
  width: 100%;
  height: 28rem;
  display: block;
  border-radius: 0.5rem;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: #41402B;
}

.slider-arrow:hover {
  background-color: #9FA662;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 1rem;
}

.slider-next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slider-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot:hover,
.slider-dot.active {
  background-color: #9FA662;
  width: 1.5rem;
  border-radius: 0.3125rem;
}

/* === SIDEBAR === */
.content-sidebar {
  position: sticky;
  top: 7rem;
  height: fit-content;
}

.sidebar-image {
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.sidebar-image img {
  width: 100%;
  height: auto;
  display: block;
}

.sidebar-box {
  background-color: #f8f7f3;
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.sidebar-box ul {
  list-style-position: inside;
  padding-left: 0;
}

.sidebar-box li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

/* === VITA/TIMELINE === */
.vita-section {
  margin-top: 0;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.vita-timeline {
  margin-top: 3rem;
}

.vita-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #E8E2D2;
}

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

.vita-year {
  flex: 0 0 6rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #9FA662;
}

.vita-content p {
  color: var(--color-text-primary);
  opacity: 0.8;
}

/* === ABOUT PAGE EXTRAS === */
.about-extras {
  max-width: 60rem;
  margin: 0 auto;
}

.about-image-block {
  margin-bottom: 3rem;
  text-align: center;
}

.about-image-block img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 0 auto;
}

.about-info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  gap: 2rem;
}

.about-info-boxes .info-box {
  background-color: #f8f7f3;
  padding: 2rem;
  border-radius: 0.5rem;
}

/* === IMAGE GALLERY === */
.gallery-section {
  background-color: #f8f7f3;
}

.gallery-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
}

.gallery-item {
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* === THERAPY INTRO SECTION === */
.therapy-intro-section {
  padding: 6rem 0;
  background-color: #41402B;
  text-align: center;
  color: #f8f7f3;
}

.therapy-intro-section h1 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #f8f7f3;
}

.therapy-intro-section .intro-text {
  max-width: 50rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.95;
  color: #f8f7f3 !important;
}

.therapy-intro-section .intro-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: #f8f7f3 !important;
}

/* === SYMPTOM CARDS (Therapieangebot) === */
.symptoms-section {
  background-color: var(--color-bg-light);
}

.symptom-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
  gap: 2rem;
  justify-content: center;
}

.symptom-card {
  background-color: #f8f7f3;
  padding: 2.5rem 2rem;
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.symptom-card-header {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1rem;
}

.symptom-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.symptom-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9FA662;
}

.symptom-icon svg {
  width: 100%;
  height: 100%;
  stroke: #9FA662;
}

.symptom-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(17%) saturate(678%) hue-rotate(32deg) brightness(93%) contrast(83%);
}

.symptom-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0 0;
  color: var(--color-text-primary);
}

.symptom-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  opacity: 0.8;
}

/* === PROCESS STEPS === */
.process-section {
  background-color: #f8f7f3;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #9FA662;
  color: var(--color-text-light);
  font-size: 1.75rem;
  font-weight: 600;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.process-step h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2rem 0 1rem;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.process-step p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  margin: 0;
}

.process-outro {
  max-width: 50rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: #666;
}

/* === SECTION DIVIDER === */
.section-divider {
  border: none;
  height: 0.125rem;
  background: linear-gradient(to right, transparent, #9FA662 20%, #9FA662 80%, transparent);
  margin: 0 auto;
  max-width: 30rem;
  opacity: 0.3;
}

.content-divider {
  border: none;
  height: 0.125rem;
  background: linear-gradient(to right, transparent, #9FA662 20%, #9FA662 80%, transparent);
  margin: 4rem auto;
  max-width: 30rem;
  opacity: 0.3;
}

.costs-divider {
  border: none;
  height: 1.2px;
  background: linear-gradient(to right, transparent, rgba(166, 162, 91, 0.3) 20%, rgba(166, 162, 91, 0.3) 80%, transparent);
  margin: 0 auto;
  max-width: 80%;
}

/* === PRICE SECTION (Kosten) === */
.price-section {
  background: linear-gradient(180deg, var(--color-bg-beige) 0%, var(--color-bg-light) 100%);
  position: relative;
}

.price-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(166, 162, 91, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(95, 59, 37, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* === FINANCE OPTIONS SECTION === */
.finance-section {
  background-color: var(--color-bg-light);
}

.finance-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* === KOSTENERSTATTUNG SECTION === */
.kostenerstattung-section {
  background: linear-gradient(180deg, var(--color-bg-beige) 0%, var(--color-bg-light) 100%);
}

.kostenerstattung-section .section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.price-box {
  max-width: 30rem;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: var(--color-sage);
  border-radius: 1rem;
  text-align: center;
  color: var(--color-text-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--color-primary-transparent) 0%, transparent 60%);
  pointer-events: none;
}

.price-box h2 {
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  font-weight: 500;
  position: relative;
  color: #FFFDF9;
}

.price-amount {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  letter-spacing: -0.02em;
}

.price-note {
  font-size: 0.95rem;
  color: #fff;
  opacity: 0.9;
  position: relative;
  line-height: 1.5;
}

/* === INFO BOXES === */
.info-boxes-section {
  background-color: #f8f7f3;
}

.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 380px));
  gap: 2rem;
  justify-content: center;
}

.info-box {
  background-color: var(--color-bg-light);
  padding: 2.5rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.info-box-header {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1rem;
}

.info-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.info-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 0 1.5rem 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9FA662;
}

.info-icon svg {
  width: 100%;
  height: 100%;
}

.info-box h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0 0;
  color: var(--color-text-primary);
  min-height: 3em;
  line-height: 1.25;
  display: flex;
  align-items: center;
}

.info-box p,
.info-box > div:last-child {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  flex-grow: 1;
}

/* === COLLAPSIBLE BOX CONTENT === */
.box-collapsible-content {
  position: relative;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.symptom-card > p,
.symptom-card > div:last-of-type,
.info-box > p,
.info-box > div:last-of-type {
  margin-top: 0;
}

.box-collapsible-content.collapsed {
  max-height: 4.8em; /* ~3 lines at 1.6 line-height */
}

.box-collapsible-content.collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background: linear-gradient(to bottom, transparent, #f8f7f3);
  pointer-events: none;
}

.info-box .box-collapsible-content.collapsed::after {
  background: linear-gradient(to bottom, transparent, var(--color-bg-light));
}

.box-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: none;
  border: 1px solid var(--color-primary);
  border-radius: 0.3125rem;
  color: var(--color-primary);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  align-self: flex-start;
}

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

.box-toggle-btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.box-toggle-btn.expanded svg {
  transform: rotate(180deg);
}

/* === FAQ SECTION === */
.faq-section {
  background-color: var(--color-bg-light);
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--color-text-primary);
}

.faq-content {
  max-width: 50rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
}

.faq-content ul, .faq-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.faq-content li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

/* === CONTENT BOX (Kostenerstattung) === */
.content-box {
  max-width: 50rem;
  margin: 2rem auto 0;
  background: var(--color-bg-light);
  padding: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(166, 162, 91, 0.15);
}

.content-box > p:first-child {
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--color-text-primary);
  opacity: 0.9;
}

.content-box h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2rem 0 1rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-box h3:first-of-type {
  margin-top: 0;
}

.content-box h3::before {
  content: '';
  width: 3px;
  height: 1.5rem;
  background: var(--color-sage);
  border-radius: 2px;
}

.content-box ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.content-box ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: var(--color-text-primary);
}

.content-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--color-sage);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
}

.content-box ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 1.5rem 0;
}

.content-box ol li {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  color: var(--color-text-primary);
  counter-increment: step-counter;
}

.content-box ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}

.content-box ol li strong {
  color: var(--color-primary);
  font-weight: 600;
}

.content-box > p:last-child {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(166, 162, 91, 0.2);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text-primary);
  opacity: 0.9;
}

/* === EXTERNAL LINKS === */
.external-links {
  max-width: 50rem;
  margin: 2rem auto 0;
  padding: 1.5rem 2rem;
  background: var(--color-bg-beige);
  border-radius: 0.5rem;
  border-left: 4px solid var(--color-sage);
}

.external-links h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2rem 0 1rem;
  color: var(--color-primary);
}

.external-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.external-links li {
  margin-bottom: 0.75rem;
}

.external-links a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.external-links p {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.external-links a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.external-links p.note,
.external-links small {
  margin-top: 1rem;
  font-size: 0.875rem;
  opacity: 0.7;
  color: var(--color-text-primary);
}

.external-resources {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #E8E2D2;
}

.external-resources h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2rem 0 1rem;
}

/* === LEGAL CONTENT (Impressum/Datenschutz) === */
.legal-content {
  padding: 1rem 0 5rem;
  background-color: #f8f7f3;
}

.legal-text {
  max-width: 50rem;
  margin: 0 auto;
}

.legal-text h2:first-child {
  margin-top: 0;
}

/* === CTA SECTION === */
.cta-section {
  padding: 6rem 0;
  background-color: #E8E2D2;
  text-align: center;
  color: #41402B;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #41402B;
}

.cta-section p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #41402B;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background-color: #9FA662;
  color: #fff;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 0.3125rem;
  font-size: 1.125rem;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  border: 0.125rem solid #9FA662;
}

.cta-section .btn-primary:hover {
  background-color: #8a9255;
  border-color: #8a9255;
  color: #fff;
  transform: translateY(-0.125rem);
}

.cta-section .btn-secondary {
  background-color: #41402B;
  color: #fff;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 0.3125rem;
  font-size: 1.125rem;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  border: 0.125rem solid #41402B;
}

.cta-section .btn-secondary:hover {
  background-color: #5a5847;
  border-color: #5a5847;
  color: #fff;
  transform: translateY(-0.125rem);
}

.cta-button:hover {
  background-color: #E8E2D2;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

/* === HAMBURGER MENU (HIDDEN ON DESKTOP) === */
.mobile-menu-toggle {
  display: none;
}

/* Hide Home link on desktop */
.nav-home {
  display: none;
}

.hamburger {
  width: 28px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-primary);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.subpage .hamburger span,
.header.scrolled .hamburger span {
  background: var(--color-text-primary);
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  top: 9px;
}

.hamburger span:nth-child(4) {
  top: 18px;
}

.mobile-menu-toggle.open .hamburger span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.mobile-menu-toggle.open .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  background: var(--color-text-primary) !important;
}

.mobile-menu-toggle.open .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  background: var(--color-text-primary) !important;
}

.mobile-menu-toggle.open .hamburger span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

/* === RESPONSIVE === */
/* === LARGE DESKTOP: 1280px and below === */
@media (max-width: 1280px) {
  .wrapper {
    max-width: 68.75rem; /* 1100px */
  }

  section {
    padding: 7rem 0;
  }

  .hero-section h1 {
    font-size: 3.5rem;
  }

  .hero-section p {
    font-size: 1.375rem;
  }
}

@media (max-width: 1024px) {
  .wrapper {
    max-width: 56.25rem; /* 900px */
    padding: 0 2rem;
  }

  section {
    padding: 6rem 0;
  }

  .header-inner {
    gap: 2rem;
  }

  .header-nav a {
    font-size: 0.9375rem;
    padding: 0.5rem 0.75rem;
  }

  .hero-section {
    min-height: 70vh;
    padding: 8rem 0 6rem;
  }

  .hero-section h1 {
    font-size: 3rem;
  }

  .hero-section p {
    font-size: 1.25rem;
  }

  .about-content {
    flex-direction: column;
    gap: 3rem;
  }

  .about-image {
    flex: 1;
    max-width: 100%;
  }

  .therapy-boxes {
    grid-template-columns: 1fr;
  }

  .box-image {
    height: 260px;
  }

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

  .footer-col:last-child {
    grid-column: span 2;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .content-sidebar {
    position: static;
  }
  
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .about-intro-image {
    position: static;
  }

  .symptom-cards,
  .process-steps,
  .info-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  section {
    padding: 6rem 0;
  }

  /* Info boxes from 3 to 2 columns */
  .info-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About grid to single column */
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-intro-grid .body-text {
    order: 1;
  }

  .about-intro-grid .about-intro-image {
    order: 2;
    position: static;
    margin-top: 0;
  }

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

@media (max-width: 768px) {
  /* About section single column */
  .about-content {
    flex-direction: column;
    gap: 2rem;
  }

  .therapy-intro-section .intro-text {
    font-size: 1rem;
  }

  .about-image {
    flex: 1;
    max-width: 100%;
  }

  /* Flexible blocks responsive */
  .boxes-grid-2,
  .boxes-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .symptom-cards,
  .info-boxes {
    grid-template-columns: 1fr;
  }

  .symptom-card-header,
  .info-box-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .symptom-icon,
  .info-icon {
    display: none;
  }

  .symptom-card h3,
  .info-box h3 {
    margin: 0 0 1rem 0;
  }

  .box-toggle-btn {
    width: 100%;
    justify-content: center;
  }
  
  .content-grid.image-left,
  .content-grid.image-right {
    grid-template-columns: 1fr;
  }
  
  .content-grid.image-right .content-main {
    order: 1;
  }
  
  .content-grid.image-right .content-image {
    order: 2;
  }


  
  .list-item {
    flex-direction: column;
    text-align: center;
  }
  
  .list-icon {
    margin: 0 auto;
  }

  .page-hero {
    min-height: 20rem;
    padding: 6rem 0 3rem;
  }

  .page-hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .section-headline {
    font-size: 2rem;
  }

  .symptom-cards,
  .process-steps,
  .info-boxes {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .symptom-card-header,
  .info-box-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .symptom-icon,
  .info-icon {
    display: none;
  }

  .symptom-card h3,
  .info-box h3 {
    margin: 0 0 0 0;
    min-height: auto;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
  }

  .step-number {
    margin-bottom: 0;
    margin-right: 1rem;
  }

  .step-content {
    flex: 1;
  }

  .image-gallery {
    grid-template-columns: 1fr;
  }

  .price-amount {
    font-size: 3rem;
  }

  .vita-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .vita-year {
    flex: none;
  }
  
  .about-info-boxes {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

    .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
  }

    .nav-home {
    display: block;
  }

  body:not(.subpage) .hamburger span {
    background: var(--color-text-light);
  }
  
  body:not(.subpage) .header.scrolled .hamburger span {
    background: var(--color-text-primary);
  }

    section {
    padding: 6rem 0;
  }

  /* Header adjustments */
  .header {
    padding: 1rem 0;
  }

  .subpage .header,
  .header.scrolled {
    padding: 0.75rem 0;
  }

  .header-inner {
    justify-content: space-between;
    gap: 0;
  }

  .header-logo {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .header.scrolled .header-logo {
    opacity: 1;
    visibility: visible;
  }

  .header-logo img {
    height: 2rem;
    width: auto;
    max-width: 100%;
  }

  /* Mobile navigation */
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg-light);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  .header-nav.open {
    right: 0;
  }

  .header-nav a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-text-primary);
    font-size: 1.125rem;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }
  
  .header-nav a::after {
    display: none !important;
  }

  .header-nav a:hover,
  .header-nav a:active,
  .header-nav a:focus {
    background: none;
    color: var(--color-text-primary);
    text-decoration: none;
  }

  .header-nav .btn-contact {
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    text-align: center;
    border-radius: 0.3125rem;
    border: none;
  }

  /* Mobile overlay */
  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Hero section */
  .hero-section {
    min-height: 60vh;
    padding: 6rem 0 4rem;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section p {
    font-size: 1.125rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

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



  /* Therapy boxes */
  .therapy-boxes {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .box-image {
    height: 240px;
  }

  /* Info boxes */
  .info-boxes {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* About page */
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .about-intro-text h2 {
    font-size: 1.75rem;
  }
  
  .about-info-boxes {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-info-box h3 {
    font-size: 1.25rem;
  }
  
  /* Therapieangebot page */
  .therapy-intro-section {
    margin-top: 52px;
  }
  
  .therapy-intro-section h2 {
    font-size: 1.75rem;
  }
  
  .symptom-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .symptom-card {
    padding: 2rem 1.5rem;
  }
  
  .symptom-card h3 {
    font-size: 1.25rem;
  }
  
  /* Contact section */
  .contact-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col:last-child {
    grid-column: 1;
  }

  /* Subpages */
  .section-title {
    font-size: 2rem;
  }

  .therapy-intro-section h1 {
    font-size: 2.5rem;
  }

  /* Process steps */
  .process-steps {
    gap: 2rem;
  }

  .process-step {
    padding-left: 0;
    text-align: left;
    align-items: flex-start;
    flex-direction: row;
  }

  .step-number {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
    margin-bottom: 0;
    margin-right: 1rem;
    flex-shrink: 0;
  }

  .step-content {
    flex: 1;
  }

  /* Content boxes */
  .content-box {
    padding: 2rem 1.5rem;
  }

  .content-box ol li {
    padding-left: 3rem;
  }

  .content-box ol li::before {
    width: 2rem;
    height: 2rem;
  }

    /* Logo above hero name on homepage */
  .hero-logo-mobile {
    display: block;
    margin: 0 auto 1.5rem;
    text-align: center;
  }

  .hero-logo-mobile img {
    height: 3rem;
    width: auto;
    max-width: 200px;
    margin: 0 auto;
    filter: brightness(0) invert(1);
  }

  /* Full width buttons except hero button */
  .btn:not(.hero-button) {
    width: 100%;
    display: block;
    text-align: center;
  }

  .about-buttons,
  .therapy-buttons,
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .about-buttons .btn,
  .therapy-buttons .btn,
  .cta-buttons .btn {
    width: 100%;
  }

  /* Full width boxes/cards */
  .symptom-cards,
  .info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .symptom-card,
  .info-box,
  .info-card {
    width: 100%;
    max-width: 100%;
  }

  /* Contact info single column */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-info-item {
    width: 100%;
  }

  /* Footer centered */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-col {
    text-align: center;
  }

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

/* === LANDSCAPE MOBILE: 568px and below === */
@media (max-width: 896px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
    height: auto;
    padding: 4rem 0 2rem;
  }

  .hero-content {
    padding: 5rem 1rem 3rem;
  }

  .hero-name {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  p, ul li, a, .btn {
    font-size: 1rem;
  }

  .hero-headline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-subheadline {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  section {
    padding: 4rem 0;
  }

  .about-section {
    padding: 3rem 0;
  }

  .therapy-section {
    padding: 3rem 0;
  }

  .contact-section {
    padding: 3rem 0;
  }

  .therapy-intro-section {
    padding: 3rem 0;
  }

  .therapy-intro-section .intro-text {
    font-size: 1rem;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .header {
    padding: 0.75rem 0;
  }

  .subpage .header,
  .header.scrolled {
    padding: 0.5rem 0;
  }
}

@media (max-width: 568px) {
  /* Therapy boxes - single column for narrow screens */
  .therapy-boxes {
    grid-template-columns: 1fr;
  }
  
  .therapy-box {
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  section {
    padding: 4rem 0;
  }

  .page-hero-content h1 {
    font-size: 1.75rem;
  }

  .simple-header h1 {
    font-size: 2rem;
  }

  .hero-subheadline {
  font-size: 1rem;
  }

  .section-headline {
    font-size: 1.7rem;
  }

  .therapy-intro-section {
    margin-top: 60px;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .price-box {
    padding: 3rem 2rem;
  }

  .wrapper {
    padding: 0 1.5rem;
  }

  /* Header */
  .header-logo img {
    height: 2.2rem;
    width: auto;
    max-width: 100%;
  }

  .mobile-menu-toggle {
    padding: 0.25rem;
  }

  .header-nav {
    width: 100%;
    right: -100%;
  }

  /* Hero */


  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .hero-name {
  font-size: 1.4rem;
  }

  .btn {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }


  /* Typography */
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  
  /* Subpage headers */
  .simple-header {
    padding: 5rem 0 1.5rem;
  }
  
  .simple-header h1 {
    font-size: 1.75rem;
  }
  
  /* Legal pages */
  .legal-content {
    padding: 2.5rem 0;
  }
  
  /* Content sections h2/h3 */
  .content-section h2,
  .intro-text h2 {
    font-size: 1.5rem;
  }
  
  .content-section h3,
  .intro-text h3 {
    font-size: 1.25rem;
  }
  
  /* Content boxes */
  .content-box {
    padding: 1.5rem 1.25rem;
  }
  
  .content-box h3 {
    font-size: 1.25rem;
  }

  .therapy-intro-section h1 {
    font-size: 2rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  /* Price box */
  .price-box {
    padding: 2rem 1.5rem;
  }

  .price-amount {
    font-size: 3rem;
  }

  /* Info boxes */
  .info-box {
    padding: 2rem 1.5rem;
  }

  .info-box h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0rem;
    min-height: auto;
  }

  .section-title {
    font-size: 1.75rem;
  }


  /* Content box */
  .content-box {
    padding: 1.5rem 1rem;
  }

  .content-box h3 {
    font-size: 1.25rem;
  }

  .content-box ul li,
  .content-box ol li {
    font-size: 1rem;
    padding-left: 2.5rem;
  }

  .content-box ul li::before {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.75rem;
  }

  .content-box ol li::before {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.875rem;
  }

  /* Process steps */
  .process-step {
    padding-left: 0;
  }

  .step-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
    margin-bottom: 0;
    margin-top: 2.5rem;
  }

  /* CTA section */
  .cta-section h2 {
    font-size: 1.75rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

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

  /* Footer */

  .footer h4 {
    font-size: 1.125rem;
  }

  .footer p,
  .footer a {
    font-size: 0.95rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    font-size: 0.875rem;
  }

  /* Therapy boxes */
  .therapy-box {
    padding: 1.5rem;
  }

  .box-image {
    height: 220px;
  }

  .box-name {
    font-size: 1.25rem;
  }

  /* Contact form */
  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  p, ul li, .btn, a {
    font-size: 1rem;
  }

}

/* === SMALL MOBILE: 375px and below === */
@media (max-width: 375px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .btn {
    padding: 0.75rem 1rem;
  }
}




/* === FORM MESSAGES === */
.form-message {
  padding: 1rem 1.5rem;
  border-radius: 0.3125rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (min-width: 769px) {
 .therapy-intro-section {
    margin-top: 74px;
  }
    .hero-logo-mobile {
    display: none;
  }

  .symptom-card-header {
  min-height: 8rem;
  margin-bottom: 0.5rem;
}
}


@media (min-width: 1025px) {
.therapy-intro-section .intro-text p {
  font-size: 1.25rem;
  }
}