/* =========================================================
   Stieglitz Dienstleistungen — "Naturkundliche Tafel"
   Waldgrün #163a2b · Moos #2f6b45 · Papier #f5f1e6
   Logo-Gelb #f2e929 · Logo-Rot #d4242c · Tinte #16140f
   Display: Fraunces · Body: Hanken Grotesk · Label: Space Mono
   ========================================================= */

:root {
  --forest: #163a2b;
  --forest-2: #0f2c20;
  --moss: #2f6b45;
  --moss-soft: #5f9b6e;
  --paper: #f5f1e6;
  --paper-2: #ece6d4;
  --haze: #e3ebdc;
  --gold: #f2e929;
  --vermilion: #d4242c;
  --ink: #16140f;
  --ink-soft: #4a463c;
  --line: #d9d2bf;

  --mono: 'Space Mono', ui-monospace, monospace;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Hanken Grotesk', system-ui, sans-serif;

  --wrap: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 24px 60px rgba(22, 20, 15, .16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* ----- Typo-Bausteine ----- */
.kicker {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--moss); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.kicker::before { content: ''; width: 26px; height: 1px; background: currentColor; }
.kicker-light { color: var(--gold); }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -.015em; }

/* ----- Buttons / Pills ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 1rem; letter-spacing: .01em;
  padding: 15px 30px; border-radius: 2px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s; will-change: transform;
}
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--moss); box-shadow: 0 12px 30px rgba(47,107,69,.4); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--paper); }
.btn-block { width: 100%; }
.values .btn-line, .feature-text .btn-line { color: var(--paper); border-color: rgba(245,241,230,.5); }

.pill {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: .82rem; font-weight: 700;
  padding: 10px 18px; border-radius: 999px; transition: transform .3s var(--ease), background .3s;
}
.pill-call { background: var(--gold); color: var(--ink); }
.pill-call:hover { transform: translateY(-2px); }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--vermilion); box-shadow: 0 0 0 0 rgba(212,36,44,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(212,36,44,.5); } 70% { box-shadow: 0 0 0 8px rgba(212,36,44,0); } 100% { box-shadow: 0 0 0 0 rgba(212,36,44,0); } }

/* ----- Körnung ----- */
.grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----- Scroll-Fortschritt ----- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--gold); z-index: 1000; transition: width .1s linear; }

/* ----- Skip-Link (Tastatur-Bedienung) ----- */
.skip { position: absolute; left: -9999px; top: 0; z-index: 2000; background: var(--ink); color: var(--paper); padding: 10px 18px; font-family: var(--mono); font-size: .8rem; border-radius: 0 0 4px 0; }
.skip:focus { left: 0; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(245,241,230,.78); backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s, padding .3s;
}
.header.scrolled { border-color: var(--line); background: rgba(245,241,230,.92); }
.header-inner { position: relative; z-index: 2; display: flex; align-items: center; gap: 26px; padding: 14px 28px; }

.brand { display: flex; align-items: center; gap: 13px; margin-right: auto; }
/* Logo + kleiner Sitzast: Ast liegt hinter dem Logo, nur auf Logo-Breite (verdeckt nie den Schriftzug) */
.brand-logo { position: relative; width: 62px; height: 62px; flex: none;
  /* Start: eingeklappt -> "Stieglitz" steht ganz links; faehrt beim Aufdecken mit dem Ast heraus */
  opacity: 0; transform: translateX(-14px) scale(.85); transform-origin: left center; margin-right: -75px;
  transition: opacity .55s var(--ease), transform .6s var(--ease), margin-right .6s var(--ease); }
.brand-logo.in { opacity: 1; transform: none; margin-right: 0; }
.perch { position: absolute; left: -16px; top: 0; width: 78px; height: auto; z-index: 0; pointer-events: none; overflow: visible; }
.brand-mark { position: relative; z-index: 1; width: 62px; height: 62px; object-fit: contain; }
/* der Vogel-Anflug deckt das Logo am Ende auf */
#brandMark { opacity: 0; transition: opacity .5s var(--ease), transform .6s var(--ease); }
#brandMark:not(.revealed) { transform: scale(.82); }
#brandMark.revealed { opacity: 1; transform: none; }
.brand-type { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; letter-spacing: -.02em; }
.brand-tag { font-family: var(--mono); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }

.nav { display: flex; gap: 30px; }
.nav a { font-size: .96rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 6px 0; transition: color .25s; }
.nav-no { font-family: var(--mono); font-size: .62rem; color: var(--moss-soft); margin-right: 7px; vertical-align: 3px; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--moss); transition: width .3s var(--ease); }
.nav a:hover { color: var(--ink); } .nav a:hover::after { width: 100%; }
.nav a.active { color: var(--ink); } .nav a.active::after { width: 100%; }

.burger { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2px; background: var(--ink); transition: .3s; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-8px) rotate(-45deg); }

/* ===== Lebendiger Flieg-Vogel ===== */
.bird-canvas { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 1100; pointer-events: none; }
.bird-canvas.faded { opacity: 0; transition: opacity .5s ease; }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: clamp(640px, 94vh, 1000px); display: flex; align-items: center;
  background:
    radial-gradient(120% 90% at 85% -10%, #1d4a35 0%, transparent 55%),
    radial-gradient(90% 80% at -5% 110%, #0c2419 0%, transparent 55%),
    var(--forest);
  color: var(--paper);
}
.hero .grain { opacity: .35; }
.route { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; color: rgba(242,233,41,.5); transform: translate3d(0, var(--ry, 0), 0); will-change: transform; }
#routePath { stroke-dashoffset: 1600; }
.route-mark { color: rgba(242,233,41,.6); }
.route-mark-end { color: rgba(242,233,41,.9); }

.sprig { position: absolute; z-index: 2; color: rgba(95,155,110,.4); width: clamp(120px, 14vw, 200px); }
.sprig-tl { top: -10px; left: -14px; transform: translate3d(0, var(--sy1, 0), 0) rotate(8deg); will-change: transform; }
.sprig-br { bottom: -16px; right: -10px; transform: translate3d(0, var(--sy2, 0), 0) rotate(188deg); will-change: transform; }

.leaf-field { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.leaf { position: absolute; top: -10%; will-change: transform; animation: leafFall linear forwards; }
.leaf-inner { display: block; will-change: transform; animation: leafSway ease-in-out infinite alternate; }
.leaf svg { display: block; width: 100%; height: 100%; }
@keyframes leafFall { to { transform: translateY(118vh); } }
@keyframes leafSway { from { transform: translateX(-22px) rotate(-40deg); } to { transform: translateX(22px) rotate(60deg); } }

.hero-inner { position: relative; z-index: 5; padding-top: 60px; padding-bottom: 60px; }
.eyebrow { font-family: var(--mono); font-size: .76rem; letter-spacing: .14em; color: var(--moss-soft); text-transform: uppercase; margin-bottom: 26px; }
.hero-title { font-size: clamp(2.9rem, 8vw, 6.4rem); font-weight: 400; letter-spacing: -.025em; max-width: 16ch; }
.hero-title em { color: var(--gold); font-weight: 500; }
/* zeilenweiser Masken-Reveal (Bewegung übernehmen die Zeilen, nicht das generische .reveal) */
.hero-title.reveal { opacity: 1; transform: none; }
.hero-title .line { display: block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.1em; }
.hero-title .line-in { display: block; transform: translateY(112%); transition: transform .95s var(--ease); }
.hero-title.in .line-in { transform: translateY(0); }
.hero-title.in .line:nth-child(2) .line-in { transition-delay: .12s; }
.hero-lead { font-size: clamp(1.06rem, 1.9vw, 1.32rem); color: rgba(245,241,230,.82); max-width: 58ch; margin: 30px 0 38px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn-line { color: var(--paper); border-color: rgba(245,241,230,.55); }
.hero .btn-line:hover { background: var(--paper); color: var(--forest); border-color: var(--paper); }

.hero-facts { display: flex; flex-wrap: wrap; gap: 44px; margin-top: 54px; border-top: 1px solid rgba(245,241,230,.18); padding-top: 26px; }
.hero-facts dt { font-family: var(--mono); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--moss-soft); margin-bottom: 6px; }
.hero-facts dd { font-size: 1.02rem; font-weight: 500; }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 5; width: 24px; height: 38px; border: 1.5px solid rgba(245,241,230,.5); border-radius: 14px; display: grid; place-items: start center; padding-top: 7px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 2px; background: var(--gold); animation: cue 1.6s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(12px); } }

/* ===== Anspruch / Positionierung ===== */
.claim { position: relative; overflow: hidden; background: var(--forest-2); color: var(--paper); padding: clamp(70px, 10vw, 130px) 0; border-block: 1px solid rgba(245,241,230,.1); }
.claim .wrap { position: relative; z-index: 2; max-width: 980px; }
.claim-text { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 4.2vw, 3.4rem); line-height: 1.12; letter-spacing: -.02em; max-width: 20ch; margin-top: 4px; }
.claim-text em { color: var(--gold); font-style: italic; }
.claim-sub { margin-top: 26px; font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: rgba(245,241,230,.72); max-width: 56ch; }
.claim-sprig { position: absolute; right: -30px; top: 50%; transform: translateY(-50%) rotate(12deg); width: clamp(200px, 28vw, 420px); color: var(--moss-soft); opacity: .1; z-index: 1; pointer-events: none; }

/* ===== Rasen am unteren Bildschirmrand — echte gezeichnete Halme (Canvas): wehen & werden gemäht ===== */
.lawn { position: fixed; left: 0; bottom: 0; width: 100%; height: 74px; z-index: 700; pointer-events: none; display: block; transform: translateZ(0); will-change: transform; }

/* ===== Sektionen / Köpfe ===== */
.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; overflow: hidden; }
.head { max-width: 760px; margin-bottom: clamp(48px, 7vw, 84px); position: relative; z-index: 0; }
/* editoriale Ghost-Nummer hinter dem Sektionskopf */
.head[data-no]::before {
  content: attr(data-no); position: absolute; top: -.42em; right: -.04em; z-index: -1;
  font-family: var(--serif); font-weight: 500; font-size: clamp(4rem, 11vw, 9rem); line-height: 1;
  letter-spacing: -.04em; color: var(--ink); opacity: .05; pointer-events: none;
  transform: translateY(var(--ph, 0)); will-change: transform;
}
.head-light[data-no]::before { color: var(--paper); opacity: .08; }

/* große, blasse botanische Wasserzeichen (Tiefe) */
.watermark { position: absolute; z-index: 0; pointer-events: none; width: clamp(220px, 30vw, 460px); color: var(--moss); opacity: .05; }
.watermark-br { right: -40px; bottom: -30px; transform: rotate(190deg); }
.watermark-tl { left: -46px; top: -10px; transform: rotate(10deg); }
#arbeitsweise .wrap { position: relative; z-index: 1; }
.area .watermark { color: var(--paper); opacity: .045; }
.head h2, .feature h2, .values h2, .contact h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
.head h2 em, .feature em, .values em, .contact em { color: var(--moss); }
.head-lead { font-size: 1.16rem; color: var(--ink-soft); margin-top: 18px; max-width: 52ch; }
.head-light h2 { color: var(--paper); } .head-light em { color: var(--gold); }
.head-light .head-lead { color: rgba(245,241,230,.78); margin-inline: auto; }

/* ===== Leistungsverzeichnis ===== */
.services { list-style: none; border-top: 1px solid var(--line); }
.svc {
  display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 28px;
  padding: 34px 12px; border-bottom: 1px solid var(--line); position: relative; transition: background .4s var(--ease), padding .4s var(--ease);
}
.svc::before { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--haze); z-index: -1; transition: width .4s var(--ease); }
.svc:hover { padding-left: 28px; }
.svc:hover::before { width: 100%; }
.svc-no { font-family: var(--mono); font-size: 1.1rem; color: var(--moss); font-weight: 700; }
.svc-body h3 { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 400; }
.svc-body p { color: var(--ink-soft); margin-top: 6px; max-width: 62ch; }
.svc-leaf { width: 40px; height: 40px; color: var(--moss-soft); opacity: 0; transform: translateX(-10px) rotate(-20deg); transition: .4s var(--ease); }
.svc:hover .svc-leaf { opacity: 1; transform: none; color: var(--moss); }

/* ===== Feature ===== */
.feature { background: var(--forest); color: var(--paper); position: relative; overflow: hidden; padding: clamp(80px, 11vw, 150px) 0; }
.feature .grain { opacity: .3; }
.feature-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.feature-text h2 { color: var(--paper); font-size: clamp(2.2rem, 5vw, 4rem); }
.feature-text em { color: var(--gold); }
.feature-text p { color: rgba(245,241,230,.8); font-size: 1.12rem; margin: 24px 0 34px; max-width: 48ch; }
.feature-plate { position: relative; aspect-ratio: 4/4.3; display: grid; place-items: center; }
.feature-plate::before { content: ''; position: absolute; inset: 6% 10%; border: 1px solid rgba(245,241,230,.22); border-radius: 4px; }
.feature-plate::after { content: ''; position: absolute; inset: 6% 10%; border: 1px solid rgba(245,241,230,.22); border-radius: 4px; transform: rotate(-3deg); }
.plate-bird { position: relative; z-index: 2; width: 66%; filter: drop-shadow(0 30px 40px rgba(0,0,0,.4)); animation: bob 6s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(-1.5deg); } }

/* Heller „Rund ums Haus"-Bereich (bessere Lesbarkeit) */
.feature.feature-light { background: var(--haze); color: var(--ink); }
.feature-light .feature-text h2 { color: var(--ink); }
.feature-light .feature-text em { color: var(--moss); }
.feature-light .feature-text p { color: var(--ink-soft); }
.feature-light .kicker-light { color: var(--moss); }
.feature-light .feature-text .btn-line { color: var(--ink); border-color: var(--ink); }
.feature-light .feature-text .btn-line:hover { background: var(--ink); color: var(--paper); }
.feature-light .feature-plate { background: #fbf7ec; border: 1px solid var(--line); border-radius: 10px; padding: 10% 8%; box-shadow: var(--shadow); aspect-ratio: 4/3.6; }
.feature-light .feature-plate::before, .feature-light .feature-plate::after { inset: 9% 9%; border-color: rgba(22,20,15,.14); }
.feature-light .plate-bird { filter: drop-shadow(0 16px 24px rgba(22,20,15,.18)); width: 54%; }
.feature-light .grain { opacity: .16; }

/* Feature-Plate als „naturkundliche Tafel" */
.plate-index { position: absolute; top: 8%; left: 9%; z-index: 3; font-family: var(--mono); font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--moss); }
.plate-sprig { position: absolute; z-index: 1; color: var(--moss); opacity: .16; pointer-events: none; }
.plate-sprig-1 { top: 9%; right: 7%; width: 44%; transform: rotate(10deg); }
.plate-sprig-2 { bottom: 12%; left: 8%; width: 36%; transform: rotate(195deg); }
.plate-cap { position: absolute; bottom: 6.5%; left: 0; right: 0; z-index: 3; text-align: center; font-family: var(--mono); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.plate-art { position: relative; z-index: 2; width: 82%; color: var(--moss); }

/* ===== Werte ===== */
.values { position: relative; overflow: hidden; background: var(--forest-2); color: var(--paper); padding: clamp(80px, 11vw, 150px) 0; }
.values .head { margin: 0 auto clamp(48px,7vw,84px); text-align: center; max-width: 720px; }
.values .kicker { justify-content: center; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(245,241,230,.14); border: 1px solid rgba(245,241,230,.14); position: relative; z-index: 2; }
.value { position: relative; background: var(--forest-2); padding: 38px 30px; transition: background .4s var(--ease); }
.value::after { content: ''; position: absolute; left: 0; top: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.value:hover { background: var(--forest); }
.value:hover::after { transform: scaleX(1); }
.value-no { font-family: var(--mono); font-size: .76rem; letter-spacing: .14em; color: var(--gold); margin-bottom: 20px; }
.value h3 { font-size: 1.5rem; color: var(--paper); margin-bottom: 12px; }
.value p { color: rgba(245,241,230,.82); font-size: .98rem; }

/* ===== Arbeitsweise ===== */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: s; }
.step { position: relative; padding-top: 30px; border-top: 2px solid var(--ink); }
.step-no { font-family: var(--serif); font-size: 3.4rem; color: var(--moss); line-height: 1; display: block; margin-bottom: 14px; }
.step h3 { font-size: 1.4rem; font-weight: 500; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: .98rem; }

/* ===== Kontakt ===== */
.contact { padding: clamp(80px, 11vw, 150px) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.specimen { list-style: none; margin-top: 30px; border-top: 1px solid var(--line); }
.specimen li { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.sp-key { font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--moss); padding-top: 3px; }
.sp-val { font-size: 1.08rem; font-weight: 500; }
.sp-val a:hover { color: var(--vermilion); }

.contact-form { background: var(--ink); color: var(--paper); padding: clamp(30px, 4vw, 48px); border-radius: 4px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.7rem; color: var(--paper); margin-bottom: 26px; }
.contact-form label { display: block; font-family: var(--mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(245,241,230,.66); margin-bottom: 20px; }
.contact-form input, .contact-form textarea {
  width: 100%; margin-top: 9px; padding: 13px 0; font: inherit; font-family: var(--sans); color: var(--paper);
  background: transparent; border: 0; border-bottom: 1.5px solid rgba(245,241,230,.28); transition: border-color .3s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(245,241,230,.4); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form .btn-solid { background: var(--gold); color: var(--ink); margin-top: 8px; }
.contact-form .btn-solid:hover { background: var(--paper); }
.form-note { font-family: var(--mono); font-size: .74rem; color: rgba(245,241,230,.55); margin-top: 16px; text-align: center; }
.form-note.ok { color: var(--gold); }

/* ===== Footer ===== */
.footer { position: relative; overflow: hidden; background: var(--forest); color: rgba(245,241,230,.78); padding: clamp(60px,8vw,96px) 0 32px; }
.footer .grain { opacity: .3; }
.footer .wrap { position: relative; z-index: 2; }
.footer-top { display: flex; flex-wrap: wrap; gap: 26px; justify-content: space-between; align-items: center; }
.brand-footer .brand-name, .brand-footer .brand-tag { color: var(--paper); }
.brand-footer .brand-mark { opacity: 1; transform: none; }
.footer-contact { text-align: right; font-size: .96rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-rule { display: flex; align-items: center; gap: 18px; margin: 46px 0 30px; }
.footer-rule span { flex: 1; height: 1px; background: rgba(245,241,230,.14); }
.footer-rule svg { width: 22px; height: 22px; color: var(--moss-soft); flex: none; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(245,241,230,.14); font-family: var(--mono); font-size: .74rem; color: rgba(245,241,230,.5); }
.footer-links a:hover { color: var(--paper); }

/* ===== FAB ===== */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 800; width: 58px; height: 58px; border-radius: 50%; display: none; place-items: center; background: var(--vermilion); color: #fff; box-shadow: 0 14px 30px rgba(212,36,44,.45); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Leistungs-Tags ===== */
.svc-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.svc-tags li { font-family: var(--mono); font-size: .67rem; letter-spacing: .03em; color: var(--moss); background: var(--paper-2); border: 1px solid var(--line); padding: 5px 11px; border-radius: 999px; }

/* ===== Durch das Jahr ===== */
.seasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.season { background: var(--paper); padding: 36px 28px; transition: background .4s var(--ease); }
.season:hover { background: #fbf7ec; }
.season-leaf { width: 36px; height: 36px; color: var(--moss-soft); display: block; margin-bottom: 18px; transition: transform .4s var(--ease), color .4s; }
.season:hover .season-leaf { color: var(--moss); transform: scale(1.1); }
.season-no { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; font-family: var(--mono); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--moss); margin-bottom: 8px; }
.season-mo { color: var(--moss-soft); letter-spacing: .12em; }
.season h3 { font-size: 1.45rem; margin-bottom: 10px; }
.season p { color: var(--ink-soft); font-size: .96rem; }

/* ===== Einsatzgebiet ===== */
.area { position: relative; overflow: hidden; background: var(--forest); color: var(--paper); padding: clamp(80px,11vw,150px) 0; }
.area .grain { opacity: .3; }
.area-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px,6vw,90px); align-items: start; }
.area-text h2 { color: var(--paper); font-size: clamp(2.2rem,5vw,4rem); }
.area-text em { color: var(--gold); }
.area-text p { color: rgba(245,241,230,.8); font-size: 1.12rem; margin: 22px 0 32px; max-width: 44ch; }
.area .btn-solid { background: var(--gold); color: var(--ink); }
.area .btn-solid:hover { background: var(--paper); box-shadow: none; }
.area-group { font-family: var(--mono); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--moss-soft); margin: 28px 0 14px; }
.area-group:first-child { margin-top: 0; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; }
.chips li { font-size: .92rem; color: var(--paper); background: rgba(245,241,230,.06); border: 1px solid rgba(245,241,230,.16); padding: 7px 14px; border-radius: 999px; transition: background .3s, border-color .3s; }
.chips li:hover { background: rgba(242,233,41,.14); border-color: var(--gold); }

/* ===== FAQ ===== */
.faq { max-width: 860px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 4px; font-family: var(--serif); font-size: clamp(1.18rem,2.3vw,1.55rem); color: var(--ink); transition: color .25s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--sans); font-weight: 400; font-size: 1.7rem; line-height: 1; color: var(--moss); transition: transform .3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--moss); }
.faq-a { padding: 0 4px 28px; max-width: 64ch; }
.faq-a p { color: var(--ink-soft); font-size: 1.04rem; }

/* ===== Footer-Spalten ===== */
.footer-top { align-items: flex-start; gap: 40px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, auto); gap: 36px 56px; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-h { font-family: var(--mono); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.footer-col a, .footer-col p { font-size: .94rem; color: rgba(245,241,230,.78); line-height: 1.5; }
.footer-col a { transition: color .25s; }
.footer-col a:hover { color: var(--paper); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .feature-grid, .contact-grid { grid-template-columns: 1fr; }
  .feature-plate { max-width: 460px; margin-inline: auto; order: -1; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .seasons { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: 1fr; }
  .footer-nav { gap: 30px 40px; }
}
@media (max-width: 720px) {
  .nav, .header-call { display: none; }
  .burger { display: flex; }
  .nav.open { display: flex; flex-direction: column; gap: 4px; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); padding: 16px 28px; box-shadow: var(--shadow); border-top: 1px solid var(--line); }
  .nav.open a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .fab { display: grid; }
  .svc { grid-template-columns: 56px 1fr; gap: 18px; }
  .svc-leaf { display: none; }
  .footer-contact { text-align: left; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .values-grid, .steps, .seasons { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .hero-facts { gap: 28px; }
  .hero-cta .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-title .line-in { transform: none !important; }
  #brandMark { opacity: 1; transform: none; }
  .brand-logo { opacity: 1; transform: none; margin-right: 0; }
  .bird-canvas { display: none; }
}

/* =========================================================
   Unterseiten — Leistungs-Detail & Über uns
   (eigenes Layout, gleiche Design-Sprache wie die Startseite)
   ========================================================= */

/* ----- „Mehr erfahren" je Leistung (Startseite) ----- */
.svc-more {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 18px;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--moss); transition: gap .3s var(--ease), color .3s;
}
.svc-more svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.svc:hover .svc-more { color: var(--vermilion); gap: 13px; }
.svc:hover .svc-more svg { transform: translateX(4px); }

/* ----- Brotkrumen ----- */
.crumbs { background: var(--paper); border-bottom: 1px solid var(--line); }
.crumbs .wrap { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; padding-block: 13px;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.crumbs a { color: var(--moss); } .crumbs a:hover { color: var(--ink); }
.crumbs .sep { color: var(--moss-soft); }
.crumbs [aria-current] { color: var(--ink-soft); }

/* ----- Sub-Hero ----- */
.subhero {
  position: relative; overflow: hidden; isolation: isolate; color: var(--paper);
  background: radial-gradient(120% 90% at 85% -10%, #1d4a35 0%, transparent 55%),
              radial-gradient(90% 80% at -5% 120%, #0c2419 0%, transparent 55%), var(--forest);
  padding: clamp(56px, 9vw, 112px) 0 clamp(60px, 9vw, 120px);
}
.subhero .grain { opacity: .3; }
.subhero .sprig { position: absolute; z-index: 1; color: rgba(95,155,110,.4); }
.subhero .sprig-tr { top: -14px; right: -10px; transform: rotate(150deg); width: clamp(140px, 16vw, 230px); }
.subhero .sprig-bl { bottom: -20px; left: -14px; transform: rotate(330deg); width: clamp(120px, 13vw, 190px); }
.subhero-inner { position: relative; z-index: 5; max-width: 880px; }
.subhero .eyebrow { color: var(--moss-soft); margin-bottom: 24px; }
.subhero h1 { font-size: clamp(2.4rem, 6.4vw, 4.8rem); letter-spacing: -.025em; margin-bottom: 24px; max-width: 18ch; }
.subhero h1 em { color: var(--gold); font-weight: 500; }
.subhero-lead { font-size: clamp(1.08rem, 1.9vw, 1.34rem); color: rgba(245,241,230,.82); max-width: 58ch; margin-bottom: 36px; }
.subhero .hero-cta .btn-line { color: var(--paper); border-color: rgba(245,241,230,.55); }
.subhero .hero-cta .btn-line:hover { background: var(--paper); color: var(--forest); border-color: var(--paper); }

/* ----- Detail-Layout (Inhalt + Sidebar) ----- */
.detail { padding: clamp(64px, 9vw, 120px) 0; position: relative; overflow: hidden; }
.detail-grid { display: grid; grid-template-columns: 1.5fr .85fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.detail-main .kicker { margin-bottom: 18px; }
.detail-main h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 18px; }
.detail-main h2 em { color: var(--moss); }
.detail-lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 62ch; margin-bottom: 16px; }
.detail-main p { color: var(--ink-soft); max-width: 62ch; margin-bottom: 14px; }

.inc-group { margin-top: 44px; }
.inc-group > h3 { font-family: var(--serif); font-weight: 500; font-size: 1.45rem; margin-bottom: 20px; }
.inc-list { list-style: none; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.inc-list li { background: var(--paper); padding: 18px 22px; display: grid; grid-template-columns: 24px 1fr; gap: 15px; align-items: start; transition: background .3s var(--ease); }
.inc-list li:hover { background: #fbf7ec; }
.inc-list svg { width: 21px; height: 21px; color: var(--moss-soft); margin-top: 3px; }
.inc-list b { font-weight: 600; display: block; font-size: 1.04rem; margin-bottom: 2px; }
.inc-list span { color: var(--ink-soft); font-size: .96rem; }

/* ----- Sidebar-Karte „Auf einen Blick" ----- */
.detail-aside { position: sticky; top: 96px; }
.aside-card { background: var(--ink); color: var(--paper); border-radius: 10px; padding: 32px 30px; box-shadow: var(--shadow); }
.aside-card h3 { color: var(--paper); font-size: 1.4rem; margin-bottom: 20px; }
.aside-list { list-style: none; margin-bottom: 26px; }
.aside-list li { display: grid; gap: 4px; padding: 14px 0; border-bottom: 1px solid rgba(245,241,230,.14); }
.aside-list li:last-child { border-bottom: 0; }
.aside-k { font-family: var(--mono); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--moss-soft); }
.aside-v { font-size: 1.02rem; font-weight: 500; color: var(--paper); }
.aside-v a:hover { color: var(--gold); }
.aside-card .btn { width: 100%; }
.aside-card .btn-solid { background: var(--gold); color: var(--ink); }
.aside-card .btn-solid:hover { background: var(--paper); }
.aside-card .btn-line { color: var(--paper); border-color: rgba(245,241,230,.4); margin-top: 10px; }
.aside-card .btn-line:hover { background: var(--paper); color: var(--ink); }

/* ----- Verwandte Leistungen ----- */
.related { background: var(--haze); padding: clamp(64px, 9vw, 110px) 0; position: relative; overflow: hidden; }
.rel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 42px; }
.rel-card { display: flex; flex-direction: column; gap: 11px; background: var(--paper); border: 1px solid var(--line); border-radius: 9px; padding: 28px 24px; transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.rel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--moss-soft); }
.rel-no { font-family: var(--mono); font-size: .7rem; color: var(--moss); letter-spacing: .14em; }
.rel-card h3 { font-size: 1.28rem; font-weight: 500; }
.rel-card p { color: var(--ink-soft); font-size: .92rem; flex: 1; }
.rel-more { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--moss); display: inline-flex; align-items: center; gap: 7px; }
.rel-card:hover .rel-more { color: var(--vermilion); }

/* ----- CTA-Band ----- */
.cta-band { background: var(--forest-2); color: var(--paper); position: relative; overflow: hidden; padding: clamp(60px, 8vw, 112px) 0; text-align: center; border-block: 1px solid rgba(245,241,230,.1); }
.cta-band .sprig { position: absolute; z-index: 1; color: var(--moss-soft); opacity: .1; }
.cta-band .sprig-1 { left: -30px; bottom: -30px; width: clamp(180px, 24vw, 360px); transform: rotate(330deg); }
.cta-band .wrap { position: relative; z-index: 2; max-width: 760px; }
.cta-band .kicker { justify-content: center; }
.cta-band h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: 18px; }
.cta-band h2 em { color: var(--gold); }
.cta-band p { color: rgba(245,241,230,.78); font-size: 1.12rem; margin: 0 auto 32px; max-width: 52ch; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .btn-line { color: var(--paper); border-color: rgba(245,241,230,.5); }
.cta-band .btn-line:hover { background: var(--paper); color: var(--forest); border-color: var(--paper); }

/* ----- Über uns ----- */
.about-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.about-main p { color: var(--ink-soft); font-size: 1.1rem; max-width: 62ch; margin-bottom: 18px; }
.about-main p.lead { font-size: 1.3rem; color: var(--ink); font-family: var(--serif); line-height: 1.4; max-width: 60ch; }
.about-sign { margin-top: 30px; font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--moss); }
.pillars { list-style: none; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.pillars li { background: var(--paper); padding: 22px 24px; }
.pillars b { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; display: block; margin-bottom: 5px; }
.pillars span { color: var(--ink-soft); font-size: .95rem; }

/* ----- Responsive Unterseiten ----- */
@media (max-width: 980px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
  .rel-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .rel-grid { grid-template-columns: 1fr; }
}

/* ----- Header-Dropdown „Leistungen" ----- */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-top { display: inline-flex; align-items: center; gap: 5px; }
.nav-top .caret { width: 13px; height: 13px; opacity: .6; transition: transform .25s var(--ease); }
.nav-item:hover .nav-top .caret, .nav-item:focus-within .nav-top .caret { transform: rotate(180deg); }
.submenu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 244px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 10px; box-shadow: var(--shadow); padding: 8px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 60;
}
.submenu::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; } /* Hover-Brücke */
.nav-item:hover .submenu, .nav-item:focus-within .submenu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav .submenu a { display: block; padding: 11px 14px; border-radius: 6px; font-size: .92rem; font-weight: 500; color: var(--ink-soft); white-space: nowrap; transition: background .2s, color .2s; }
.nav .submenu a::after { display: none; }
.nav .submenu a:hover, .nav .submenu a[aria-current] { background: var(--haze); color: var(--ink); }

@media (max-width: 720px) {
  .nav.open .nav-item { flex-direction: column; align-items: stretch; width: 100%; }
  .nav.open .nav-top { justify-content: space-between; }
  .nav.open .nav-top .caret { display: none; }
  .nav.open .submenu {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: 0; background: transparent; padding: 2px 0 6px 16px; min-width: 0;
  }
  .nav.open .submenu::before { display: none; }
  .nav.open .submenu a { padding: 12px 0; border-bottom: 1px solid var(--line); }
}

/* ===== Hero „Luftig / Himmel" — heller Himmel, passend zum realistischen Vogel ===== */
.hero {
  background:
    radial-gradient(135% 100% at 78% -28%, #c8dce4 0%, transparent 58%),
    radial-gradient(85% 70% at 8% 118%, #e6efdc 0%, transparent 62%),
    linear-gradient(180deg, #d2e3e2 0%, #e6ede1 50%, #f1f1e7 100%);
  color: var(--ink);
}
.hero .grain { opacity: .1; mix-blend-mode: multiply; }
.hero .eyebrow { color: var(--moss); }
.hero .hero-title { color: var(--ink); }
.hero .hero-title em { color: var(--moss); }
.hero .hero-lead { color: var(--ink-soft); }
.hero .route { color: rgba(47,107,69,.38); }
.hero .route-mark { color: rgba(47,107,69,.5); }
.hero .route-mark-end { color: rgba(212,36,44,.65); }
.hero .sprig { color: rgba(47,107,69,.3); }
.hero .btn-line { color: var(--ink); border-color: rgba(22,20,15,.45); }
.hero .btn-line:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.hero .hero-facts { border-top-color: rgba(22,20,15,.16); }
.hero .hero-facts dt { color: var(--moss); }
.hero .hero-facts dd { color: var(--ink); }
.hero .scroll-cue { border-color: rgba(22,20,15,.4); }
.hero .scroll-cue span { background: var(--moss); }

/* ===== Hero: Trust-Badges (ohne Fake-Bewertungen) ===== */
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 30px; }
.hero-trust li {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: .76rem; letter-spacing: .04em; color: var(--ink-soft);
}
.hero-trust svg { width: 17px; height: 17px; flex: none; fill: none; stroke: var(--moss); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }

/* ===== Kontaktformular: Intro, optionales Label, Auswahlfeld ===== */
.form-intro { color: rgba(245,241,230,.72); font-size: 1rem; margin: -10px 0 26px; }
.contact-form .lbl-opt { text-transform: none; letter-spacing: 0; color: rgba(245,241,230,.4); }
.contact-form select {
  width: 100%; margin-top: 9px; padding: 13px 0; font: inherit; font-family: var(--sans); color: var(--paper);
  background: transparent; border: 0; border-bottom: 1.5px solid rgba(245,241,230,.28); transition: border-color .3s;
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f2e929' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center;
}
.contact-form select:focus { outline: none; border-color: var(--gold); }
.contact-form select option { color: var(--ink); background: var(--paper); }

/* Anruf-Icon in der Telefon-Pille */
.pill-call .call-ico { vertical-align: -2px; flex: none; }

/* Anruf-Punkt: grün = jetzt erreichbar (8-18 Uhr), sonst Standard (rot) */
.pill-call.open .pulse { background: #2fb344; box-shadow: 0 0 0 0 rgba(47,179,68,.5); animation: pulseGreen 2s infinite; }
@keyframes pulseGreen { 0% { box-shadow: 0 0 0 0 rgba(47,179,68,.5); } 70% { box-shadow: 0 0 0 8px rgba(47,179,68,0); } 100% { box-shadow: 0 0 0 0 rgba(47,179,68,0); } }
