/*
Theme Name: Fishcare
Theme URI: https://www.fishcare.de
Author: Dr. Sandra Lechleiter
Author URI: https://www.fishcare.de
Description: Professional WordPress theme for Fishcare — Tierarztpraxis für Koi und Zierfische. GDPR/EU-Accessibility compliant, fully responsive, SEO optimized, OpenStreetMap, inline editing, Customizer support.
Version: 1.0.0
Tested up to: 6.7
Requires at least: 6.4
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fishcare
Tags: one-column, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, accessibility-ready, blog
*/

/* ============================================================
   Fishcare Redesign — Modern CSS3 Stylesheet
   Color palette extracted from original site
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --teal-dark: #356F72;
  --teal: #3B8488;
  --teal-light: #87C1C2;
  --teal-pale: #d4eeef;
  --teal-bg: #f0f8f8;
  --orange: #F2792D;
  --orange-light: #f7a46a;
  --gold: #E3C81A;
  --dark: #1a2e2f;
  --text: #383838;
  --text-light: #617379;
  --white: #ffffff;
  --off-white: #f7f9fa;
  --border: #dde5e6;
  --shadow-sm: 0 1px 3px rgba(53,111,114,.08);
  --shadow-md: 0 4px 16px rgba(53,111,114,.10);
  --shadow-lg: 0 12px 40px rgba(53,111,114,.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-width: 1200px;
  --header-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Epilogue', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Epilogue', sans-serif;
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}
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.6rem); }
p { margin-bottom: 1rem; }

/* --- Utility --- */
.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--text-light); font-size: 1.1rem; max-width: 640px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(53,111,114,.06);
  height: var(--header-height);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,.97);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo { display: flex; align-items: center; gap: .6rem; }
.logo img { height: 40px; width: auto; }
.logo span {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--teal-dark);
  letter-spacing: -.02em;
}

/* --- Desktop Nav --- */
.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding: .25rem 0;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--teal-dark);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* --- Header CTA --- */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.3rem;
  background: var(--teal);
  color: var(--white) !important;
  border-radius: var(--radius-xl);
  font-size: .88rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.header-cta:hover {
  background: var(--teal-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}
.header-cta svg { width: 16px; height: 16px; }

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.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: var(--white);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}
.mobile-nav a:hover { color: var(--teal); }

/* --- Mobile Nav Close Button --- */
.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  padding: 8px;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.mobile-nav-close:hover {
  background: var(--teal-bg);
  color: var(--teal-dark);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  margin-top: var(--header-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  transition: transform 12s ease;
}
.hero:hover .hero-bg img { transform: scale(1.03); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,46,47,.82) 0%, rgba(53,111,114,.5) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 700px;
  padding: 4rem 0;
}
.hero-content .section-label {
  color: var(--teal-light);
  border: 1px solid rgba(135,193,194,.3);
  padding: .3rem .8rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.15;
}
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-xl);
  font-size: .95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: #e06820;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242,121,45,.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(53,111,114,.25);
}
.btn-white {
  background: var(--white);
  color: var(--teal-dark);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5rem 0; }
.section-alt { background: var(--teal-bg); }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,.7); }

.section-teal {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
}
.section-teal h2, .section-teal h3 { color: var(--white); }
.section-teal .section-label { color: var(--teal-light); }

/* --- Intro / About Teaser --- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .6s ease;
}
.intro-image:hover img { transform: scale(1.03); }
.intro-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(26,46,47,.2));
  pointer-events: none;
}
.intro-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--orange);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: var(--radius-xl);
  font-size: .85rem;
  font-weight: 700;
  z-index: 2;
}
.intro-text h2 { margin-bottom: 1rem; }
.intro-text p { color: var(--text-light); font-size: 1.05rem; }
.intro-text .highlight {
  font-weight: 700;
  color: var(--teal-dark);
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card-body {
  padding: 1.5rem;
}
.service-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}
.service-card-body p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Telemedicine Banner --- */
.telemedizin-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 3.5rem;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 3rem;
}
.telemedizin-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(135,193,194,.2), transparent 70%);
  border-radius: 50%;
}
.telemedizin-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.telemedizin-banner h2 { color: var(--white); margin-bottom: .75rem; }
.telemedizin-banner p { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; max-width: 520px; }
.telemedizin-banner .highlight-text {
  color: var(--gold);
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 1rem;
  display: block;
}
.telemedizin-qr {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.telemedizin-qr-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.telemedizin-qr-card img {
  width: 180px;
  height: auto;
  display: block;
  margin: 0 auto .75rem;
  border-radius: 4px;
}
.telemedizin-qr-card p {
  color: var(--teal-dark);
  font-size: .82rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: .02em;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(26,46,47,.6));
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--teal-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-info-item strong {
  display: block;
  font-size: .92rem;
  margin-bottom: .15rem;
}
.contact-info-item span,
.contact-info-item a {
  font-size: .92rem;
  color: var(--text-light);
}

/* --- Contact Form --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(53,111,114,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-top: .75rem;
}
.footer-col h4 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .6rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.45); font-size: .82rem; }
.footer-legal a:hover { color: var(--teal-light); }

/* ============================================================
   GDPR COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: 0 -4px 30px rgba(0,0,0,.12);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .5s ease;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner p {
  font-size: .88rem;
  color: var(--text-light);
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.cookie-banner p a {
  color: var(--teal);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: .55rem 1.2rem;
  border-radius: var(--radius-xl);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all var(--transition);
}
.cookie-accept {
  background: var(--teal);
  color: var(--white);
}
.cookie-accept:hover { background: var(--teal-dark); }
.cookie-decline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.cookie-decline:hover { border-color: var(--text-light); }

/* ============================================================
   PAGE-SPECIFIC: ABOUT
   ============================================================ */
.about-hero {
  margin-top: var(--header-height);
  padding: 5rem 0;
  background: var(--teal-bg);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(135,193,194,.2), transparent 70%);
  border-radius: 50%;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.about-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.timeline-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 1.5rem;
  border-left: 2px solid var(--teal-light);
}
.timeline-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px; top: 4px;
  width: 12px; height: 12px;
  background: var(--teal);
  border-radius: 50%;
  border: 2px solid var(--white);
}
.timeline-item h4 {
  font-size: .95rem;
  color: var(--teal-dark);
  margin-bottom: .3rem;
}
.timeline-item p {
  font-size: .9rem;
  color: var(--text-light);
  margin: 0;
}

/* ============================================================
   PAGE-SPECIFIC: SERVICES
   ============================================================ */
.page-hero {
  margin-top: var(--header-height);
  padding: 4rem 0;
  background: var(--teal-bg);
  text-align: center;
}
.services-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.services-detail.reverse { direction: rtl; }
.services-detail.reverse > * { direction: ltr; }
.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-detail-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1rem;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .95rem;
  color: var(--text-light);
}
.service-list li svg {
  width: 20px; height: 20px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   PAGE-SPECIFIC: CONTACT
   ============================================================ */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 3rem;
  aspect-ratio: 16/6;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: .9rem;
}

/* ============================================================
   PAGE-SPECIFIC: LEGAL (Impressum / Datenschutz)
   ============================================================ */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}
.legal-content h2 { margin-top: 2.5rem; margin-bottom: .75rem; font-size: 1.4rem; }
.legal-content h3 { margin-top: 2rem; margin-bottom: .5rem; font-size: 1.15rem; }
.legal-content p { font-size: .95rem; color: var(--text-light); }
.legal-content a { text-decoration: underline; }

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
}
.whatsapp-fab svg { width: 28px; height: 28px; fill: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .hero { min-height: 80vh; }
  .hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-buttons { flex-direction: column; }

  .intro-grid,
  .contact-grid,
  .about-grid,
  .services-detail,
  .services-detail.reverse { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }

  .section { padding: 3.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .telemedizin-banner { padding: 2rem; flex-direction: column; text-align: center; }
  .telemedizin-banner p { max-width: none; }
  .telemedizin-qr-card img { width: 160px; }
  .cookie-banner { flex-direction: column; text-align: center; padding: 1.2rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .hero-content { padding: 2rem 0; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .site-footer, .cookie-banner, .whatsapp-fab { display: none; }
  body { font-size: 12pt; }
  .hero { min-height: auto; padding: 2rem 0; }
}

/* ============================================================
   WORDPRESS-SPECIFIC: Aufnahmeschein / Download Section
   ============================================================ */
.aufnahme-grid {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  background: var(--teal-bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--teal-pale);
}
.aufnahme-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.aufnahme-content h2 {
  margin-bottom: .75rem;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}
.aufnahme-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}
.aufnahme-text p { margin-bottom: .75rem; }
.aufnahme-text strong { color: var(--dark); }
.aufnahme-steps {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.aufnahme-step {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
}
.aufnahme-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: .82rem;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .aufnahme-grid {
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }
  .aufnahme-steps {
    flex-direction: column;
    gap: 1rem;
  }
  .aufnahme-qr-alt {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Aufnahmeschein QR Alternative --- */
.aufnahme-qr-alt {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--teal-bg);
  border: 1px solid var(--teal-pale);
  border-radius: var(--radius-md);
}
.aufnahme-qr-alt-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .25rem;
}
.aufnahme-qr-alt-text p {
  font-size: .92rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}
.aufnahme-qr-alt-code {
  flex-shrink: 0;
}
.aufnahme-qr-alt-code img {
  width: 120px;
  height: auto;
  border-radius: 4px;
  display: block;
}

/* ============================================================
   WORDPRESS-SPECIFIC: YouTube Videos (GDPR consent-gated)
   ============================================================ */
.video-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.video-grid--featured {
  grid-template-columns: repeat(2, 1fr);
}
.video-grid--koi {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.video-card--compact {
  border-radius: var(--radius-sm);
}
.video-embed-consent {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark), var(--teal-dark));
  overflow: hidden;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1.25rem;
  text-align: center;
  background: rgba(26,46,47,.7);
  cursor: pointer;
  transition: background var(--transition);
}
.video-placeholder:hover {
  background: rgba(26,46,47,.55);
}
.video-play-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,.25);
}
.video-card--compact .video-play-icon {
  width: 52px;
  height: 52px;
}
.video-card--compact .video-play-icon svg {
  width: 36px;
  height: 36px;
}
.video-placeholder:hover .video-play-icon {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}
.video-play-icon svg {
  margin-left: 3px;
}
.video-consent-text {
  color: rgba(255,255,255,.85);
  font-size: .75rem;
  line-height: 1.45;
  max-width: 260px;
}
.video-card--compact .video-consent-text {
  font-size: .7rem;
  max-width: 220px;
}
.video-consent-text a {
  color: var(--teal-light);
  text-decoration: underline;
}
.video-consent-text p {
  margin-bottom: .5rem;
}
.video-load-btn {
  font-size: .75rem !important;
  padding: .4rem 1rem !important;
}
.video-card-body {
  padding: 1.25rem;
}
.video-card-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .3rem;
}
.video-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: .35rem;
  line-height: 1.35;
}
.video-card-body p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
.video-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.video-iframe-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-subsection {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .video-grid--featured,
  .video-grid--koi { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .video-grid--koi { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   GEO: Last-updated timestamp (freshness signal)
   ============================================================ */
.last-updated {
  margin-top: 1.5rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  color: var(--text-light);
}
.last-updated time {
  font-weight: 500;
}
.single-post-content .last-updated {
  margin-top: .5rem;
  margin-bottom: 1.5rem;
  padding-top: 0;
  border-top: none;
}

/* ============================================================
   GEO: Author bio box (E-E-A-T for blog posts)
   ============================================================ */
.author-bio {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--teal-bg);
  border: 1px solid var(--teal-pale);
  border-radius: var(--radius-md);
}
.author-bio__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-bio__avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}
.author-bio__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin: 0 0 .15rem;
}
.author-bio__title {
  font-size: .82rem;
  color: var(--teal-dark);
  font-weight: 600;
  margin: 0 0 .5rem;
}
.author-bio__text {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 .5rem;
}
.author-bio__link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal);
}
.author-bio__link:hover {
  color: var(--teal-dark);
}
@media (max-width: 600px) {
  .author-bio { flex-direction: column; align-items: center; text-align: center; }
  .author-bio__avatar { width: 64px; height: 64px; }
}

/* ============================================================
   WORDPRESS-SPECIFIC: FAQ Section (AEO answer-first)
   ============================================================ */
.faq-list {
  max-width: 780px;
  margin: 2rem auto 0;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: .75rem;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item[open] { border-color: var(--teal-light); box-shadow: var(--shadow-md); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }
.faq-question:hover { color: var(--teal-dark); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--teal);
  transition: transform var(--transition);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-light);
}
.faq-answer p { margin: 0; }

/* ============================================================
   WORDPRESS-SPECIFIC: Announcement/Vacation Banner
   ============================================================ */
.fc-announcement {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  text-align: center;
  padding: .85rem 1.5rem;
  font-size: .92rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
}
.fc-announcement a { color: var(--white); font-weight: 700; text-decoration: underline; }
.fc-announcement--vacation {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}
.fc-announcement__close {
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.2);
  border: none; color: var(--white);
  width: 26px; height: 26px;
  border-radius: 50%; cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  line-height: 1;
}
.fc-announcement__close:hover { background: rgba(255,255,255,.35); }

/* ============================================================
   WORDPRESS-SPECIFIC: Blog Cards
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.post-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.post-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.post-card:hover .post-card__thumb img { transform: scale(1.05); }
.post-card__body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.post-card__meta {
  font-size: .78rem; font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}
.post-card__title {
  font-size: 1.15rem;
  margin-bottom: .5rem;
  line-height: 1.35;
}
.post-card__title a { color: var(--dark); text-decoration: none; }
.post-card__title a:hover { color: var(--teal-dark); }
.post-card__excerpt {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.6;
  flex-grow: 1;
}
.post-card__more { margin-top: 1rem; }

/* ============================================================
   WORDPRESS-SPECIFIC: Single Post
   ============================================================ */
.single-post-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}
.single-post-content img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}
.single-post-meta {
  display: flex; gap: 1.5rem;
  color: var(--text-light);
  font-size: .9rem;
  margin-bottom: 2rem;
}
.single-post-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
}
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.post-nav a { color: var(--teal); font-weight: 600; text-decoration: none; }
.post-nav a:hover { color: var(--orange); }
.post-nav__label {
  font-size: .8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: block;
  margin-bottom: .25rem;
}

/* ============================================================
   WORDPRESS-SPECIFIC: Pagination
   ============================================================ */
.pagination {
  display: flex; justify-content: center;
  align-items: center; gap: .5rem;
  margin-top: 3rem;
}
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px;
  padding: 0 .75rem;
  border-radius: var(--radius-xl);
  font-weight: 600; font-size: .95rem;
  transition: all var(--transition);
  text-decoration: none;
}
.pagination a { color: var(--text); border: 1.5px solid var(--border); }
.pagination a:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.pagination .current { background: var(--teal); color: var(--white); border: 1.5px solid var(--teal); }

/* ============================================================
   WORDPRESS-SPECIFIC: Comments
   ============================================================ */
.comments-area {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.comment-list { list-style: none; padding: 0; }
.comment-body {
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  background: var(--teal-bg);
  border-radius: var(--radius-md);
}
.comment-meta {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.comment-author img { border-radius: 50%; }

/* ============================================================
   WORDPRESS-SPECIFIC: Inline Editing
   ============================================================ */
.fc-editable { position: relative; transition: outline .15s ease; border-radius: 4px; }
.fc-editable:hover { outline: 2px dashed rgba(59,132,136,.4); outline-offset: 4px; }
.fc-editable:focus { outline: 2px solid var(--teal); outline-offset: 4px; background: rgba(59,132,136,.02); }
.fc-editable[contenteditable="true"]::after {
  content: '';
  position: absolute; top: -6px; right: -6px;
  width: 18px; height: 18px;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpath d='M11 4H4a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7'/%3E%3Cpath d='M18.5 2.5a2.121 2.121 0 013 3L12 15l-4 1 1-4 9.5-9.5z'/%3E%3C/svg%3E") center/12px no-repeat;
  border-radius: 50%; opacity: 0;
  transition: opacity .15s ease; pointer-events: none; z-index: 10;
}
.fc-editable:hover::after { opacity: .8; }

/* ============================================================
   WORDPRESS: Skip Link & A11y
   ============================================================ */
.skip-link {
  position: absolute; top: -100%; left: 0;
  z-index: 10000;
  padding: .75rem 1.5rem;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  font-weight: 600; font-size: .875rem;
  border-radius: 0 0 var(--radius-md) 0;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; color: var(--white); }
.screen-reader-text {
  clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute;
}
:focus-visible { outline: 3px solid #005fcc; outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }

@media (forced-colors: active) {
  .btn { border: 2px solid ButtonText; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   WORDPRESS: Alignments & Blocks
   ============================================================ */
.alignwide { max-width: calc(var(--max-width) + 200px); margin-inline: auto; width: 100%; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(-50vw + 50%); }
.aligncenter { display: block; margin-inline: auto; }
.wp-block-image { margin-bottom: 1.5rem; }
.wp-block-image img { border-radius: var(--radius-md); }

/* ============================================================
   RESPONSIVE: Blog specific
   ============================================================ */
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .fc-announcement__close { position: static; transform: none; margin-top: .5rem; }
  .fc-announcement { display: flex; flex-direction: column; align-items: center; }
}
