/* ============================================
   DOGCELLENT - Neue Version 2026
   Farbschema: Anthrazit + Gold + Weiß
   Passend zum Logo (Goldbraun/Cognac + Grau)
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --gold: #CC8A2E;
  --gold-light: #D9A54A;
  --gold-dark: #A87020;
  --anthracite: #2D2D2D;
  --anthracite-light: #4A4A4A;
  --charcoal: #3A3A3A;
  --text-dark: #1A1A1A;
  --text-body: #4A4A4A;
  --text-light: #6B6B6B;
  --bg-white: #FFFFFF;
  --bg-cream: #FAF8F5;
  --bg-warm: #F5F0EB;
  --bg-dark: #2D2D2D;
  --border-light: #E8E3DD;
  --border-gold: rgba(204, 138, 46, 0.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(204, 138, 46, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-dark);
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: 3.2rem; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.35rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Overline (kleine Label-Texte) --- */
.overline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* --- Section Styling --- */
.section {
  padding: 100px 0;
}

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

.section-cream {
  background: var(--bg-cream);
}

.section-warm {
  background: var(--bg-warm);
}

.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section-dark p {
  color: rgba(255,255,255,0.85);
}

.section-dark .overline {
  color: var(--gold-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
}

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

.logo img {
  height: 60px;
  width: auto;
}

/* --- Navigation --- */
.nav-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.main-nav ul li a:hover {
  color: var(--gold);
}

.main-nav ul li a.active {
  color: var(--gold);
}

/* Header CTA Button */
.header-cta {
  margin-left: 16px;
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--anthracite);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 1px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 84px;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45,45,45,0.85) 0%, rgba(45,45,45,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: 40px 24px;
}

.hero-content .overline {
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--gold-light);
}

.hero-subline {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-top: 1.5rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-trust strong {
  color: var(--gold-light);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--anthracite);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--bg-cream);
  border-color: var(--bg-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--anthracite);
  color: #fff;
  border-color: var(--anthracite);
}

.btn-dark:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   4 SÄULEN / LEISTUNGS-KACHELN
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-warm);
  border-radius: 50%;
  font-size: 32px;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: #fff;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-card .btn {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* ============================================
   FOKUS-SEKTION (Showhandling Deep Dive)
   ============================================ */
.focus-section {
  position: relative;
  overflow: hidden;
}

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

.focus-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.focus-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.focus-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.focus-text h2 {
  margin-bottom: 1.5rem;
}

.focus-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.focus-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-light);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   LAGOTTO-WELT
   ============================================ */
.lagotto-section {
  position: relative;
}

.lagotto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.lagotto-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.lagotto-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.lagotto-card-image {
  height: 280px;
  overflow: hidden;
}

.lagotto-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lagotto-card:hover .lagotto-card-image img {
  transform: scale(1.05);
}

.lagotto-card-content {
  padding: 32px;
}

.lagotto-card-content h3 {
  margin-bottom: 12px;
}

.lagotto-card-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ============================================
   ÜBER UNS
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-text .overline {
  margin-bottom: 1rem;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 2rem 0;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 100px 0;
}

.testimonials-section h2 {
  text-align: center;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  min-height: 250px;
}

.testimonial {
  display: none;
  text-align: center;
  padding: 40px;
}

.testimonial.active {
  display: block;
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--text-body);
}

.testimonial-author {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
}

.testimonial-location {
  font-family: var(--font-body);
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 4px;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.testimonial-nav .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-nav .dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================
   PAGE HEADER (Unterseiten)
   ============================================ */
.page-header {
  background-size: cover;
  background-position: center;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 84px;
  position: relative;
  text-align: center;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45,45,45,0.8) 0%, rgba(45,45,45,0.5) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
}

.page-header h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   TRAINING MODULE (Showhandling-Seite)
   ============================================ */
.pricing-highlight {
  background: var(--bg-warm);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-bottom: 50px;
}

.pricing-highlight .price-main {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.pricing-highlight .price-unit {
  font-size: 1rem;
  color: var(--text-light);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.module-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.module-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.module-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.module-card p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.module-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.module-card ul li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
}

.module-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Infobox */
.info-box {
  background: var(--bg-warm);
  padding: 28px;
  border-radius: var(--radius-md);
  margin: 30px 0;
  border-left: 4px solid var(--gold);
}

.info-box h4 {
  color: var(--gold-dark);
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 700;
}

.info-box ul {
  list-style: none;
  padding: 0;
}

.info-box ul li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.info-box ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============================================
   PREISTABELLE (Grooming)
   ============================================ */
.price-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.95rem;
}

.price-table thead {
  background: var(--anthracite);
  color: #fff;
}

.price-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.price-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.price-table tbody tr:nth-child(even) {
  background: var(--bg-cream);
}

.price-table tbody tr:hover {
  background: var(--bg-warm);
}

.price-table tbody tr td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

/* ============================================
   KONTAKT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

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

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 20px;
  transition: var(--transition);
  background: var(--bg-white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(204,138,46,0.1);
}

.contact-form textarea {
  height: 160px;
  resize: vertical;
}

.contact-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.contact-form .checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--gold);
}

.contact-form .checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-info-card {
  background: var(--bg-warm);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-info-card h3 {
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail .contact-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-detail .contact-text span,
.contact-detail .contact-text a {
  font-size: 1rem;
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1EBE57;
  border-color: #1EBE57;
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--anthracite);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.6);
}

.footer-brand .logo img {
  height: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

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

.footer-legal a {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

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

/* ============================================
   IMPRESSUM / RECHTLICHE SEITEN
   ============================================ */
.legal-section {
  padding: 80px 0;
}

.legal-section h3 {
  color: var(--anthracite);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
}

.legal-section p {
  line-height: 1.8;
}

/* ============================================
   ERNÄHRUNGSBERATUNG
   ============================================ */
.nutrition-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.nutrition-feature {
  text-align: center;
  padding: 32px 24px;
}

.nutrition-feature .feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-warm);
  border-radius: 50%;
  font-size: 30px;
}

.nutrition-feature h4 {
  margin-bottom: 8px;
}

.nutrition-feature p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }

  .section { padding: 70px 0; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .focus-grid,
  .about-grid {
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .nav-toggle {
    display: block;
  }

  .nav-area {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 80px 24px 40px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    align-items: flex-start;
    z-index: 999;
  }

  .nav-area.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .main-nav ul li a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 1rem;
  }

  .main-nav ul li a::after {
    display: none;
  }

  .header-cta {
    margin-left: 0;
    margin-top: 24px;
    width: 100%;
  }

  .header-cta .btn {
    width: 100%;
    text-align: center;
  }

  /* Hero */
  .hero {
    min-height: 75vh;
    margin-top: 70px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-subline {
    font-size: 1rem;
  }

  /* Grids */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .focus-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .focus-image img,
  .about-image img {
    height: 350px;
  }

  .focus-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .lagotto-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Page Header */
  .page-header {
    min-height: 250px;
    margin-top: 70px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .section { padding: 60px 0; }

  .module-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  html { font-size: 15px; }

  .hero {
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-trust {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .focus-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial {
    padding: 20px 10px;
  }

  .testimonial-text {
    font-size: 1.05rem;
  }

  .about-image-accent {
    display: none;
  }

  .price-table th,
  .price-table td {
    padding: 12px 10px;
    font-size: 0.85rem;
  }
}
