/* ============================================
   Esther Grosz - Website Styles
   Fonts: Inter (body), Fraunces (headings/quotes)
   Desktop: 1440px / Mobile: 390px
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=IBM+Plex+Mono:wght@400;500&family=Inter:wght@300;400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2D2D2D;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* === Typography === */
h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.8px;
}

h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
  line-height: 1.3;
}

p {
  font-size: 15px;
  line-height: 1.75;
  color: #5A5A5A;
}

/* === Layout Container === */
.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.section-padding {
  padding: 80px 120px;
}

.section-padding-sm {
  padding: 60px 120px;
}

/* === Label/Tag Style === */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7C9082;
}

/* === Divider === */
.divider {
  width: 60px;
  height: 2px;
  background: #7C9082;
}

.divider-light {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 120px;
  background: #ffffff;
  border-bottom: 1px solid #E8E4DF;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-logo img {
  height: 66px;
  width: auto;
}

.header-logo .mobile-logo-text {
  display: none;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: #2D2D2D;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #5A5A5A;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #2D2D2D;
}

.nav-links .nav-cta {
  background: #7C9082;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 28px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-links .nav-cta:hover {
  background: #6a7e70;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #2D2D2D;
  transition: all 0.3s;
}

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

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

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

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2D2D2D;
}

/* ============================================
   HERO SECTION (Homepage)
   ============================================ */
.hero {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 80px 100px 80px;
  background: #ffffff;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text .section-label {
  color: #7C9082;
}

.hero-text h1 {
  color: #2D2D2D;
}

.hero-text h1 em {
  font-style: italic;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #5A5A5A;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #7C9082;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #6a7e70;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #5A5A5A;
  padding: 16px 32px;
  border-radius: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #E8E4DF;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: #7C9082;
  color: #2D2D2D;
}

.hero-portrait {
  width: 520px;
  height: 640px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

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

.hero-portrait::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 62%, rgba(255,255,255,0.5) 78%, #ffffff 95%),
              linear-gradient(to right, transparent 88%, #ffffff 100%),
              linear-gradient(to left, transparent 92%, #ffffff 100%);
}

/* ============================================
   STATEMENT SECTION (green)
   ============================================ */
.statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 80px 200px;
  background: #7C9082;
}

.statement p {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  line-height: 1.5;
}

/* ============================================
   BEHANDLUNGSKONZEPT
   ============================================ */
.behandlungskonzept {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 80px 120px;
  background: #ffffff;
}

.behandlungskonzept .section-label {
  text-align: center;
}

.behandlungskonzept h2 {
  text-align: center;
  color: #2D2D2D;
}

.behandlungskonzept .body-text {
  max-width: 900px;
  text-align: left;
}

.experience-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
}

.experience-badge .badge-line {
  width: 1px;
  height: 32px;
  background: #7C9082;
}

.experience-badge .badge-text {
  font-size: 13px;
  color: #7C9082;
  font-weight: 500;
  margin-top: 8px;
}

.badge-circle {
  display: flex;
  justify-content: center;
}

.badge-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1.5px solid #7C9082;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.badge-over {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-style: italic;
  color: #7C9082;
}

.badge-number {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 700;
  color: #7C9082;
  line-height: 1.1;
}

.badge-years {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #7C9082;
}

.badge-exp {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-style: italic;
  color: rgba(124, 144, 130, 0.6);
}

/* Testimonial Author Row */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-author .author-line {
  width: 20px;
  height: 1px;
  background: #7C9082;
  display: block;
}

.testimonial-author .author {
  font-size: 15px;
  font-weight: 600;
  color: #2D2D2D;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 80px 160px;
  background: #EDE6DC;
  border-top: 1px solid #D4C9BA;
}

.cta-banner h2 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  color: #5A7260;
  text-align: center;
  letter-spacing: -0.8px;
}

.cta-banner p {
  font-size: 15px;
  color: rgba(90, 114, 96, 0.6);
  text-align: center;
}

/* ============================================
   PROFESSIONAL BACKGROUND / TIMELINE
   ============================================ */
.professional-bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px 120px;
  background: #ffffff;
  position: relative;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

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

.timeline-item {
  display: flex;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid #E8E4DF;
}

.timeline-year {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #7C9082;
  min-width: 80px;
  letter-spacing: 0.5px;
}

.timeline-content {
  flex: 1;
}

.timeline-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: #2D2D2D;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 14px;
  color: #5A5A5A;
  line-height: 1.6;
}

.oda-badge {
  position: absolute;
  right: 120px;
  top: 162px;
  opacity: 0.9;
}

.oda-badge img {
  width: 280px;
  height: 280px;
  object-fit: contain;
}

/* ============================================
   LEITMOTIV / QUOTE
   ============================================ */
.leitmotiv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 100px 200px;
  background: #FAF8F5;
}

.leitmotiv .quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 96px;
  color: #7C9082;
  opacity: 0.6;
  line-height: 0.4;
}

.leitmotiv blockquote {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-style: italic;
  color: #2D2D2D;
  text-align: center;
  line-height: 1.5;
  letter-spacing: -0.8px;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.quote-author .author-line {
  width: 40px;
  height: 1px;
  background: #7C9082;
}

.quote-author .author-name {
  font-size: 13px;
  color: #7C9082;
  font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding: 100px 120px;
  background: #fffefe;
}

.testimonials-grid {
  display: flex;
  gap: 32px;
  width: 100%;
}

.testimonial-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: #FAF8F5;
  border-radius: 16px;
}

.testimonial-card .stars {
  color: #D4A843;
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #5A5A5A;
  font-style: italic;
}

.testimonial-card .author {
  font-size: 13px;
  font-weight: 600;
  color: #2D2D2D;
}

/* ============================================
   NATURE IMAGE (full width)
   ============================================ */
.nature-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.nature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #2D2D2D;
  padding: 60px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-logo img {
  height: 50px;
  width: auto;
  opacity: 0.8;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #444444;
}

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

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-badges img {
  height: 48px;
  width: auto;
  opacity: 0.7;
}

/* ============================================
   SUB-PAGE HERO
   ============================================ */
.page-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 120px 60px;
}

.page-hero h1 {
  text-align: center;
}

.page-hero .subtitle {
  font-size: 16px;
  color: #5A5A5A;
  text-align: center;
  max-width: 600px;
}

/* ============================================
   FULL-WIDTH IMAGE BANNER
   ============================================ */
.image-banner {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-banner-sm {
  height: 360px;
}

/* ============================================
   ABOUT PAGE - Mein Ansatz
   ============================================ */
.mein-ansatz {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px 120px;
  background: #FAF8F5;
}

.mein-ansatz .body-text {
  max-width: 900px;
  text-align: center;
}

.ansatz-quote {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-style: italic;
  color: #7C9082;
  text-align: center;
}

.ansatz-icons {
  display: flex;
  gap: 48px;
  margin-top: 16px;
}

.ansatz-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ansatz-icon-item .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #7C9082;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ansatz-icon-item .icon-circle svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  fill: none;
}

.ansatz-icon-item span {
  font-size: 13px;
  color: #5A5A5A;
  font-weight: 500;
}

/* ============================================
   ABOUT - Privat Section
   ============================================ */
.privat-section {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 120px;
  background: #ffffff;
}

.privat-section .image-side {
  width: 480px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}

.privat-section .image-side img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.privat-section .text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ============================================
   ABOUT - Was mich antreibt (green)
   ============================================ */
.antreibt-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 120px;
  background: #7C9082;
}

.antreibt-section h2 {
  color: #ffffff;
}

.antreibt-cards {
  display: flex;
  gap: 32px;
  width: 100%;
}

.antreibt-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.antreibt-card h3 {
  color: #ffffff;
  font-size: 20px;
}

.antreibt-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   LEISTUNGEN PAGE
   ============================================ */
.wert-intro {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 120px;
  background: #FAF8F5;
}

.wert-intro .text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wert-intro .image-side {
  width: 400px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

/* Ablauf einer Sitzung */
.ablauf-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 120px;
}

.ablauf-steps {
  display: flex;
  gap: 48px;
  width: 100%;
}

.ablauf-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.ablauf-step .step-icon {
  width: 56px;
  height: 56px;
}

.ablauf-step h3 {
  font-size: 16px;
  color: #2D2D2D;
}

.ablauf-step p {
  font-size: 14px;
  color: #5A5A5A;
}

/* Pricing Cards */
.pricing-section {
  display: flex;
  gap: 24px;
  padding: 60px 120px;
  background: #FAF8F5;
}

.pricing-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E8E4DF;
}

.pricing-card.featured {
  background: #2D2D2D;
  border-color: #2D2D2D;
}

.pricing-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: #2D2D2D;
}

.pricing-card.featured h3 {
  color: #ffffff;
}

.pricing-card .description {
  font-size: 14px;
  color: #5A5A5A;
  line-height: 1.6;
}

.pricing-card.featured .description {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card .price {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  color: #2D2D2D;
  font-weight: 400;
}

.pricing-card.featured .price {
  color: #ffffff;
}

.pricing-card .price span {
  font-size: 16px;
  color: #5A5A5A;
}

.pricing-card.featured .price span {
  color: rgba(255, 255, 255, 0.5);
}

/* Additional Info */
.additional-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 60px 120px;
  border-top: 1px solid #E8E4DF;
}

.additional-info h2 {
  font-size: 28px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-item h3 {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #2D2D2D;
}

.info-item p {
  font-size: 14px;
  color: #5A5A5A;
}

/* ============================================
   KONTAKT PAGE
   ============================================ */
.kontakt-warm-intro {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 120px;
}

.kontakt-warm-intro .image-side {
  width: 400px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
}

.kontakt-warm-intro .image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kontakt-warm-intro .text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Contact Form Area */
.kontakt-content {
  display: flex;
  gap: 60px;
  padding: 60px 120px;
  background: #FAF8F5;
}

.kontakt-form-area {
  flex: 1;
}

.kontakt-form-area h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: #2D2D2D;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: #2D2D2D;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid #E8E4DF;
  border-radius: 8px;
  background: #ffffff;
  color: #2D2D2D;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7C9082;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0B0B0;
}

.form-privacy {
  font-size: 12px;
  color: #999;
  line-height: 1.5;
}

.form-privacy a {
  color: #7C9082;
  text-decoration: underline;
}

.form-submit {
  display: flex;
  align-items: center;
}

.form-message {
  margin-top: 12px;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  display: none;
}

.form-message.success {
  display: block;
  background: #DFE6E1;
  color: #004D1A;
}

.form-message.error {
  display: block;
  background: #E5DCDA;
  color: #8C1C00;
}

/* Kontakt Sidebar */
.kontakt-sidebar {
  width: 360px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2D2D2D;
}

.sidebar-block p,
.sidebar-block a {
  font-size: 14px;
  color: #5A5A5A;
  line-height: 1.6;
}

.sidebar-block a {
  color: #7C9082;
}

/* Termin Section */
.termin-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 60px 120px;
  background: #EDE6DC;
}

.termin-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  color: #2D2D2D;
  text-align: center;
}

.termin-section p {
  text-align: center;
  max-width: 600px;
}

.cal-embed-container {
  width: 100%;
  max-width: 800px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  min-height: 400px;
}

/* ============================================
   PATIENTENINFOS
   ============================================ */
.patienteninfo-hero {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 80px 0;
}

.patienteninfo-hero .hero-top {
  display: flex;
  gap: 60px;
  padding: 0 120px;
}

.patienteninfo-hero .hero-text {
  flex: 1;
}

.patienteninfo-hero .hero-image {
  width: 480px;
  height: 400px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.patienteninfo-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tabs */
.tabs-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tab-buttons {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #E8E4DF;
}

.tab-btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #5A5A5A;
  background: none;
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.tab-btn.active {
  color: #2D2D2D;
  border-bottom-color: #7C9082;
}

.tab-content {
  display: none;
  padding: 0 120px;
}

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

/* Quote Box */
.quote-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 120px;
  background: #FAF8F5;
  text-align: center;
}

.quote-box blockquote {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-style: italic;
  color: #2D2D2D;
  line-height: 1.5;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  padding: 0 120px;
}

.accordion-item {
  border-bottom: 1px solid #E8E4DF;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
}

.accordion-header h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: #2D2D2D;
  display: flex;
  align-items: center;
  gap: 16px;
}

.accordion-header .icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.accordion-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-body-inner {
  padding: 0 0 24px 48px;
}

.accordion-body-inner p {
  font-size: 15px;
  line-height: 1.75;
  color: #5A5A5A;
}

.accordion-body-inner ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-body-inner ul li {
  font-size: 14px;
  color: #5A5A5A;
  padding-left: 16px;
  position: relative;
}

.accordion-body-inner ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #7C9082;
}

/* ============================================
   LEGAL PAGES (Impressum, AGB, Datenschutz)
   ============================================ */
.legal-content {
  padding: 0 120px 60px;
}

.legal-content section {
  padding: 32px 0;
  border-bottom: 1px solid #E8E4DF;
}

.legal-content section:last-child {
  border-bottom: none;
}

.legal-content .section-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7C9082;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #2D2D2D;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 14px;
  line-height: 1.75;
  color: #5A5A5A;
  margin-bottom: 8px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content a {
  color: #7C9082;
  text-decoration: underline;
}

.legal-content ul {
  margin: 8px 0;
  padding-left: 20px;
}

.legal-content ul li {
  font-size: 14px;
  color: #5A5A5A;
  line-height: 1.75;
  list-style: disc;
}

.legal-content .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Stand */
.legal-stand {
  text-align: center;
  padding: 32px 120px;
  font-size: 13px;
  color: #999;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #E8E4DF;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  padding: 24px 120px;
  transition: opacity 0.3s, transform 0.3s;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 32px;
}

.cookie-text {
  flex: 1;
}

.cookie-text h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 400;
  color: #2D2D2D;
  margin-bottom: 6px;
}

.cookie-text p {
  font-size: 13px;
  color: #5A5A5A;
  line-height: 1.6;
  margin: 0;
}

.cookie-text a {
  color: #7C9082;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #7C9082;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #6a7e70;
}

.cookie-btn-essential {
  background: #FAF8F5;
  color: #2D2D2D;
  border: 1px solid #E8E4DF;
}

.cookie-btn-essential:hover {
  border-color: #7C9082;
}

.cookie-btn-settings {
  background: transparent;
  color: #5A5A5A;
  border: 1px solid #E8E4DF;
}

.cookie-btn-settings:hover {
  border-color: #7C9082;
  color: #2D2D2D;
}

/* Cookie Details / Settings */
.cookie-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E8E4DF;
}

.cookie-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #F0EDE8;
}

.cookie-detail-row:last-of-type {
  border-bottom: none;
}

.cookie-detail-info strong {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2D2D2D;
}

.cookie-detail-info p {
  font-size: 12px;
  color: #8A8A8A;
  margin: 4px 0 0;
}

.cookie-always-on {
  font-size: 12px;
  color: #7C9082;
  font-weight: 500;
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E8E4DF;
  border-radius: 24px;
  transition: 0.3s;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #7C9082;
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

.cookie-detail-buttons {
  padding-top: 16px;
  display: flex;
  justify-content: flex-end;
}
