/* ════════════════════════════════════════════════════════════════
   BRANG GARTENBAU – Design-System „Hell & edel"
   Editorial-Look: Creme/Stein, Dunkelgrün, Cormorant + Hanken Grotesk
   ════════════════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100dvh; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
img, svg, video { display: block; max-width: 100%; }
/* picture verschwindet aus dem Layout, damit alle img-Regeln unverändert greifen */
picture { display: contents; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; }
ul[class], ol[class] { list-style: none; }

/* ── Tokens ────────────────────────────────────────────────────── */
:root {
  /* Farben */
  --paper:      #F7F4ED;
  --cream:      #F1ECE1;
  --stone:      #E8E1D2;
  --ink:        #1C2620;
  --body:       #3E4A41;
  --green:      #24422F;
  --green-deep: #1B3123;
  --green-soft: #4C6553;
  --sage:       #93A08D;
  --brass:      #8A6D3B;
  --brass-soft: #B49760;
  --line:       rgba(28, 38, 32, 0.14);
  --line-soft:  rgba(28, 38, 32, 0.08);
  --white:      #FFFFFF;

  /* Typografie */
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans:  "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  /* Größen */
  --size-display: clamp(2.75rem, 6.4vw + 1rem, 6rem);
  --size-h1:      clamp(2.5rem, 5vw + 1rem, 4.75rem);
  --size-h2:      clamp(2rem, 3.2vw + 0.75rem, 3.4rem);
  --size-h3:      clamp(1.35rem, 1.4vw + 0.75rem, 1.75rem);
  --size-lead:    clamp(1.1rem, 0.5vw + 1rem, 1.3rem);

  /* Abstände (großzügig, Premium) */
  --space-section: clamp(5.5rem, 12vw, 10.5rem);
  --space-block:   clamp(3rem, 6vw, 5rem);
  --gutter:        clamp(1.25rem, 4vw, 3rem);
  --container:     78rem;
  --container-wide: 90rem;

  /* Bewegung */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.45, 0, 0.15, 1);
  --dur: 0.7s;

  /* Ebenen */
  --z-header: 100;
  --z-nav:    110;
  --z-lightbox: 200;
  --z-cursor: 300;
}

/* ── Basis ─────────────────────────────────────────────────────── */
body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--paper);
  overflow-x: clip;
}

::selection { background: var(--green); color: var(--paper); }

h1, h2, h3, .serif {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--size-h1); }
h2 { font-size: var(--size-h2); }
h3 { font-size: var(--size-h3); line-height: 1.2; }

p + p { margin-top: 1em; }
strong { color: var(--ink); font-weight: 600; }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed; top: -100%; left: 1rem;
  background: var(--green); color: var(--paper);
  padding: 0.75rem 1.25rem; border-radius: 4px;
  z-index: 999; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* Papierkorn: sehr feines Rauschen für Tiefe */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

[id] { scroll-margin-top: 6rem; }

.container { width: min(var(--container), 100% - 2 * var(--gutter)); margin-inline: auto; }
.container-wide { width: min(var(--container-wide), 100% - 2 * var(--gutter)); margin-inline: auto; }

.section { padding-block: var(--space-section); position: relative; }
.section-cream { background: var(--cream); }
.section-stone { background: var(--stone); }

/* Kicker: kleine Überzeile */
.kicker {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
}
.kicker::before {
  content: ""; width: 2.25rem; height: 1px;
  background: var(--brass-soft); flex-shrink: 0;
}
.kicker-center { justify-content: center; }
.kicker-center::after {
  content: ""; width: 2.25rem; height: 1px;
  background: var(--brass-soft); flex-shrink: 0;
}

.lead { font-size: var(--size-lead); line-height: 1.65; max-width: 46rem; }

.section-head { max-width: 52rem; margin-bottom: var(--space-block); }
.section-head-center { text-align: center; margin-inline: auto; }
.section-head h2 { margin-bottom: 1.25rem; }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  font-weight: 600; font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s var(--ease-soft), color 0.25s var(--ease-soft),
              border-color 0.25s var(--ease-soft), transform 0.25s var(--ease-soft);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 1.05em; height: 1.05em; transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--green); color: var(--paper); border: 1px solid var(--green); }
.btn-primary:hover { background: var(--green-deep); border-color: var(--green-deep); }

.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-light { background: var(--paper); color: var(--green-deep); border: 1px solid var(--paper); }
.btn-light:hover { background: var(--cream); border-color: var(--cream); }

.btn-outline-light { background: transparent; color: var(--paper); border: 1px solid rgba(247, 244, 237, 0.5); }
.btn-outline-light:hover { border-color: var(--paper); background: rgba(247, 244, 237, 0.08); }

/* Textlink mit wachsender Linie */
.link-line {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 600; color: var(--green);
  text-decoration: none;
  padding-bottom: 0.2rem;
  background-image: linear-gradient(var(--green), var(--green));
  background-size: 0% 1px; background-position: left bottom; background-repeat: no-repeat;
  transition: background-size 0.4s var(--ease-out);
}
.link-line:hover { background-size: 100% 1px; }
.link-line svg { width: 1em; height: 1em; transition: transform 0.3s var(--ease-out); }
.link-line:hover svg { transform: translateX(4px); }

/* ── Header ────────────────────────────────────────────────────── */
.header {
  position: fixed; inset-inline: 0; top: 0;
  z-index: var(--z-header);
  transition: background-color 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft),
              transform 0.4s var(--ease-soft);
}
.header.is-scrolled {
  background: rgba(247, 244, 237, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-soft);
}
.header.is-hidden { transform: translateY(-100%); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
  transition: padding 0.4s var(--ease-soft);
}
.header.is-scrolled .header-inner { padding-block: 0.6rem; }

.brand {
  display: inline-flex; align-items: center; gap: 0.8rem;
  text-decoration: none;
}
.brand img { width: 52px; height: auto; transition: width 0.4s var(--ease-soft); }
.header.is-scrolled .brand img { width: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 1.4rem; color: var(--ink); letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--green-soft);
}

.nav-desktop { display: none; }
@media (min-width: 64em) {
  .nav-desktop { display: flex; align-items: center; gap: 2.2rem; }
  .nav-desktop a {
    position: relative;
    font-size: 0.98rem; font-weight: 500; color: var(--ink);
    text-decoration: none; padding-block: 0.4rem;
  }
  .nav-desktop a::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 100%; height: 1px; background: var(--green);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.35s var(--ease-out);
  }
  .nav-desktop a:hover::after,
  .nav-desktop a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
  .nav-desktop a[aria-current="page"] { color: var(--green); font-weight: 600; }
  .nav-desktop .btn { padding: 0.7rem 1.4rem; font-size: 0.9rem; }
  .nav-desktop a.btn-primary { color: var(--paper); }
  .nav-desktop a.btn-primary::after { display: none; }
}

/* Burger */
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
  width: 48px; height: 48px; align-items: center;
  z-index: calc(var(--z-nav) + 1); position: relative;
  border-radius: 50%;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (min-width: 64em) { .nav-toggle { display: none; } }

/* Mobile-Navigation: Kreis-Reveal aus der Ecke, dunkelgrünes Overlay */
.nav-mobile {
  position: fixed; inset: 0;
  z-index: var(--z-nav);
  background:
    radial-gradient(120% 130% at 85% -10%, rgba(147, 160, 141, 0.22) 0%, transparent 55%),
    linear-gradient(170deg, var(--green-deep) 0%, var(--green) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  gap: 0.4rem;
  clip-path: circle(0% at calc(100% - 46px) 48px);
  visibility: hidden;
  transition: clip-path 0.65s var(--ease-soft), visibility 0s linear 0.65s;
  overflow: hidden;
}
.nav-mobile.is-open {
  clip-path: circle(150% at calc(100% - 46px) 48px);
  visibility: visible;
  transition: clip-path 0.65s var(--ease-soft);
}

/* Zurück-Taste oben rechts */
.nav-close {
  position: absolute;
  top: 1rem; right: calc(var(--gutter) - 0.25rem);
  width: 48px; height: 48px;
  border: 1px solid rgba(247, 244, 237, 0.4);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--paper);
  opacity: 0; transform: rotate(-90deg) scale(0.8);
  transition: opacity 0.4s ease 0.3s, transform 0.5s var(--ease-out) 0.3s, background-color 0.25s;
}
.nav-mobile.is-open .nav-close { opacity: 1; transform: none; }
.nav-close:hover { background: rgba(247, 244, 237, 0.14); }
.nav-close:focus-visible { outline-color: var(--paper); }
.nav-close svg { width: 1.15rem; height: 1.15rem; }

/* schwebende Blätter im Overlay */
.nav-mobile .leaf { opacity: 0; transition: opacity 0.8s ease 0.4s; }
.nav-mobile.is-open .leaf { opacity: 1; }
.leaf-nav-1 {
  width: clamp(9rem, 42vw, 14rem);
  left: -3rem; bottom: 5%;
  transform: rotate(-14deg);
  color: rgba(247, 244, 237, 0.13);
}
.leaf-nav-2 {
  width: clamp(6rem, 30vw, 10rem);
  right: -1.5rem; top: 12%;
  transform: rotate(24deg);
  color: rgba(247, 244, 237, 0.1);
}
.nav-mobile.is-open .leaf svg { animation: leafDrift 12s ease-in-out infinite; }
@keyframes leafDrift {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 8px -12px; rotate: 3deg; }
}

/* Menüpunkte: gestaffelt einfliegend */
.nav-mobile > a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 2.9rem);
  font-weight: 500; color: var(--paper);
  text-decoration: none;
  padding: 0.45rem 1rem;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out), color 0.3s;
}
.nav-mobile.is-open > a { opacity: 1; transform: none; }
.nav-mobile > a:hover, .nav-mobile > a[aria-current="page"] { color: var(--brass-soft); font-style: italic; }
.nav-mobile > a:focus-visible { outline-color: var(--paper); }
.nav-mobile.is-open > a:nth-of-type(1) { transition-delay: 0.18s; }
.nav-mobile.is-open > a:nth-of-type(2) { transition-delay: 0.24s; }
.nav-mobile.is-open > a:nth-of-type(3) { transition-delay: 0.3s; }
.nav-mobile.is-open > a:nth-of-type(4) { transition-delay: 0.36s; }
.nav-mobile.is-open > a:nth-of-type(5) { transition-delay: 0.42s; }

/* Zwei Kontakt-Buttons unten im Menü */
.nav-mobile-kontakt {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.8rem;
  margin-top: 2.2rem;
  padding-inline: var(--gutter);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease 0.52s, transform 0.5s var(--ease-out) 0.52s;
}
.nav-mobile.is-open .nav-mobile-kontakt { opacity: 1; transform: none; }
.nav-mobile-kontakt .btn { font-size: 0.95rem; padding: 0.95rem 1.7rem; }
.nav-mobile-kontakt .btn svg { width: 1.05rem; height: 1.05rem; }
.nav-mobile-kontakt .btn:focus-visible { outline-color: var(--paper); }

body.nav-open { overflow: hidden; }
body.nav-open .nav-toggle { opacity: 0; pointer-events: none; }

/* ── Schnellkontakt-Leiste (Handy, erscheint beim Scrollen) ────── */
.quickbar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: flex; gap: 0.7rem;
  padding: 0.7rem var(--gutter) calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: transparent;
  pointer-events: none;
  transform: translateY(120%);
  transition: transform 0.45s var(--ease-out);
}
.quickbar.is-visible { transform: none; }
body.nav-open .quickbar { transform: translateY(120%); }
.quickbar .btn {
  flex: 1; justify-content: center;
  padding: 0.9rem 0.75rem;
  font-size: 0.9rem;
  pointer-events: auto;
  box-shadow: 0 12px 30px -10px rgba(28, 38, 32, 0.45);
}
.quickbar .btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn-wa { background: var(--white); color: var(--ink); border: 1px solid var(--line); }
.btn-wa:hover { border-color: var(--green); color: var(--green); }
.btn-wa svg { color: var(--green); }
@media (min-width: 64em) { .quickbar { display: none; } }


/* ── Hero Startseite ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: center;
  padding-top: clamp(6rem, 14vh, 9rem);
  padding-bottom: clamp(3rem, 7vh, 5rem);
  overflow: clip;
  background: linear-gradient(160deg, var(--paper) 55%, var(--cream) 100%);
}

/* Riesige Serif-Ziffer/Wortmarke als Wasserzeichen */
.hero-watermark {
  position: absolute;
  right: -4rem; top: 6rem;
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(18rem, 34vw, 34rem);
  line-height: 0.8; color: var(--stone);
  z-index: 0; pointer-events: none; user-select: none;
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 64em) {
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
}

.hero-copy .kicker { margin-bottom: 2rem; }

.hero-title {
  font-size: var(--size-display);
  font-weight: 500;
  line-height: 1.02;
  margin-bottom: 1.8rem;
}
.hero-title em {
  font-style: italic; color: var(--green);
}

/* Zeilen-Reveal */
.reveal-lines .line { display: block; overflow: hidden; }
.reveal-lines .line > span {
  display: block;
  transform: translateY(115%);
  transition: transform 1s var(--ease-out);
}
.reveal-lines.is-in .line > span { transform: none; }
.reveal-lines .line:nth-child(2) > span { transition-delay: 0.1s; }
.reveal-lines .line:nth-child(3) > span { transition-delay: 0.2s; }

.hero-lead { max-width: 34rem; margin-bottom: 2.4rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.2rem; }

/* Kennzahlen */
.hero-stats {
  display: flex; flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  padding-top: 1.8rem;
}
.stat { min-width: 7rem; }
.stat-value {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  color: var(--green); line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1;
}
.stat-value sup { font-size: 0.55em; color: var(--brass); margin-left: 0.1em; }
.stat-label { font-size: 0.86rem; letter-spacing: 0.04em; color: var(--body); margin-top: 0.45rem; }

/* Hero-Bild rechts */
.hero-visual { position: relative; }
.hero-figure {
  position: relative;
  border-radius: 0 6rem 0 6rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 76vh;
  box-shadow: 0 40px 80px -40px rgba(28, 38, 32, 0.4);
}
@media (max-width: 63.9375em) {
  .hero-figure { aspect-ratio: 4 / 3.4; border-radius: 0 4rem 0 4rem; }
}
.hero-figure img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
  animation: heroKenBurns 22s var(--ease-soft) forwards;
}
@keyframes heroKenBurns {
  to { transform: scale(1); }
}
/* sanfter Licht-Schleier */
.hero-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(247, 244, 237, 0.22) 0%, transparent 45%);
  pointer-events: none;
}
/* Licht-Sweep beim Laden */
.hero-figure::before {
  content: ""; position: absolute; inset: -20%;
  z-index: 2;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.35) 50%, transparent 58%);
  transform: translateX(-120%);
  animation: sweep 1.8s var(--ease-soft) 0.7s forwards;
  pointer-events: none;
}
@keyframes sweep { to { transform: translateX(120%); } }

.hero-caption {
  position: absolute;
  left: -1px; bottom: clamp(1rem, 3vw, 2rem);
  background: var(--paper);
  padding: 0.9rem 1.4rem 0.9rem 1.2rem;
  border-radius: 0 999px 999px 0;
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.85rem; font-weight: 600; color: var(--ink);
  box-shadow: 0 10px 30px -12px rgba(28, 38, 32, 0.25);
}
.hero-caption svg { width: 1.1rem; height: 1.1rem; color: var(--brass); flex-shrink: 0; }

/* schwebende botanische Zweige */
.leaf {
  position: absolute; pointer-events: none; color: var(--sage);
  opacity: 0.55; z-index: 1;
}
.leaf svg { width: 100%; height: 100%; }
.leaf-1 { width: clamp(7rem, 12vw, 12rem); left: -2rem; bottom: 8%; transform: rotate(-14deg); }
.leaf-2 { width: clamp(5rem, 9vw, 9rem); right: 4%; top: 10%; transform: rotate(24deg); color: var(--brass-soft); opacity: 0.4; }
.leaf-3 { width: clamp(4rem, 7vw, 7rem); left: 46%; bottom: -1rem; transform: rotate(60deg); opacity: 0.35; }

/* Scroll-Hinweis */
.scroll-hint {
  position: absolute; left: 50%; bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--green-soft); z-index: 3;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 3rem;
  background: linear-gradient(var(--green-soft), transparent);
  animation: scrollPulse 2.2s var(--ease-soft) infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); }
  45% { transform: scaleY(1); }
  100% { transform: scaleY(1); opacity: 0; }
}
@media (max-width: 63.9375em) { .scroll-hint { display: none; } }

/* ── Meister-Badge ─────────────────────────────────────────────── */
.meister-badge {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.55rem 1.1rem 0.55rem 0.7rem;
  border: 1px solid var(--brass-soft);
  border-radius: 999px;
  background: rgba(180, 151, 96, 0.08);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.meister-badge svg { width: 1.35rem; height: 1.35rem; color: var(--brass); flex-shrink: 0; }
.meister-badge span { line-height: 1.3; }
.meister-badge em { font-style: normal; display: block; font-weight: 400; font-size: 0.76rem; color: var(--body); letter-spacing: 0.02em; }

/* Vertrauensleiste unter dem Hero */
.trustbar {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  border-block: 1px solid var(--line);
  padding-block: 1.15rem;
  background: var(--paper);
  position: relative; z-index: 2;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: var(--body);
}
.trust-item svg { width: 1.15rem; height: 1.15rem; color: var(--brass); flex-shrink: 0; }
.trust-item strong { color: var(--ink); font-weight: 600; }
.trust-stars { display: inline-flex; gap: 0.12rem; color: var(--brass-soft); }
.trust-stars svg { width: 0.95rem; height: 0.95rem; color: var(--brass-soft); }

/* ── Vorher-Nachher-Slider ─────────────────────────────────────── */
.ba-grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 56em) { .ba-grid { grid-template-columns: 1fr 1fr; } }

.ba {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  touch-action: pan-y;
  cursor: ew-resize;
  user-select: none;
  background: var(--stone);
}
.ba img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.ba-after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 2px; margin-left: -1px;
  background: var(--paper);
  box-shadow: 0 0 12px rgba(28, 38, 32, 0.5);
  pointer-events: none;
}
.ba-handle::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 2.9rem; height: 2.9rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 6px 18px -6px rgba(28, 38, 32, 0.5);
}
.ba-handle svg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1.3rem; height: 1.3rem;
  color: var(--green);
  z-index: 1;
}
.ba-label {
  position: absolute; top: 0.9rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(27, 49, 35, 0.78);
  color: var(--paper);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba-label-before { left: 0.9rem; }
.ba-label-after { right: 0.9rem; }
.ba:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.ba-caption {
  margin-top: 0.9rem;
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
}
.ba-caption .pc-title { font-family: var(--font-serif); font-size: 1.3rem; color: var(--ink); }
.ba-caption .pc-cat { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); white-space: nowrap; }

/* ── Bauphasen-Strecke ─────────────────────────────────────────── */
.bauphasen {
  display: grid; gap: clamp(1.5rem, 3vw, 2rem);
  counter-reset: phase;
}
@media (min-width: 56em) { .bauphasen { grid-template-columns: repeat(3, 1fr); } }
.bauphase figure {
  position: relative;
  border-radius: 1.1rem; overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.1rem;
}
.bauphase img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.bauphase:hover img { transform: scale(1.04); }
.bauphase figure::after {
  counter-increment: phase;
  content: "0" counter(phase);
  position: absolute; left: 0.9rem; bottom: 0.75rem;
  font-family: var(--font-serif); font-size: 2.2rem; line-height: 1;
  color: var(--paper);
  text-shadow: 0 2px 12px rgba(28, 38, 32, 0.6);
}
.bauphase h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.bauphase p { font-size: 0.96rem; }

/* ── Ortsliste (lokales SEO) ───────────────────────────────────── */
.orte {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 1.8rem;
}
.ort {
  padding: 0.5rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--body);
  background: var(--paper);
}

/* ── Leistungs-Querverweise ────────────────────────────────────── */
.svc-links {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}
.svc-link {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  text-decoration: none;
  font-family: var(--font-serif); font-size: 1.2rem; color: var(--ink);
  background: var(--paper);
  transition: border-color 0.3s, transform 0.35s var(--ease-out), color 0.3s;
}
.svc-link:hover { border-color: var(--green); color: var(--green); transform: translateY(-3px); }
.svc-link svg { width: 1rem; height: 1rem; color: var(--brass); flex-shrink: 0; }

/* ── Vorteile-Karten (Kontaktseite) ───────────────────────────── */
.vorteile {
  display: grid;
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}
.vorteil {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 1.1rem;
  padding: clamp(1.6rem, 3vw, 2.1rem);
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s var(--ease-out);
}
@media (hover: hover) {
  .vorteil:hover {
    transform: translateY(-4px);
    border-color: var(--line);
    box-shadow: 0 22px 45px -30px rgba(28, 38, 32, 0.45);
  }
}
.vorteil-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(36, 66, 47, 0.07);
  color: var(--green);
  margin-bottom: 1.25rem;
  transition: background-color 0.35s var(--ease-soft), color 0.35s var(--ease-soft), transform 0.4s var(--ease-out);
}
.vorteil:hover .vorteil-icon {
  background: var(--green);
  color: var(--paper);
  transform: rotate(-6deg);
}
.vorteil-icon svg { width: 1.4rem; height: 1.4rem; }
.vorteil h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.vorteil p { font-size: 0.96rem; }

/* ── Öffnungszeiten ────────────────────────────────────────────── */
.hours { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.3rem; }
.hours-row {
  display: flex; justify-content: space-between; gap: 1.5rem;
  font-size: 0.98rem;
  max-width: 18rem;
}
.hours-row dt { color: var(--body); }
.hours-row dd { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }

/* ── Danke-Seite ───────────────────────────────────────────────── */
.danke-icon {
  width: 5rem; height: 5rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--paper);
  display: grid; place-items: center;
  margin-bottom: 2rem;
  animation: dankePop 0.7s var(--ease-out) both;
}
.danke-icon svg { width: 2.2rem; height: 2.2rem; }
@keyframes dankePop {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: none; opacity: 1; }
}

/* ── Laufband / Ticker ─────────────────────────────────────────── */
.ticker {
  overflow: clip;
  border-block: 1px solid var(--line);
  padding-block: 1.3rem;
  background: var(--paper);
  position: relative; z-index: 2;
}
.ticker-track {
  display: flex; gap: 3.5rem;
  width: max-content;
  animation: ticker 36s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker-item {
  display: flex; align-items: center; gap: 3.5rem;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.6rem); color: var(--green-soft);
  white-space: nowrap;
}
.ticker-item::after {
  content: ""; width: 7px; height: 7px;
  background: var(--brass-soft);
  transform: rotate(45deg); flex-shrink: 0;
}

/* ── Editorial-Intro ───────────────────────────────────────────── */
.intro-grid {
  display: grid; gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
@media (min-width: 56em) {
  .intro-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .intro-copy { padding-top: 1rem; }
}
.intro-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  font-weight: 500; line-height: 1.3;
  color: var(--ink);
}
.intro-quote em { color: var(--green); font-style: italic; }

/* ── Leistungsliste mit Hover-Bildvorschau ─────────────────────── */
.services-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(1.4rem, 2.6vw, 2.1rem);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  position: relative;
  transition: padding-left 0.4s var(--ease-out);
}
@media (hover: hover) {
  .service-row:hover { padding-left: 1rem; }
}
.service-num {
  font-family: var(--font-serif); font-size: 1rem;
  color: var(--brass); font-variant-numeric: tabular-nums;
  min-width: 2.2rem;
}
.service-name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 500; color: var(--ink);
  line-height: 1.15;
  transition: color 0.3s;
}
.service-row:hover .service-name { color: var(--green); font-style: italic; }
.service-tag {
  font-size: 0.85rem; color: var(--body);
  max-width: 16rem; text-align: right;
  display: none;
}
@media (min-width: 48em) { .service-tag { display: block; } }
.service-arrow {
  width: 2.6rem; height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.4s var(--ease-out);
  flex-shrink: 0;
}
.service-arrow svg { width: 1rem; height: 1rem; }
.service-row:hover .service-arrow {
  background: var(--green); border-color: var(--green);
  color: var(--paper); transform: rotate(-45deg);
}

/* schwebende Bildvorschau am Cursor (nur Desktop) */
.service-preview {
  position: fixed; top: 0; left: 0;
  width: clamp(15rem, 20vw, 19rem);
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  overflow: hidden;
  pointer-events: none;
  z-index: 90;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s var(--ease-out), transform 0.35s var(--ease-out);
  box-shadow: 0 30px 60px -20px rgba(28, 38, 32, 0.45);
  display: none;
}
@media (hover: hover) and (pointer: fine) { .service-preview { display: block; } }
.service-preview.is-active { opacity: 1; transform: scale(1); }
.service-preview img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.25s;
}
.service-preview img.is-current { opacity: 1; }

/* ── Prinzipien (Werte) ────────────────────────────────────────── */
.values-grid {
  display: grid; gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.value {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}
.value-icon {
  width: 2.6rem; height: 2.6rem;
  color: var(--green);
  margin-bottom: 1.2rem;
}
.value-icon svg { width: 100%; height: 100%; }
.value h3 { margin-bottom: 0.7rem; }
.value p { font-size: 0.98rem; }

/* ── Prozess ───────────────────────────────────────────────────── */
.process { counter-reset: step; }
.process-grid {
  display: grid; gap: clamp(2.5rem, 5vw, 3rem);
}
@media (min-width: 56em) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-serif);
  font-size: clamp(4rem, 6vw, 5.5rem);
  font-weight: 400; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--brass-soft);
  display: block;
  margin-bottom: 0.35em;
  opacity: 0.75;
}
.step h3 { margin-bottom: 0.8rem; }
.step p { font-size: 0.98rem; }
.step-line { display: none; }

/* ── Projekt-Teaser ────────────────────────────────────────────── */
.projects-teaser {
  display: grid; gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 56em) {
  .projects-teaser { grid-template-columns: repeat(12, 1fr); }
  .pt-a { grid-column: 1 / 6; }
  .pt-b { grid-column: 6 / 10; margin-top: 4rem; }
  .pt-c { grid-column: 10 / 13; margin-top: 8rem; }
}
.project-card {
  display: block; text-decoration: none;
  position: relative;
}
.project-card figure {
  overflow: hidden; border-radius: 1.2rem;
  aspect-ratio: 4 / 3;
  position: relative;
}
.pt-a figure { aspect-ratio: 4 / 3.1; }
.pt-b figure { aspect-ratio: 3 / 3.4; }
.pt-c figure { aspect-ratio: 3 / 4; }
.project-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.project-card:hover img { transform: scale(1.06); }
.project-card figcaption {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding-top: 1rem;
}
.project-card .pc-title {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 500;
  color: var(--ink);
}
.project-card .pc-cat {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brass); white-space: nowrap;
}

/* ── Bewertungen ───────────────────────────────────────────────── */
.reviews-grid {
  display: grid; gap: clamp(1.5rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  align-items: start;
}

/* Bewertungen als durchlaufende Marquee */
.reviews-row {
  overflow: hidden;
  padding-block: 6px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  width: max-content;
  animation: reviewsMarquee 60s linear infinite;
  will-change: transform;
}
.reviews-marquee:hover .reviews-track,
.reviews-track:focus-within { animation-play-state: paused; }
.reviews-track .review {
  flex: 0 0 auto;
  width: clamp(17rem, 78vw, 23rem);
}
@keyframes reviewsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  .reviews-track .review { width: clamp(17rem, 100%, 22rem); }
}
.review {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 1.2rem;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  display: flex; flex-direction: column;
  box-shadow: 0 18px 40px -30px rgba(28, 38, 32, 0.35);
}
.review-stars { display: flex; gap: 0.25rem; color: var(--brass-soft); margin-bottom: 1.3rem; }
.review-stars svg { width: 1.05rem; height: 1.05rem; }
.review blockquote {
  font-family: var(--font-serif); font-size: 1.22rem; line-height: 1.45;
  color: var(--ink); flex: 1;
}
.review blockquote::before { content: "\201E"; }
.review blockquote::after { content: "\201C"; }
.review footer {
  margin-top: 1.6rem; padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: 0.92rem;
}
.review cite { font-style: normal; font-weight: 600; color: var(--ink); }
.review .review-src { font-size: 0.78rem; color: var(--body); letter-spacing: 0.06em; }
.reviews-note {
  text-align: center; font-size: 0.9rem; color: var(--body);
  margin-top: 2.2rem;
}
.reviews-note a { color: var(--green); font-weight: 600; }

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq-wrap { max-width: 50rem; margin-inline: auto; }
.faq {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-block: 1.5rem;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500; color: var(--ink);
  transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--green); }
.faq-icon {
  width: 2.2rem; height: 2.2rem; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center;
  transition: transform 0.4s var(--ease-out), background-color 0.3s, border-color 0.3s, color 0.3s;
  color: var(--ink);
}
.faq-icon svg { width: 0.95rem; height: 0.95rem; }
.faq[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--green); border-color: var(--green); color: var(--paper);
}
.faq-body {
  overflow: hidden;
  padding-bottom: 1.6rem;
  max-width: 44rem;
}
.faq-body p { font-size: 1rem; }

/* ── CTA-Band ──────────────────────────────────────────────────── */
.cta {
  background:
    radial-gradient(120% 160% at 85% -20%, rgba(147, 160, 141, 0.25) 0%, transparent 55%),
    linear-gradient(160deg, var(--green-deep) 0%, var(--green) 100%);
  color: rgba(247, 244, 237, 0.85);
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.75rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta .leaf { color: rgba(247, 244, 237, 0.14); }
.cta .leaf-1 { left: -3rem; bottom: -2rem; }
.cta .leaf-2 { right: -2rem; top: -2rem; color: rgba(247, 244, 237, 0.1); }
.cta .kicker { color: var(--brass-soft); justify-content: center; }
.cta .kicker::before, .cta .kicker::after { background: var(--brass-soft); }
.cta h2 {
  color: var(--paper);
  font-size: clamp(2.1rem, 4.4vw, 3.8rem);
  max-width: 24ch; margin-inline: auto;
  margin-bottom: 1.2rem;
}
.cta h2 em { font-style: italic; color: var(--brass-soft); }
.cta p { max-width: 38rem; margin-inline: auto; margin-bottom: 2.4rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  background: var(--green-deep);
  color: rgba(247, 244, 237, 0.72);
  padding-top: var(--space-block);
  margin-top: var(--space-section);
  font-size: 0.96rem;
  position: relative; z-index: 2;
}
.footer a { color: rgba(247, 244, 237, 0.85); text-decoration: none; transition: color 0.25s; }
.footer a:hover { color: var(--white); }
.footer-grid {
  display: grid; gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 56em) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
}
.footer-brand img { width: 64px; margin-bottom: 1.2rem; }
.footer-brand .brand-name { color: var(--paper); font-size: 1.5rem; display: block; margin-bottom: 0.4rem; }
.footer-brand p { max-width: 22rem; font-size: 0.94rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 1.2rem;
}
.footer ul li + li { margin-top: 0.65rem; }
.footer-bottom {
  border-top: 1px solid rgba(247, 244, 237, 0.14);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem;
  font-size: 0.85rem;
}
/* Webdesign-Credit: Text + Logo, eine Zeile, vertikal zentriert */
.credit {
  display: inline-flex; align-items: center; gap: 0.55rem;
  text-decoration: none;
}
.credit img {
  height: 1.15rem; width: auto;
  filter: invert(1);
  opacity: 0.85;
  transition: opacity 0.25s;
}
.credit:hover img { opacity: 1; }

/* ── Segensband (christlicher Abschluss der alten Seite) ───────── */
.segen {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(2.6rem, 6vw, 4.2rem) var(--gutter) clamp(2.8rem, 7vw, 4.6rem);
  color: #f2d44d;
  background:
    radial-gradient(130% 150% at 50% 22%, #7d171b 0%, #5c0e12 52%, #470a0d 100%);
  overflow: hidden;
}
/* feine senkrechte Webstruktur wie im Original */
.segen::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.5; mix-blend-mode: multiply;
  background: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0 1px, transparent 1px 6px);
}
.segen-verse {
  position: relative; z-index: 1;
  max-width: 56rem; margin-inline: auto;
  padding-block: clamp(1.1rem, 2.6vw, 1.9rem);
  border-top: 3px double rgba(242, 212, 77, 0.62);
  border-bottom: 3px double rgba(242, 212, 77, 0.62);
}
.segen-verse p {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 2.4vw, 1.65rem);
  line-height: 1.4;
  color: #f2d44d;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.segen-emblem {
  position: relative; z-index: 1;
  width: clamp(4.2rem, 9vw, 6rem); height: auto;
  margin: clamp(1.9rem, 4.5vw, 3rem) auto 0;
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.4));
}

/* ── Unterseiten-Hero ──────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding-top: clamp(8rem, 18vh, 12rem);
  padding-bottom: clamp(3.5rem, 8vh, 6rem);
  overflow: clip;
  background: linear-gradient(165deg, var(--paper) 50%, var(--cream) 100%);
}
.page-hero .hero-watermark { top: 2rem; right: -6rem; font-size: clamp(14rem, 28vw, 26rem); }
.page-hero-inner { position: relative; z-index: 2; max-width: 56rem; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-soft); margin-bottom: 1.8rem;
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb svg { width: 0.8rem; height: 0.8rem; opacity: 0.6; }
.page-hero h1 em { font-style: italic; color: var(--green); }
.page-hero .lead { margin-top: 1.6rem; }
.page-hero .leaf-1 { left: auto; right: 6%; bottom: -2rem; }

/* Hero mit Bild (Unterseiten) */
.page-hero-media {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  position: relative; z-index: 2;
}
.page-hero-media figure {
  border-radius: 1.5rem; overflow: hidden;
  aspect-ratio: 21 / 9;
  position: relative;
}
@media (max-width: 47.9375em) { .page-hero-media figure { aspect-ratio: 4 / 3; } }
.page-hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero-media .parallax-img { height: 120%; margin-top: -10%; will-change: transform; }

/* ── Leistungen: Editorial-Blöcke ──────────────────────────────── */
.svc-block {
  display: grid; gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 56em) {
  .svc-block { grid-template-columns: repeat(2, 1fr); }
  .svc-block:nth-child(even) .svc-media { order: 2; }
}
.svc-block + .svc-block { border-top: 1px solid var(--line); }
.svc-media { position: relative; }
.svc-media figure {
  border-radius: 1.2rem; overflow: hidden;
  aspect-ratio: 4 / 3;
}
.svc-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.svc-block:hover .svc-media img { transform: scale(1.05); }
.svc-num {
  position: absolute; top: -1.6rem; left: -0.4rem;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 7vw, 6rem); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--brass-soft);
  z-index: 2; pointer-events: none;
}
.svc-copy h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1rem; }
.svc-copy .svc-details {
  margin-top: 1.4rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.svc-detail {
  display: flex; align-items: baseline; gap: 0.7rem;
  font-size: 0.98rem;
}
.svc-detail svg { width: 0.9rem; height: 0.9rem; color: var(--brass); flex-shrink: 0; transform: translateY(2px); }

/* ── Projekte: Galerie + Filter ────────────────────────────────── */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.filter-btn {
  padding: 0.6rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem; font-weight: 500;
  color: var(--body);
  background: transparent;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}
.filter-btn:hover { border-color: var(--green); color: var(--green); }
.filter-btn[aria-pressed="true"] {
  background: var(--green); border-color: var(--green); color: var(--paper);
}

.gallery {
  display: grid; gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
}
.gallery-item {
  position: relative;
  border-radius: 1rem; overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  padding: 0; text-align: inherit; display: block; width: 100%;
  transition: opacity 0.45s var(--ease-soft), transform 0.45s var(--ease-soft);
}
.gallery-item.is-hidden { display: none; }
.gallery-item.is-faded { opacity: 0; transform: scale(0.96); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27, 49, 35, 0.45) 0%, transparent 38%);
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gi-label {
  position: absolute; left: 1.1rem; bottom: 0.95rem; right: 1.1rem;
  color: var(--paper); font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
  z-index: 2; pointer-events: none;
  text-align: left;
}
.gallery-item:hover .gi-label { opacity: 1; transform: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(20, 28, 23, 0.94);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease-soft), visibility 0s 0.35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; transition: opacity 0.35s var(--ease-soft); }
.lightbox img {
  max-width: min(100%, 72rem); max-height: 82dvh;
  object-fit: contain;
  border-radius: 0.6rem;
  transform: scale(0.96);
  transition: transform 0.35s var(--ease-out);
}
.lightbox.is-open img { transform: none; }
.lightbox-caption {
  position: absolute; bottom: clamp(1rem, 3vw, 2rem); left: 50%;
  transform: translateX(-50%);
  color: rgba(247, 244, 237, 0.85); font-size: 0.9rem;
  text-align: center; max-width: 80%;
}
.lightbox-btn {
  position: absolute;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(247, 244, 237, 0.35);
  color: var(--paper);
  display: grid; place-items: center;
  transition: background-color 0.25s, transform 0.25s;
  background: rgba(20, 28, 23, 0.4);
}
.lightbox-btn:hover { background: rgba(247, 244, 237, 0.15); }
.lightbox-btn svg { width: 1.15rem; height: 1.15rem; }
.lb-close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lb-prev { left: clamp(0.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(0.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }

/* ── Über uns ──────────────────────────────────────────────────── */
.about-grid {
  display: grid; gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
@media (min-width: 56em) {
  .about-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
}
.about-media { position: relative; }
.about-media figure {
  border-radius: 0 5rem 0 5rem; overflow: hidden;
  aspect-ratio: 4 / 4.6;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; right: -0.8rem; bottom: 2.2rem;
  background: var(--green);
  color: var(--paper);
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 20px 40px -18px rgba(27, 49, 35, 0.55);
}
.about-badge .stat-value { color: var(--paper); font-size: 2.2rem; }
.about-badge .stat-value sup { color: var(--brass-soft); }
.about-badge .stat-label { color: rgba(247, 244, 237, 0.8); font-size: 0.8rem; margin-top: 0.2rem; }

/* ── Kontakt ───────────────────────────────────────────────────── */
.contact-grid {
  display: grid; gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
@media (min-width: 60em) {
  .contact-grid { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
}
.contact-info { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
}
.contact-item .ci-icon {
  width: 2.8rem; height: 2.8rem; flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--green);
}
.contact-item .ci-icon svg { width: 1.2rem; height: 1.2rem; }
.contact-item h3 { font-family: var(--font-sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-soft); margin-bottom: 0.3rem; }
.contact-item p, .contact-item a { font-size: 1.05rem; color: var(--ink); text-decoration: none; }
.contact-item a:hover { color: var(--green); }
.contact-item a.big { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; }

/* Formular */
.form-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 1.5rem;
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: 0 30px 60px -40px rgba(28, 38, 32, 0.35);
}
.form-grid { display: grid; gap: 1.3rem; }
@media (min-width: 40em) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-field-full { grid-column: 1 / -1; }
}
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field label { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.form-field label span { color: var(--brass); }
.form-field input, .form-field textarea, .form-field select {
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 0.85rem 1.05rem;
  background: var(--paper);
  font-size: 1rem;
  min-height: 48px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-field textarea { resize: vertical; min-height: 8.5rem; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(36, 66, 47, 0.14);
}
.form-hint { font-size: 0.82rem; color: var(--body); }
.form-consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.88rem; }
.form-field label.form-consent span { color: inherit; font-weight: 400; }
.form-consent input {
  width: 1.15rem; height: 1.15rem; min-height: 0;
  margin-top: 0.2rem; accent-color: var(--green); flex-shrink: 0;
}
.form-consent a { color: var(--green); }
.form-status { font-size: 0.95rem; font-weight: 600; margin-top: 0.6rem; }
.form-status.ok { color: var(--green); }
.form-status.error { color: #A33B2E; }

/* ── Rechtsseiten ──────────────────────────────────────────────── */
.legal { max-width: 46rem; }
.legal h2 { font-size: 1.6rem; margin-top: 2.8rem; margin-bottom: 0.9rem; }
.legal h3 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 700; margin-top: 1.8rem; margin-bottom: 0.5rem; }
.legal p, .legal li { font-size: 0.99rem; }
.legal ul { padding-left: 1.2rem; margin-block: 0.8rem; }
.legal a { color: var(--green); }
.legal .note {
  background: var(--cream); border-left: 3px solid var(--brass-soft);
  padding: 1rem 1.25rem; border-radius: 0 0.6rem 0.6rem 0;
  font-size: 0.92rem; margin-block: 1.4rem;
}

/* ── Scroll-Reveals ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(2.2rem);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-fade {
  opacity: 0;
  transition: opacity 1.1s var(--ease-soft);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-fade.is-in { opacity: 1; }

/* ── Custom Cursor (nur feine Zeiger) ──────────────────────────── */
.cursor-dot, .cursor-ring { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor-dot, .cursor-ring {
    display: block;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: var(--z-cursor);
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor-dot {
    width: 6px; height: 6px;
    background: var(--green);
  }
  .cursor-ring {
    width: 34px; height: 34px;
    border: 1px solid rgba(36, 66, 47, 0.45);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
                border-color 0.3s, background-color 0.3s;
  }
  body.cursor-active .cursor-ring {
    width: 52px; height: 52px;
    background: rgba(36, 66, 47, 0.07);
    border-color: rgba(36, 66, 47, 0.2);
  }
}

/* ── Reduzierte Bewegung ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .reveal, .reveal-fade { opacity: 1; transform: none; }
  .reveal-lines .line > span { transform: none; }
  .ticker-track { animation: none; }
  .hero-figure img { animation: none; transform: none; }
  .hero-figure::before { display: none; }
  .scroll-hint::after { animation: none; transform: scaleY(1); }
  .cursor-dot, .cursor-ring { display: none !important; }
  .parallax-img { transform: none !important; }
}

/* ── Mobile-Feinschliff: genug Luft ────────────────────────────── */
@media (max-width: 47.9375em) {
  body { font-size: 1rem; }
  .hero { padding-top: 7.5rem; }
  .hero-stats { gap: 1.4rem 2.2rem; }
  .hero-watermark { display: none; }
  .section { padding-block: clamp(4.5rem, 16vw, 6rem); }
  .service-tag { display: none; }
  .cta { text-align: left; }
  .cta .kicker { justify-content: flex-start; }
  .cta h2, .cta p { margin-inline: 0; }
  .cta-actions { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .about-badge { right: 0.6rem; bottom: 1.4rem; padding: 0.9rem 1.1rem; }
  .page-hero .hero-watermark { display: none; }
}

/* Segensband: auf dem Handy Emblem über der Schnellkontakt-Leiste halten */
@media (max-width: 63.9375em) {
  .segen { padding-bottom: calc(clamp(2.8rem, 7vw, 4.6rem) + 5.75rem); }
}
