/* ============================================================
   Blickwerk-Moseltal – Design System v2
   ============================================================ */

/* --- Variablen --------------------------------------------- */
:root {
  /* Markenfarben – exakt aus visueller Referenz */
  --green-dark:   #1C3828;
  --green-mid:    #2D5A3D;
  --green-soft:   #3A7550;
  --green-faint:  #EAF0EB;
  --gold:         #C8A84B;
  --gold-light:   #E5D49A;
  --gold-bright:  #D4B35A;
  --cream:        #FAF7F0;
  --beige:        #F2EBD9;
  --beige-dark:   #E5D9C3;
  --white:        #FFFFFF;
  --text-dark:    #1A1A18;
  --text-mid:     #3D3D35;
  --text-light:   #6B6B5F;
  --shadow-sm:    0 2px 8px rgba(28,56,40,0.08);
  --shadow-md:    0 6px 24px rgba(28,56,40,0.11);
  --shadow-lg:    0 12px 48px rgba(28,56,40,0.14);

  /* Typografie */
  --font-serif:   Georgia, 'Times New Roman', Times, serif;
  --font-sans:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-script:  'Snell Roundhand', 'Brush Script MT', 'Dancing Script', cursive;

  /* Layout */
  --max-w:        1180px;
  --radius-sm:    4px;
  --radius-md:    10px;
  --radius-lg:    20px;
  --radius-xl:    32px;
}

/* --- Reset -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); line-height: 1.7; color: var(--text-dark); background: var(--cream); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Typografie -------------------------------------------- */
h1,h2,h3,h4 { font-family: var(--font-serif); line-height: 1.2; font-weight: normal; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { color: var(--text-mid); margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--text-dark); }
.script {
  font-family: var(--font-script);
  font-style: italic;
  color: var(--gold);
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.gold-line {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0;
}
.gold-line--center { margin: 16px auto; }
.section-title { color: var(--green-dark); margin-bottom: 8px; }
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 580px; }

/* --- Layout ------------------------------------------------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section { padding: 80px 0; }
.section--sm { padding: 56px 0; }
.section--cream { background: var(--cream); }
.section--beige { background: var(--beige); }
.section--green { background: var(--green-dark); }
.section--white { background: var(--white); }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.section-header.center .gold-line { margin: 16px auto; }

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}
.btn-primary { background: var(--green-dark); color: var(--white); }
.btn-primary:hover { background: var(--green-mid); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-bright); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--green-dark); border: 2px solid var(--green-dark); }
.btn-outline:hover { background: var(--green-faint); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: rgba(200,168,75,0.08); }
.btn-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Badge / Sticker --------------------------------------- */
.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--green-dark);
  border: 2px solid var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.45;
  flex-shrink: 0;
}
.badge--sm { width: 96px; height: 96px; font-size: 0.62rem; }
.badge--lg { width: 144px; height: 144px; font-size: 0.75rem; }
.badge-heart::before { content: '♥'; display: block; color: var(--gold); font-size: 1.1em; margin-bottom: 4px; }
.badge-float { position: absolute; z-index: 10; }

/* --- Icon-Kreise ------------------------------------------- */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-dark);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.icon-circle svg { width: 26px; height: 26px; }
.icon-circle--sm { width: 44px; height: 44px; }
.icon-circle--sm svg { width: 20px; height: 20px; }
.icon-circle--lg { width: 76px; height: 76px; }
.icon-circle--lg svg { width: 32px; height: 32px; }

/* --- Header / Navigation ----------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,240,0.97);
  border-bottom: 1px solid var(--beige-dark);
  box-shadow: 0 1px 12px rgba(28,56,40,0.07);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 72px; gap: 20px;
}
.site-logo img { height: 50px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem; font-weight: 500;
  color: var(--text-mid);
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--green-faint); color: var(--green-dark);
}
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 2px;
}
.dropdown-menu {
  display: none; position: absolute;
  top: 100%; left: 0;
  min-width: 270px;
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px 0 8px; z-index: 200;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block; padding: 10px 20px;
  font-size: 0.9rem; color: var(--text-mid);
  border-radius: 0;
}
.dropdown-menu li a:hover { background: var(--beige); color: var(--green-dark); }
.nav-cta { margin-left: 10px; padding: 10px 20px; font-size: 0.9rem; }
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 14px 10px; touch-action: manipulation; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; pointer-events: none; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; background: var(--cream); border-top: 1px solid var(--beige-dark); padding: 16px 28px 28px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 1rem; font-weight: 500; color: var(--text-mid); border-bottom: 1px solid var(--beige); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.nav-sub { padding-left: 20px; font-size: 0.9rem; color: var(--text-light); }
.mobile-menu .mobile-cta { margin-top: 20px; display: block; text-align: center; width: 100%; }

/* --- SPLIT SECTION (Bild + Text fließend) ------------------ */
.split { position: relative; overflow: hidden; min-height: 480px; display: flex; align-items: stretch; }
.split-img-wrap {
  position: absolute; top: 0; bottom: 0;
  width: 58%; overflow: hidden;
}
.split-img-wrap.right { right: 0; }
.split-img-wrap.left  { left: 0; }
.split-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
/* Gradient-Übergang von Bild zu Hintergrundfarbe */
.split-img-wrap.right::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 45%;
  background: linear-gradient(to right, var(--cream) 0%, transparent 100%);
  z-index: 1;
}
.split-img-wrap.left::before {
  content: ''; position: absolute;
  right: 0; top: 0; bottom: 0; width: 45%;
  background: linear-gradient(to left, var(--cream) 0%, transparent 100%);
  z-index: 1;
}
.split-img-wrap.right.on-beige::before { background: linear-gradient(to right, var(--beige) 0%, transparent 100%); }
.split-img-wrap.left.on-beige::before  { background: linear-gradient(to left, var(--beige) 0%, transparent 100%); }
.split-img-wrap.right.on-green::before { background: linear-gradient(to right, var(--green-dark) 0%, transparent 100%); }
.split-img-wrap.left.on-green::before  { background: linear-gradient(to left, var(--green-dark) 0%, transparent 100%); }
.split-content {
  position: relative; z-index: 2;
  width: 50%; padding: 80px 0;
}
.split-content.left { margin-right: auto; }
.split-content.right { margin-left: auto; }
.split-content .container { padding: 0; }

/* --- HERO -------------------------------------------------- */
.hero {
  background: var(--cream);
  min-height: 580px;
  display: flex; align-items: stretch;
  overflow: hidden;
}
.hero-content {
  flex: 0 0 42%; max-width: 42%;
  position: relative; z-index: 2;
  padding: 80px 52px 80px max(28px, calc((100vw - 1180px) / 2 + 28px));
  display: flex; flex-direction: column; justify-content: center;
}
.hero-img-wrap {
  flex: 1; position: relative; overflow: hidden;
}
.hero-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.hero-img-wrap::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 28%;
  background: linear-gradient(to right, var(--cream) 0%, transparent 100%);
  z-index: 1;
}
.brand-logo-section {
  background: var(--beige);
  padding: 80px 24px 88px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--beige-dark);
  border-bottom: 1px solid var(--beige-dark);
}
.brand-logo-section img {
  width: 360px;
  max-width: 80%;
  height: auto;
  display: block;
}
.hero-title { color: var(--green-dark); margin-bottom: 8px; }
.hero-subtitle {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-text { font-size: 1.05rem; max-width: 480px; margin-bottom: 32px; }
.hero-badge {
  position: absolute;
  right: 42%; top: 48px;
  z-index: 10;
}

/* --- GRÜNER STREIFEN --------------------------------------- */
.green-strip { background: var(--green-dark); padding: 36px 0; }
.green-strip-inner {
  display: flex; align-items: flex-start;
  justify-content: center; gap: 0;
}
.strip-item {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(200,168,75,0.25);
}
.strip-item:last-child { border-right: none; }
.strip-item .icon-circle { margin-bottom: 12px; }
.strip-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); line-height: 1.4;
}
.strip-script {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-top: 2px;
  display: block;
}

/* --- SERVICE-KACHELN (Startseite) -------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none; color: inherit;
  border: 1px solid var(--beige-dark);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card-image {
  height: 220px; overflow: hidden; position: relative;
}
.service-card-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.04); }
.service-card-top-bar {
  height: 4px; background: var(--gold);
}
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-icon-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.service-card h3 { color: var(--green-dark); font-size: 1rem; margin-bottom: 8px; line-height: 1.3; }
.service-card p { font-size: 0.88rem; color: var(--text-light); flex: 1; margin-bottom: 16px; }
.card-link { font-size: 0.85rem; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 6px; transition: gap 0.15s; }
.service-card:hover .card-link { gap: 10px; }

/* --- ÜBER-MICH TEASER (Startseite) ------------------------- */
.about-teaser { background: var(--beige); }
.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-teaser-img { position: relative; }
.about-teaser-img img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover; object-position: top center;
  max-height: 460px;
}
.about-teaser-img .badge-float { bottom: -20px; right: -20px; }
.about-teaser-text h2 { color: var(--green-dark); margin-bottom: 8px; }
.about-teaser-text p { font-size: 1rem; }

/* --- FOTO-SHOWCASE (Startseite, full-width) ----------------- */
.foto-showcase {
  position: relative; overflow: hidden;
  min-height: 420px; display: flex; align-items: center;
}
.foto-showcase-bg {
  position: absolute; inset: 0;
  background: var(--green-dark);
}
.foto-showcase-img {
  position: absolute; inset: 0; overflow: hidden;
}
.foto-showcase-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  opacity: 0.35;
}
.foto-showcase-content {
  position: relative; z-index: 2;
  padding: 64px 0;
}
.foto-showcase-content h2 { color: var(--white); margin-bottom: 8px; }
.foto-showcase-content .script { font-size: 1.6rem; display: block; margin-bottom: 16px; }
.foto-showcase-content p { color: rgba(255,255,255,0.8); max-width: 580px; margin-bottom: 28px; }
.foto-showcase-icons { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 32px; }
.showcase-icon-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.showcase-icon-item span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.65); text-align: center; }

/* --- CTA-BANNER -------------------------------------------- */
.cta-banner { background: var(--green-dark); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,168,75,0.08) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner .script { font-size: 1.5rem; display: block; margin-bottom: 20px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 36px; }

/* --- SEITENHEADER (Unterseiten) ----------------------------- */
.page-header { background: var(--green-dark); padding: 60px 0 52px; position: relative; overflow: hidden; }
.page-header::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.page-header-img {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 45%; overflow: hidden; opacity: 0.25;
}
.page-header-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.page-header-img::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 60%;
  background: linear-gradient(to right, var(--green-dark), transparent);
  z-index: 1;
}
/* Clean photo variant – no marketing text on image, more visible */
.page-header-img.clean-photo {
  width: 55%; opacity: 1;
}
.page-header-img.clean-photo::before {
  width: 80%;
  background: linear-gradient(to right, var(--green-dark) 20%, transparent 100%);
}
.page-header-inner { position: relative; z-index: 2; }
.breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.page-header .page-sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; }
.page-header .script-tagline {
  font-family: var(--font-script); font-style: italic;
  color: var(--gold); font-size: 1.2rem;
  display: block; margin-bottom: 12px;
}

/* --- SERVICE-INTRO (Unterseiten) --------------------------- */
.service-intro-split {
  background: var(--cream);
  position: relative; overflow: hidden;
  min-height: 440px; display: flex; align-items: center;
}
.service-intro-split .split-img-wrap img { object-position: 50% 20%; }
.service-intro-content {
  position: relative; z-index: 2;
  width: 50%; padding: 64px 0;
}
.service-intro-content.left { padding-right: 40px; }
.service-intro-content.right { margin-left: auto; padding-left: 40px; }
.service-intro-content h2 { color: var(--green-dark); margin-bottom: 12px; }
.service-intro-content p { font-size: 1rem; line-height: 1.8; }
.info-box {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px;
  margin-top: 28px;
  box-shadow: var(--shadow-sm);
}
.info-box h4 { color: var(--green-dark); font-size: 0.9rem; font-family: var(--font-sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.info-box li { padding: 4px 0 4px 22px; position: relative; font-size: 0.9rem; color: var(--text-mid); }
.info-box li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* --- LEISTUNGS-GRID ---------------------------------------- */
.leistungs-section { background: var(--beige); }
.leistungs-section h2 { color: var(--green-dark); margin-bottom: 36px; }
.leistungs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.leistungs-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  transition: box-shadow 0.2s;
}
.leistungs-card:hover { box-shadow: var(--shadow-md); }
.leistungs-card h3 { color: var(--green-dark); font-size: 1rem; margin-bottom: 8px; }
.leistungs-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* --- ZIELGRUPPE -------------------------------------------- */
.target-section { background: var(--cream); }
.target-section h2 { color: var(--green-dark); margin-bottom: 20px; }
.target-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.target-tag { background: var(--green-faint); color: var(--green-dark); padding: 8px 18px; border-radius: 20px; font-size: 0.88rem; font-weight: 600; border: 1px solid rgba(28,56,40,0.15); }

/* --- ABGRENZUNG -------------------------------------------- */
.disclaimer {
  background: var(--beige);
  border-left: 3px solid var(--beige-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px; margin-top: 40px;
}
.disclaimer h4 { font-size: 0.85rem; color: var(--text-mid); font-family: var(--font-sans); font-weight: 700; margin-bottom: 6px; }
.disclaimer p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* --- ÜBER MICH SEITE --------------------------------------- */
.about-hero { background: var(--cream); padding: 80px 0; }
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover; object-position: top center;
  max-height: 640px;
}
.about-img-wrap .badge-float { bottom: 24px; right: -16px; }
.about-text-wrap h1 { color: var(--green-dark); margin-bottom: 6px; }
.about-text-wrap .sub { font-size: 1.1rem; color: var(--text-light); margin-bottom: 28px; }
.about-text-wrap p { font-size: 1rem; line-height: 1.82; }
.about-story { background: var(--beige); }
.about-story-inner { max-width: 780px; }
.about-motto-strip { background: var(--green-dark); padding: 48px 0; text-align: center; }
.about-motto-strip blockquote {
  font-family: var(--font-script); font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white); max-width: 700px; margin: 0 auto; padding: 0 28px;
}
.about-motto-strip cite { display: block; font-size: 0.82rem; color: var(--gold); font-style: normal; margin-top: 14px; letter-spacing: 0.1em; text-transform: uppercase; }

/* --- FOTO/VIDEO/DROHNEN SEITE ------------------------------ */
.foto-hero {
  position: relative; overflow: hidden;
  min-height: 500px; display: flex; align-items: flex-end;
  background: var(--green-dark);
}
.foto-hero-img { position: absolute; inset: 0; }
.foto-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.foto-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,56,40,0.85) 0%, rgba(28,56,40,0.2) 60%, transparent 100%);
}
.foto-hero-content { position: relative; z-index: 2; padding: 48px 0; }
.foto-hero-content h1 { color: var(--white); margin-bottom: 8px; }
.foto-hero-content p { color: rgba(255,255,255,0.8); max-width: 560px; }
.foto-hero-content .badge-float { top: -60px; right: 0; }

/* --- KONTAKT SEITE ----------------------------------------- */
.contact-section { background: var(--cream); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info h2 { color: var(--green-dark); margin-bottom: 6px; }
.contact-sub { font-size: 1rem; color: var(--text-light); margin-bottom: 32px; }
.contact-list li { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--beige-dark); }
.contact-list li:last-child { border-bottom: none; }
.contact-item-text strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-light); font-weight: 600; margin-bottom: 4px; }
.contact-item-text a, .contact-item-text span { color: var(--text-dark); font-size: 1rem; }
.contact-item-text a:hover { color: var(--green-dark); }
.contact-region-box {
  background: var(--beige);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--beige-dark);
  margin-top: 24px;
}
.contact-region-box h3 { color: var(--green-dark); font-size: 1rem; margin-bottom: 12px; }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--beige-dark);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; min-height: 320px;
}
.contact-form-wrap p { color: var(--text-light); font-size: 0.95rem; }

/* --- RECHTLICHE SEITEN ------------------------------------- */
.legal-section { background: var(--white); }
.legal-content { max-width: 760px; }
.legal-content h2 { color: var(--green-dark); font-size: 1.4rem; margin: 44px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { color: var(--text-dark); font-size: 1.05rem; font-family: var(--font-sans); font-weight: 600; margin: 24px 0 8px; }
.legal-content p { font-size: 0.95rem; line-height: 1.78; }
.legal-content a { color: var(--green-dark); text-decoration: underline; }
.legal-content ul { padding-left: 20px; margin: 8px 0 16px; }
.legal-content ul li { font-size: 0.95rem; padding: 3px 0; }
.legal-hr { border: none; border-top: 1px solid var(--beige-dark); margin: 36px 0; }

/* --- FOOTER ------------------------------------------------ */
.site-footer { background: var(--green-dark); padding: 60px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 46px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-script { font-family: var(--font-script); font-style: italic; font-size: 1.1rem; color: var(--gold); margin-bottom: 10px; }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.6); line-height: 1.65; }
.footer-col h4 { color: var(--white); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-sans); }
.footer-col li { margin-bottom: 10px; }
.footer-col li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-col li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(200,168,75,0.2); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* --- RESPONSIVE -------------------------------------------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser-inner, .about-hero-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-content { flex: 0 0 52%; max-width: 52%; }
  .brand-logo-section img { width: 280px; }
  .split-content { width: 55%; }
  .split-img-wrap { width: 52%; }
}
@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { flex-direction: column; min-height: auto; }
  .hero-img-wrap { flex: none; width: 100%; height: 300px; order: -1; }
  .hero-img-wrap::before { background: linear-gradient(to top, var(--cream) 0%, transparent 50%); width: 100%; top: auto; height: 50%; right: 0; left: 0; bottom: 0; }
  .hero-content { flex: none; max-width: 100%; padding: 32px 18px 56px; }
  .brand-logo-section { padding: 60px 24px 68px; }
  .brand-logo-section img { width: 220px; }
  .hero-badge { display: none; }
  .split { flex-direction: column; min-height: auto; }
  .split-img-wrap { position: relative; width: 100%; height: 260px; }
  .split-img-wrap.right::before, .split-img-wrap.left::before { display: none; }
  .split-content, .split-content.left, .split-content.right { width: 100%; padding: 40px 0; margin: 0; }
  .split-content .container { padding: 0 28px; }
  .service-intro-content, .service-intro-content.left, .service-intro-content.right { width: 100%; padding: 40px 28px; margin: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .green-strip-inner { flex-wrap: wrap; }
  .strip-item { width: 50%; border-right: none; border-bottom: 1px solid rgba(200,168,75,0.2); padding: 20px; }
  .strip-item:nth-child(odd) { border-right: 1px solid rgba(200,168,75,0.2); }
  .strip-item:nth-last-child(-n+2) { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .foto-hero { min-height: 360px; }
  .btn-actions { flex-direction: column; }
  .btn-actions .btn { text-align: center; }
  .leistungs-grid { grid-template-columns: 1fr; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-img-wrap .badge-float { display: none; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }
  .container { padding: 0 18px; }
  .page-header { padding: 44px 0 38px; }
  .strip-item { width: 100%; border-right: none !important; }
  .strip-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(200,168,75,0.2); }
  .strip-item:last-child { border-bottom: none; }
}

/* ---- Doppelseitiger Bildübergang für Marketing-Grafiken ------- */
/* Bilder wo Foto links, Marketingtext rechts – blendet Textseite aus */
.split-img-wrap.photo-left::after {
  content: ''; position: absolute;
  right: 0; top: 0; bottom: 0; width: 52%;
  background: linear-gradient(to left, var(--cream) 0%, transparent 100%);
  z-index: 2;
}
.split-img-wrap.photo-left.on-beige::after {
  background: linear-gradient(to left, var(--beige) 0%, transparent 100%);
}
.split-img-wrap.photo-left.on-green::after {
  background: linear-gradient(to left, var(--green-dark) 0%, transparent 100%);
}
.hero-img-wrap.photo-left::after {
  content: ''; position: absolute;
  right: 0; top: 0; bottom: 0; width: 40%;
  background: linear-gradient(to left, var(--cream) 0%, transparent 100%);
  z-index: 2;
}
.page-header-img.photo-left::after {
  content: ''; position: absolute;
  right: 0; top: 0; bottom: 0; width: 40%;
  background: linear-gradient(to left, var(--green-dark) 0%, transparent 100%);
  z-index: 2;
}

/* Service-Kachel: Bild-Overlay (dimmt rechten Bereich) */
.service-card-image { position: relative; }
.service-card-img-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 40%, rgba(28,56,40,0.22) 100%),
              linear-gradient(to top, rgba(28,56,40,0.18) 0%, transparent 40%);
}

/* Kontaktseite – Bild-Spalte */
.contact-img-col { position: relative; }
.contact-img-col img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover; object-position: top center;
  max-height: 560px;
}
.contact-img-col .badge-float { bottom: 24px; right: -16px; }

/* Über mich – zusätzliche Bilder */
.about-secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 48px;
}
.about-secondary-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.about-secondary-img img {
  width: 100%; height: 220px;
  object-fit: cover; object-position: left top;
}

/* Foto-Seite – Galerie-Grid */
.foto-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 40px;
}
.foto-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.foto-gallery-item img {
  width: 100%; height: 200px;
  object-fit: cover; object-position: left top;
  transition: transform 0.4s ease;
}
.foto-gallery-item:hover img { transform: scale(1.04); }
.foto-gallery-item--tall { grid-row: span 2; }
.foto-gallery-item--tall img { height: 416px; }

/* Großes Einzelbild zwischen Sektionen (Zwischenabschnitt) */
.foto-between {
  position: relative; overflow: hidden;
  min-height: 400px; display: flex; align-items: flex-end;
  background: var(--green-dark);
}
.foto-between-img { position: absolute; inset: 0; }
.foto-between-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.foto-between-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,56,40,0.85) 0%, rgba(28,56,40,0.1) 55%, transparent 100%);
}
.foto-between-content { position: relative; z-index: 2; padding: 48px 0; }
.foto-between-content .script { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.foto-between-content p { color: rgba(255,255,255,0.82); max-width: 600px; margin-bottom: 0; }

/* Foto-Raster (3 gleichmäßige Bilder nebeneinander) */
.photo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
.photo-grid-item {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); position: relative;
}
.photo-grid-item img {
  width: 100%; height: 240px;
  object-fit: cover; object-position: top center;
  display: block; transition: transform 0.4s ease;
}
.photo-grid-item:hover img { transform: scale(1.04); }
.photo-grid-caption {
  padding: 14px 16px; background: var(--white);
  font-size: 0.82rem; color: var(--text-light); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}

@media (max-width: 768px) {
  .photo-grid-3 { grid-template-columns: 1fr; }
  .foto-between { min-height: 300px; }
}

/* Abschnitt-Trennlinie mit Gold-Akzent */
.gold-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 48px 0;
}
.gold-divider::before, .gold-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.gold-divider-icon { color: var(--gold); font-size: 1.1rem; }

/* ============================================================
   SERVICE SPLIT – Echte Flex-Komposition ohne Überlappung
   Text und Bild in getrennten Spalten, kein Overlay
   ============================================================ */
.service-split {
  display: flex;
  min-height: 560px;
  overflow: hidden;
  background: var(--cream);
  align-items: stretch;
}
.service-split.bg-beige { background: var(--beige); }

/* Textspalte: 44% – linksbündig, vertikal zentriert */
.ss-text {
  flex: 0 0 44%;
  max-width: 44%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 52px 72px max(28px, calc((100vw - 1180px) / 2 + 28px));
}
/* Textspalte rechts (wenn Bild links) */
.ss-text.right {
  padding: 72px max(28px, calc((100vw - 1180px) / 2 + 28px)) 72px 52px;
}

/* Bildspalte: verbleibende 56% */
.ss-img {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.ss-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Verlauf NUR am Bildrand zur Textspalte – ca. 22% der Bildspaltenbreite */
/* img-right: Bild rechts, Verlauf am linken Bildrand */
.ss-img.img-right::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 28%;
  background: linear-gradient(to right, var(--cream) 0%, transparent 100%);
  z-index: 1;
}
/* img-left: Bild links, Verlauf am rechten Bildrand */
.ss-img.img-left::before {
  content: ''; position: absolute;
  right: 0; top: 0; bottom: 0; width: 28%;
  background: linear-gradient(to left, var(--cream) 0%, transparent 100%);
  z-index: 1;
}
.service-split.bg-beige .ss-img.img-right::before {
  background: linear-gradient(to right, var(--beige) 0%, transparent 100%);
}
.service-split.bg-beige .ss-img.img-left::before {
  background: linear-gradient(to left, var(--beige) 0%, transparent 100%);
}

/* Responsive */
@media (max-width: 1024px) {
  .ss-text { flex: 0 0 48%; max-width: 48%; }
}
@media (max-width: 768px) {
  .service-split { flex-direction: column; min-height: auto; }
  .ss-text, .ss-text.right {
    flex: none; max-width: 100%;
    padding: 44px 18px;
    order: 2;
  }
  .ss-img { flex: none; height: 280px; min-height: 280px; order: 1; }
  .ss-img.img-right::before, .ss-img.img-left::before { display: none; }
}

/* Kontakt-Karte */
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--beige-dark);
}
.contact-card:last-child { border-bottom: none; }
.contact-card-text strong {
  display: block; font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--text-light); font-weight: 600; margin-bottom: 4px;
}
.contact-card-text a, .contact-card-text span {
  color: var(--text-dark); font-size: 1rem;
}
.contact-card-text a:hover { color: var(--green-dark); }

@media (max-width: 768px) {
  .about-secondary-grid { grid-template-columns: 1fr; }
  .foto-gallery { grid-template-columns: 1fr 1fr; }
  .foto-gallery-item--tall { grid-row: span 1; }
  .foto-gallery-item--tall img { height: 200px; }
  .contact-img-col { display: none; }
}

/* ================================================================
   DIGITAL PAGES – Lesbarkeit (Seniors & Beginners)
   Scoped to .page-digital body class; no other pages affected.
   ================================================================ */
.page-digital .ss-text p { font-size: 1.05rem; line-height: 1.82; }
.page-digital .leistungs-card h3 { font-size: 1.1rem; }
.page-digital .leistungs-card p { font-size: 1rem; line-height: 1.78; color: var(--text-mid); }
.page-digital .info-box li { font-size: 1rem; line-height: 1.82; }
.page-digital .info-box p { font-size: 1rem; line-height: 1.82; }
.page-digital .disclaimer p,
.page-digital .disclaimer li { font-size: 0.95rem; line-height: 1.75; }
.page-digital .section-sub { font-size: 1.05rem; max-width: 640px; }
.page-digital .cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.92); }
@media (max-width: 600px) {
  .page-digital .leistungs-card p { font-size: 1rem; }
  .page-digital .ss-text p { font-size: 1rem; line-height: 1.78; }
}

/* ================================================================
   ORGANIC SECTION DESIGN – Wellenförmige Bildkanten & natürliche Darstellung
   ================================================================ */

/* clip-path Regeln entfernt – diese schnitten Hochkantbilder ab */

.ss-img.img-contained {
  clip-path: none;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
  background: inherit;
}
.ss-img.img-contained::before { display: none; }
.ss-img.img-contained img {
  position: relative;
  inset: auto;
  width: 90%;
  height: auto;
  object-fit: initial;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .ss-img.img-right,
  .ss-img.img-left { clip-path: none; }
  .ss-img.img-contained {
    height: auto !important;
    min-height: auto !important;
    padding: 32px 24px;
  }
  .ss-img.img-contained img {
    width: 100%;
    border-radius: var(--radius-md);
  }
}

/* ================================================================
   EDITORIAL BLOCK – Text neben Bild, wechselnd links/rechts.
   Grid mit benannten Bereichen – unabhängig von DOM-Reihenfolge.
   ================================================================ */

/* Standard: Text LINKS · Bild RECHTS */
.editorial-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "text img";
  gap: 56px;
  align-items: center;
  background: var(--cream);
  padding: 72px max(28px, calc((100vw - 1180px) / 2 + 28px));
}
/* Flip: Bild LINKS · Text RECHTS */
.editorial-block.eb-flip {
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas: "img text";
}
.editorial-block.eb-cream { background: var(--cream); }
.editorial-block.eb-beige { background: var(--beige); }
.editorial-block.eb-white { background: var(--white); }
.editorial-block.eb-dark  { background: var(--green-dark); }

/* Bildspalte – klein, vollständig sichtbar */
.eb-img {
  grid-area: img;
  max-width: 340px;
}
.eb-img img {
  display: block;
  width: auto;
  height: auto;
  max-width: 340px;
  max-height: 440px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.eb-img::after { display: none !important; }

/* Textspalte */
.eb-text {
  grid-area: text;
}
.eb-text h2 { color: var(--green-dark); margin-bottom: 8px; }
.eb-text p  { color: var(--text-mid); font-size: 1rem; line-height: 1.82; }
.editorial-block.eb-dark .eb-text h2 { color: var(--white); }
.editorial-block.eb-dark .eb-text p  { color: rgba(255,255,255,0.85); }

/* Mobile ≤768px: Text oben, Bild darunter – moderat groß */
@media (max-width: 768px) {
  .editorial-block,
  .editorial-block.eb-flip {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "img";
    padding: 48px 24px 52px;
    gap: 24px;
  }
  .eb-img {
    max-width: 220px;
  }
  .eb-img img {
    max-width: 220px;
    max-height: 300px;
  }
}
