/*
Theme Name: Naturheilpraxis
Theme URI: https://naturheilpraxis-mutterundkind.de
Author: Anke Shreck
Author URI: https://naturheilpraxis-mutterundkind.de
Description: Professionelles WordPress-Theme für eine Naturheilpraxis mit Fokus auf Mütter & Kinder. Vollständig konfigurierbar über den WordPress Customizer.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: naturheilpraxis-mutterundkind.de
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, theme-options, translation-ready
*/

/* ══════════════════════════════════════════════════════════════
   Design #23 — Smaragd & Weiß
   Alle Farben werden via Customizer überschrieben (CSS Variables)
   ══════════════════════════════════════════════════════════════ */
:root {
  --bg: #F5FFFC;
  --bg-warm: #EDFAF5;
  --bg-card: #ffffff;
  --bg-card-hover: #FAFFFD;
  --surface: #E8F5F0;
  --green-100: #D6F0E8;
  --green-200: #A8DFC8;
  --green-300: #4DB889;
  --green-400: #006845;
  --green-500: #005A3B;
  --green-600: #003A28;
  --green-glow: rgba(0,104,69,.06);
  --green-glow-strong: rgba(0,104,69,.12);
  --white: #fff;
  --text: #003A28;
  --text-soft: #2A6B52;
  --text-muted: #5A9A82;
  --border: rgba(0,104,69,.12);
  --border-light: rgba(0,58,40,.08);
  --shadow-sm: 0 2px 8px rgba(0,58,40,.05);
  --shadow-md: 0 8px 24px rgba(0,58,40,.08);
  --shadow-lg: 0 16px 40px rgba(0,58,40,.10);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Nunito Sans', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); line-height: 1.7; overflow-x: hidden; background: var(--bg); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── BACKGROUND SCENE ── */
.bg-scene {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(0,104,69,.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(0,104,69,.03) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 50%, var(--bg) 100%);
}
.bg-blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: .5; }
.bg-blob-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,104,69,.07), transparent 70%); top: -5%; right: -5%; animation: drift1 18s ease-in-out infinite; }
.bg-blob-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,104,69,.05), transparent 70%); bottom: 5%; left: -5%; animation: drift2 22s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px,30px) scale(1.08); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-30px) scale(1.06); } }

/* ── NAVIGATION ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 5vw;
  background: rgba(245,255,252,.88);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,58,40,.06); }
.site-logo {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 600;
  color: var(--green-400); display: flex; align-items: center; gap: .5rem;
}
.site-logo img { max-height: 36px; width: auto; border-radius: 8px; }
.site-logo svg { width: 26px; height: 26px; color: var(--green-400); }
.nav-menu { display: flex; gap: 0; list-style: none; align-items: center; padding: 0; margin: 0; }
.nav-menu li { list-style: none; margin: 0; padding: 0; }
.nav-menu > li { margin: 0 .15rem; }
.nav-menu a {
  color: var(--text-soft); text-decoration: none; font-size: .87rem;
  font-weight: 400; letter-spacing: .3px; transition: color .3s;
  padding: .5rem .9rem; display: inline-flex; align-items: center; gap: .4rem;
  border-radius: 50px;
}
.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a { color: var(--green-400); background: rgba(0,104,69,.04); }
/* Sub-menus */
.nav-menu ul { display: none; position: absolute; top: 100%; left: 0; background: var(--bg-card); border: 1px solid var(--border-light); border-radius: 12px; padding: .5rem 0; min-width: 200px; box-shadow: var(--shadow-md); list-style: none; z-index: 110; }
.nav-menu li { position: relative; }
.nav-menu li:hover > ul { display: block; }
.nav-menu ul a { padding: .5rem 1.2rem; display: block; font-size: .84rem; border-radius: 0; }
.nav-menu ul a:hover { background: var(--green-100); }
/* CTA menu item — add CSS class "cta" to a menu item in WP admin */
.nav-menu .cta > a,
a.nav-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem 1.1rem; background: var(--green-100);
  border: 1px solid var(--border); border-radius: 50px;
  color: var(--green-400) !important; font-weight: 500 !important;
  font-size: .82rem !important; transition: all .3s !important;
}
.nav-menu .cta > a:hover,
a.nav-cta:hover { background: var(--green-200) !important; border-color: rgba(0,104,69,.25) !important; }
.nav-menu .cta > a svg,
a.nav-cta svg { width: 14px; height: 14px; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: all .3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── BUTTONS ── */
.btn {
  padding: .8rem 1.8rem; border-radius: 50px; font-family: var(--sans);
  font-size: .87rem; font-weight: 500; cursor: pointer; border: none;
  transition: all .35s; text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-primary {
  background: var(--green-400); color: var(--white);
  box-shadow: 0 4px 20px rgba(0,104,69,.18);
}
.btn-primary:hover {
  background: var(--green-600); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,104,69,.25);
}
.btn-glass {
  background: var(--bg-card); color: var(--green-400);
  border: 1px solid var(--border);
}
.btn-glass:hover {
  background: var(--green-100); border-color: rgba(0,104,69,.2);
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 7rem 5vw 4rem; position: relative; z-index: 1; }
.hero-inner { max-width: 860px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.portrait-wrap { position: relative; margin-bottom: 2.5rem; animation: fadeUp .7s ease both; }
.portrait-ring {
  width: 190px; height: 190px; border-radius: 50%; padding: 4px;
  background: linear-gradient(135deg, var(--green-400), var(--green-600), var(--green-300));
  box-shadow: 0 0 40px rgba(0,104,69,.15), 0 0 80px rgba(0,104,69,.06);
  position: relative;
}

/* ── GLOBULI ANIMATION ── */
.globuli-orbit {
  position: absolute; inset: -12px; border-radius: 50%; pointer-events: none;
}
.globulus {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--green-200) 50%, var(--green-400));
  box-shadow: 0 1px 4px rgba(0,104,69,.2), inset 0 -1px 2px rgba(0,58,40,.1);
}
/* 8 Globuli orbiting at different speeds */
.globulus:nth-child(1) { width: 10px; height: 10px; animation: orbit1 12s linear infinite; }
.globulus:nth-child(2) { width: 8px; height: 8px; animation: orbit2 15s linear infinite; }
.globulus:nth-child(3) { width: 11px; height: 11px; animation: orbit3 18s linear infinite; }
.globulus:nth-child(4) { width: 7px; height: 7px; animation: orbit4 14s linear infinite; }
.globulus:nth-child(5) { width: 9px; height: 9px; animation: orbit5 20s linear infinite; }
.globulus:nth-child(6) { width: 6px; height: 6px; animation: orbit6 16s linear infinite; }
.globulus:nth-child(7) { width: 10px; height: 10px; animation: orbit7 22s linear infinite; }
.globulus:nth-child(8) { width: 7px; height: 7px; animation: orbit8 13s linear infinite; }

@keyframes orbit1 {
  0%   { top: 0%;  left: 50%;  transform: translate(-50%, -50%); }
  25%  { top: 50%; left: 100%; transform: translate(-50%, -50%); }
  50%  { top: 100%;left: 50%;  transform: translate(-50%, -50%); }
  75%  { top: 50%; left: 0%;   transform: translate(-50%, -50%); }
  100% { top: 0%;  left: 50%;  transform: translate(-50%, -50%); }
}
@keyframes orbit2 {
  0%   { top: 15%; left: 95%;  transform: translate(-50%, -50%); }
  25%  { top: 85%; left: 85%;  transform: translate(-50%, -50%); }
  50%  { top: 85%; left: 5%;   transform: translate(-50%, -50%); }
  75%  { top: 15%; left: 15%;  transform: translate(-50%, -50%); }
  100% { top: 15%; left: 95%;  transform: translate(-50%, -50%); }
}
@keyframes orbit3 {
  0%   { top: 50%; left: 0%;   transform: translate(-50%, -50%); }
  25%  { top: 0%;  left: 50%;  transform: translate(-50%, -50%); }
  50%  { top: 50%; left: 100%; transform: translate(-50%, -50%); }
  75%  { top: 100%;left: 50%;  transform: translate(-50%, -50%); }
  100% { top: 50%; left: 0%;   transform: translate(-50%, -50%); }
}
@keyframes orbit4 {
  0%   { top: 85%; left: 15%;  transform: translate(-50%, -50%); }
  25%  { top: 15%; left: 5%;   transform: translate(-50%, -50%); }
  50%  { top: 15%; left: 95%;  transform: translate(-50%, -50%); }
  75%  { top: 85%; left: 85%;  transform: translate(-50%, -50%); }
  100% { top: 85%; left: 15%;  transform: translate(-50%, -50%); }
}
@keyframes orbit5 {
  0%   { top: 5%;  left: 30%;  transform: translate(-50%, -50%); }
  25%  { top: 30%; left: 95%;  transform: translate(-50%, -50%); }
  50%  { top: 95%; left: 70%;  transform: translate(-50%, -50%); }
  75%  { top: 70%; left: 5%;   transform: translate(-50%, -50%); }
  100% { top: 5%;  left: 30%;  transform: translate(-50%, -50%); }
}
@keyframes orbit6 {
  0%   { top: 95%; left: 40%;  transform: translate(-50%, -50%); }
  25%  { top: 60%; left: 0%;   transform: translate(-50%, -50%); }
  50%  { top: 5%;  left: 60%;  transform: translate(-50%, -50%); }
  75%  { top: 40%; left: 100%; transform: translate(-50%, -50%); }
  100% { top: 95%; left: 40%;  transform: translate(-50%, -50%); }
}
@keyframes orbit7 {
  0%   { top: 30%; left: 0%;   transform: translate(-50%, -50%); }
  25%  { top: 5%;  left: 70%;  transform: translate(-50%, -50%); }
  50%  { top: 70%; left: 100%; transform: translate(-50%, -50%); }
  75%  { top: 95%; left: 30%;  transform: translate(-50%, -50%); }
  100% { top: 30%; left: 0%;   transform: translate(-50%, -50%); }
}
@keyframes orbit8 {
  0%   { top: 70%; left: 95%;  transform: translate(-50%, -50%); }
  25%  { top: 95%; left: 60%;  transform: translate(-50%, -50%); }
  50%  { top: 30%; left: 5%;   transform: translate(-50%, -50%); }
  75%  { top: 5%;  left: 40%;  transform: translate(-50%, -50%); }
  100% { top: 70%; left: 95%;  transform: translate(-50%, -50%); }
}
.portrait-img {
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--surface); display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
.portrait-img img { width: 100%; height: 100%; object-fit: cover; }
.portrait-img svg { width: 100px; height: 100px; color: var(--text-muted); opacity: .35; }
.portrait-badge {
  position: absolute; bottom: 6px; right: 6px;
  background: var(--green-400); color: var(--white);
  font-size: .65rem; font-weight: 600; letter-spacing: .5px;
  padding: .25rem .7rem; border-radius: 50px; border: 2px solid var(--bg);
}
.hero-tagline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem 1.1rem; background: var(--green-100);
  border: 1px solid var(--border); border-radius: 50px;
  font-size: .74rem; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green-400);
  margin-bottom: 1.8rem; animation: fadeUp .7s ease .1s both;
}
.hero-tagline .dot { width: 5px; height: 5px; background: var(--green-400); border-radius: 50%; }
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500; line-height: 1.15; color: var(--text);
  margin-bottom: 1.2rem; animation: fadeUp .7s ease .2s both;
}
.hero h1 em { font-style: italic; color: var(--green-400); }
.hero-desc {
  font-size: 1.05rem; font-weight: 300; color: var(--text-soft);
  max-width: 560px; margin-bottom: 2rem; animation: fadeUp .7s ease .3s both;
}
.hero-name { font-family: var(--serif); font-size: 1.15rem; color: var(--green-400); margin-bottom: .15rem; animation: fadeUp .7s ease .35s both; }
.hero-title { font-size: .82rem; color: var(--text-muted); letter-spacing: .5px; margin-bottom: 2.5rem; animation: fadeUp .7s ease .38s both; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeUp .7s ease .42s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ── PHILOSOPHY PILLS ── */
.philosophy { padding: 3rem 5vw; display: flex; justify-content: center; position: relative; z-index: 1; }
.philosophy-inner { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; max-width: 900px; }
.phil-item {
  display: flex; align-items: center; gap: .65rem;
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: 60px; padding: .6rem 1.3rem .6rem .75rem;
  transition: all .35s; box-shadow: var(--shadow-sm);
}
.phil-item:hover { background: var(--green-100); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.phil-icon {
  width: 36px; height: 36px; background: var(--green-glow-strong);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.phil-item span { font-size: .85rem; font-weight: 500; color: var(--text); }

/* ── SECTION COMMON ── */
.nhp-section { padding: 5rem 5vw; max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }
.section-label {
  font-size: .7rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--green-400); margin-bottom: .5rem;
}
.section-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500; color: var(--text); margin-bottom: .8rem; line-height: 1.25;
}
.section-desc { color: var(--text-soft); font-weight: 300; max-width: 520px; margin-bottom: 3rem; }

/* ── ABOUT ── */
.about { padding: 5rem 5vw; position: relative; z-index: 1; }
.about-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center;
}
.about-image {
  width: min(280px, 100%); aspect-ratio: 1/1; background: var(--surface);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; overflow: hidden;
  border: 3px solid var(--green-400); box-shadow: var(--shadow-md);
  margin: 0 auto;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image svg { width: 80px; height: 80px; color: var(--text-muted); opacity: .25; }
.about-text h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500; color: var(--text); margin-bottom: 1rem; line-height: 1.25;
}
.about-text h2 em { font-style: italic; color: var(--green-400); }
.about-text p { color: var(--text-soft); font-weight: 300; line-height: 1.85; margin-bottom: 1rem; }
.about-values { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.about-value {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--green-100); border: 1px solid var(--border);
  border-radius: 50px; padding: .4rem 1rem;
  font-size: .8rem; font-weight: 500; color: var(--green-400);
}

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: 16px; padding: 1.8rem; transition: all .4s;
  position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-400), transparent);
  opacity: 0; transition: opacity .4s;
}
.service-card:hover { background: var(--bg-card-hover); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px; background: var(--green-100);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.35rem; margin-bottom: 1.1rem;
}
.service-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--text); margin-bottom: .4rem; }
.service-card p { color: var(--text-soft); font-size: .88rem; font-weight: 300; }
.service-meta { margin-top: .8rem; font-size: .78rem; color: var(--text-muted); }

/* ── NEWS (Blog Posts) ── */
.news-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.4rem; }
.news-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: 16px; padding: 1.8rem; transition: all .35s;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.news-card:hover { background: var(--bg-card-hover); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.news-card.featured {
  grid-row: span 2;
  background: linear-gradient(165deg, var(--green-100), var(--bg-card));
  border-color: var(--border);
}
.news-date {
  font-size: .7rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--green-400); margin-bottom: .6rem;
  display: flex; align-items: center; gap: .4rem;
}
.news-date svg { width: 13px; height: 13px; }
.news-tag {
  display: inline-block; font-size: .65rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--white);
  background: var(--green-400); padding: .15rem .6rem;
  border-radius: 50px; margin-bottom: .8rem; width: fit-content;
}
.news-card h3 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 500;
  color: var(--text); margin-bottom: .5rem; line-height: 1.35;
}
.news-card.featured h3 { font-size: 1.5rem; }
.news-card p { color: var(--text-soft); font-size: .88rem; font-weight: 300; line-height: 1.7; flex: 1; }
.news-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--green-400); font-size: .82rem; font-weight: 500;
  text-decoration: none; margin-top: 1rem; transition: gap .3s;
}
.news-link:hover { gap: .7rem; }
.news-link svg { width: 14px; height: 14px; }

/* ── SYMPTOMS ── */
.symptoms-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem;
}
.symptom-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: 14px; padding: 1.4rem; transition: all .35s;
  display: flex; align-items: flex-start; gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.symptom-card:hover { background: var(--bg-card-hover); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.symptom-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--green-100); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.symptom-content h3 { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; color: var(--text); margin-bottom: .25rem; line-height: 1.3; }
.symptom-content p { color: var(--text-soft); font-size: .82rem; font-weight: 300; line-height: 1.6; }
.symptom-category {
  display: inline-block; margin-top: .5rem;
  font-size: .68rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--green-400);
}

/* ── COURSES ── */
.courses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; }
.course-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: 18px; overflow: hidden; transition: all .4s;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.course-card:hover { background: var(--bg-card-hover); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.course-header { padding: 1.5rem 1.8rem 0; display: flex; justify-content: space-between; align-items: flex-start; }
.course-type {
  font-size: .68rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green-500);
  background: var(--green-100); padding: .25rem .7rem; border-radius: 50px;
}
.course-spots { font-size: .75rem; color: var(--text-muted); display: flex; align-items: center; gap: .3rem; }
.course-spots .dot-avail { width: 6px; height: 6px; border-radius: 50%; background: var(--green-400); display: inline-block; }
.course-spots.few .dot-avail { background: #e8a046; }
.course-spots.full .dot-avail { background: #cc4455; }
.course-body { padding: 1rem 1.8rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.course-body h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; color: var(--text); margin-bottom: .4rem; }
.course-body .course-desc { color: var(--text-soft); font-size: .88rem; font-weight: 300; margin-bottom: 1.2rem; flex: 1; }
.course-meta { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.4rem; }
.course-meta-item {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; color: var(--text-muted);
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: 8px; padding: .3rem .7rem;
}
.course-meta-item svg { width: 13px; height: 13px; color: var(--green-400); flex-shrink: 0; }
.course-price { display: flex; justify-content: space-between; align-items: center; }
.course-price .price { font-family: var(--serif); font-size: 1.35rem; color: var(--green-500); }
.course-price .price small { font-family: var(--sans); font-size: .72rem; color: var(--text-muted); font-weight: 300; }
.btn-book { padding: .6rem 1.4rem; font-size: .82rem; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: 20px; padding: 2rem; box-shadow: var(--shadow-sm);
  transition: all .35s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-card .quote-mark {
  font-family: var(--serif); font-size: 3rem; color: var(--green-400);
  line-height: 1; opacity: .35; margin-bottom: .2rem;
}
.testimonial-card blockquote {
  font-family: var(--serif); font-size: 1.05rem; font-style: italic;
  color: var(--text); line-height: 1.8; margin-bottom: 1rem;
}
.testimonial-stars { color: #f0b429; font-size: .9rem; margin-bottom: .5rem; letter-spacing: 2px; }
.testimonial-card cite { font-family: var(--sans); font-style: normal; font-size: .82rem; color: var(--text-muted); }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: 18px; padding: 2rem; text-align: center;
  transition: all .4s; box-shadow: var(--shadow-sm);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 1.2rem;
  background: var(--green-100); display: flex; align-items: center;
  justify-content: center; border: 3px solid var(--border); overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar svg { width: 40px; height: 40px; color: var(--green-400); opacity: .4; }
.team-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--text); margin-bottom: .2rem; }
.team-role { font-size: .78rem; color: var(--green-400); font-weight: 600; letter-spacing: .5px; margin-bottom: .6rem; }
.team-card p { color: var(--text-soft); font-size: .85rem; font-weight: 300; line-height: 1.7; }
.team-specialties { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin-top: .8rem; }
.team-tag {
  font-size: .68rem; background: var(--green-100); color: var(--green-500);
  padding: .2rem .6rem; border-radius: 50px; font-weight: 500;
}

/* ── CONTACT ── */
.contact-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 8rem 5vw 4rem; position: relative; z-index: 1; }
.contact-wrapper { max-width: 1000px; width: 100%; display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-family: var(--serif); font-size: clamp(1.9rem,3.2vw,2.5rem); font-weight: 500; color: var(--text); line-height: 1.2; margin-bottom: 1rem; }
.contact-info h2 em { font-style: italic; color: var(--green-400); }
.contact-info > p { color: var(--text-soft); font-weight: 300; margin-bottom: 2.5rem; line-height: 1.8; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem; }
.info-icon {
  width: 42px; height: 42px; background: var(--green-100);
  border: 1px solid var(--border); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.info-text span { display: block; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: .1rem; }
.info-text p { font-size: .93rem; color: var(--text); }
.hours-box {
  margin-top: 2rem; background: var(--green-100);
  border: 1px solid var(--border); border-radius: 14px;
  padding: 1.2rem 1.4rem;
}
.hours-box h4 { font-family: var(--serif); font-size: 1rem; color: var(--text); margin-bottom: .4rem; }
.hours-box p { font-size: .85rem; color: var(--text-soft); font-weight: 300; line-height: 1.8; }
.contact-form-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: 22px; padding: 2.5rem; box-shadow: var(--shadow-lg);
}

/* ── FORMS ── */
.form-group { margin-bottom: 1.1rem; text-align: left; }
.form-group label { display: block; font-size: .76rem; font-weight: 600; letter-spacing: .3px; color: var(--text-soft); margin-bottom: .35rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg); border: 1px solid var(--border-light);
  border-radius: 12px; padding: .8rem 1rem; color: var(--text);
  font-family: var(--sans); font-size: .9rem; font-weight: 300;
  transition: border-color .3s, box-shadow .3s, background .3s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--green-400); background: var(--white);
  box-shadow: 0 0 0 4px var(--green-glow);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit { width: 100%; padding: .9rem; margin-top: .5rem; justify-content: center; }
.captcha-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.captcha-question {
  font-family: var(--serif); font-size: 1.1rem; color: var(--text);
  background: var(--green-100); padding: .5rem 1rem; border-radius: 10px;
  border: 1px solid var(--border); white-space: nowrap;
}
.captcha-row input { max-width: 100px; text-align: center; }
.privacy-check { font-weight: 300; font-size: .78rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: .5rem; cursor: pointer; margin-bottom: .5rem; }
.privacy-check input { margin-top: 3px; accent-color: var(--green-400); }
.privacy-check a { color: var(--green-400); text-decoration: underline; }

/* Success */
.success-message { display: none; text-align: center; padding: 2.5rem 1rem; }
.success-message.show { display: block; }
.success-icon {
  width: 64px; height: 64px; background: var(--green-100);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1rem;
}
.success-icon svg { width: 28px; height: 28px; stroke: var(--green-500); }
.success-message h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--text); margin-bottom: .3rem; }
.success-message p { color: var(--text-soft); font-size: .9rem; font-weight: 300; }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,58,40,.25); backdrop-filter: blur(6px);
  z-index: 200; align-items: center; justify-content: center; padding: 2rem;
}
.modal-overlay.open { display: flex; }
.modal-card {
  width: 100%; max-width: 460px; background: var(--bg-card);
  border: 1px solid var(--border-light); border-radius: 22px;
  padding: 2.5rem; position: relative; animation: fadeUp .35s ease both;
  box-shadow: 0 24px 60px rgba(0,58,40,.12);
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem; background: var(--bg);
  border: 1px solid var(--border-light); border-radius: 50%;
  width: 36px; height: 36px; display: flex; align-items: center;
  justify-content: center; cursor: pointer; color: var(--text-muted); transition: all .3s;
}
.modal-close:hover { background: var(--green-100); color: var(--text); }
.modal-close svg { width: 16px; height: 16px; }
.modal-card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--text); margin-bottom: .3rem; }
.modal-card .modal-sub { font-size: .85rem; color: var(--text-muted); font-weight: 300; margin-bottom: 1.8rem; }

/* ── LEGAL PAGES ── */
.legal-page { min-height: 100vh; padding: 8rem 5vw 4rem; display: flex; justify-content: center; position: relative; z-index: 1; }
.legal-content { max-width: 760px; width: 100%; animation: fadeUp .6s ease both; }
.legal-content h1 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 500; color: var(--text); margin-bottom: .5rem; }
.legal-content .legal-updated { font-size: .78rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.legal-content h2 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; color: var(--green-400); margin-top: 2.2rem; margin-bottom: .6rem; }
.legal-content h3 { font-size: .95rem; font-weight: 600; color: var(--text); margin-top: 1.5rem; margin-bottom: .4rem; }
.legal-content p, .legal-content li { font-size: .9rem; font-weight: 300; color: var(--text-soft); line-height: 1.85; margin-bottom: .6rem; }
.legal-content ul { padding-left: 1.2rem; margin-bottom: .8rem; }
.legal-content li { margin-bottom: .3rem; }
.legal-content a { color: var(--green-400); }
.legal-content a:hover { text-decoration: underline; }
.legal-content a.btn { color: revert; text-decoration: none; }
.legal-content a.btn-primary { color: var(--white); }
.legal-content a.btn-glass { color: var(--green-400); }
.legal-content .legal-box { background: var(--green-100); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem 1.8rem; margin: 1.5rem 0; }
.legal-content .legal-box p { margin-bottom: .3rem; }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border-light);
  padding: 3rem 5vw 2rem;
  position: relative; z-index: 1;
}
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.footer-col h4 { font-family: var(--serif); font-size: 1.05rem; color: var(--text); margin-bottom: 1rem; }
.footer-col p, .footer-col li { font-size: .85rem; color: var(--text-soft); font-weight: 300; line-height: 1.8; }
.footer-col ul { list-style: none; }
.footer-col a { color: var(--text-soft); transition: color .3s; }
.footer-col a:hover { color: var(--green-400); }
.footer-praxis-image { width: 100%; max-width: 200px; height: auto; border-radius: 10px; margin-top: 1rem; }
.footer-social { display: flex; gap: .8rem; margin-top: .5rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green-100); display: flex; align-items: center;
  justify-content: center; color: var(--green-400); transition: all .3s;
}
.footer-social a:hover { background: var(--green-400); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  max-width: 1080px; margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid var(--border-light);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .78rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); transition: color .3s; }
.footer-bottom a:hover { color: var(--green-400); }

/* ── 404 ── */
.error-404 {
  min-height: 80vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 8rem 5vw 4rem; position: relative; z-index: 1;
}
.error-404 h1 { font-family: var(--serif); font-size: clamp(4rem, 10vw, 8rem); color: var(--green-100); line-height: 1; }
.error-404 h2 { font-family: var(--serif); font-size: 1.6rem; color: var(--text); margin-bottom: 1rem; }
.error-404 p { color: var(--text-soft); font-weight: 300; margin-bottom: 2rem; }

/* ── ADMIN NOTICE ── */
.nhp-admin-notice {
  background: var(--green-100); border: 1px dashed var(--border);
  border-radius: 14px; padding: 2rem; text-align: center;
  color: var(--text-soft); font-size: .9rem;
}
.nhp-admin-notice a { color: var(--green-400); font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-menu {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: rgba(245,255,252,.96);
    backdrop-filter: blur(24px); padding: 1.5rem 5vw; gap: 1rem;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-menu.open { display: flex; }
  .hamburger { display: block; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { max-height: 300px; }
  .portrait-ring { width: 150px; height: 150px; }
  .courses-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured { grid-row: span 1; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .site-nav { padding: .8rem 4vw; }
  .hero { padding: 6rem 4vw 3rem; }
  .nhp-section { padding: 3rem 4vw; }
  .services-grid, .team-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
