/*
Theme Name: Physio Fuchs
Theme URI: https://physio-fuchs.net
Author: Physio Fuchs
Author URI: https://physio-fuchs.net
Description: Modernes WordPress-Theme für die Physiotherapiepraxis Physio Fuchs in Ratingen-Lintorf.
Version: 3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: physio-fuchs
*/

/* ============================================
   Physio Fuchs v3.0 - Modern Redesign
   ============================================ */

:root {
  --green: #809b3d;
  --green-light: #c9d2a6;
  --green-dark: #5a7a1e;
  --green-soft: #edf2e0;
  --brown: #5e4739;
  --brown-light: #7a6355;
  --white: #ffffff;
  --off-white: #e6efed;
  --cream: #f5f3ee;
  --dark: #1a1a1a;
  --text: #5e4739;
  --text-light: #7a6355;
  --text-muted: #999;

  --font-heading: 'Abhaya Libre', Georgia, serif;
  --font-body: 'Abhaya Libre', Georgia, serif;
  --font-accent: 'Caveat', cursive;

  --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
  --shadow-green: 0 8px 30px rgba(128,155,61,0.25);

  --radius: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 100px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);

  --container: 1200px;
  --header-height: 80px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 17px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--brown); }
h1 { font-size: clamp(2.5rem, 5vw, 3.125rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.25rem; font-family: var(--font-body); font-weight: 600; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* === TOP BAR === */
.top-bar {
  background: var(--brown);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: rgba(255,255,255,0.95); transition: color var(--transition); }
.top-bar a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.top-bar-left { display: flex; gap: 20px; }
.top-bar-left i { margin-right: 6px; color: rgba(255,255,255,0.7); }
.top-bar-right { display: flex; gap: 14px; align-items: center; }
.top-bar-right a { font-size: 0.9rem; }
.top-bar-right a[aria-label="Facebook"] { color: #1877F2; }
.top-bar-right a[aria-label="Instagram"] { color: #E4405F; }
.top-bar-right a[aria-label="LinkedIn"] { color: #0A66C2; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), padding var(--transition);
  padding: 0;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-height);
}

.site-logo img { height: 70px; width: auto; transition: height var(--transition); }
.site-header.scrolled .site-logo img { height: 52px; }

/* Main Nav */
.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-link:hover, .nav-item.active > .nav-link {
  color: var(--green);
  background: var(--green-soft);
}
.dropdown-arrow { font-size: 0.6rem; transition: transform var(--transition); }
.nav-item:hover .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease);
  z-index: 100;
  list-style: none;
  margin: 0;
}
.nav-item:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-link {
  display: block;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.dropdown-link:hover {
  background: var(--green-soft);
  color: var(--green);
  padding-left: 20px;
}

/* Header CTA */
.header-cta {
  white-space: nowrap;
  margin-left: auto;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 4px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* === MOBILE MENU === */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  backdrop-filter: blur(4px);
}
.mobile-menu-overlay.active { display: block; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 1060;
  transition: right 0.4s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { right: 0; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--cream);
}
.mobile-menu-header .site-logo img { height: 40px; }
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  padding: 8px;
}

.mobile-nav { flex: 1; padding: 16px 0; }
.mobile-nav > ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--cream); }
.mobile-nav > ul > li > a,
.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
}
.mobile-dropdown-toggle i { font-size: 0.7rem; transition: transform var(--transition); }
.mobile-dropdown.open .mobile-dropdown-toggle i { transform: rotate(180deg); }
.mobile-dropdown-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
  background: var(--off-white);
}
.mobile-dropdown.open .mobile-dropdown-menu { display: block; }
.mobile-dropdown-menu a {
  display: block;
  padding: 12px 24px 12px 40px;
  font-size: 0.92rem;
  color: var(--text-light);
}
.mobile-dropdown-menu a:hover { color: var(--green); }

.mobile-menu-contact { padding: 20px 24px; border-top: 1px solid var(--cream); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* === SPLIT HERO (Video) === */
.split-hero {
  display: flex;
  min-height: auto;
  background: linear-gradient(135deg, #f7f5f3 0%, var(--off-white) 100%);
  overflow: hidden;
}
.split-hero-text {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px 40px 40px 80px;
  animation: fadeInLeft 1s ease-out;
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
.split-hero-inner { max-width: 540px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(128,155,61,0.1);
  border: 1px solid rgba(128,155,61,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge i { font-size: 0.5rem; }
.split-hero-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 20px;
}
.split-hero-inner h1 span { color: var(--green); }
.split-hero-inner > p {
  font-size: 1.1rem;
  color: rgba(94,71,57,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(94,71,57,0.6);
}
.trust-item i { color: var(--green); font-size: 0.9rem; }
.split-hero-video {
  flex: 0 0 38%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 60px 30px 20px;
  animation: fadeInRight 1s ease-out 0.3s both;
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.split-hero-video-wrap { position: relative; }
.video-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(94,71,57,0.25);
}
.video-frame video { width: 100%; height: auto; display: block; }
.deco-dots {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, rgba(128,155,61,0.25) 2px, transparent 2px);
  background-size: 14px 14px;
  z-index: -1;
}
.deco-dots-1 { top: -24px; right: -28px; }
.deco-dots-2 { bottom: -24px; left: -28px; }
.video-sound {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  z-index: 2;
}
.video-sound:hover { background: rgba(0,0,0,0.6); transform: scale(1.1); }

@media (max-width: 900px) {
  .split-hero { flex-direction: column; min-height: auto; }
  .split-hero-text { padding: 48px 24px 32px; text-align: center; }
  .split-hero-inner { max-width: 100%; }
  .split-hero-inner > p { max-width: 100%; }
  .split-hero-inner h1 { font-size: 2.4rem; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
  .split-hero-video { flex: none; padding: 0 24px 48px; }
  .video-frame { max-width: 280px; margin: 0 auto; }
}

/* === HERO (Slider - legacy) === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slider .slide.active { opacity: 1; }
.hero-slider .slide img { width: 100%; height: 100%; object-fit: cover; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.65) 0%, rgba(93,71,57,0.4) 50%, rgba(128,155,61,0.2) 100%);
  z-index: 1;
}
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding-left: 24px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 700px;
  margin-left: 8%;
}
.hero-content .accent-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-light);
  margin-bottom: 12px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  font-weight: 800;
}
.hero-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active {
  background: var(--green);
  transform: scale(1.2);
}

/* === PAGE BANNER === */
.page-banner {
  position: relative;
  height: 30vh;
  min-height: 220px;
  max-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-banner .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.15) 0%, rgba(128,155,61,0.1) 100%);
  z-index: 1;
}
.page-banner-content {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(3px);
  padding: 40px 48px;
  border-radius: var(--radius-md);
  max-width: 560px;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}
.page-banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding-left: 24px;
}
.page-banner h1 {
  color: var(--brown);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.page-banner-content p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.page-banner-content .btn {
  margin-bottom: 16px;
}
.page-banner .breadcrumb {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 8px;
}
.page-banner .breadcrumb a { color: var(--green); }
.page-banner .breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* === SECTIONS === */
.section { padding: 100px 0; }
.section--sm { padding: 60px 0; }
.section--gray { background: var(--off-white); }
.section--cream { background: var(--cream); }
.section--green { background: var(--green-soft); }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }

.section-header { text-align: center; max-width: 650px; margin: 0 auto 64px; }
.section-header .label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  display: block;
  margin-bottom: 8px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; line-height: 1.8; }

/* === GRIDS === */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* === CARDS === */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 28px; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { color: var(--text-light); font-size: 0.95rem; }

/* Icon Card */
.icon-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.icon-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}
.icon-card .icon {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition);
}
.icon-card .icon i { font-size: 2rem; color: var(--white); transition: color var(--transition); }
.icon-card:hover .icon { background: var(--green-dark); transform: scale(1.05); }
.icon-card:hover .icon i { color: var(--white); }
.icon-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.icon-card p { color: var(--text-light); font-size: 0.92rem; }
a.icon-card { text-decoration: none; color: inherit; display: block; cursor: pointer; }

/* === COUNTER / STATS === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* === ABOUT / SPLIT === */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-img { position: relative; }
.split-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.split-img .accent-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--green-light);
  border-radius: var(--radius-lg);
  top: 20px;
  left: 20px;
  z-index: -1;
}
.split-text .label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  display: block;
  margin-bottom: 8px;
}
.split-text h2 { margin-bottom: 20px; }
.split-text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.9; }

/* === TEAM === */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-card .avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--green-soft);
  transition: border-color var(--transition);
}
.team-card:hover .avatar { border-color: var(--green); }
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { color: var(--green); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* === TESTIMONIALS === */
.testimonial-slider { position: relative; max-width: 800px; margin: 0 auto; text-align: center; }
.testimonial {
  display: none;
  padding: 0 20px;
}
.testimonial.active { display: block; }
.testimonial .stars { color: #f5a623; font-size: 1.2rem; margin-bottom: 20px; }
.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}
.testimonial .author { font-weight: 600; color: var(--text-light); }
.testimonial-dots { display: flex; gap: 8px; justify-content: center; margin-top: 32px; }
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-light);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.testimonial-dot.active { background: var(--green); transform: scale(1.3); }

/* === TABS === */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--cream);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover { color: var(--green); }
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* === TAB CONTENT GRID === */
.tab-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 24px 0;
}
.tab-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.tab-text p + p { margin-top: 16px; }
.tab-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* === SERVICE LIST === */
.service-list { display: flex; flex-direction: column; gap: 12px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.service-list li:hover {
  border-color: var(--green);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.service-list li i { color: var(--green); font-size: 1rem; flex-shrink: 0; }

/* === CONTACT FORM === */
.contact-form-wrapper { max-width: 700px; margin: 0 auto; background: var(--white); padding: 40px; border-radius: var(--radius-md); border: 1px solid rgba(0,0,0,0.06); }
.contact-form { max-width: 100%; }
.form-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; }
.form-checkbox input[type="checkbox"] { width: auto; margin-top: 4px; accent-color: var(--green); }
.form-checkbox label { display: inline; font-size: 0.85rem; font-weight: 400; }
.form-checkbox label a { color: var(--green); text-decoration: underline; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  transition: all var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(128,155,61,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* CF7 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.wpcf7 input:focus, .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(128,155,61,0.1);
}
.wpcf7 input[type="submit"] {
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.wpcf7 input[type="submit"]:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.wpcf7-response-output { border-radius: var(--radius) !important; }

.form-message { margin-top: 16px; padding: 14px 18px; border-radius: var(--radius); display: none; }
.form-message.success { background: #e8f5e9; color: #2e7d32; display: block; }
.form-message.error { background: #fce4ec; color: #c62828; display: block; }

/* === INFO BOX === */
.info-box {
  background: var(--green-soft);
  border-radius: var(--radius-md);
  padding: 32px;
  border-left: 4px solid var(--green);
}
.info-box h3 { margin-bottom: 12px; color: var(--green-dark); }

/* === Gallery Preview === */
.gallery-preview-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.gallery-preview-item:hover img {
  transform: scale(1.05);
}

/* === Video Wrapper === */
.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

/* === Check List === */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 1.05rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.check-list li:last-child {
  border-bottom: none;
}
.check-list li i {
  color: var(--green);
  font-size: 1.1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* === Service Cards (Homepage Leistungen) === */
.service-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: var(--text);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card-img img {
  transform: scale(1.08);
}
.service-card-body {
  padding: 20px 24px;
}
.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.3;
}
.service-card-body .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  transition: gap var(--transition);
}
.service-card:hover .read-more {
  gap: 10px;
}

/* === CTA === */
.cta-section {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -150px;
  right: -100px;
}
.cta-section .label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-light);
  display: block;
  margin-bottom: 8px;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.1rem; }

/* === FAQ AKKORDEON === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid rgba(94,71,57,0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(94,71,57,0.1);
}
.faq-item.active {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(128,155,61,0.15);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  transition: background 0.3s ease;
  gap: 16px;
}
.faq-question:hover { background: rgba(230,239,237,0.4); }
.faq-item.active .faq-question { background: rgba(230,239,237,0.5); }
.faq-question h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  margin: 0;
  flex: 1;
}
.faq-question i {
  color: var(--green);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: rgba(94,71,57,0.85);
  line-height: 1.7;
  font-size: 0.95rem;
}
.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 0.85rem;
}
.faq-item.active .faq-icon {
  background: var(--green);
  color: white;
}
.faq-cta {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background: var(--off-white);
  border-radius: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.faq-cta p { margin-bottom: 16px; font-size: 1.05rem; }

/* === BODY NAVIGATOR === */
.body-quick-nav {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px;
}
.quick-pill {
  padding: 8px 18px; border-radius: 50px; border: 1px solid rgba(94,71,57,0.15);
  background: var(--white); font-size: 0.82rem; font-weight: 500;
  cursor: pointer; transition: all 0.3s ease; color: var(--brown);
}
.quick-pill:hover, .quick-pill.active {
  background: var(--green); color: white; border-color: var(--green);
}

.body-nav {
  display: flex; gap: 32px; align-items: flex-start; justify-content: center;
}

.body-figure-center {
  position: relative; flex-shrink: 0; width: 220px;
}
.body-figure-center svg { width: 100%; height: auto; display: block; }

.silhouette-path {
  fill: #c0d4cf; stroke: none; opacity: 0.85;
  transition: fill 0.3s ease;
}

.click-zone {
  fill: transparent; cursor: pointer; transition: fill 0.3s ease;
}
.click-zone:hover { fill: rgba(128,155,61,0.15); }
.click-zone.active { fill: rgba(128,155,61,0.25); }

.pain-marker { cursor: pointer; }
.pain-marker .ring-outer {
  fill: none; stroke: rgba(217,64,64,0.12); stroke-width: 8;
  transition: stroke 0.3s ease;
}
.pain-marker .ring-mid {
  fill: none; stroke: rgba(217,64,64,0.25); stroke-width: 5;
  transition: stroke 0.3s ease;
}
.pain-marker .ring-inner {
  fill: none; stroke: rgba(217,64,64,0.45); stroke-width: 3;
  transition: stroke 0.3s ease;
}
.pain-marker .core {
  fill: #d94040; transition: fill 0.3s ease;
}
.pain-marker .pulse-ring {
  fill: none; stroke: #d94040; stroke-width: 2;
  animation: pulseRing 2.5s infinite ease-out;
}
@keyframes pulseRing {
  0% { r: 8; opacity: 0.6; }
  100% { r: 22; opacity: 0; }
}

.pain-marker.active .ring-outer { stroke: rgba(128,155,61,0.12); }
.pain-marker.active .ring-mid { stroke: rgba(128,155,61,0.3); }
.pain-marker.active .ring-inner { stroke: rgba(128,155,61,0.5); }
.pain-marker.active .core { fill: var(--green); }
.pain-marker.active .pulse-ring { stroke: var(--green); }

.body-info {
  flex: 1; max-width: 420px; min-height: 380px; padding-top: 20px;
}
.body-info-card {
  background: var(--white); border: 1px solid rgba(94,71,57,0.1);
  border-radius: 20px; padding: 32px;
  box-shadow: 0 4px 24px rgba(94,71,57,0.08);
  animation: infoFade 0.4s ease;
}
@keyframes infoFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.info-region { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.info-region-icon {
  width: 46px; height: 46px; border-radius: 14px; background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--green); flex-shrink: 0;
}
.info-region h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--brown); }
.info-region small { color: rgba(94,71,57,0.5); font-size: 0.78rem; }

.info-description { color: rgba(94,71,57,0.8); line-height: 1.7; margin-bottom: 22px; font-size: 0.92rem; }

.info-treatments { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.info-treatment {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; background: rgba(230,239,237,0.5);
  border-radius: 10px; font-size: 0.85rem; font-weight: 500;
  transition: all 0.2s ease;
}
.info-treatment:hover { background: rgba(128,155,61,0.12); transform: translateX(4px); }
.info-treatment i { color: var(--green); width: 16px; text-align: center; font-size: 0.78rem; }

.body-info-default { text-align: center; padding: 50px 32px; }
.body-info-default i { font-size: 2.5rem; color: rgba(128,155,61,0.3); margin-bottom: 14px; }
.body-info-default h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 8px; }
.body-info-default p { color: rgba(94,71,57,0.6); font-size: 0.88rem; }

@media (max-width: 900px) {
  .body-nav { flex-direction: column; align-items: center; }
  .body-figure-center { width: 200px; }
  .body-info { max-width: 100%; min-height: auto; }
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,26,26,0.4);
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* Gallery Filter */
.gallery-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--cream);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green);
  color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(10px);
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* === HOURS TABLE === */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--cream);
  font-size: 0.95rem;
}
.hours-table td:first-child { font-weight: 600; color: var(--dark); }

/* === MAP === */
.map-container { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.map-container iframe { width: 100%; height: 400px; border: 0; }

/* === NEWS === */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.news-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.news-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.news-item h3 { font-size: 1.05rem; margin-bottom: 10px; font-family: var(--font-body); font-weight: 600; }
.news-item h3 a { color: var(--dark); }
.news-item h3 a:hover { color: var(--green); }
.news-item p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 12px; }
.news-item .date { font-size: 0.8rem; color: var(--green); font-weight: 600; }

/* === FEATURE LIST === */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.feature-list li i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* === FOOTER === */
.site-footer { position: relative; }
.footer-wave {
  line-height: 0;
  margin-bottom: -1px;
}
.footer-wave svg { display: block; width: 100%; height: auto; }

.footer-main {
  background: var(--brown);
  color: rgba(255,255,255,0.95);
  padding: 60px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-col h4 { color: var(--white); margin-bottom: 20px; font-size: 1.15rem; letter-spacing: 0.02em; }
.footer-col p { font-size: 1rem; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,0.9); }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: rgba(255,255,255,0.85); font-size: 1rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

.footer-hours li { display: flex; justify-content: space-between; font-size: 1rem; color: rgba(255,255,255,0.9); }

.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 1rem; color: rgba(255,255,255,0.9); }
.footer-contact li i { color: rgba(255,255,255,0.7); margin-top: 4px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

.footer-logo img { max-width: 160px; height: auto; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: 0.95; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}
.footer-social a[aria-label="Facebook"] { background: #1877F2; }
.footer-social a[aria-label="Instagram"] { background: #E4405F; }
.footer-social a[aria-label="LinkedIn"] { background: #0A66C2; }
.footer-social a:hover { opacity: 0.85; transform: translateY(-3px); }

.footer-bottom {
  background: #4a3a2e;
  padding: 20px 0;
  font-size: 0.85rem;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-legal a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* === PARALLAX === */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(94, 71, 57, 0.5);
  z-index: 1;
}
.parallax-section .parallax-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 40px 24px;
}
.parallax-section .parallax-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.parallax-section .parallax-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
    min-height: 250px;
  }
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow-green);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--green-dark); transform: translateY(-4px); }

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* Staggered children */
.stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* === WP ADMIN BAR === */
body.admin-bar .site-header { top: 32px; }
body.admin-bar .back-to-top { bottom: 62px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .split, .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .section { padding: 64px 0; }
  .hero { min-height: 70vh; }
  .hero-content { margin-left: 0; padding: 0 24px; }
}

@media (max-width: 640px) {
  .top-bar { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 12px; text-align: center; }
  .hero { min-height: 60vh; }
  .hero-content h1 { font-size: 2rem; }
  .page-banner { height: 220px; }
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .tabs-nav { gap: 0; }
  .tab-btn { padding: 10px 14px; font-size: 0.82rem; }
  .tab-content-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* === COOKIE BANNER === */
.cookie-overlay {
  position: fixed; inset: 0; background: rgba(94,71,57,0.4);
  backdrop-filter: blur(3px); z-index: 9998;
  opacity: 1; transition: opacity 0.4s ease;
}
.cookie-overlay.hidden { opacity: 0; pointer-events: none; }

.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  transform: translateY(0); transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.hidden { transform: translateY(100%); }

.cookie-inner {
  max-width: 720px; margin: 0 auto 24px; background: var(--white);
  border-radius: 20px; box-shadow: 0 8px 40px rgba(94,71,57,0.2);
  padding: 32px; animation: cookieSlideUp 0.6s cubic-bezier(0.4,0,0.2,1);
}
@keyframes cookieSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.cookie-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--off-white);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.cookie-header h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--brown); }

.cookie-text { color: rgba(94,71,57,0.8); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.cookie-text a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }

.cookie-categories {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px;
  padding: 16px; background: rgba(230,239,237,0.4); border-radius: 12px;
}
.cookie-cat { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cookie-cat-info { display: flex; align-items: center; gap: 10px; flex: 1; }
.cookie-cat-info i { color: var(--green); width: 20px; text-align: center; }
.cookie-cat-label { font-size: 0.88rem; font-weight: 500; }
.cookie-cat-label small { font-weight: 400; color: rgba(94,71,57,0.6); display: block; font-size: 0.78rem; }

.toggle-switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0; background: #ccc; border-radius: 24px;
  cursor: pointer; transition: background 0.3s ease;
}
.toggle-slider::before {
  content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%;
  background: white; top: 3px; left: 3px; transition: transform 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider { background: var(--green); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-slider { background: var(--green); opacity: 0.6; cursor: not-allowed; }
.toggle-switch input:disabled:checked + .toggle-slider::before { transform: translateX(20px); }

.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-buttons .btn { flex: 1; min-width: 140px; justify-content: center; }
.cookie-buttons .btn-link { flex: 0; min-width: auto; background: none; color: rgba(94,71,57,0.6); font-size: 0.82rem; padding: 8px 16px; }
.cookie-buttons .btn-link:hover { color: var(--brown); }

.cookie-success {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--green); color: white; padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem; box-shadow: 0 4px 20px rgba(128,155,61,0.3);
  z-index: 10000; opacity: 0; transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; align-items: center; gap: 8px;
}
.cookie-success.show { transform: translateX(-50%) translateY(0); opacity: 1; }

.cookie-settings-btn {
  position: fixed; bottom: 16px; left: 16px; z-index: 9997;
  width: 40px; height: 40px; border-radius: 50%; background: var(--brown);
  color: white; border: none; cursor: pointer; font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(94,71,57,0.3); transition: all 0.3s ease;
  opacity: 0; transform: scale(0.5);
}
.cookie-settings-btn.show { opacity: 1; transform: scale(1); }
.cookie-settings-btn:hover { background: var(--green); transform: scale(1.1); }

@media (max-width: 640px) {
  .cookie-inner { margin: 0 12px 12px; padding: 24px; border-radius: 16px; }
  .cookie-buttons { flex-direction: column; }
  .cookie-buttons .btn { min-width: auto; }
}

/* === PRINT === */
@media print {
  .site-header, .top-bar, .back-to-top, .site-footer, .cta-section, .cookie-banner, .cookie-overlay, .cookie-settings-btn { display: none !important; }
}
