/* ============================================================
   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: 70px;
  --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: 48px;
  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-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: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 0 28px;
  border-radius: var(--radius-sm);
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}

.hero-photo-placeholder,
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.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-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: var(--teal);
  opacity: 0.3;
  z-index: 0;
}

.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-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.team-card h3 {
  margin-bottom: 4px;
}

.team-card p {
  font-size: 0.92rem;
  margin: 0 auto;
  max-width: 38ch;
}

.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;
}

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

.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);
}

.training-goals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.training-goals .card {
  padding: 32px;
}

.training-goals .card h3 {
  margin-bottom: 12px;
  color: var(--teal);
}

.training-goals .card p {
  max-width: none;
}

.training-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.training-area-badge {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid rgba(0,154,154,0.15);
  transition: background 150ms ease, transform 150ms ease;
}

.training-area-badge:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

.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);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,154,154,0.15);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.gallery-item:nth-child(3n+2) {
  aspect-ratio: 3/4;
}

.gallery-item:nth-child(5n+3) {
  aspect-ratio: 1/1;
}

.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;
}

.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: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 150ms ease;
}

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

/* ============================================================
   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; }
  .facts-row { grid-template-columns: repeat(2, 1fr); }
  .about-sandra-inner { grid-template-columns: 1fr; }
  .photo-placeholder { aspect-ratio: 3/2; }
  .team-cards { grid-template-columns: 1fr; }
  .prices-top { grid-template-columns: 1fr; }
  .training-goals { grid-template-columns: 1fr; }
  .training-areas-grid { 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-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { flex-wrap: wrap; justify-content: 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-areas-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .facts-row { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; align-items: center; }
}
