/* ============================================================
   TANJA AIGNER TCM NEUFAHRN — STYLESHEET
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

/* --- CSS Variablen --- */
:root {
  --creme:       #F5EDE0;
  --beige:       #EDE0CC;
  --terrakotta:  #C4956A;
  --dunkelbraun: #4A3728;
  --mittelbraun: #7A5C3E;
  --gruen:       #6B8F5E;
  --gruen-hell:  #EEF3EB;
  --weiss:       #FFFFFF;
  --text-dunkel: #2E1F14;
  --max-width:   1200px;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(74, 55, 40, 0.10);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--dunkelbraun);
  background-color: var(--creme);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--gruen);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--terrakotta);
}

ul {
  list-style: none;
}

/* --- Typografie --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.25;
  color: var(--dunkelbraun);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--mittelbraun);
}

.overtitle {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gruen);
  margin-bottom: 0.75rem;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Sektionen --- */
section {
  width: 100%;
}

.section-pad {
  padding: 5rem 0;
}

.section-pad-sm {
  padding: 3rem 0;
}

/* Hintergrundfarben */
.bg-creme   { background-color: var(--creme); }
.bg-beige   { background-color: var(--beige); }
.bg-dunkel  { background-color: var(--dunkelbraun); }
.bg-terra   { background-color: var(--terrakotta); }
.bg-gruen   { background-color: var(--gruen); }
.bg-mittel  { background-color: var(--mittelbraun); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--terrakotta);
  color: var(--weiss);
  border-color: var(--terrakotta);
}

.btn-primary:hover {
  background-color: var(--dunkelbraun);
  border-color: var(--dunkelbraun);
  color: var(--weiss);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dunkelbraun);
  border-color: var(--dunkelbraun);
}

.btn-secondary:hover {
  background-color: var(--dunkelbraun);
  color: var(--weiss);
}

.btn-white {
  background-color: var(--weiss);
  color: var(--terrakotta);
  border-color: var(--weiss);
}

.btn-white:hover {
  background-color: transparent;
  color: var(--weiss);
  border-color: var(--weiss);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--weiss);
  border-color: var(--weiss);
}

.btn-outline-white:hover {
  background-color: var(--weiss);
  color: var(--terrakotta);
}

.btn-full {
  width: 100%;
  display: block;
}

/* --- Cookie-Banner --- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dunkelbraun);
  color: var(--creme);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

#cookie-banner p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--creme);
  flex: 1;
  min-width: 200px;
}

#cookie-banner p a {
  color: var(--terrakotta);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-buttons button {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid var(--terrakotta);
  transition: all 0.2s;
}

#cookie-accept {
  background-color: var(--terrakotta);
  color: var(--weiss);
}

#cookie-accept:hover {
  background-color: var(--weiss);
  color: var(--terrakotta);
}

#cookie-reject {
  background-color: transparent;
  color: var(--creme);
  border-color: var(--creme);
}

#cookie-reject:hover {
  background-color: var(--creme);
  color: var(--dunkelbraun);
}

/* --- Navigation --- */
#nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 900;
  background-color: var(--creme);
  border-bottom: 1px solid rgba(74, 55, 40, 0.12);
  box-shadow: 0 2px 12px rgba(74, 55, 40, 0.08);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 0 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo img {
  height: 70px;
  width: 70px;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: #5C3520;
  letter-spacing: 0.01em;
}

.nav-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: #C4956A;
  letter-spacing: 0.03em;
}

.nav-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: #4A3728;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--dunkelbraun);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--terrakotta);
}

.nav-cta {
  margin-left: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dunkelbraun);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  display: none;
  background: var(--creme);
  border-top: 1px solid rgba(74,55,40,0.1);
  padding: 1.5rem;
}

#mobile-menu.open {
  display: block;
}

#mobile-menu a {
  display: block;
  font-size: 1.1rem;
  color: var(--dunkelbraun);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(74,55,40,0.08);
  font-family: 'Lato', sans-serif;
}

#mobile-menu a:last-child {
  border-bottom: none;
  margin-top: 1rem;
}

#mobile-menu .btn-primary {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

/* --- HERO --- */
.hero {
  width: 100%;
  background-color: var(--beige);
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-text {
  flex: 0 0 42%;
}

.hero-badge {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mittelbraun);
  background: rgba(196,149,106,0.12);
  border: 1px solid rgba(196,149,106,0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.hero-text h1 {
  margin-bottom: 1.25rem;
}

.hero-leitsatz {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--mittelbraun);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 0 0 56%;
}

.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Hero Full-Bg Variante */
.hero-fullbg {
  width: 100%;
  min-height: 340px;
  background-color: var(--beige);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.hero-fullbg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-fullbg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 55, 40, 0.60);
  z-index: 1;
}

.hero-fullbg-content {
  position: relative;
  z-index: 2;
  color: var(--weiss);
  max-width: 700px;
}

.hero-fullbg-content h1 {
  color: var(--weiss);
  margin-bottom: 1rem;
}

.hero-fullbg-content .hero-leitsatz {
  color: rgba(255,255,255,0.85);
}

/* --- TRUST BAR --- */
.trust-bar {
  width: 100%;
  background-color: var(--dunkelbraun);
  padding: 2.5rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: stretch;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.trust-item {
  flex: 1;
  text-align: center;
  padding: 0.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.trust-item:last-child {
  border-right: none;
}

.trust-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--terrakotta);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.trust-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--creme);
  letter-spacing: 0.04em;
}

/* --- BESCHWERDEN GRID --- */
.beschwerden-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.beschwerde-card {
  background: var(--weiss);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.beschwerde-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(74,55,40,0.15);
}

.beschwerde-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.beschwerde-body {
  padding: 1.25rem;
}

.beschwerde-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.75rem;
  color: var(--gruen);
}

.beschwerde-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--dunkelbraun);
}

.beschwerde-body p {
  font-size: 0.82rem;
  color: var(--mittelbraun);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.beschwerde-link {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gruen);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s;
}

.beschwerde-link:hover {
  gap: 0.5rem;
  color: var(--terrakotta);
}

/* --- BEHANDLUNGS-BILDSTREIFEN --- */
.bildstreifen {
  width: 100%;
  background-color: var(--beige);
  padding: 4rem 0;
}

.bildstreifen-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.bildstreifen-header h3 {
  font-size: 1.5rem;
}

.bildstreifen-bilder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.bildstreifen-bilder img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.bildstreifen-bilder img:hover {
  transform: scale(1.03);
}

/* --- ÜBER MICH KURZ --- */
.ueber-mich-kurz {
  width: 100%;
  background-color: var(--creme);
  padding: 5rem 0;
}

.ueber-mich-inner {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ueber-mich-bild {
  flex: 0 0 38%;
}

.ueber-mich-bild img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ueber-mich-text {
  flex: 1;
}

.ueber-mich-text h2 {
  margin-bottom: 0.3rem;
}

.ueber-mich-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gruen);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.ueber-mich-text p {
  margin-bottom: 1.5rem;
}

.badges {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.badge-item {
  background: var(--weiss);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-item img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.badge-item.dark {
  background: var(--dunkelbraun);
  min-width: 140px;
  max-width: 160px;
  padding: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.badge-item.dark img {
  width: 130px !important;
  min-width: unset !important;
  height: auto !important;
  object-fit: contain;
}

/* --- ZITATE --- */
.zitate {
  width: 100%;
  background-color: var(--gruen);
  padding: 5rem 0;
}

.zitate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.zitat-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
}

.zitat-anfuehrung {
  display: none;
}

.zitat-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--weiss);
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: center;
}

.zitat-strich {
  display: block;
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.4);
}

/* --- PHILOSOPHIE --- */
.philosophie {
  width: 100%;
  background-color: var(--beige);
  padding: 6rem 0;
  text-align: center;
}

.philosophie-zitat {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--dunkelbraun);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.philosophie-text {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  color: var(--mittelbraun);
  font-size: 1rem;
}

/* --- CTA BANNER --- */
.cta-banner {
  width: 100%;
  background-color: var(--terrakotta);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2,
.cta-banner p {
  color: var(--weiss);
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.cta-banner p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-banner-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- BEHANDLUNGS-BLÖCKE --- */
.behandlung-block {
  width: 100%;
  padding: 5rem 0;
}

.behandlung-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.behandlung-inner.reverse {
  flex-direction: row-reverse;
}

.behandlung-bild {
  flex: 0 0 48%;
}

.behandlung-bild img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.behandlung-text {
  flex: 1;
}

.behandlung-text h2 {
  margin-bottom: 1rem;
}

.behandlung-text p {
  color: var(--mittelbraun);
  margin-bottom: 1.25rem;
}

.wofuer-label {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gruen);
  margin-bottom: 0.5rem;
}

.wofuer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.tag {
  background: var(--gruen-hell);
  color: var(--gruen);
  font-size: 0.82rem;
  font-family: 'Lato', sans-serif;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(107,143,94,0.25);
}

/* --- MEINE GESCHICHTE BLÖCKE --- */
.geschichte-block {
  width: 100%;
  padding: 5rem 0;
}

.geschichte-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.geschichte-inner.reverse {
  flex-direction: row-reverse;
}

.geschichte-bild {
  flex: 0 0 45%;
  overflow: hidden;
}

.geschichte-bild img {
  width: 100%;
  height: 520px;
  object-fit: cover !important;
  object-position: top center !important;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Nur das Portrait von Tanja — leere Fläche oben abschneiden */
.geschichte-bild img[src*="Portrait"] {
  object-position: 50% 28% !important;
}

.geschichte-text {
  flex: 1;
}

.geschichte-text h2 {
  margin-bottom: 1rem;
}

/* --- LEITSATZ BLOCK --- */
.leitsatz-block {
  width: 100%;
  background-color: var(--creme);
  padding: 5rem 0;
  text-align: center;
}

.leitsatz-inner {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.leitsatz-anfuehrung {
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  line-height: 0.6;
  color: var(--terrakotta);
  opacity: 0.3;
  display: block;
  margin-bottom: 0.5rem;
}

.leitsatz-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--dunkelbraun);
  line-height: 1.6;
}

/* --- TIMELINE --- */
.timeline-section {
  width: 100%;
  background-color: var(--dunkelbraun);
  padding: 5rem 0;
}

.timeline-section h2 {
  color: var(--weiss);
  text-align: center;
  margin-bottom: 3rem;
}

.timeline {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(196,149,106,0.35);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 2rem);
  padding-left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 2rem);
  padding-right: 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  background: var(--terrakotta);
  border-radius: 50%;
  transform: translateX(-50%);
  flex-shrink: 0;
}

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--terrakotta);
  font-weight: 500;
  min-width: 80px;
}

.timeline-content {
  flex: 1;
}

.timeline-content p {
  color: rgba(245,237,224,0.8);
  font-size: 0.95rem;
  margin: 0;
}

.timeline-content strong {
  color: var(--creme);
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

/* --- ZERTIFIKATE --- */
.zertifikate-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.zertifikat-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
}

.zertifikat-item.bg-white {
  background: var(--weiss);
}

.zertifikat-item.bg-dark {
  background: var(--dunkelbraun);
}

.zertifikat-item img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

/* --- PAKETE KARTEN --- */
.pakete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.paket-card {
  background: var(--weiss);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
}

.paket-card.featured {
  border: 3px solid var(--terrakotta);
  transform: scale(1.03);
}

.paket-card-header {
  background: var(--mittelbraun);
  color: var(--weiss);
  padding: 1.5rem;
  position: relative;
}

.paket-card.featured .paket-card-header {
  background: var(--terrakotta);
}

.paket-card-header h3 {
  color: var(--weiss);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.paket-card-header p {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  margin: 0;
}

.paket-badge {
  position: absolute;
  top: -1px;
  right: 1rem;
  background: var(--dunkelbraun);
  color: var(--creme);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.06em;
}

.paket-card-body {
  padding: 1.5rem;
  flex: 1;
}

.paket-card-body ol {
  list-style: none;
  counter-reset: paket-counter;
  margin-bottom: 1.25rem;
}

.paket-card-body ol li {
  counter-increment: paket-counter;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(74,55,40,0.06);
  font-size: 0.9rem;
  color: var(--mittelbraun);
  line-height: 1.4;
}

.paket-card-body ol li::before {
  content: counter(paket-counter);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gruen-hell);
  color: var(--gruen);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
}

.paket-ideal {
  font-size: 0.85rem;
  color: var(--mittelbraun);
  font-style: italic;
  padding-top: 0.5rem;
}

.paket-card-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(74,55,40,0.08);
}

/* --- ERSTGESPRACH SEKTION --- */
.erstgespraech {
  width: 100%;
  background-color: var(--dunkelbraun);
  padding: 5rem 0;
}

.erstgespraech h2 {
  color: var(--weiss);
  margin-bottom: 0.5rem;
}

.erstgespraech-subtitle {
  color: var(--terrakotta);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.erstgespraech ol {
  list-style: none;
  counter-reset: eg-counter;
  max-width: 600px;
}

.erstgespraech ol li {
  counter-increment: eg-counter;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(245,237,224,0.85);
  font-size: 1rem;
}

.erstgespraech ol li::before {
  content: counter(eg-counter);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--terrakotta);
  color: var(--weiss);
  border-radius: 50%;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 0.05rem;
}

.erstgespraech-hinweis {
  margin-top: 1.5rem;
  font-style: italic;
  color: rgba(245,237,224,0.6);
  font-size: 0.9rem;
}

/* --- FAQ ACCORDION --- */
.faq-section {
  width: 100%;
  background-color: var(--beige);
  padding: 5rem 0;
}

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

.accordion {
  max-width: 780px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--weiss);
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(74,55,40,0.06);
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--dunkelbraun);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.2s;
}

.accordion-btn:hover {
  background: var(--creme);
}

.accordion-btn .accordion-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--terrakotta);
  transition: transform 0.3s;
}

.accordion-btn[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--mittelbraun);
  font-size: 0.95rem;
  line-height: 1.7;
}

.accordion-content.open {
  display: block;
}

/* --- KONTAKT --- */
.kontakt-section {
  width: 100%;
  background-color: var(--beige);
  padding: 5rem 0;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.kontakt-info h2 {
  margin-bottom: 0.75rem;
}

.kontakt-info .lead {
  margin-bottom: 2rem;
}

.kontakt-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.kontakt-detail-icon {
  color: var(--terrakotta);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.kontakt-detail-text {
  font-size: 0.95rem;
  color: var(--dunkelbraun);
}

.kontakt-detail-text a {
  color: var(--dunkelbraun);
}

.kontakt-detail-text a:hover {
  color: var(--terrakotta);
}

.maps-container {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.maps-container iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
}

.maps-placeholder {
  width: 100%;
  height: 280px;
  background: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mittelbraun);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
}

/* --- FORMULAR --- */
.kontakt-form {
  background: var(--weiss);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--dunkelbraun);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--dunkelbraun);
  background: var(--creme);
  border: 1.5px solid rgba(74,55,40,0.15);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terrakotta);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

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

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--mittelbraun);
  cursor: pointer;
}

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

.form-success {
  display: none;
  background: var(--gruen-hell);
  border: 1px solid rgba(107,143,94,0.3);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  color: var(--gruen);
  font-weight: 400;
  margin-top: 1rem;
}

/* --- IMPRESSUM / DATENSCHUTZ --- */
.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.legal-page h1 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--beige);
}

.legal-page h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--dunkelbraun);
}

.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  color: var(--mittelbraun);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.5rem;
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background-color: var(--dunkelbraun);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.footer-brand img.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(245,237,224,0.7);
  margin-bottom: 0.4rem;
}

.footer-brand p a {
  color: rgba(245,237,224,0.7);
}

.footer-brand p a:hover {
  color: var(--terrakotta);
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--creme);
  margin-bottom: 0.15rem;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--creme) !important;
  font-size: 0.92rem !important;
  margin-bottom: 1rem !important;
}

.footer-nav h4 {
  color: var(--creme);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-nav a {
  display: block;
  color: rgba(245,237,224,0.7);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--terrakotta);
}

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

.footer-trust h4 {
  color: var(--creme);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-agtcm {
  background: var(--weiss);
  border-radius: 8px;
  padding: 1rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer-agtcm img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-trust p {
  font-size: 0.82rem;
  color: rgba(245,237,224,0.6);
  margin: 0;
}

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

.footer-bottom p {
  font-size: 1rem;
  color: rgba(245,237,224,0.75);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.footer-bottom a {
  color: rgba(245,237,224,0.75);
  font-size: 1rem;
  padding: 10px 16px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom a:hover {
  color: var(--terrakotta);
  background: rgba(255,255,255,0.07);
}

/* Footer-Brand Text */
.footer-brand p {
  font-size: 0.95rem;
  color: rgba(245,237,224,0.8);
  margin-bottom: 0.5rem;
}

.footer-brand p a {
  color: rgba(245,237,224,0.8);
  font-size: 0.95rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

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

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

  .pakete-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .paket-card.featured {
    transform: none;
  }

  .timeline::before { display: none; }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: column;
    padding: 0;
    text-align: left;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--terrakotta);
  }

  .timeline-dot { display: none; }
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text {
    flex: none;
    width: 100%;
    order: 2;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    flex: none;
    width: 100%;
    order: 1;
  }

  .hero-image img {
    height: 340px;
  }

  .behandlung-inner,
  .behandlung-inner.reverse,
  .geschichte-inner,
  .geschichte-inner.reverse {
    flex-direction: column;
    gap: 2rem;
  }

  .behandlung-bild,
  .geschichte-bild {
    flex: none;
    width: 100%;
  }

  .behandlung-bild img,
  .geschichte-bild img {
    height: 300px;
  }

  .ueber-mich-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .ueber-mich-bild {
    flex: none;
    width: 100%;
  }

  .ueber-mich-bild img {
    height: 380px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-trust {
    grid-column: 1 / -1;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  #nav {
    height: 75px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo img {
    height: 55px;
    width: 55px;
  }

  .nav-name { font-size: 16px; }
  .nav-subtitle { font-size: 11px; }
  .nav-tagline { display: none; }

  .trust-bar-inner {
    flex-wrap: wrap;
    gap: 0;
  }

  .trust-item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem;
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.1);
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-bottom: none;
  }

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

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

  .badges {
    flex-wrap: wrap;
    align-items: center;
  }

  .badge-item.dark {
    min-width: 120px;
    max-width: 150px;
    padding: 12px;
  }

  .badge-item.dark img {
    width: 110px;
    max-width: 110px;
    height: auto;
    margin: 0 auto;
  }

  .zertifikate-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .zertifikat-item {
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-trust {
    grid-column: auto;
  }

  .cta-banner-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-pad {
    padding: 3.5rem 0;
  }

  .hero-image img {
    height: 320px;
  }

  .kontakt-form {
    padding: 1.5rem;
  }

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

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .bildstreifen-bilder {
    grid-template-columns: 1fr;
  }

  .hero-image img {
    height: 280px;
  }

  .kontakt-form {
    padding: 1.5rem;
  }
}
