/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: #5a4a3a;
  background: #FDF8F0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; }
.container-medium { max-width: 960px; }
.text-center { text-align: center; }
.mb-large { margin-bottom: 56px; }

/* ===== SECTIONS ===== */
.section { padding: 80px 24px; }
.section-cream { background: #FDF8F0; }
.section-warm { background: #f5ede3; }
.section-green { background: #3D5A40; }

@media (min-width: 768px) {
  .section { padding: 112px 24px; }
}

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.2;
}
.section-title.green { color: #3D5A40; }
.section-title.cream { color: #FDF8F0; }
.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: #C46B4B;
  margin-bottom: 24px;
}
.label {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.label.gold { color: #C9A96E; }
.body-text {
  font-size: 1rem;
  color: #5a4a3a;
  line-height: 1.7;
  margin-bottom: 24px;
}
.intro-text {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #5a4a3a;
  line-height: 1.7;
  margin-bottom: 40px;
}
.accent-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-style: italic;
  color: rgba(90, 74, 58, 0.8);
  border-left: 2px solid rgba(201, 169, 110, 0.5);
  padding-left: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: #C9A96E;
  color: #fff;
}
.btn-gold:hover {
  background: #b8963d;
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}
.btn-green {
  background: #3D5A40;
  color: #fff;
}
.btn-green:hover {
  background: #2d4430;
  box-shadow: 0 8px 24px rgba(61, 90, 64, 0.3);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.3), #FDF8F0);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 24px;
  max-width: 720px;
}
.hero-label {
  font-family: 'Lato', sans-serif;
  color: #E8D5C4;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
}
.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #E8D5C4;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.5;
}
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: block; } }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== QUOTE ===== */
.quote-block {
  position: relative;
  padding: 40px 0;
}
.quote-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.4), transparent);
}
.quote-icon {
  width: 32px;
  height: 32px;
  color: rgba(201, 169, 110, 0.4);
  margin: 0 auto 16px;
  display: block;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: #3D5A40;
  line-height: 1.5;
}
.quote-author {
  margin-top: 16px;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: #C9A96E;
  letter-spacing: 0.05em;
}

/* ===== TWO COLUMN ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.two-col-reverse .two-col-content { order: 2; }
.two-col-reverse .two-col-img { order: 1; }
@media (min-width: 1024px) {
  .two-col-reverse .two-col-content { order: 1; }
  .two-col-reverse .two-col-img { order: 2; }
}
.img-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.feature-card-green {
  background: rgba(61, 90, 64, 0.05);
}
.feature-icon {
  color: #3D5A40;
  flex-shrink: 0;
}
.feature-card span {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: #3D5A40;
  font-weight: 500;
}

/* ===== METHODEN ===== */
.methoden-subtitle {
  font-family: 'Lato', sans-serif;
  color: #E8D5C4;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}
.methoden-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .methoden-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .methoden-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.methoden-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.methoden-card:hover {
  background: rgba(255,255,255,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}
.methoden-emoji {
  font-size: 1.875rem;
  display: block;
  margin-bottom: 16px;
}
.methoden-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #FDF8F0;
  margin-bottom: 8px;
}
.methoden-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: rgba(232, 213, 196, 0.8);
  line-height: 1.5;
}

/* ===== CHECKLIST ===== */
.checklist {
  max-width: 560px;
  margin: 0 auto;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 6px;
  background: rgba(232, 213, 196, 0.3);
  margin-bottom: 16px;
}
.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.checklist-item p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #3D5A40;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 2fr; }
}
.about-avatar-wrap { display: flex; justify-content: center; }
.about-avatar {
  width: 192px;
  height: 192px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,169,110,0.3), rgba(61,90,64,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
@media (min-width: 768px) {
  .about-avatar { width: 224px; height: 224px; }
}
.about-avatar-inner {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background: #E8D5C4;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .about-avatar-inner { width: 208px; height: 208px; }
}
.about-initial {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: #3D5A40;
}
@media (min-width: 768px) {
  .about-initial { font-size: 3.75rem; }
}
.quali-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}
.quali-list li {
  position: relative;
  padding-left: 20px;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: #5a4a3a;
  margin-bottom: 8px;
  line-height: 1.5;
}
.quali-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C9A96E;
}

/* ===== KONTAKT ===== */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .contact-info { flex-direction: row; justify-content: center; }
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: #5a4a3a;
}
.contact-dot {
  display: none;
  color: #C9A96E;
}
@media (min-width: 640px) {
  .contact-dot { display: block; }
}
.contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 640px) {
  .contact-buttons { flex-direction: row; justify-content: center; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: #3D5A40;
  padding: 48px 24px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #FDF8F0;
  letter-spacing: 0.05em;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.social-links a {
  color: #E8D5C4;
  transition: color 0.3s ease;
}
.social-links a:hover { color: #fff; }
.footer-copy {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: rgba(232, 213, 196, 0.6);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  animation: fadeInUp 1s ease forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.slide-left {
  transform: translateX(30px);
}
.animate-on-scroll.slide-right {
  transform: translateX(-30px);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays for methoden cards */
.methoden-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.methoden-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.methoden-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.methoden-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.methoden-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.methoden-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

.checklist .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.checklist .animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.checklist .animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.checklist .animate-on-scroll:nth-child(4) { transition-delay: 0.45s; }

/* ===== RESPONSIVE FEATURE GRID ===== */
@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
}
