/* =========================================================
   BayerwaldVet – Hauptstylesheet
   Farbpalette: Waldgrün aus dem Logo
   ========================================================= */

/* ── CSS Custom Properties ── */
:root {
  --green-dark:    #2d5239;
  --green-primary: #3d6e4f;
  --green-medium:  #4f8c64;
  --green-light:   #7ab08a;
  --green-pale:    #c8e0d0;
  --green-bg:      #f0f5f2;

  --text-dark:     #1a2620;
  --text-medium:   #3a4a40;
  --text-light:    #6b7e72;
  --text-muted:    #9aafa4;

  --white:         #ffffff;
  --off-white:     #f8faf9;
  --border:        #dde8e2;
  --shadow-sm:     0 2px 8px rgba(45, 82, 57, 0.08);
  --shadow-md:     0 8px 24px rgba(45, 82, 57, 0.12);
  --shadow-lg:     0 20px 60px rgba(45, 82, 57, 0.18);

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  --transition:    0.25s ease;
  --transition-md: 0.4s ease;

  --font-body:     'Inter', system-ui, -apple-system, sans-serif;
  --font-display:  'Playfair Display', Georgia, serif;

  --nav-height:    72px;
  --container:     1200px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--green-dark); }

ul { list-style: none; }

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

/* ── Section Basics ── */
.section { padding: 96px 0; }

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

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--green-bg);
  color: var(--green-primary);
  border: 1px solid var(--green-pale);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title.left { text-align: left; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(61, 110, 79, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

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

.btn-lg { padding: 14px 32px; font-size: 1.0rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ── NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition-md), box-shadow var(--transition-md);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  position: relative;
}

.logo-img {
  height: 100px;
  width: auto;
  transition: opacity var(--transition);
}

.logo-img-default {
  display: none;
}

.site-header.scrolled .logo-img-default {
  display: block;
}

.site-header.scrolled .logo-img-neg {
  display: none;
}

.nav-logo:hover .logo-img { opacity: 0.85; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: all var(--transition);
}
.site-header.scrolled .nav-link { color: var(--text-medium); }
.nav-link:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.site-header.scrolled .nav-link:hover {
  background: var(--green-bg);
  color: var(--green-primary);
}

.nav-cta {
  background: var(--white);
  color: var(--green-primary) !important;
  font-weight: 600;
  margin-left: 8px;
  padding: 9px 20px;
  border-radius: 100px;
}
.site-header.scrolled .nav-cta {
  background: var(--green-primary);
  color: var(--white) !important;
}
.nav-cta:hover {
  background: var(--green-bg) !important;
  color: var(--green-dark) !important;
  transform: translateY(-1px);
}
.site-header.scrolled .nav-cta:hover {
  background: var(--green-dark) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--text-dark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--green-medium) 100%);
}

.hero-bg { position: absolute; inset: 0; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(30, 60, 40, 0.85) 0%,
    rgba(45, 82, 57, 0.7) 50%,
    rgba(61, 110, 79, 0.5) 100%
  );
}

.hero-shapes { position: absolute; inset: 0; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.shape-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -150px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--green-pale);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition);
}
.info-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateX(4px);
}
.info-card-emergency { border-color: rgba(255,160,80,0.5); background: rgba(255,140,40,0.12); }

.info-card-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.info-card > div:last-child {
  display: flex; flex-direction: column; gap: 2px;
}
.info-card strong {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}
.info-card span {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  line-height: 1.5;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── LEISTUNGEN ── */
.leistungen-section { background: var(--white); }

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

.leistung-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--transition-md);
  position: relative;
  overflow: hidden;
}
.leistung-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-md);
}
.leistung-card:hover {
  border-color: var(--green-pale);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.leistung-card:hover::before { transform: scaleX(1); }

.leistung-icon {
  width: 64px; height: 64px;
  background: var(--green-bg);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--green-primary);
  transition: all var(--transition);
}
.leistung-card:hover .leistung-icon {
  background: var(--green-primary);
  color: var(--white);
}

.leistung-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.leistung-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.leistung-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.leistung-list li {
  font-size: 0.85rem;
  color: var(--text-medium);
  padding-left: 16px;
  position: relative;
}
.leistung-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-medium);
  font-size: 0.8rem;
}

/* ── TIER-TYPEN ── */
.tiere-section {
  background: var(--green-dark);
  padding: 48px 0;
}

.tiere-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.tier-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: default;
}
.tier-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}
.tier-icon { font-size: 2.5rem; line-height: 1; }
.tier-item span {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── TEAM ── */
.team-section { background: var(--off-white); }

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-md);
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.team-avatar {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-avatar-1 { background: linear-gradient(135deg, #3d6e4f 0%, #5a8f6b 100%); color: var(--white); }
.team-avatar-2 { background: linear-gradient(135deg, #2d5239 0%, #3d6e4f 100%); color: var(--white); }
.team-avatar-3 { background: linear-gradient(135deg, #4f8c64 0%, #7ab08a 100%); color: var(--white); }

.team-info { padding: 28px; }
.team-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.team-role {
  display: block;
  color: var(--green-primary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.team-info p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.team-tags span {
  padding: 4px 10px;
  background: var(--green-bg);
  color: var(--green-primary);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── STATS ── */
.stats-section {
  background: var(--green-primary);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item { padding: 16px; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number::after { content: '+'; }
.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* ── PRAXIS ── */
.praxis-section { background: var(--white); }

.praxis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.praxis-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 1.0rem;
}

.praxis-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.praxis-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-medium);
  font-size: 0.95rem;
}
.praxis-features li svg { color: var(--green-primary); flex-shrink: 0; }

.praxis-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.praxis-img-large { grid-column: 1 / -1; }

.praxis-img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--green-bg);
  border: 1px solid var(--border);
}
.praxis-img-large { height: 220px; }
.praxis-img-card:not(.praxis-img-large) { height: 150px; }

.praxis-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  color: var(--green-light);
}
.praxis-img-placeholder span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── BOOKING ── */
.booking-section {
  background: var(--off-white);
  position: relative;
}

.booking-wrapper {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.booking-wrapper-external {
  padding: 40px 32px;
}

.booking-external-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.booking-external-note {
  color: var(--text-light);
  font-size: 0.9rem;
}

.booking-external-help {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 560px;
  line-height: 1.6;
}

.terminvet-button {
  width: 140px;
  cursor: pointer;
}

.booking-fallback-link {
  margin-top: 4px;
}

/* Steps indicator */
.booking-steps {
  display: flex;
  align-items: center;
  padding: 32px 40px 24px;
  background: var(--green-dark);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all var(--transition);
  border: 2px solid rgba(255,255,255,0.2);
}
.step span {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}
.step.active .step-circle {
  background: var(--white);
  color: var(--green-primary);
  border-color: var(--white);
}
.step.active span { color: var(--white); }
.step.done .step-circle {
  background: var(--green-medium);
  color: var(--white);
  border-color: var(--green-medium);
}
.step.done span { color: rgba(255,255,255,0.7); }

.step-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.2);
  margin: 0 12px;
  margin-bottom: 20px;
}

/* Booking body */
.booking-body { padding: 40px; }

.booking-step-content {
  display: none;
  animation: fadeSlide 0.35s ease;
}
.booking-step-content.active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 32px;
}

/* Form elements */
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 8px;
}
.form-label small { font-weight: 400; color: var(--text-muted); }

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(61, 110, 79, 0.12);
}
.form-input.error { border-color: #e53e3e; }
.form-textarea { resize: vertical; min-height: 100px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-light);
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--green-primary);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}

/* Tier select */
.tier-select-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.tier-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  color: var(--text-medium);
  font-size: 0.8rem;
  font-weight: 500;
}
.tier-btn:hover {
  border-color: var(--green-primary);
  background: var(--green-bg);
  color: var(--green-primary);
}
.tier-btn.selected {
  border-color: var(--green-primary);
  background: var(--green-primary);
  color: var(--white);
}
.tier-emoji { font-size: 1.8rem; line-height: 1; }

/* Reason select */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.reason-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-medium);
  text-align: left;
}
.reason-btn:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: var(--green-bg);
}
.reason-btn.selected {
  border-color: var(--green-primary);
  background: var(--green-bg);
  color: var(--green-primary);
}
.reason-btn svg { flex-shrink: 0; }

/* Calendar */
.calendar-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.calendar-container {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--green-dark);
  color: var(--white);
}

.cal-month-year {
  font-weight: 600;
  font-size: 0.95rem;
}

.cal-nav {
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--white);
  cursor: pointer;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.cal-nav:hover { background: rgba(255,255,255,0.2); }

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 8px 8px 0;
  background: var(--green-bg);
}
.calendar-weekdays span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-primary);
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 8px;
  gap: 2px;
  background: var(--white);
}

.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  background: none;
  font-family: var(--font-body);
  color: var(--text-dark);
}
.cal-day:hover:not(:disabled):not(.other-month) {
  background: var(--green-bg);
  color: var(--green-primary);
}
.cal-day.today {
  background: var(--green-bg);
  color: var(--green-primary);
  font-weight: 700;
}
.cal-day.selected {
  background: var(--green-primary) !important;
  color: var(--white) !important;
  font-weight: 700;
}
.cal-day.other-month { color: var(--text-muted); cursor: default; }
.cal-day:disabled, .cal-day.past {
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.45;
}
.cal-day.has-slots { position: relative; }
.cal-day.has-slots::after {
  content: '';
  position: absolute;
  bottom: 3px;
  width: 4px; height: 4px;
  background: var(--green-medium);
  border-radius: 50%;
}
.cal-day.selected.has-slots::after { background: rgba(255,255,255,0.7); }

/* Time slots */
.time-slots-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.time-slots-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-medium);
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.time-slot {
  padding: 10px 8px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-medium);
  text-align: center;
  transition: all var(--transition);
}
.time-slot:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: var(--green-bg);
}
.time-slot.selected {
  border-color: var(--green-primary);
  background: var(--green-primary);
  color: var(--white);
}
.time-slot.booked {
  border-color: var(--border);
  background: var(--off-white);
  color: var(--text-muted);
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Step actions */
.step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.step-actions .btn-outline {
  color: var(--text-medium);
  border-color: var(--border);
}
.step-actions .btn-outline:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: var(--green-bg);
}

/* Confirmation */
.confirmation {
  text-align: center;
  padding: 24px 0;
}
.confirmation-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green-primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.confirmation h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.confirmation p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 24px;
}
.confirmation-details {
  background: var(--green-bg);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px auto;
  max-width: 420px;
  text-align: left;
}
.confirmation-details p {
  margin: 0;
  text-align: left;
  font-size: 0.9rem;
}
.confirmation-details .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--green-pale);
  font-size: 0.9rem;
}
.confirmation-details .detail-row:last-child { border-bottom: none; }
.confirmation-details .detail-label {
  color: var(--text-light);
  font-weight: 500;
}
.confirmation-details .detail-value {
  color: var(--text-dark);
  font-weight: 600;
  text-align: right;
}
.confirmation-note {
  color: var(--text-muted) !important;
  font-size: 0.875rem !important;
  margin-bottom: 32px !important;
}

/* ── REVIEWS ── */
.reviews-section {
  background: var(--off-white);
  padding: 96px 0;
}

.reviews-slider {
  overflow: hidden;
  margin: 0 -8px;
  position: relative;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px;
}

.review-card {
  min-width: calc(50% - 16px);
  margin: 0 8px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.review-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card > p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer > div {
  display: flex; flex-direction: column; gap: 2px;
}
.reviewer strong { font-size: 0.9rem; color: var(--text-dark); }
.reviewer span { font-size: 0.8rem; color: var(--text-muted); }

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.review-nav {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-medium);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.review-nav:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
}

.review-dots {
  display: flex;
  gap: 8px;
}
.review-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.review-dot.active {
  background: var(--green-primary);
  width: 24px;
  border-radius: 4px;
}

/* ── KONTAKT ── */
.kontakt-section { background: var(--white); }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kontakt-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.kontakt-card:hover {
  border-color: var(--green-pale);
  box-shadow: var(--shadow-sm);
}
.kontakt-icon {
  width: 44px; height: 44px;
  background: var(--green-bg);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-primary);
  flex-shrink: 0;
}
.kontakt-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.kontakt-card p {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.6;
}
.kontakt-card p.small { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.kontakt-card a { color: var(--green-primary); font-weight: 500; }

.oeffnungszeiten {
  border-collapse: collapse;
  font-size: 0.875rem;
}
.oeffnungszeiten td {
  padding: 3px 16px 3px 0;
  color: var(--text-medium);
}
.oeffnungszeiten td:first-child { color: var(--text-light); }

.kontakt-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--green-bg);
  border: 1px solid var(--border);
  max-height: 460px;
}
.map-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--green-light);
  padding: 32px;
  text-align: center;
}
.map-placeholder p { color: var(--text-light); font-size: 1rem; font-weight: 500; }
.map-placeholder small { color: var(--text-muted); font-size: 0.85rem; }

/* ── FOOTER ── */
.site-footer { background: var(--text-dark); }

.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 48px;
}

.footer-brand { }
.footer-logo {
  height: 150px;
  width: 100vh;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact-info h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-contact-info p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
.footer-contact-info a { color: rgba(255,255,255,0.6); }
.footer-contact-info a:hover { color: var(--white); }
.footer-cta { margin-top: 20px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── IMPRESSUM PAGE ── */
.impressum-section {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 35%);
}

.impressum-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.impressum-card p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 22px;
}

.impressum-card p:last-of-type {
  margin-bottom: 0;
}

.impressum-meta {
  margin-top: 48px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.impressum-stand {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
}

.impressum-actions {
  margin-top: 28px;
  text-align: center;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.legal-content h2 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p {
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  margin: 0 0 14px 22px;
  color: var(--text-medium);
}

.legal-content li {
  margin-bottom: 5px;
}

.itk-meta {
  margin-top: 48px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.itk-logo-wrap {
  display: inline-block;
  vertical-align: top;
}

.itk-logo {
  margin-top: -20px;
  border-style: none;
  max-width: 100%;
}

.itk-stand {
  margin-left: 5px;
  float: right;
  white-space: nowrap;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.itk-clear {
  clear: right;
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* ── Utility ── */
.link { color: var(--green-primary); text-decoration: underline; }

/* ── Toast Notifications ── */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--text-dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.error { background: #c53030; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-cards { flex-direction: row; flex-wrap: wrap; }
  .info-card { flex: 1; min-width: 200px; }

  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
  .tiere-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .praxis-grid { grid-template-columns: 1fr; gap: 48px; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .calendar-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section { padding: 64px 0; }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(30, 45, 36, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition-md);
    pointer-events: none;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .nav-cta { text-align: center; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: 2.2rem; }
  .hero-content { padding-bottom: 80px; }
  .info-card { flex-direction: column; text-align: center; }

  .leistungen-grid { grid-template-columns: 1fr; }
  .tiere-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .tier-select-grid { grid-template-columns: repeat(3, 1fr); }
  .reason-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .booking-steps { padding: 20px; flex-wrap: wrap; gap: 8px; }
  .booking-body { padding: 24px; }
  .step span { display: none; }
  .step-line { display: none; }

  .review-card { min-width: calc(100% - 16px); }

  .impressum-card {
    padding: 24px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom .container { flex-direction: column; gap: 12px; text-align: center; }

  .scroll-top { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }

  .tiere-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-select-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-grid { grid-template-columns: 1fr; }
  .time-slots-grid { grid-template-columns: repeat(2, 1fr); }
}
