

/* ─── CUSTOM PALETTE & TOKENS ─── */
:root {
  --cream: #fdf8f3;
  --cream2: #fff9f5;
  --blush: #f7ede8;
  --blush2: #fde8df;
  --rose: #e8c4b8;
  --rose-mid: #d4917a;
  --terra: #b5604a;
  --terra-dark: #8a3d2a;
  --terra-deep: #5c2318;
  --pink-soft: #f5ddd5;
  --pink-light: #faeae4;
  --text: #2d1f19;
  --text-muted: #7a5c52;
  --text-light: #b89990;
  --border: #ead8d0;
  --border-light: #f0e4de;
  --radius: 14px;
  --radius-sm: 8px;
}

/* ─── UTILITY BACKGROUND CLASSES FOR SECTIONS & PAGES ─── */
.bg-cream { background-color: var(--cream, #fdf8f3); }
.bg-cream2 { background-color: var(--cream2, #fff9f5); }
.bg-blush { background-color: var(--blush, #f7ede8); }
.bg-blush2 { background-color: var(--blush2, #fde8df); }
.bg-rose { background-color: var(--rose, #e8c4b8); }
.bg-terra { background-color: var(--terra, #b5604a); }
.bg-terra-dark { background-color: var(--terra-dark, #8a3d2a); }
.bg-pink-soft { background-color: var(--pink-soft, #f5ddd5); }
.bg-pink-light { background-color: var(--pink-light, #faeae4); }
.bg-sage { background-color: #8a9a86; }
.bg-stone-50 { background-color: #f8fafc; }
.bg-white { background-color: #ffffff; }

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  /* background and backdrop-filter are set dynamically via inline style from header.php (glass_effect setting) */
  border-bottom: 1px solid var(--border-light);
  padding: 0 2rem;
}

/* Header 2: Floating Pill Design with Glassmorphism */
nav.header-style-v2 {
  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
  /* padding matches content sections (px-8 = 2rem) on all screen sizes */
  padding-left: 2rem;
  padding-right: 2rem;
}
nav.header-style-v2 .nav-inner {
  max-width: 1100px;  /* matches hero-inner and section content max-width */
  margin: 0 auto;
  border-radius: 9999px;
  box-shadow: 0 10px 30px -5px rgba(45, 31, 25, 0.08), 0 8px 10px -6px rgba(45, 31, 25, 0.04);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.logo span {
  color: var(--terra);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  font-size: 13.5px;
  color: var(--text-muted);
}

.nav-links a {
  transition: color 0.15s;
}

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

.nav-cta {
  background: var(--terra);
  color: #fff;
  padding: 9px 22px;
  border-radius: 40px;
  font-size: 13.5px;
  font-weight: 500;
  transition: background 0.2s;
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  background: var(--terra-dark);
}

/* ─── BURGER MENU & MOBILE NAV DRAWER ─── */
.menu-toggle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text);
  z-index: 110;
  transition: color 0.15s, transform 0.15s;
}

.menu-toggle:hover {
  color: var(--terra);
}

.menu-toggle:active {
  transform: scale(0.95);
}

/* Mobile menu overlay background */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(45, 31, 25, 0.4);
  backdrop-filter: blur(8px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile menu drawer: slide down from top */
.mobile-menu-drawer {
  background: var(--cream2);
  width: 100%;
  max-height: 90vh;
  border-bottom: 2px solid var(--border-light);
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(45, 31, 25, 0.12);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.open .mobile-menu-drawer {
  transform: translateY(0);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mobile-nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  padding: 0.4rem 0;
  display: block;
  transition: color 0.15s, padding-left 0.2s;
}

.mobile-nav-links a:hover {
  color: var(--terra);
  padding-left: 6px;
  border-bottom-color: var(--rose);
}

.mobile-menu-footer {
  margin-top: 0.25rem;
  border-top: 1px solid var(--border-light);
  padding-top: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mobile-menu-cta {
  background: var(--terra);
  color: #fff;
  padding: 11px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
  display: block;
}

.mobile-menu-cta:hover {
  background: var(--terra-dark);
}

.mobile-menu-cta:active {
  transform: scale(0.98);
}

.mobile-menu-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 13.5px;
  color: var(--text-muted);
}

.mobile-menu-info a {
  color: var(--terra);
  font-weight: 500;
}

/* ─── HERO ─── */
.hero {
  padding: 5rem 2rem 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero-orb1 {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--blush2);
  opacity: 0.6;
  top: -180px;
  right: -120px;
  pointer-events: none;
}

.hero-orb2 {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--pink-soft);
  opacity: 0.5;
  bottom: -100px;
  left: -80px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-soft);
  color: var(--terra);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--rose);
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--text);
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.hero h1 em {
  color: var(--terra);
  font-style: italic;
}

.hero-lead {
  font-size: 17px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 460px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  background: var(--terra);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-block;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
}

.btn-primary:hover,
.nav-cta:hover,
.form-submit:hover {
  background: var(--terra-dark) !important;
  color: #ffffff !important;
  opacity: 1 !important;
  box-shadow: 0 4px 12px rgba(138, 61, 42, 0.25) !important;
  transform: translateY(-1.5px) !important;
  text-decoration: none !important;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  padding: 14px 30px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--terra);
  color: var(--terra);
}

/* Trust bar in hero */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 40px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.trust-pill svg {
  width: 15px;
  height: 15px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Hero visual card */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-photo {
  background: linear-gradient(145deg, var(--blush2), var(--pink-soft));
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

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

.hero-photo-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 10px;
  padding: 12px 14px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.hero-photo-label strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.hero-photo-label span {
  font-size: 12px;
  color: var(--text-muted);
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  text-align: center;
}

.stat-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
}

.stat-card .lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ─── SOCIAL PROOF STRIP ─── */
.proof-strip {
  background: var(--terra);
  padding: 1.5rem 2rem;
  overflow: hidden;
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.proof-item svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.7);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.proof-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.25);
}

.stars {
  color: #f9c74f;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ─── ANGEBOT ─── */
.angebot {
  background: #fff;
  padding: 6.5rem 2rem;
}

/* Standardized & Unified Section Header System */
.section-header, .angebot-header, .preise-head, .testi-head {
  max-width: 580px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-label,
.section-header .section-label,
.angebot-header .section-label,
.preise-head .section-label,
.testi-head .section-label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

.section-title,
.section-header .section-title,
.angebot-header .section-title,
.preise-head .section-title,
.testi-head .section-title {
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  color: var(--text);
  margin-bottom: 0.85rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.25;
}

.section-sub,
.section-header .section-sub,
.angebot-header .section-sub,
.preise-head .section-sub,
.testi-head .section-sub,
.faq .section-sub {
  font-size: 15.5px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.treatments-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.25rem;
}

.treatment-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: all 0.22s;
  background: var(--cream);
  cursor: default;
  position: relative;
}

.treatment-card:hover {
  border-color: var(--rose-mid);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(181, 96, 74, 0.08);
}

.tc-icon {
  width: 42px;
  height: 42px;
  background: var(--pink-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.tc-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 1.5;
}

.treatment-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.treatment-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── PREISE ─── */
.preise {
  background: var(--blush);
  padding: 6.5rem 2rem;
}

.preise-head {
  text-align: center;
  margin-bottom: 3rem;
}

.preise-head .section-sub {
  max-width: 480px;
  margin: 0 auto;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.price-card {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
  transition: all 0.2s;
}

.price-card:hover {
  transform: translateY(-3px);
}

.price-card.pop {
  border-color: var(--terra);
  border-width: 2px;
}

.pop-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terra);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 16px;
  border-radius: 40px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.p-dur {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.p-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.p-cur {
  font-size: 1.1rem;
  color: var(--text-muted);
  vertical-align: super;
}

.p-note {
  font-size: 13px;
  color: var(--text-light);
  margin: 0.6rem 0 1.5rem;
}

.krankenkasse-box {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  max-width: 760px;
  margin: 0 auto;
}

.kk-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.6rem;
}

.kk-header svg {
  width: 20px;
  height: 20px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 1.5;
}

.kk-header h4 {
  font-size: 1.1rem;
  color: var(--text);
}

.krankenkasse-box p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.zsr-tag {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--terra);
  background: var(--pink-soft);
  padding: 3px 12px;
  border-radius: 40px;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--cream2);
  padding: 6.5rem 2rem;
}

.testi-head {
  text-align: center;
  margin-bottom: 3rem;
}

.testi-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.testi-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--rose);
  line-height: 0.5;
  margin-bottom: 0.5rem;
}

.testi-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--terra);
  font-family: 'Cormorant Garamond', serif;
}

.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.testi-stars {
  font-size: 12px;
  color: #f5a623;
  letter-spacing: 1px;
}

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.g-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  transition: all 0.2s;
}

.g-btn:hover {
  border-color: var(--terra);
  color: var(--terra);
}

.g-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ─── ÜBER MICH ─── */
.ueber {
  background: #fff;
  padding: 6.5rem 2rem;
}

.ueber-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.ueber-img-wrap {
  position: relative;
}

.ueber-img {
  background: linear-gradient(145deg, var(--blush2), var(--pink-soft));
  border-radius: 24px;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  font-style: italic;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.ueber-img-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ueber-cert-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: 0 4px 16px rgba(181, 96, 74, 0.1);
  z-index: 2;
}

.ucb-title {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 3px;
}

.ucb-val {
  font-size: 13px;
  font-weight: 500;
  color: var(--terra);
}

.ueber-text .section-label {
  margin-top: 0;
}

.ueber-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.2rem;
}

.ueber-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 1.5rem;
}

.ueber-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.timeline {
  margin-top: 2rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.tl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.tl-item {
  display: flex;
  gap: 1rem;
  padding: 6px 0;
  font-size: 13.5px;
  align-items: baseline;
}

.tl-year {
  color: var(--terra);
  font-weight: 500;
  min-width: 46px;
  font-size: 13px;
}

.tl-desc {
  color: var(--text-muted);
}

/* ─── PRAXIS ─── */
.praxis {
  background: var(--blush);
  padding: 6.5rem 2rem;
}

.praxis-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.praxis h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 1.75rem;
  color: var(--text);
}

.praxis-header {
  text-align: left;
  margin-bottom: 2.5rem;
}

.praxis-header h2 {
  margin-bottom: 0;
}

.info-block {
  margin-bottom: 1.5rem;
}

.info-block h4 {
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--terra);
  margin-bottom: 0.4rem;
}

.info-block p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.info-block a {
  color: var(--terra);
  font-weight: 500;
}

.map-container {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(45, 31, 25, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(45, 31, 25, 0.08);
  border-color: var(--rose-mid);
}

.map-iframe-wrapper {
  width: 100%;
  height: 320px;
  position: relative;
  background: var(--cream);
}

/* ─── CUSTOM MAP PIN MARKER WITH LOGO ─── */
.custom-map-pin-container {
  display: none !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none; /* Click-through so map interactions work */
  z-index: 10;
  margin-top: -6px; /* Fine-tune target offset so the bottom tip aligns perfectly with the center */
}

/* Pulsing waves at the base of the pin */
.custom-map-pin-pulse {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 44px;
  height: 44px;
  background: rgba(162, 76, 98, 0.2);
  border: 1.5px solid rgba(162, 76, 98, 0.4);
  border-radius: 50%;
  animation: map-pin-pulse-wave 2.2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  pointer-events: none;
}

.custom-map-pin-pulse.delay-75 {
  animation-delay: 0.7s;
}

@keyframes map-pin-pulse-wave {
  0% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  100% {
    width: 65px;
    height: 65px;
    opacity: 0;
  }
}

/* Beautiful Floating Pin */
.custom-map-pin {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: map-pin-bounce 3s ease-in-out infinite;
}

@keyframes map-pin-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* The circular outer body of the pin containing the logo */
.custom-map-pin-logo-wrapper {
  width: 52px;
  height: 52px;
  background: white;
  border: 3px solid #a24c62;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(162, 76, 98, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
}

.custom-map-pin-logo {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
  border-radius: 50%;
}

/* The little pointing tip underneath the circular logo */
.custom-map-pin-tip {
  width: 14px;
  height: 14px;
  background: #a24c62;
  transform: rotate(45deg);
  margin-top: -8px; /* overlap with circle to look unified */
  border-right: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 1px 1px 3px rgba(162, 76, 98, 0.15);
  z-index: 1;
}

/* Elegant floating label above the pin */
.custom-map-pin-label {
  background: rgba(45, 31, 25, 0.9);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0.95;
  transition: all 0.3s ease;
  z-index: 3;
}

.map-details {
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.map-details-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-pin-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.map-container:hover .map-pin-icon-circle {
  background: var(--pink-soft);
  transform: scale(1.05);
}

.map-pin-text-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

.map-pin-text-address {
  font-size: 13px;
  color: var(--text-muted);
  margin: 2px 0 0 0;
  line-height: 1.2;
}

.map-open-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream2);
  color: var(--text);
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}

.map-open-link:hover {
  background: var(--terra);
  color: #ffffff;
  border-color: var(--terra);
  transform: translateY(-1px);
}

.map-open-link svg {
  transition: transform 0.2s ease;
}

.map-open-link:hover svg {
  transform: translate(1px, -1px);
}

/* ─── BLOG ─── */
.blog {
  background: #fff;
  padding: 6.5rem 2rem;
}

.blog-top {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.blog-top a {
  font-size: 14px;
  color: var(--terra);
  font-weight: 500;
}

.blog-grid {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  justify-content: center;
  gap: 1.25rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.22s;
  cursor: pointer;
  background: #ffffff;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--rose-mid);
  box-shadow: 0 8px 24px rgba(181, 96, 74, 0.08);
}

.blog-img {
  background: linear-gradient(135deg, var(--blush2), var(--pink-soft));
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  overflow: hidden;
}

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

.blog-body {
  padding: 1.25rem;
  background: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  align-items: center;
}

.blog-tag {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--terra);
  background: var(--pink-soft);
  padding: 3px 10px;
  border-radius: 40px;
}

.blog-date {
  font-size: 12px;
  color: var(--text-light);
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.blog-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── TERMIN CTA ─── */
.termin-cta {
  background: var(--terra-deep);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.termin-cta::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(224, 187, 187, 0.04);
  top: -150px;
  right: -100px;
}

.termin-cta::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(224, 187, 187, 0.03);
  bottom: -80px;
  left: -60px;
}

.termin-inner {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.termin-inner .section-label {
  color: rgba(255, 255, 255, 0.45);
}

.termin-inner h2 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #fff;
  margin-bottom: 1rem;
}

.termin-inner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.btn-white {
  background: #fff;
  color: var(--terra-deep);
  padding: 16px 44px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-block;
  letter-spacing: 0.01em;
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.termin-sub {
  margin-top: 1.25rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.termin-sub a {
  color: rgba(255, 255, 255, 0.65);
}

/* ─── FAQ ─── */
.faq {
  background: var(--blush);
  padding: 6.5rem 2rem;
}

.faq-inner {
  max-width: 850px;
  margin: 0 auto;
}

.faq h2.section-title {
  margin-bottom: 1rem;
}

.faq .section-sub {
  margin-bottom: 3rem;
  max-width: 600px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(45, 31, 25, 0.02);
}

.faq-card:hover {
  border-color: var(--rose-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(181, 96, 74, 0.06);
}

.faq-card.open {
  border-color: var(--rose-mid);
  box-shadow: 0 8px 24px rgba(181, 96, 74, 0.08);
}

.faq-button {
  width: 100%;
  text-align: left;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s ease;
  line-height: 1.35;
}

.faq-button:hover .faq-question {
  color: var(--terra);
}

.faq-icon-holder {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--text-muted);
  transition: all 0.25s ease;
}

.faq-button:hover .faq-icon-holder {
  background: var(--pink-light);
  color: var(--terra);
}

.faq-card.open .faq-icon-holder {
  background: var(--terra);
  color: #fff;
  transform: rotate(180deg);
}

.faq-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
  opacity: 0;
}

.faq-card.open .faq-collapse {
  max-height: 800px;
  opacity: 1;
}

.faq-answer {
  padding: 1rem 1.75rem 1.75rem;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.75;
}

.faq-answer p {
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  list-style-type: none;
}

.faq-answer ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
}

.faq-answer ul li::before {
  content: "•";
  color: var(--terra);
  position: absolute;
  left: 0.25rem;
  font-weight: bold;
}

.faq-answer ul li:last-child {
  margin-bottom: 0;
}

.faq-answer strong {
  color: var(--text);
  font-weight: 600;
}

/* ─── KONTAKT ─── */
.kontakt {
  background: var(--cream);
  padding: 6.5rem 2rem;
}

.kontakt-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.kontakt-inner .section-title {
  margin-bottom: 2.5rem;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.contact-form .message-group {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.contact-form .message-group textarea {
  flex-grow: 1;
  height: auto;
  min-height: 96px;
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

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

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

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  outline: none;
  transition: border 0.2s;
  appearance: none;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--terra);
  background: #fff;
}

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

.form-submit {
  background: var(--terra);
  color: #fff;
  border: none;
  width: 100%;
  padding: 13px;
  border-radius: 40px;
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}

.form-submit:hover {
  background: var(--terra-dark);
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.ci-block {
  display: flex;
  gap: 12px;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.ci-icon {
  width: 38px;
  height: 38px;
  background: var(--pink-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 1.5;
}

.ci-label {
  font-size: 11.5px;
  color: var(--text-light);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ci-val {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.ci-val a {
  color: var(--terra);
}

.nl-box {
  background: var(--pink-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}

.nl-box h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.nl-box p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

.nl-row {
  display: flex;
  gap: 8px;
}

.nl-row input {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 40px;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border 0.2s;
}

.nl-row input:focus {
  border-color: var(--terra);
}

.nl-row button {
  background: var(--terra);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 40px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}

.nl-row button:hover {
  background: var(--terra-dark);
}

/* ─── FOOTER ─── */
footer {
  background: linear-gradient(180deg, var(--text) 0%, #1c100a 100%);
  color: rgba(235, 214, 205, 0.75);
  padding: 4.5rem 2rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-family: var(--font-sans), sans-serif;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(235, 214, 205, 0.65);
  margin-top: 0.5rem;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose-mid); /* #d4917a brand accent */
  margin-bottom: 1.25rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 13px;
  color: rgba(235, 214, 205, 0.65);
  line-height: 1.7;
  transition: all 0.2s ease-in-out;
}

.footer-col a {
  margin-bottom: 0.6rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(235, 214, 205, 0.5);
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* ─── COHESIVE SUBPAGE DESIGN ─── */
.subpage-hero {
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.subpage-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.subpage-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 500;
  color: var(--text);
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.subpage-body-section {
  background: var(--cream);
  padding: 4rem 2rem 6rem;
  position: relative;
}

.subpage-card {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  padding: 3.5rem 4.5rem;
  box-shadow: 0 12px 40px rgba(45, 31, 25, 0.04);
  position: relative;
  z-index: 2;
}

.max-w-800 {
  max-width: 800px !important;
}

@media (max-width: 768px) {
  .subpage-card {
    padding: 2rem 1.5rem;
  }
  .proof-divider {
    display: none !important;
  }
  .proof-inner {
    flex-direction: column !important;
    gap: 1.25rem !important;
  }
  .zsr-tag {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-top: 0.75rem !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .subpage-card {
    padding: 1.25rem 0.5rem;
    border-radius: 12px;
  }
}

/* SimplyBook Widget Responsiveness overrides */
#simplybook-widget-container {
  width: 100% !important;
  max-width: 100% !important;
  display: block;
  overflow: hidden;
}

#simplybook-widget-container iframe {
  width: 100% !important;
  max-width: 100% !important;
  border: none !important;
  display: block;
}

.subpage-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-soft);
  color: var(--terra);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  border: 1px solid var(--rose);
}

.subpage-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s, transform 0.15s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.subpage-back-link:hover {
  color: var(--terra);
  transform: translateX(-2px);
}

.subpage-prose {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.8;
}

.subpage-prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
}

.subpage-prose h3 span.num {
  color: var(--terra);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin-right: 8px;
  font-weight: 600;
}

.subpage-prose p {
  margin-bottom: 1.25rem;
}

.subpage-prose p strong {
  color: var(--text);
  font-weight: 600;
}

.subpage-prose ul {
  margin-bottom: 1.5rem;
  list-style-type: none;
}

.subpage-prose ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
}

.subpage-prose ul li::before {
  content: "•";
  color: var(--terra);
  position: absolute;
  left: 0.25rem;
  font-weight: bold;
}

.subpage-prose a {
  color: var(--terra);
  font-weight: 500;
  border-bottom: 1px dotted var(--terra);
  transition: color 0.15s, border-color 0.15s;
}

.subpage-prose a:hover {
  color: var(--terra-dark);
  border-bottom-style: solid;
}

.subpage-highlight-box {
  background: var(--cream2);
  border-left: 4px solid var(--terra);
  padding: 1.5rem;
  border-radius: 4px 16px 16px 4px;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(45, 31, 25, 0.02);
  border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.subpage-highlight-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--terra);
  margin-bottom: 0.5rem;
}

.subpage-highlight-box p {
  margin-bottom: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
}

/* Sitemap Elements */
.sitemap-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sitemap-category {
  background: var(--cream2);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.25rem;
}

.sitemap-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sitemap-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .sitemap-links-grid {
    grid-template-columns: 1fr;
  }
}

.sitemap-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(45, 31, 25, 0.01);
}

.sitemap-link-card:hover {
  border-color: var(--terra);
  color: var(--terra);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 31, 25, 0.04);
}

.sitemap-methods-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0.75rem;
  padding-left: 2rem;
}

@media (max-width: 640px) {
  .sitemap-methods-pills {
    padding-left: 0;
  }
}

.sitemap-method-pill {
  background: #ffffff;
  border: 1px solid var(--border-light);
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 40px;
  color: var(--text-muted);
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .ueber-inner, .praxis-inner, .kontakt-grid {
    grid-template-columns: 1fr;
  }
  .ueber-cert-badge {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  @media (max-width: 600px) {
    .footer-top {
      grid-template-columns: 1fr;
      gap: 2.25rem;
    }
  }
  .nav-links, .nav-cta {
    display: none !important;
  }
  .menu-toggle {
    display: flex;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .nl-box {
    margin-top: 3.25rem;
  }
}

/* ─── BLOG TOOLBAR (Filter & Search) ─── */
.blog-toolbar {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 4rem; /* Generous spacing down to the blog post grid */
  box-shadow: 0 4px 16px rgba(45, 31, 25, 0.02);
}

@media (min-width: 992px) {
  .blog-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.15rem 1.75rem;
  }
}

.blog-filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.blog-filter-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 0.5rem;
}

.blog-filter-btn {
  background: var(--cream);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
}

.blog-filter-btn:hover {
  background: var(--pink-light);
  color: var(--terra);
  border-color: var(--rose-mid);
}

.blog-filter-btn.active {
  background: var(--terra);
  color: #ffffff;
  border-color: var(--terra);
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(181, 96, 74, 0.16);
}

.blog-search-wrapper {
  position: relative;
  width: 100%;
}

@media (min-width: 992px) {
  .blog-search-wrapper {
    max-width: 380px;
  }
}

.blog-search-icon {
  position: absolute;
  top: 50%;
  left: 0.9rem;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
}

.blog-search-input {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 40px;
  padding: 6px 2.1rem 6px 2.1rem;
  font-size: 11.5px;
  font-family: inherit;
  color: var(--text);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-search-input::placeholder {
  color: var(--text-light);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.blog-search-input:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--rose-mid);
  box-shadow: 0 0 0 4px rgba(181, 96, 74, 0.08);
}

.blog-search-input:focus ~ .blog-search-icon {
  color: var(--terra);
}

.blog-search-clear {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 3px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.blog-search-clear:hover {
  background: var(--pink-soft);
  color: var(--text);
}

/* ─── MOBILE LEGAL SECTION ─── */
.mobile-legal-section {
  border-top: 1px solid var(--border-light);
  padding-top: 0.65rem;
  margin-top: 0.15rem;
  margin-bottom: 0.15rem;
}

.mobile-legal-title {
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.4rem;
  padding-left: 2px;
}

.mobile-legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.mobile-legal-card {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: 0 2px 6px rgba(45, 31, 25, 0.01);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-legal-card:hover {
  border-color: var(--rose-mid);
  color: var(--terra);
  background: var(--pink-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(45, 31, 25, 0.04);
}

.mobile-legal-card svg {
  color: var(--terra);
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.mobile-legal-card:hover svg {
  color: var(--terra-dark);
}

/* Cookie consent banner animation */
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slide-up {
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ─── GUTSCHEINE MODULE UTILITIES & THEME INTEGRATION ─── */
.bg-terra {
  background-color: var(--terra, #b5604a) !important;
}
.bg-terra-dark {
  background-color: var(--terra-dark, #8a3d2a) !important;
}
.text-terra {
  color: var(--terra, #b5604a) !important;
}
.border-terra {
  border-color: var(--terra, #b5604a) !important;
}

.badge-popular {
  background-color: var(--terra, #b5604a) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 4px 14px !important;
  border-radius: 9999px !important;
  box-shadow: 0 4px 12px rgba(181, 96, 74, 0.35) !important;
  z-index: 30 !important;
  border: 1.5px solid #ffffff !important;
  letter-spacing: 0.02em !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 11px !important;
}

.btn-voucher-primary {
  background-color: var(--terra, #b5604a) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 12px 32px !important;
  border-radius: 9999px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 14px rgba(181, 96, 74, 0.3) !important;
  text-decoration: none !important;
  font-size: 14px !important;
}

.btn-voucher-primary:hover {
  background-color: var(--terra-dark, #8a3d2a) !important;
  color: #ffffff !important;
  transform: translateY(-1.5px) !important;
  box-shadow: 0 6px 18px rgba(138, 61, 42, 0.4) !important;
}

.step-circle-active {
  background-color: var(--terra, #b5604a) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

.step-circle-inactive {
  background-color: #e5e7eb !important; /* stone-200 */
  color: #1f2937 !important; /* stone-800 for high contrast */
  font-weight: 700 !important;
}

.step-circle-completed {
  background-color: #059669 !important; /* emerald-600 */
  color: #ffffff !important;
  font-weight: 700 !important;
}

/* ─── CONTACT FORM STYLE INPUTS & LABELS (MATCHING KONTAKT.PHP) ─── */
.form-input-site {
  width: 100% !important;
  background-color: #fcf8f5 !important;
  border: 1.5px solid #ead8d0 !important;
  border-radius: 14px !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #2d1f19 !important;
  transition: all 0.2s ease !important;
  outline: none !important;
  font-family: inherit !important;
}

.form-input-site:focus {
  background-color: #ffffff !important;
  border-color: #b5604a !important;
  box-shadow: 0 0 0 3px rgba(181, 96, 74, 0.15) !important;
}

.form-input-site::placeholder {
  color: #b89990 !important;
  font-weight: 300 !important;
}

.form-label-site {
  display: block !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #2d1f19 !important;
  margin-bottom: 6px !important;
}

/* ─── ANAMNESE FRAGEBOGEN TABLE WHITE BACKGROUND ─── */
.symptome-table,
.symptome-table thead,
.symptome-table tbody,
.symptome-table tr,
.symptome-table th,
.symptome-table td {
  background-color: #ffffff !important;
}

.symptome-table tr:hover {
  background-color: #faf7f5 !important;
}

.bg-pure-white {
  background-color: #ffffff !important;
}

/* ─── HARDWARE-ACCELERATED COMPOSITED TRANSITIONS (ELIMINATES 90 NON-COMPOSITED ANIMATIONS) ─── */
.transition-all,
[class*="transition-all"],
.btn-primary,
.btn-outline,
.btn-white,
.treatment-card,
.price-card,
.blog-card,
.testi-card,
.faq-card,
.faq-icon-holder,
.map-open-link,
.zsr-tag,
.menu-toggle {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, max-height !important;
}
