/* ============================================================
   Fonts (lokal)
   ============================================================ */

@font-face {
  font-family: 'Fredoka';
  src: url('../fonts/Fredoka/Fredoka-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito/Nunito-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito/Nunito-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}

/* ============================================================
   CSS Reset & Base
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   CSS Variables
   ============================================================ */

:root {
  --teal: #009A9A;
  --teal-light: #E6F7F7;
  --teal-dark: #007878;
  --ink: #1A1A1A;
  --ink-soft: #555555;
  --ink-muted: #999999;
  --surface: #F8F8F8;
  --white: #FFFFFF;
  --border: #E8E8E8;
  --shadow-sm: 0 2px 8px rgba(0,154,154,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.10);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --nav-height: 88px;
  --max-width: 1100px;
}

/* ============================================================
   Typography
   ============================================================ */

body {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', sans-serif;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; }

p {
  color: var(--ink-soft);
  max-width: 65ch;
}

/* ============================================================
   Layout Utilities
   ============================================================ */

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

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.teal-bg {
  background: var(--teal-light);
}

.teal-section {
  background: var(--teal);
  color: var(--white);
}

/* ============================================================
   Navbar
   ============================================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 150ms ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 62px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 150ms ease, background 150ms ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 150ms ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--teal);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.lang-btn {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-muted);
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  transition: color 150ms ease;
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--teal);
}

.lang-btn.active {
  font-weight: 800;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   Hero (Home)
   ============================================================ */

.hero {
  min-height: 88vh;
  background: linear-gradient(160deg, var(--teal-light) 0%, var(--white) 55%);
  display: flex;
  align-items: center;
  padding: 80px 0;

}

.hero--page {
  min-height: 60vh;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-content .badge-pill {
  margin-bottom: 28px;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 46ch;
}

.hero-content .hero-cta {
  justify-content: flex-start;
}

.hero-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 0 28px;
  border-radius: var(--radius-sm);
}

.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  animation: hero-float 4s ease-in-out infinite;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--teal);
  opacity: 0.25;
  transform: translate(14px, 14px);
  z-index: 0;
}

.hero-photo-placeholder,
.hero-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-photo-placeholder {
  background: linear-gradient(160deg, #c8ebeb 0%, #a0d8d8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--teal-dark);
}

.hero-photo-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.5;
}

.hero-photo-placeholder span {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.6;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0;
  border-radius: 0;
  margin-bottom: 24px;
  letter-spacing: 0;
}

.badge-pill::before {
  content: '';
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,154,154,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(0,154,154,0); }
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   Page Hero (inner pages)
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 100%);
  padding: 64px 0 56px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.page-hero p {
  margin: 0 auto;
  font-size: 1.05rem;
}

.page-hero-photo {
  position: relative;
  padding: 88px 0 80px;
  text-align: center;
  overflow: hidden;
  background: var(--ink);
}

.page-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-training.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,154,154,0.55) 0%, rgba(26,26,26,0.45) 100%);
}

.page-hero-photo .container {
  position: relative;
  z-index: 1;
}

.page-hero-photo h1,
.page-hero-photo p {
  color: var(--white);
}

.page-hero-photo h1 {
  margin-bottom: 12px;
}

.page-hero-photo p {
  margin: 0 auto;
  font-size: 1.05rem;
  opacity: 0.92;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 100px;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn-outline {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
  transition: color 0.5s ease, transform 150ms ease, box-shadow 150ms ease;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: translateX(-101%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.btn-outline:hover {
  background: transparent;
  color: var(--white);
  transform: none;
  box-shadow: none;
}

.btn-outline:hover::before {
  transform: translateX(0);
}

.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--teal-light);
}

/* ============================================================
   Cards
   ============================================================ */

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  padding: 28px;
  transition: box-shadow 150ms ease, transform 150ms ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ============================================================
   Services Grid
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  text-align: center;
  padding: 36px 28px;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--teal-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--teal);
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
}

.service-card p {
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ============================================================
   Timeline
   ============================================================ */

.timeline {
  padding: 80px 0;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.timeline-wave {
  position: absolute;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  top: 7px;
  height: 20px;
  pointer-events: none;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s ease-out;
}

.timeline-steps.line-animate .timeline-wave {
  clip-path: inset(0 0% 0 0);
}

.timeline-wave-path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 6;
  opacity: 0.5;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.timeline-step h4 {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  line-height: 1.5;
}

/* ============================================================
   Facts Row
   ============================================================ */

.facts-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fact-item {
  text-align: center;
  padding: 32px 20px;
}

.fact-number {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--teal);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.fact-label {
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 500;
}

/* ============================================================
   Team Preview
   ============================================================ */

.team-preview {
  padding: 80px 0;
}

.team-preview-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.team-preview h2 {
  margin-bottom: 16px;
}

.team-preview p {
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

/* ============================================================
   CTA Section
   ============================================================ */

.cta-section {
  background: var(--teal);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* ============================================================
   Page About
   ============================================================ */

.about-sandra {
  padding: 80px 0;
}

.about-sandra-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 56px;
  align-items: start;
}

.photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--teal-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photo-placeholder svg {
  width: 56px;
  height: 56px;
  color: var(--teal);
  opacity: 0.4;
}

.photo-placeholder-circle {
  width: 120px;
  height: 120px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

.photo-placeholder-circle svg {
  width: 44px;
  height: 44px;
  color: var(--teal);
  opacity: 0.5;
}

.role-badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.since-badge {
  display: inline-block;
  background: var(--surface);
  color: var(--ink-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 12px;
  border: 1px solid var(--border);
}

.about-sandra-text h2 {
  margin-bottom: 8px;
}

.about-sandra-text p {
  margin-bottom: 28px;
  max-width: none;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.team-rows {
  display: flex;
  flex-direction: column;
}

.team-row {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.team-row:last-child {
  border-bottom: none;
}

.team-row--reverse {
  grid-template-columns: 1.8fr 1fr;
}

.team-row--reverse .team-row-photo {
  grid-column: 2;
  grid-row: 1;
}

.team-row--reverse .team-row-content {
  grid-column: 1;
  grid-row: 1;
}

.team-row-photo {
  position: relative;
}

.team-row-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: var(--teal);
  opacity: 0.25;
  transform: translate(14px, 14px);
  z-index: 0;
}

.team-row-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-md);
  display: block;
  box-shadow: var(--shadow-md);
}

.team-row-content h2 {
  margin: 8px 0 16px;
}

.team-row-content p {
  color: var(--ink-soft);
  line-height: 1.75;
  }

.visit-section {
  padding: 80px 0;
  text-align: center;
}

.visit-section h2 {
  margin-bottom: 16px;
}

.visit-section p {
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

/* ============================================================
   Pricing Page
   ============================================================ */

.prices-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
  align-items: start;
}

.included-card {
  padding: 36px;
}

.included-card h2 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.hours-card {
  padding: 36px;
  background: var(--teal);
  color: var(--white);
}

.hours-card h2 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.hours-days {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.hours-time {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}

.hours-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  max-width: none;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.pricing-table th {
  background: var(--teal);
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 16px 24px;
  text-align: left;
}

.pricing-table th:last-child {
  text-align: right;
}

.pricing-table td {
  padding: 16px 24px;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.pricing-table td:last-child {
  text-align: right;
  white-space: nowrap;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  color: var(--teal);
  font-weight: 600;
}

.pricing-table tr:nth-child(even) td {
  background: var(--surface);
}

.pricing-table tr.highlight td {
  background: var(--teal-light);
  border-left: 3px solid var(--teal);
}

.pricing-table tr.highlight td:last-child {
  color: var(--teal-dark);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.price-name {
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 3px;
}

.price-desc {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.vat-note {
  text-align: right;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 12px;
}

.page-downloads {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: var(--surface);
}

.page-downloads .container {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.page-downloads > .container > span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.page-downloads .downloads-grid {
  margin-top: 0;
  flex: 1;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.download-btn:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
  color: var(--teal);
}

.download-btn svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
}

/* ============================================================
   Training Page
   ============================================================ */

.training-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 16px;
}

.kursiv {
  font-style: italic;
}

.training-brand-badge span {
  font-weight: 700;
  color: var(--teal);
}

.page-hero-photo .training-brand-badge {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
}

.page-hero-photo .training-brand-badge span {
  color: var(--white);
}

/* Ziel & Philosophie — linker Akzentbalken */
.training-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
}

.principle-item {
  border-left: 3px solid var(--teal);
  padding-left: 28px;
}

.principle-item h3 {
  color: var(--ink);
  margin-bottom: 14px;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.principle-item p {
  color: var(--ink-soft);
  line-height: 1.75;
}

/* Trainingsbereiche — Icon Tiles */
.training-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.training-tile {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.training-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

.training-tile-icon {
  width: 40px;
  height: 40px;
  color: var(--teal);
}

.training-tile-icon svg {
  width: 100%;
  height: 100%;
}

.training-tile span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.4;
}

.training-sandra {
  padding: 80px 0;
}

.training-sandra .card {
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.training-contact-box {
  background: var(--teal-light);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
}

.training-contact-box h2 {
  margin-bottom: 24px;
}

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

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--ink);
}

.contact-detail-item svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
}

.contact-detail-item a {
  color: var(--teal);
  font-weight: 600;
  transition: color 150ms ease;
}

.contact-detail-item a:hover {
  color: var(--teal-dark);
}

/* ============================================================
   Gallery Page
   ============================================================ */

.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--teal-light);
  border: 1px solid rgba(0,154,154,0.15);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gallery-placeholder {
  text-align: center;
  color: var(--teal);
  opacity: 0.5;
}

.gallery-placeholder svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
}

.gallery-placeholder span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================================
   Contact Page
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap h2 {
  margin-bottom: 28px;
}

.availability-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--teal-light);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 40px;
}

.availability-notice svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.availability-notice p {
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.contact-intro {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 150ms ease, box-shadow 150ms ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,154,154,0.12);
}

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

.form-success {
  display: none;
  background: var(--teal-light);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 24px;
  color: var(--teal-dark);
  font-weight: 600;
  text-align: center;
}

.form-error {
  display: none;
  background: #fff5f5;
  border: 1.5px solid #dc2626;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: #dc2626;
  font-weight: 600;
  margin-top: 12px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  padding: 24px;
}

.info-card-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-card-title svg {
  width: 18px;
  height: 18px;
}

.info-card p {
  font-size: 0.92rem;
  max-width: none;
  white-space: pre-line;
}

.info-card a {
  color: var(--teal);
  font-weight: 600;
  transition: color 150ms ease;
}

.info-card a:hover {
  color: var(--teal-dark);
}

.ubahn-hint {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 6px;
}

.map-wrap {
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.osm-link {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  color: var(--ink-muted);
  padding: 6px 8px 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.osm-link:hover {
  color: var(--teal);
}

/* ============================================================
   Legal Pages (Impressum / Datenschutz)
   ============================================================ */

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--ink);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 16px;
  max-width: none;
  color: var(--ink-soft);
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  object-position: left;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  max-width: 26ch;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 150ms ease;
  width: fit-content;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: color 150ms ease, border-color 150ms ease;
}

.footer-social a:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

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

.footer-legal a {
  color: rgba(255,255,255,0.4);
  transition: color 150ms ease;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ============================================================
   Nav CTA
   ============================================================ */

.nav-links a.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 100px;
  transition: background 150ms ease;
}

.nav-links a.nav-cta:hover {
  background: var(--teal-dark);
  color: var(--white) !important;
}

.nav-links a.nav-cta::after { display: none; }

/* ============================================================
   Included Section (Was dabei ist)
   ============================================================ */

.included-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.included-content h2 {
  margin-bottom: 32px;
}

.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.6;
}

.included-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--teal-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23009A9A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20,6 9,17 4,12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

.included-photo {
  position: relative;
  aspect-ratio: 4/5;
}

.included-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--teal);
  opacity: 0.25;
  transform: translate(14px, 14px);
  z-index: 0;
}

.included-photo-placeholder,
.included-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.included-photo-placeholder {
  background: linear-gradient(160deg, #c8ebeb 0%, #a0d8d8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--teal-dark);
}

.included-photo-placeholder svg {
  width: 52px;
  height: 52px;
  opacity: 0.45;
}

.included-photo-placeholder span {
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.55;
}

/* ============================================================
   Problem Section
   ============================================================ */

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.problem-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid transparent;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.problem-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}

.problem-item:hover .problem-icon {
  animation: icon-bounce 400ms ease;
}

@keyframes icon-bounce {
  0%   { transform: translateY(0); }
  40%  { transform: translateY(-6px); }
  70%  { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

.problem-icon {
  width: 48px;
  height: 48px;
  color: var(--teal);
}

.problem-icon svg {
  width: 100%;
  height: 100%;
}

.problem-text {
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.6;
}

.problem-solution {
  color: var(--teal-dark);
  font-weight: 700;
  padding-top: 8px;
  border-top: 1.5px solid var(--teal-light);
}

/* ============================================================
   Gallery Teaser
   ============================================================ */

.gallery-teaser-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 480px;
}

.gallery-teaser-grid .gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,154,154,0.15);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.gallery-teaser-grid .gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-teaser-grid .gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gallery-teaser-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   Testimonials
   ============================================================ */

.reviews-section {
  overflow: hidden;
}

.reviews-marquee-outer {
  margin-top: 48px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.reviews-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviews-scroll 32s linear infinite;
}


@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
  max-width: none;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.9rem;
}

.review-author span {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 22px 28px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 28px 22px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   Pfotenabdruck-Trail
   ============================================================ */

.paw-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 9999;
  color: var(--teal);
  transform-origin: center center;
  animation: paw-fade 1.2s ease-out forwards;
  margin-left: -10px;
  margin-top: -10px;
}

.paw-trail svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@keyframes paw-fade {
  0%   { opacity: 0;    transform: scale(0.5) rotate(var(--rot)); }
  20%  { opacity: 0.28; transform: scale(1)   rotate(var(--rot)); }
  100% { opacity: 0;    transform: scale(1)   rotate(var(--rot)); }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  /* Navbar mobile */
  .nav-links {
    display: none;
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    overflow-y: auto;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a.active,
  .nav-links a:hover {
    background: var(--teal-light);
  }

  .hamburger {
    display: flex;
  }

  /* Grid overrides */
  .services-grid { grid-template-columns: 1fr; }
  .timeline-steps { grid-template-columns: repeat(2, 1fr); }
  .timeline-steps::before { display: none; }
  .timeline-wave { display: none; }
  .facts-row { grid-template-columns: repeat(2, 1fr); }
  .about-sandra-inner { grid-template-columns: 1fr; }
  .photo-placeholder { aspect-ratio: 3/2; }
  .team-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
  }
  .team-row--reverse .team-row-photo,
  .team-row--reverse .team-row-content {
    grid-column: 1;
    grid-row: auto;
  }
  .prices-top { grid-template-columns: 1fr; }
  .included-inner { grid-template-columns: 1fr; }
  .included-photo { aspect-ratio: 16/9; order: -1; }
  .problems-grid { grid-template-columns: 1fr; }
  .gallery-teaser-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .gallery-teaser-grid .gallery-item:first-child { grid-row: auto; }
  .gallery-teaser-grid .gallery-item img { height: 200px; }
  .training-principles { grid-template-columns: 1fr; }
  .training-tiles { grid-template-columns: repeat(2, 1fr); }
  .training-sandra .card { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .contact-layout { grid-template-columns: 1fr; }
  .downloads-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .hero {
    min-height: auto;
    padding: 60px 0 48px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content .hero-cta {
    justify-content: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-logo {
    margin: 0 auto 28px;
  }

  .hero-image-wrap {
    aspect-ratio: 16/9;
    order: -1;
  }
}

@media (max-width: 480px) {
  .timeline-steps { grid-template-columns: 1fr; }
  .training-tiles { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .gallery-teaser-grid { grid-template-columns: 1fr; height: auto; }
  .gallery-teaser-grid .gallery-item img { height: 240px; }
  .facts-row { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; align-items: center; }
  .footer-main { grid-template-columns: 1fr; }
}

/* ============================================================
   Utility
   ============================================================ */
.is-hidden          { display: none; }
.honeypot           { display: none; }
.marlene-photo      { object-position: 70% top; }
.gallery-teaser-cta { text-align: center; margin-top: 40px; }
.form-success-icon  { width: 32px; height: 32px; margin: 0 auto 12px; display: block; }
.osm-embed          { border: 0; border-radius: var(--radius-md); }
.link-teal          { color: var(--teal); }
