/* ==========================================================================
   Nothacker – Holz und Baum · Global Stylesheet
   Für Contao-Integration. Eine Datei, semantische BEM-Klassen, CSS-Variablen.
   Einbinden im Seitenlayout (Layout > CSS-/JavaScript-Dateien) oder als
   externe CSS-Datei. Alle Farben/Abstände als Variablen unter :root.
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Marke (aus dem Logo abgeleitet) */
  --nh-green:        #d89e2c;   /* Gold – Akzent, Icons */
  --nh-green-dark:   #153b1a;   /* Tiefgrün – Buttons, Headlines */
  --nh-green-darker: #0f2d14;   /* Hover */
  --nh-espresso:     #401f0a;   /* Header, dunkle Flächen */
  --nh-brown:        #654321;   /* Braun */
  --nh-footer:       #2a1207;   /* Footer */

  /* Flächen & Text (Palette) */
  --nh-cream:      #f5f2e8;   /* Creme */
  --nh-sand:       #efe7d9;   /* Sand */
  --nh-white:      #ffffff;   /* Weiß */
  --nh-green-wash: #f8fbf7;   /* Hellgrün */
  --nh-mint:       #1be190;   /* Mintgrün */
  --nh-sage:       #4a7c59;   /* Salbeigrün */
  --nh-grass:      #4caf50;   /* Grasgrün */
  --nh-forest:     #225e22;   /* Waldgrün */
  --nh-hunter:     #27442b;   /* Jägergrün */
  --nh-terracotta: #e67e22;   /* Terracotta */
  --nh-orange:     #ff9800;   /* Orange */
  --nh-charcoal:   #333333;   /* Anthrazit */
  --nh-ink:        #221b13;
  --nh-text:       #6c6155;
  --nh-muted:      #7a6f60;
  --nh-line:       #ece3d4;
  --nh-line-2:     #e6dccb;

  /* Typografie */
  --nh-font-head: 'Poppins', system-ui, sans-serif;
  --nh-font-body: 'Mulish', system-ui, sans-serif;

  /* Form */
  --nh-radius:    18px;
  --nh-radius-lg: 22px;
  --nh-radius-sm: 10px;
  --nh-shadow-hover: 0 22px 44px -22px rgba(40,28,14,.45);

  /* Layout */
  --nh-maxw:   1280px;
  --nh-maxw-narrow: 1080px;
  --nh-maxw-content: 1180px;
  --nh-gutter: 40px;
  --nh-section-y: 92px;
  --nh-section-y-lg: 96px;
  --nh-section-y-md: 80px;
  --nh-green-light: #ecc666;
  --nh-text-on-green: #dcecdc;
  --nh-feature-text: #c3b6a3;

  /* Abstand Kicker / Eyebrow → Überschrift */
  --nh-eyebrow-gap: 12px;
}

@keyframes nh-fade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, figure, ul, blockquote { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }

body {
  font-family: var(--nh-font-body);
  color: var(--nh-ink);
  background: var(--nh-cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1, h2, h3, h4 { font-family: var(--nh-font-head); letter-spacing: -.01em; line-height: 1.08; }

/* ---------- Layout-Helfer ---------- */
.nh-container { max-width: var(--nh-maxw); margin: 0 auto; padding: 0 var(--nh-gutter); }
.nh-container--narrow { max-width: var(--nh-maxw-narrow); }
.nh-section { padding: var(--nh-section-y) 0; }
.nh-section--lg { padding: var(--nh-section-y-lg) 0; }
.nh-section--md { padding: var(--nh-section-y-md) 0; }
.nh-section--cream { background: var(--nh-cream); }
.nh-section--sand  { background: var(--nh-sand); }
.nh-section--espresso { background: var(--nh-espresso); color: #fff; }
.nh-section--brown { background: var(--nh-brown); color: #d8ccba; }
.nh-section--green { background: var(--nh-green-dark); color: #fff; }
.nh-section--brown .nh-h2,
.nh-h2--on-brown { font-size: 46px; line-height: 1.08; color: var(--nh-green); }
.nh-section--brown .nh-lead,
.nh-lead--on-brown { font-size: 17px; line-height: 1.65; color: #d8ccba; max-width: 540px; }
.nh-section--brown .nh-section__intro { max-width: 620px; margin-bottom: 0; }
.nh-section--brown .nh-section__intro .nh-lead { margin-top: 18px; }
.nh-section--brown .nh-feature__text { color: var(--nh-feature-text); }

/* RSCE: wählbare Sektions-Hintergründe (helle Flächen) */
.nh-bg--cream { background: var(--nh-cream); color: var(--nh-ink); }
.nh-bg--sand { background: var(--nh-sand); color: var(--nh-ink); }
.nh-bg--white { background: var(--nh-white); color: var(--nh-ink); }
.nh-bg--green-wash { background: var(--nh-green-wash); color: var(--nh-ink); }
.nh-bg--mint { background: var(--nh-mint); color: var(--nh-ink); }
.nh-bg--grass { background: var(--nh-grass); color: var(--nh-ink); }
.nh-bg--orange { background: var(--nh-orange); color: var(--nh-ink); }

/* RSCE: dunkle / mitteldunkle Flächen (helle Typo) */
.nh-bg--brown { background: var(--nh-brown); color: #d8ccba; }
.nh-bg--espresso { background: var(--nh-espresso); color: #fff; }
.nh-bg--green { background: var(--nh-green-dark); color: #fff; }
.nh-bg--forest { background: var(--nh-forest); color: #fff; }
.nh-bg--hunter { background: var(--nh-hunter); color: #fff; }
.nh-bg--sage { background: var(--nh-sage); color: #fff; }
.nh-bg--terracotta { background: var(--nh-terracotta); color: #fff; }
.nh-bg--charcoal { background: var(--nh-charcoal); color: #fff; }

.nh-bg--brown .nh-h2,
.nh-bg--brown .nh-h2--on-brown { font-size: 46px; line-height: 1.08; color: var(--nh-green); }
.nh-bg--brown .nh-lead,
.nh-bg--brown .nh-lead--on-brown { font-size: 17px; line-height: 1.65; color: #d8ccba; max-width: 540px; }
.nh-bg--brown .nh-section__intro { max-width: 620px; margin-bottom: 0; }
.nh-bg--brown .nh-section__intro .nh-lead { margin-top: 18px; }
.nh-bg--brown .nh-feature__text { color: var(--nh-feature-text); }
.nh-bg--espresso .nh-section__head .nh-h2,
.nh-bg--espresso .nh-section__intro .nh-h2,
.nh-bg--green .nh-section__head .nh-h2,
.nh-bg--green .nh-section__intro .nh-h2,
.nh-bg--forest .nh-section__head .nh-h2,
.nh-bg--forest .nh-section__intro .nh-h2,
.nh-bg--hunter .nh-section__head .nh-h2,
.nh-bg--hunter .nh-section__intro .nh-h2,
.nh-bg--sage .nh-section__head .nh-h2,
.nh-bg--sage .nh-section__intro .nh-h2,
.nh-bg--terracotta .nh-section__head .nh-h2,
.nh-bg--terracotta .nh-section__intro .nh-h2,
.nh-bg--charcoal .nh-section__head .nh-h2,
.nh-bg--charcoal .nh-section__intro .nh-h2 {
  color: #fff;
}
.nh-bg--espresso .nh-section__head .nh-eyebrow,
.nh-bg--espresso .nh-section__intro .nh-eyebrow,
.nh-bg--green .nh-section__head .nh-eyebrow,
.nh-bg--green .nh-section__intro .nh-eyebrow,
.nh-bg--forest .nh-section__head .nh-eyebrow,
.nh-bg--forest .nh-section__intro .nh-eyebrow,
.nh-bg--hunter .nh-section__head .nh-eyebrow,
.nh-bg--hunter .nh-section__intro .nh-eyebrow,
.nh-bg--sage .nh-section__head .nh-eyebrow,
.nh-bg--sage .nh-section__intro .nh-eyebrow,
.nh-bg--terracotta .nh-section__head .nh-eyebrow,
.nh-bg--terracotta .nh-section__intro .nh-eyebrow,
.nh-bg--charcoal .nh-section__head .nh-eyebrow,
.nh-bg--charcoal .nh-section__intro .nh-eyebrow {
  color: var(--nh-green-light);
}
.nh-bg--espresso .nh-section__intro .nh-lead,
.nh-bg--green .nh-section__intro .nh-lead,
.nh-bg--forest .nh-section__intro .nh-lead,
.nh-bg--hunter .nh-section__intro .nh-lead,
.nh-bg--sage .nh-section__intro .nh-lead,
.nh-bg--terracotta .nh-section__intro .nh-lead,
.nh-bg--charcoal .nh-section__intro .nh-lead {
  color: var(--nh-text-on-green);
}
.nh-bg--espresso .nh-section__head .nh-link-arrow,
.nh-bg--green .nh-section__head .nh-link-arrow,
.nh-bg--forest .nh-section__head .nh-link-arrow,
.nh-bg--hunter .nh-section__head .nh-link-arrow,
.nh-bg--sage .nh-section__head .nh-link-arrow,
.nh-bg--terracotta .nh-section__head .nh-link-arrow,
.nh-bg--charcoal .nh-section__head .nh-link-arrow {
  color: var(--nh-green-light);
}
.nh-bg--espresso .nh-section__head .nh-link-arrow:hover,
.nh-bg--green .nh-section__head .nh-link-arrow:hover,
.nh-bg--forest .nh-section__head .nh-link-arrow:hover,
.nh-bg--hunter .nh-section__head .nh-link-arrow:hover,
.nh-bg--sage .nh-section__head .nh-link-arrow:hover,
.nh-bg--terracotta .nh-section__head .nh-link-arrow:hover,
.nh-bg--charcoal .nh-section__head .nh-link-arrow:hover {
  color: #fff;
}
.nh-bg--brown .nh-section__head .nh-h2 {
  color: var(--nh-green);
}
.nh-bg--brown .nh-section__head .nh-eyebrow {
  color: #c9b79c;
}
.nh-bg--brown .nh-section__head .nh-link-arrow {
  color: var(--nh-green);
}
.nh-quote.nh-bg--cream .nh-quote__text,
.nh-quote.nh-bg--sand .nh-quote__text,
.nh-quote.nh-bg--white .nh-quote__text,
.nh-quote.nh-bg--green-wash .nh-quote__text,
.nh-quote.nh-bg--mint .nh-quote__text,
.nh-quote.nh-bg--grass .nh-quote__text,
.nh-quote.nh-bg--orange .nh-quote__text { color: var(--nh-ink); }
.nh-quote.nh-bg--cream .nh-quote__name,
.nh-quote.nh-bg--sand .nh-quote__name,
.nh-quote.nh-bg--white .nh-quote__name,
.nh-quote.nh-bg--green-wash .nh-quote__name,
.nh-quote.nh-bg--mint .nh-quote__name,
.nh-quote.nh-bg--grass .nh-quote__name,
.nh-quote.nh-bg--orange .nh-quote__name { color: var(--nh-ink); }
.nh-quote.nh-bg--brown .nh-quote__text,
.nh-quote.nh-bg--green .nh-quote__text,
.nh-quote.nh-bg--forest .nh-quote__text,
.nh-quote.nh-bg--hunter .nh-quote__text,
.nh-quote.nh-bg--sage .nh-quote__text,
.nh-quote.nh-bg--terracotta .nh-quote__text,
.nh-quote.nh-bg--charcoal .nh-quote__text { color: #f4efe6; }
.nh-cta.nh-bg--cream .nh-cta__title,
.nh-cta.nh-bg--sand .nh-cta__title,
.nh-cta.nh-bg--white .nh-cta__title,
.nh-cta.nh-bg--green-wash .nh-cta__title,
.nh-cta.nh-bg--mint .nh-cta__title,
.nh-cta.nh-bg--grass .nh-cta__title,
.nh-cta.nh-bg--orange .nh-cta__title { color: var(--nh-ink); }
.nh-cta.nh-bg--cream .nh-cta__text,
.nh-cta.nh-bg--sand .nh-cta__text,
.nh-cta.nh-bg--white .nh-cta__text,
.nh-cta.nh-bg--green-wash .nh-cta__text,
.nh-cta.nh-bg--mint .nh-cta__text,
.nh-cta.nh-bg--grass .nh-cta__text,
.nh-cta.nh-bg--orange .nh-cta__text { color: var(--nh-text); }
.nh-cta.nh-bg--brown .nh-cta__title,
.nh-cta.nh-bg--espresso .nh-cta__title,
.nh-cta.nh-bg--forest .nh-cta__title,
.nh-cta.nh-bg--hunter .nh-cta__title,
.nh-cta.nh-bg--sage .nh-cta__title,
.nh-cta.nh-bg--terracotta .nh-cta__title,
.nh-cta.nh-bg--charcoal .nh-cta__title { color: #fff; }
.nh-cta.nh-bg--brown .nh-cta__text,
.nh-cta.nh-bg--espresso .nh-cta__text,
.nh-cta.nh-bg--forest .nh-cta__text,
.nh-cta.nh-bg--hunter .nh-cta__text,
.nh-cta.nh-bg--sage .nh-cta__text,
.nh-cta.nh-bg--terracotta .nh-cta__text,
.nh-cta.nh-bg--charcoal .nh-cta__text { color: #d8ccba; }
.nh-cta.nh-bg--cream .nh-cta__phone,
.nh-cta.nh-bg--sand .nh-cta__phone,
.nh-cta.nh-bg--white .nh-cta__phone,
.nh-cta.nh-bg--green-wash .nh-cta__phone,
.nh-cta.nh-bg--mint .nh-cta__phone,
.nh-cta.nh-bg--grass .nh-cta__phone,
.nh-cta.nh-bg--orange .nh-cta__phone { color: var(--nh-green-dark); }
.nh-hero--band.nh-bg--espresso { background: var(--nh-espresso); }
.nh-hero--band.nh-bg--brown { background: var(--nh-brown); }
.nh-hero--band.nh-bg--cream { background: var(--nh-cream); }
.nh-hero--band.nh-bg--sand { background: var(--nh-sand); }
.nh-hero--band.nh-bg--white { background: var(--nh-white); }
.nh-hero--band.nh-bg--green-wash { background: var(--nh-green-wash); }
.nh-hero--band.nh-bg--mint { background: var(--nh-mint); }
.nh-hero--band.nh-bg--grass { background: var(--nh-grass); }
.nh-hero--band.nh-bg--orange { background: var(--nh-orange); }
.nh-hero--band.nh-bg--forest { background: var(--nh-forest); }
.nh-hero--band.nh-bg--hunter { background: var(--nh-hunter); }
.nh-hero--band.nh-bg--sage { background: var(--nh-sage); }
.nh-hero--band.nh-bg--terracotta { background: var(--nh-terracotta); }
.nh-hero--band.nh-bg--charcoal { background: var(--nh-charcoal); }
.nh-hero--band.nh-bg--green { background: var(--nh-green-dark); }

/* RSCE/Artikel: explizite Textfarbe */
.nh-text--ink { --nh-force-text: #221b13; }
.nh-text--cream { --nh-force-text: var(--nh-cream); }
.nh-text--sand { --nh-force-text: var(--nh-sand); }
.nh-text--white { --nh-force-text: var(--nh-white); }
.nh-text--green-wash { --nh-force-text: var(--nh-green-wash); }
.nh-text--mint { --nh-force-text: var(--nh-mint); }
.nh-text--sage { --nh-force-text: var(--nh-sage); }
.nh-text--grass { --nh-force-text: var(--nh-grass); }
.nh-text--forest { --nh-force-text: var(--nh-forest); }
.nh-text--hunter { --nh-force-text: var(--nh-hunter); }
.nh-text--green { --nh-force-text: var(--nh-green-dark); }
.nh-text--brown { --nh-force-text: var(--nh-brown); }
.nh-text--terracotta { --nh-force-text: var(--nh-terracotta); }
.nh-text--orange { --nh-force-text: var(--nh-orange); }
.nh-text--espresso { --nh-force-text: var(--nh-espresso); }
.nh-text--charcoal { --nh-force-text: var(--nh-charcoal); }

[class*="nh-text--"] {
  --nh-force-muted: color-mix(in srgb, var(--nh-force-text) 72%, transparent);
  color: var(--nh-force-text);
}
[class*="nh-text--"] .nh-h1,
[class*="nh-text--"] .nh-h2,
[class*="nh-text--"] .nh-h2--on-brown,
[class*="nh-text--"] .nh-eyebrow,
[class*="nh-text--"] .nh-eyebrow--sand,
[class*="nh-text--"] .nh-eyebrow--light,
[class*="nh-text--"] .nh-lead,
[class*="nh-text--"] .nh-lead--on-brown,
[class*="nh-text--"] .nh-section__head .nh-h2,
[class*="nh-text--"] .nh-section__intro .nh-h2,
[class*="nh-text--"] .nh-section__head .nh-eyebrow,
[class*="nh-text--"] .nh-section__intro .nh-eyebrow,
[class*="nh-text--"] .nh-section__head .nh-link-arrow,
[class*="nh-text--"] .nh-feature__title,
[class*="nh-text--"] .nh-feature__text,
[class*="nh-text--"] .nh-gallery__caption,
[class*="nh-text--"] .nh-quote__text,
[class*="nh-text--"] .nh-quote__name,
[class*="nh-text--"] .nh-cta__title,
[class*="nh-text--"] .nh-cta__phone,
[class*="nh-text--"] .nh-pagehead__title,
[class*="nh-text--"] .nh-pagehead__kicker,
[class*="nh-text--"] .nh-anfrage__title,
[class*="nh-text--"] .nh-bild-text__title,
[class*="nh-text--"] .nh-bild-text__name,
[class*="nh-text--"] .nh-timeline__title,
[class*="nh-text--"] .nh-timeline__year,
[class*="nh-text--"] .nh-ablauf__title,
[class*="nh-text--"] .nh-linkliste__headline {
  color: var(--nh-force-text);
}
[class*="nh-text--"] .nh-lead,
[class*="nh-text--"] .nh-lead--on-brown,
[class*="nh-text--"] .nh-section__intro .nh-lead,
[class*="nh-text--"] .nh-feature__text,
[class*="nh-text--"] .nh-gallery__caption,
[class*="nh-text--"] .nh-cta__text,
[class*="nh-text--"] .nh-pagehead__text,
[class*="nh-text--"] .nh-anfrage__text,
[class*="nh-text--"] .nh-bild-text__body,
[class*="nh-text--"] .nh-bild-text__role,
[class*="nh-text--"] .nh-timeline__text {
  color: var(--nh-force-muted);
}

/* RSCE: wählbare Abstände */
.nh-section { --nh-rsce-pad-y: var(--nh-section-y); }
.nh-quote { --nh-rsce-pad-y: 90px; }
.nh-cta { --nh-rsce-pad-y: 74px; }
.nh-hero--band { --nh-rsce-pad-y: 96px; }
.nh-hero--split { --nh-rsce-pad-y: 72px; }
.nh-section.nh-pad-top--sm { padding-top: calc(var(--nh-rsce-pad-y) * 0.3); }
.nh-section.nh-pad-top--none { padding-top: 0; }
.nh-section.nh-pad-bottom--sm { padding-bottom: calc(var(--nh-rsce-pad-y) * 0.3); }
.nh-section.nh-pad-bottom--none { padding-bottom: 0; }
.nh-quote.nh-pad-top--sm { padding-top: calc(var(--nh-rsce-pad-y) * 0.3); }
.nh-quote.nh-pad-top--none { padding-top: 0; }
.nh-quote.nh-pad-bottom--sm { padding-bottom: calc(var(--nh-rsce-pad-y) * 0.3); }
.nh-quote.nh-pad-bottom--none { padding-bottom: 0; }
.nh-cta.nh-pad-top--sm .nh-cta__inner { padding-top: calc(var(--nh-rsce-pad-y) * 0.3); }
.nh-cta.nh-pad-top--none .nh-cta__inner { padding-top: 0; }
.nh-cta.nh-pad-bottom--sm .nh-cta__inner { padding-bottom: calc(var(--nh-rsce-pad-y) * 0.3); }
.nh-cta.nh-pad-bottom--none .nh-cta__inner { padding-bottom: 0; }
.nh-hero--band.nh-pad-top--sm .nh-hero__inner--band { padding-top: calc(var(--nh-rsce-pad-y) * 0.3); }
.nh-hero--band.nh-pad-top--none .nh-hero__inner--band { padding-top: 0; }
.nh-hero--band.nh-pad-bottom--sm .nh-hero__inner--band { padding-bottom: calc(var(--nh-rsce-pad-y) * 0.3); }
.nh-hero--band.nh-pad-bottom--none .nh-hero__inner--band { padding-bottom: 0; }
.nh-hero--split.nh-pad-top--sm .nh-hero__split-text { padding-top: calc(var(--nh-rsce-pad-y) * 0.3); }
.nh-hero--split.nh-pad-top--none .nh-hero__split-text { padding-top: 0; }
.nh-hero--split.nh-pad-bottom--sm .nh-hero__split-text { padding-bottom: calc(var(--nh-rsce-pad-y) * 0.3); }
.nh-hero--split.nh-pad-bottom--none .nh-hero__split-text { padding-bottom: 0; }

.nh-eyebrow { font-weight: 700; font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--nh-green-dark); }
.nh-eyebrow--light { color: var(--nh-green-light); }
.nh-eyebrow--sand  { color: #c9b79c; }

/* Einheitlicher Abstand Kicker → Überschrift (inkl. mod_newslist--home) */
.nh-eyebrow + .nh-h1,
.nh-eyebrow + .nh-h2,
.nh-anfrage__eyebrow + .nh-anfrage__title,
.nh-pagehead__kicker + .nh-pagehead__title {
  margin-top: var(--nh-eyebrow-gap);
}

.nh-h1 { font-size: 56px; font-weight: 800; color: var(--nh-ink); }
.nh-h2 { font-size: 44px; font-weight: 800; color: var(--nh-ink); line-height: 1.08; }
.nh-h2--lg { font-size: 38px; line-height: 1.1; }
.nh-h3 { font-size: 20px; font-weight: 700; color: var(--nh-ink); }
.nh-h3--lg { font-size: 23px; font-weight: 800; }
.nh-lead { font-size: 18px; line-height: 1.6; color: var(--nh-text); max-width: 60ch; }
.nh-lead--md { font-size: 17px; line-height: 1.65; }
.nh-lead p + p,
.nh-pagehead__text p + p,
.nh-hero__text p + p,
.nh-cta__text p + p,
.nh-cutcalc__text p + p,
.nh-anfrage__text p + p,
.nh-teaser__text p + p,
.nh-ablauf__lead p + p,
.nh-linkliste__lead p + p {
  margin-top: 0.75em;
}

/* ---------- Buttons ---------- */
.nh-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--nh-font-head); font-weight: 700; font-size: 15px;
  padding: 14px 26px; border: 0; border-radius: 11px; cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  text-decoration: none;
}
.nh-btn--primary { background: var(--nh-green); color: var(--nh-espresso); box-shadow: 0 8px 20px -8px rgba(216, 158, 44, .45); }
.nh-btn--primary:hover { background: #c88f28; color: var(--nh-espresso); }
.nh-btn--dark { background: var(--nh-espresso); color: #fff; }
.nh-btn--dark:hover { background: #000; }
.nh-btn--ghost { background: transparent; color: var(--nh-ink); border: 1.5px solid var(--nh-line-2); }
.nh-btn--ghost:hover { border-color: var(--nh-green-dark); color: var(--nh-green-dark); }
.nh-btn--block { width: 100%; justify-content: center; }
.nh-btn--sm {
  padding: 11px 20px;
  font-size: 14px;
  border-radius: 10px;
}
.nh-btn--teaser {
  margin-top: 18px;
  padding: 11px 20px;
  font-size: 14px;
  border-radius: 10px;
  box-shadow: none;
}
.nh-btn--cta {
  padding: 17px 34px;
  font-size: 16px;
  border-radius: 12px;
}
.nh-link-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--nh-green-dark); font-weight: 700; font-size: 15px; flex: 0 0 auto; transition: gap .2s ease; }
.nh-link-arrow:hover { gap: 12px; }

/* ---------- Header / Navigation (Contao: Module im Layout-Kopf) ---------- */
.nh-header { position: sticky; top: 0; z-index: 50; background: var(--nh-espresso); border-bottom: 1px solid rgba(255,255,255,.07); overflow: visible; }
.nh-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 140px; }
.nh-logo { padding-top: 46px; }
.nh-logo img {
  height: 150px;
  width: auto;
  position: relative;
  left: 5px;
  filter: brightness(0) invert(1);
}
@media (max-width: 767px) {
  .nh-nav__toggle {
    position: relative;
    top: -3px;
  }
}
.nh-nav { display: flex; align-items: center; gap: 6px; }
.nh-nav__panel {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}
.nh-nav__panel-inner {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}
.nh-nav__item { padding: 10px 14px; font-weight: 700; font-size: 14.5px; color: #e7e0d4; border-radius: 8px; white-space: nowrap; }
.nh-nav__item:hover,
.nh-nav__item--active { background: rgba(255,255,255,.06); color: #fff; }
.nh-nav__cta {
  margin-left: 14px;
  padding: 12px 22px;
  font-size: 14px;
  border-radius: 10px;
  box-shadow: 0 8px 20px -8px rgba(21,59,26,.7);
  flex-shrink: 0;
  white-space: nowrap;
}
.nh-nav__cta::before {
  content: "\eb09";
  font-family: "tabler-icons";
  font-size: 15px;
  line-height: 1;
  flex: 0 0 auto;
  -webkit-font-smoothing: antialiased;
}

/* Mobiles Menü */
.nh-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  color: #fff;
  cursor: pointer;
  flex: 0 0 auto;
}
.nh-nav__toggle-bars,
.nh-nav__toggle-bars::before,
.nh-nav__toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.nh-nav__toggle-bars {
  position: relative;
}
.nh-nav__toggle-bars::before,
.nh-nav__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.nh-nav__toggle-bars::before { top: -7px; }
.nh-nav__toggle-bars::after { top: 7px; }
.nh-nav.is-open .nh-nav__toggle-bars { background: transparent; }
.nh-nav.is-open .nh-nav__toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}
.nh-nav.is-open .nh-nav__toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}
.nh-nav__backdrop {
  display: none;
}
body.nh-nav-open {
  overflow: hidden;
}
body.nh-nav-open #header.nh-header {
  z-index: 135;
}

/* Dropdown (Leistungen) */
.nh-nav__has-sub { position: relative; }
.nh-subnav {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 248px;
  padding-top: 10px;
  display: none;
  z-index: 60;
}
.nh-nav__has-sub:hover .nh-subnav { display: block; animation: nh-fade .16s ease; }
.nh-subnav__panel {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--nh-line);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 24px 50px -12px rgba(20,14,8,.4);
}
.nh-subnav__item {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  box-sizing: border-box;
  padding: 11px 13px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.35;
  color: #2c2417;
  text-decoration: none;
  background: transparent;
  border: 0;
}
.nh-subnav__mark {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--nh-green);
  flex: 0 0 auto;
}
.nh-subnav__item::before {
  display: none;
}
.nh-subnav__item:hover,
.nh-subnav__item--active {
  background: #f3efe6;
  color: var(--nh-green-dark);
}

/* ---------- Breadcrumb (Contao: mod_breadcrumb) ---------- */
.nh-breadcrumb { font-size: 13px; font-weight: 600; color: #9d9183; display: flex; gap: 8px; align-items: center; }
.nh-breadcrumb a:hover { color: var(--nh-green); }
.nh-breadcrumb__sep { color: #5a4f42; }
.nh-breadcrumb__current { color: var(--nh-green); }

/* ---------- Hero (Foto) ---------- */
.nh-hero { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.nh-hero__media { position: absolute; inset: 0; }
.nh-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.nh-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,15,9,.82) 0%, rgba(20,15,9,.55) 45%, rgba(20,15,9,.15) 100%); }
.nh-hero__inner { position: relative; z-index: 2; padding: 0 var(--nh-gutter); max-width: var(--nh-maxw); margin: 0 auto; width: 100%; }
.nh-hero__kicker { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 13px; letter-spacing: .22em; color: var(--nh-green-light); margin-bottom: 22px; }
.nh-hero__kicker::before { content: ""; width: 34px; height: 2px; background: var(--nh-green); }
.nh-hero__title { font-size: 68px; font-weight: 800; line-height: 1.02; color: #fff; max-width: 760px; }
.nh-hero__text { margin-top: 24px; font-size: 19px; line-height: 1.6; color: #e7e1d6; max-width: 520px; }
.nh-hero__actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.nh-hero--photo .nh-btn--primary { padding: 16px 30px; box-shadow: 0 12px 30px -10px rgba(0,0,0,.6); }
.nh-btn--ghost-light {
  color: #fff;
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
}
.nh-btn--ghost-light:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.35); color: #fff; }

/* Page-Header (Seitenkopf; Farbe über nh-bg--*) */
.nh-pagehead { padding: 70px 0 64px; --nh-rsce-pad-y: 70px; --nh-rsce-pad-y-bottom: 64px; }
.nh-pagehead__kicker { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .18em; color: var(--nh-green-light); margin-top: 24px; }
.nh-pagehead__title { font-size: 56px; font-weight: 800; line-height: 1.04; color: #fff; max-width: 760px; }
.nh-pagehead__text { margin-top: 18px; font-size: 18px; line-height: 1.6; color: #c3b6a3; max-width: 600px; }
.nh-pagehead.nh-pad-top--sm { padding-top: calc(var(--nh-rsce-pad-y) * 0.3); }
.nh-pagehead.nh-pad-top--none { padding-top: 0; }
.nh-pagehead.nh-pad-bottom--sm { padding-bottom: calc(var(--nh-rsce-pad-y-bottom) * 0.3); }
.nh-pagehead.nh-pad-bottom--none { padding-bottom: 0; }
.nh-pagehead.nh-bg--cream .nh-pagehead__title,
.nh-pagehead.nh-bg--sand .nh-pagehead__title,
.nh-pagehead.nh-bg--white .nh-pagehead__title,
.nh-pagehead.nh-bg--green-wash .nh-pagehead__title,
.nh-pagehead.nh-bg--mint .nh-pagehead__title,
.nh-pagehead.nh-bg--grass .nh-pagehead__title,
.nh-pagehead.nh-bg--orange .nh-pagehead__title { color: var(--nh-ink); }
.nh-pagehead.nh-bg--cream .nh-pagehead__text,
.nh-pagehead.nh-bg--sand .nh-pagehead__text,
.nh-pagehead.nh-bg--white .nh-pagehead__text,
.nh-pagehead.nh-bg--green-wash .nh-pagehead__text,
.nh-pagehead.nh-bg--mint .nh-pagehead__text,
.nh-pagehead.nh-bg--grass .nh-pagehead__text,
.nh-pagehead.nh-bg--orange .nh-pagehead__text { color: var(--nh-text); }
.nh-pagehead.nh-bg--cream .nh-pagehead__kicker,
.nh-pagehead.nh-bg--sand .nh-pagehead__kicker,
.nh-pagehead.nh-bg--white .nh-pagehead__kicker,
.nh-pagehead.nh-bg--green-wash .nh-pagehead__kicker,
.nh-pagehead.nh-bg--mint .nh-pagehead__kicker,
.nh-pagehead.nh-bg--grass .nh-pagehead__kicker,
.nh-pagehead.nh-bg--orange .nh-pagehead__kicker { color: var(--nh-green-dark); }
.nh-pagehead.nh-bg--brown .nh-pagehead__title,
.nh-pagehead.nh-bg--green .nh-pagehead__title,
.nh-pagehead.nh-bg--forest .nh-pagehead__title,
.nh-pagehead.nh-bg--hunter .nh-pagehead__title,
.nh-pagehead.nh-bg--sage .nh-pagehead__title,
.nh-pagehead.nh-bg--terracotta .nh-pagehead__title,
.nh-pagehead.nh-bg--charcoal .nh-pagehead__title { color: #fff; }
.nh-pagehead.nh-bg--brown .nh-pagehead__text,
.nh-pagehead.nh-bg--forest .nh-pagehead__text,
.nh-pagehead.nh-bg--hunter .nh-pagehead__text,
.nh-pagehead.nh-bg--sage .nh-pagehead__text,
.nh-pagehead.nh-bg--terracotta .nh-pagehead__text,
.nh-pagehead.nh-bg--charcoal .nh-pagehead__text { color: #d8ccba; }
.nh-pagehead.nh-bg--green .nh-pagehead__text { color: var(--nh-text-on-green); }
.nh-pagehead.nh-bg--brown .nh-pagehead__kicker,
.nh-pagehead.nh-bg--green .nh-pagehead__kicker,
.nh-pagehead.nh-bg--forest .nh-pagehead__kicker,
.nh-pagehead.nh-bg--hunter .nh-pagehead__kicker,
.nh-pagehead.nh-bg--sage .nh-pagehead__kicker,
.nh-pagehead.nh-bg--terracotta .nh-pagehead__kicker,
.nh-pagehead.nh-bg--charcoal .nh-pagehead__kicker { color: var(--nh-green-light); }

/* ---------- Bild-Platzhalter (Contao: Bild-Inhaltselement ersetzt dies) ---------- */
.nh-imgph { background: #e9e0cf; color: #a99a80; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; text-align: center; border-radius: var(--nh-radius); min-height: 180px; }
.nh-imgph--round { border-radius: 16px; }

/* ---------- Grids ---------- */
.nh-grid { display: grid; gap: 24px; }
.nh-grid--2 { grid-template-columns: repeat(2, 1fr); }
.nh-grid--3 { grid-template-columns: repeat(3, 1fr); }
.nh-grid--4 { grid-template-columns: repeat(4, 1fr); }
.nh-grid--features { gap: 36px; margin-top: 58px; }
.nh-grid--ref { gap: 22px; }
.nh-section__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 48px; }
.nh-section__head .nh-h2 { max-width: 560px; }
.nh-section__head .nh-lead { margin-top: 16px; max-width: 560px; }
.nh-section__head--ref { margin-bottom: 46px; }
.nh-section__intro { max-width: 600px; margin-bottom: 48px; }
.nh-section__intro .nh-lead { margin-top: 16px; }
.nh-container--content { max-width: var(--nh-maxw-content); }
.nh-container--timeline { max-width: 980px; }
.nh-container--anfrage { max-width: 880px; }
.nh-container--cutcalc { max-width: 1080px; }
.nh-container--abc { max-width: 1180px; }

/* Anfrage Formular (RSCE) */
.nh-anfrage__header {
  text-align: center;
  margin-bottom: 0;
}
.nh-anfrage__title {
  font-size: 38px;
  max-width: 600px;
  margin: 0 auto 12px;
  text-align: center;
  color: #fff;
}
.nh-bg--cream .nh-anfrage__title,
.nh-bg--sand .nh-anfrage__title,
.nh-bg--white .nh-anfrage__title,
.nh-bg--green-wash .nh-anfrage__title,
.nh-bg--mint .nh-anfrage__title,
.nh-bg--grass .nh-anfrage__title,
.nh-bg--orange .nh-anfrage__title {
  color: var(--nh-ink);
}
.nh-anfrage__text {
  font-size: 16px;
  line-height: 1.6;
  color: #c3b6a3;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 14px;
}
.nh-bg--cream .nh-anfrage__text,
.nh-bg--sand .nh-anfrage__text,
.nh-bg--white .nh-anfrage__text,
.nh-bg--green-wash .nh-anfrage__text,
.nh-bg--mint .nh-anfrage__text,
.nh-bg--grass .nh-anfrage__text,
.nh-bg--orange .nh-anfrage__text {
  color: var(--nh-text);
}
.nh-anfrage__badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}
.nh-anfrage__form .nh-form.block {
  margin: 0;
}

/* Zeitleiste (RSCE) */
.nh-timeline {
  display: flex;
  flex-direction: column;
}
.nh-timeline__item {
  display: flex;
  gap: 28px;
  padding: 0 0 30px 32px;
  margin-left: 8px;
  border-left: 2px solid #cdbfa6;
  position: relative;
}
.nh-timeline__item--last {
  padding-bottom: 0;
  border-left-color: transparent;
}
.nh-bg--brown .nh-timeline__item,
.nh-bg--espresso .nh-timeline__item,
.nh-bg--green .nh-timeline__item,
.nh-bg--forest .nh-timeline__item,
.nh-bg--hunter .nh-timeline__item,
.nh-bg--sage .nh-timeline__item,
.nh-bg--terracotta .nh-timeline__item,
.nh-bg--charcoal .nh-timeline__item {
  border-left-color: rgba(255, 255, 255, 0.16);
}
.nh-bg--brown .nh-timeline__item--last,
.nh-bg--espresso .nh-timeline__item--last,
.nh-bg--green .nh-timeline__item--last,
.nh-bg--forest .nh-timeline__item--last,
.nh-bg--hunter .nh-timeline__item--last,
.nh-bg--sage .nh-timeline__item--last,
.nh-bg--terracotta .nh-timeline__item--last,
.nh-bg--charcoal .nh-timeline__item--last {
  border-left-color: transparent;
}
.nh-timeline__marker {
  position: absolute;
  left: -9px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--nh-green-dark);
  border: 3px solid var(--nh-sand);
  box-sizing: border-box;
}
.nh-bg--cream .nh-timeline__marker,
.nh-bg--white .nh-timeline__marker,
.nh-bg--green-wash .nh-timeline__marker,
.nh-bg--mint .nh-timeline__marker,
.nh-bg--grass .nh-timeline__marker,
.nh-bg--orange .nh-timeline__marker {
  border-color: var(--nh-cream);
}
.nh-bg--brown .nh-timeline__marker { border-color: var(--nh-brown); }
.nh-bg--espresso .nh-timeline__marker { border-color: var(--nh-espresso); }
.nh-bg--green .nh-timeline__marker { border-color: var(--nh-green-dark); }
.nh-bg--forest .nh-timeline__marker { border-color: var(--nh-forest); }
.nh-bg--hunter .nh-timeline__marker { border-color: var(--nh-hunter); }
.nh-bg--sage .nh-timeline__marker { border-color: var(--nh-sage); }
.nh-bg--terracotta .nh-timeline__marker { border-color: var(--nh-terracotta); }
.nh-bg--charcoal .nh-timeline__marker { border-color: var(--nh-charcoal); }
.nh-timeline__year {
  flex: 0 0 90px;
  font-family: var(--nh-font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--nh-green-dark);
}
.nh-bg--brown .nh-timeline__year,
.nh-bg--espresso .nh-timeline__year,
.nh-bg--green .nh-timeline__year,
.nh-bg--forest .nh-timeline__year,
.nh-bg--hunter .nh-timeline__year,
.nh-bg--sage .nh-timeline__year,
.nh-bg--terracotta .nh-timeline__year,
.nh-bg--charcoal .nh-timeline__year {
  color: var(--nh-green);
}
.nh-timeline__content {
  flex: 1 1 auto;
  min-width: 0;
}
.nh-timeline__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--nh-ink);
  margin: 0 0 5px;
}
.nh-timeline__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--nh-text);
  margin: 0;
}
.nh-bg--brown .nh-timeline__title,
.nh-bg--espresso .nh-timeline__title,
.nh-bg--green .nh-timeline__title,
.nh-bg--forest .nh-timeline__title,
.nh-bg--hunter .nh-timeline__title,
.nh-bg--sage .nh-timeline__title,
.nh-bg--terracotta .nh-timeline__title,
.nh-bg--charcoal .nh-timeline__title {
  color: #fff;
}
.nh-bg--brown .nh-timeline__text,
.nh-bg--espresso .nh-timeline__text,
.nh-bg--forest .nh-timeline__text,
.nh-bg--hunter .nh-timeline__text,
.nh-bg--sage .nh-timeline__text,
.nh-bg--terracotta .nh-timeline__text,
.nh-bg--charcoal .nh-timeline__text {
  color: #c3b6a3;
}
.nh-bg--green .nh-timeline__text {
  color: var(--nh-text-on-green);
}


/* Bild + Text (RSCE) */
.nh-bild-text {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.nh-bild-text--image-right {
  grid-template-columns: 1.15fr 0.85fr;
}
.nh-bild-text--image-right .nh-bild-text__media {
  order: 2;
}
.nh-bild-text__media {
  min-height: 440px;
  border-radius: 16px;
  overflow: hidden;
}
.nh-bild-text__media .image_container,
.nh-bild-text__media figure {
  margin: 0;
  height: 100%;
}
.nh-bild-text__media picture,
.nh-bild-text__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 16px;
}
.nh-bild-text__media .nh-imgph {
  height: 100%;
  min-height: 440px;
}
.nh-bild-text__title {
  font-size: 40px;
  margin: 0 0 20px;
}
.nh-bild-text__body {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--nh-text);
}
.nh-bild-text__body p + p {
  margin-top: 16px;
}
.nh-bild-text__chips {
  margin-top: 24px;
}
.nh-bg--brown .nh-bild-text__body,
.nh-bg--espresso .nh-bild-text__body,
.nh-bg--forest .nh-bild-text__body,
.nh-bg--hunter .nh-bild-text__body,
.nh-bg--sage .nh-bild-text__body,
.nh-bg--terracotta .nh-bild-text__body,
.nh-bg--charcoal .nh-bild-text__body {
  color: #d8ccba;
}
.nh-bg--green .nh-bild-text__body {
  color: var(--nh-text-on-green);
}
.nh-bild-text__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.nh-bild-text__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--nh-espresso);
  font-family: var(--nh-font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--nh-green);
  flex: 0 0 auto;
}
.nh-bild-text__name {
  font-weight: 700;
  font-size: 15.5px;
  color: var(--nh-ink);
}
.nh-bild-text__role {
  font-size: 13.5px;
  color: var(--nh-muted);
}
.nh-bg--brown .nh-bild-text__name,
.nh-bg--espresso .nh-bild-text__name,
.nh-bg--green .nh-bild-text__name,
.nh-bg--forest .nh-bild-text__name,
.nh-bg--hunter .nh-bild-text__name,
.nh-bg--sage .nh-bild-text__name,
.nh-bg--terracotta .nh-bild-text__name,
.nh-bg--charcoal .nh-bild-text__name {
  color: #fff;
}
.nh-bg--brown .nh-bild-text__role,
.nh-bg--espresso .nh-bild-text__role,
.nh-bg--forest .nh-bild-text__role,
.nh-bg--hunter .nh-bild-text__role,
.nh-bg--sage .nh-bild-text__role,
.nh-bg--terracotta .nh-bild-text__role,
.nh-bg--charcoal .nh-bild-text__role {
  color: #c3b6a3;
}
.nh-bg--green .nh-bild-text__role {
  color: var(--nh-text-on-green);
}

.nh-grid--below { margin-top: 24px; }

/* ---------- Cards / Teaser (Contao: ce_text / Listen-Inhaltselemente) ---------- */
a.nh-card,
.nh-card { background: #fff; border: 1px solid var(--nh-line); border-radius: var(--nh-radius); overflow: hidden; transition: box-shadow .2s ease, transform .2s ease; text-decoration: none; color: inherit; }
a.nh-card { display: flex; flex-direction: column; box-shadow: 0 1px 0 rgba(0,0,0,.02); cursor: pointer; }
.nh-card:hover,
a.nh-card:hover { box-shadow: var(--nh-shadow-hover); transform: translateY(-4px); }
.nh-card__media { height: 180px; overflow: hidden; }
.nh-card__media .nh-imgph { height: 100%; border-radius: 0; }
.nh-card__body { padding: 26px 24px 28px; }
.nh-card__icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 14px; background: var(--nh-green-wash); margin-bottom: 16px; color: var(--nh-green-dark); }
.nh-card__icon .ti { font-size: 26px; line-height: 1; }
.nh-card__icon--dark { background: var(--nh-espresso); color: var(--nh-green); }
.nh-card--no-media .nh-card__body { padding: 30px 26px; }
.nh-card--icon-beside { display: flex; flex-direction: column; }
.nh-card__body--icon-beside { display: flex; align-items: flex-start; gap: 20px; }
.nh-card__body--icon-beside .nh-card__icon { margin-bottom: 0; flex: 0 0 auto; width: 58px; height: 58px; border-radius: 14px; }
.nh-card__body--icon-beside .nh-card__icon .ti { font-size: 28px; }
.nh-card__body--icon-beside .nh-card__content { flex: 1 1 auto; min-width: 0; }
.nh-card__title { font-size: 20px; font-weight: 700; color: var(--nh-ink); margin-bottom: 8px; }
.nh-card__text { font-size: 14.5px; line-height: 1.6; color: var(--nh-muted); }

/* Teaser-Zeile (Leistungsübersicht) */
.nh-teaser { display: flex; gap: 34px; align-items: center; background: #fff; border: 1px solid var(--nh-line); border-radius: var(--nh-radius-lg); overflow: hidden; padding: 8px; }
.nh-teaser--reverse { flex-direction: row-reverse; }
.nh-teaser__media { width: 300px; height: 230px; flex: 0 0 auto; }
.nh-teaser__media .image_container,
.nh-teaser__media figure { margin: 0; height: 100%; }
.nh-teaser__media picture { display: block; height: 100%; }
.nh-teaser__media .nh-imgph,
.nh-teaser__media img { width: 100%; height: 100%; border-radius: 16px; object-fit: cover; }
.nh-teaser__body { padding: 8px 28px; }
.nh-teaser__num { font-size: 12.5px; font-weight: 700; letter-spacing: .16em; color: var(--nh-green-dark); text-transform: uppercase; }
.nh-teaser__title { font-size: 30px; font-weight: 800; color: var(--nh-ink); margin: 8px 0 12px; }
.nh-teaser__text { font-size: 15.5px; line-height: 1.65; color: var(--nh-text); margin-bottom: 18px; }
.nh-teaser__btn { padding: 11px 20px; font-size: 14px; }

/* Kompakte Karten-Zeile (2er-Leistungen unten) */
.nh-card-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-radius);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s ease, transform .2s ease;
}
.nh-card-row:hover { box-shadow: var(--nh-shadow-hover); transform: translateY(-4px); }
.nh-card-row__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--nh-green-wash);
  color: var(--nh-green-dark);
  flex: 0 0 auto;
}
.nh-card-row__title { font-size: 19px; font-weight: 700; color: var(--nh-ink); margin-bottom: 5px; }
.nh-card-row__text { font-size: 14.5px; line-height: 1.55; color: var(--nh-muted); }

/* Service-Kacheln */
.nh-grid--service { gap: 22px; }
a.nh-service-card,
.nh-service-card {
  background: #fff;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-radius);
  padding: 30px 26px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow .2s ease, transform .2s ease;
}
a.nh-service-card:hover { box-shadow: var(--nh-shadow-hover); transform: translateY(-4px); }
.nh-service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--nh-espresso);
  color: var(--nh-green);
  margin-bottom: 18px;
}
.nh-service-card__icon .ti { font-size: 26px; line-height: 1; }
.nh-service-card__icon--green { background: var(--nh-green-wash); color: var(--nh-green-dark); }
.nh-service-card--icon-beside {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.nh-service-card--icon-beside .nh-service-card__icon { margin-bottom: 0; flex: 0 0 auto; }
.nh-service-card--icon-beside .nh-service-card__content { flex: 1 1 auto; min-width: 0; }
.nh-service-card__title { font-size: 19px; font-weight: 700; color: var(--nh-ink); margin-bottom: 8px; }
.nh-service-card__text { font-size: 14px; line-height: 1.6; color: var(--nh-muted); }
.nh-service-card--accent {
  background: var(--nh-green-dark);
  border: 0;
  position: relative;
  overflow: hidden;
}
.nh-service-card--accent .nh-service-card__icon { background: rgba(255,255,255,.16); color: #fff; }
.nh-service-card--accent .nh-service-card__title { color: #fff; }
.nh-service-card--accent .nh-service-card__text { color: var(--nh-text-on-green); }
.nh-service-card--accent .nh-link-arrow { color: #fff; margin-top: 16px; }

/* Referenz-Karte (Übersichtsseite) */
.nh-ref-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--nh-line-2);
}
.nh-ref-card__media { height: 280px; overflow: hidden; }
.nh-ref-card__media .image_container,
.nh-ref-card__media figure,
.nh-ref-card__media picture {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}
.nh-ref-card__media .nh-imgph,
.nh-ref-card__media img,
.nh-ref-card__media .image_container img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}
.nh-ref-card__body { padding: 26px 28px 30px; }
.nh-ref-card__tag { font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--nh-green-dark); }
.nh-ref-card__title { font-size: 23px; font-weight: 800; color: var(--nh-ink); margin: 6px 0 10px; }
.nh-ref-card__text { font-size: 15px; line-height: 1.6; color: var(--nh-muted); }
a.nh-ref-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s ease, transform .2s ease;
}
a.nh-ref-card:hover {
  box-shadow: 0 22px 44px -22px rgba(40,28,14,.45);
  transform: translateY(-4px);
}

/* Bilder Galerie (RSCE) */
.ce_rsce_bilder_galerie .nh-section__intro {
  max-width: 100%;
}
.ce_rsce_bilder_galerie .nh-lead {
  max-width: 100%;
}
.nh-gallery__grid {
  gap: 18px;
  margin-top: 8px;
}
.nh-gallery .nh-section__intro + .nh-gallery__grid {
  margin-top: 48px;
}
.nh-gallery__item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.nh-gallery__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--nh-radius);
  aspect-ratio: 4 / 3;
  background: var(--nh-sand);
}
.nh-gallery__media .image_container,
.nh-gallery__media figure,
.nh-gallery__media picture,
.nh-gallery__media a,
.nh-gallery__trigger {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
}
.nh-gallery__trigger {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}
.nh-gallery__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform .45s ease;
}
.nh-gallery__zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(64, 31, 10, 0.82);
  color: var(--nh-green);
  font-size: 18px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
  box-shadow: 0 10px 24px -12px rgba(20, 12, 4, .55);
}
.nh-gallery__media--lightbox:hover img,
.nh-gallery__trigger:focus-visible img {
  transform: scale(1.04);
}
.nh-gallery__media--lightbox:hover .nh-gallery__zoom,
.nh-gallery__trigger:focus-visible .nh-gallery__zoom {
  opacity: 1;
  transform: none;
}
.nh-gallery__trigger:focus-visible {
  outline: 2px solid var(--nh-green);
  outline-offset: 3px;
}
.nh-gallery__caption {
  font-size: 14px;
  line-height: 1.5;
  color: var(--nh-muted);
}
.nh-bg--brown .nh-gallery__caption,
.nh-bg--espresso .nh-gallery__caption,
.nh-bg--green .nh-gallery__caption,
.nh-bg--forest .nh-gallery__caption,
.nh-bg--hunter .nh-gallery__caption,
.nh-bg--sage .nh-gallery__caption,
.nh-bg--terracotta .nh-gallery__caption,
.nh-bg--charcoal .nh-gallery__caption {
  color: #c3b6a3;
}

/* Custom Lightbox */
body.nh-lightbox-open {
  overflow: hidden;
}
.nh-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.nh-lightbox[hidden] {
  display: none;
}
.nh-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.nh-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(64, 31, 10, 0.35) 0%, rgba(20, 12, 6, 0.88) 70%),
    rgba(20, 12, 6, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0;
  cursor: pointer;
}
.nh-lightbox__shell {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(12px) scale(.985);
  transition: transform .28s ease;
}
.nh-lightbox.is-open .nh-lightbox__shell {
  transform: none;
}
.nh-lightbox__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px;
}
.nh-lightbox__counter {
  margin: 0;
  font-family: var(--nh-font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245, 242, 232, 0.72);
}
.nh-lightbox__close,
.nh-lightbox__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 242, 232, 0.16);
  background: rgba(245, 242, 232, 0.08);
  color: #f5f2e8;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.nh-lightbox__close:hover,
.nh-lightbox__nav:hover {
  background: rgba(216, 158, 44, 0.2);
  border-color: rgba(216, 158, 44, 0.55);
  color: var(--nh-green);
}
.nh-lightbox__close:focus-visible,
.nh-lightbox__nav:focus-visible {
  outline: 2px solid var(--nh-green);
  outline-offset: 2px;
}
.nh-lightbox__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
}
.nh-lightbox__stage {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
.nh-lightbox__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  flex: 0 0 auto;
}
.nh-lightbox__frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(68vh, 720px);
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245, 242, 232, 0.06), rgba(245, 242, 232, 0.02));
  border: 1px solid rgba(245, 242, 232, 0.1);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .65);
}
.nh-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: min(78vh, 860px);
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(.98);
  transition: opacity .25s ease, transform .25s ease;
}
.nh-lightbox.is-ready .nh-lightbox__image {
  opacity: 1;
  transform: none;
}
.nh-lightbox__loader {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(245, 242, 232, 0.18);
  border-top-color: var(--nh-green);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.nh-lightbox.is-loading .nh-lightbox__loader {
  opacity: 1;
  animation: nh-lightbox-spin .7s linear infinite;
}
.nh-lightbox__caption {
  margin: 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 242, 232, 0.82);
  max-width: 40rem;
  align-self: center;
}
@keyframes nh-lightbox-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 760px) {
  .nh-lightbox {
    padding: 14px;
  }
  .nh-lightbox__stage {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .nh-lightbox__nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(20, 12, 6, 0.55);
  }
  .nh-lightbox__nav--prev { left: 8px; }
  .nh-lightbox__nav--next { right: 8px; }
  .nh-lightbox__frame {
    min-height: min(58vh, 520px);
    border-radius: 16px;
  }
  .nh-lightbox__image {
    max-height: min(62vh, 640px);
  }
  .nh-gallery__zoom {
    opacity: 1;
    transform: none;
  }
}

/* Referenz-Detail (Newsreader) */
.nh-news-detail__figure {
  margin: 0 0 40px;
  border-radius: 20px;
  overflow: hidden;
}
.nh-news-detail__figure img,
.nh-news-detail__figure picture {
  display: block;
  width: 100%;
  height: auto;
}
.nh-news-detail > .nh-container > .content-element,
.nh-news-detail > .nh-container > [class*="ce_"],
.nh-news-detail > .nh-container > [class*="mod_"] {
  margin-left: 0;
  margin-right: 0;
}
.nh-news-detail .ce_text p,
.nh-news-detail .content-text p { font-size: 16px; line-height: 1.7; color: var(--nh-text); }
.nh-news-detail .nh-section .nh-container {
  padding-left: 0;
  padding-right: 0;
}
.nh-news-back { padding-top: 0; }
.nh-news-back .nh-link-arrow { display: inline-flex; }

/* Zitat-Band */
.nh-quote {
  background: var(--nh-espresso);
  text-align: center;
  padding: 90px 0;
}
.nh-quote__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--nh-green);
  margin: 0 auto 28px;
  color: var(--nh-espresso);
}
.nh-quote__icon .ti { font-size: 26px; line-height: 1; }
.nh-quote__text {
  font-family: var(--nh-font-head);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.42;
  color: #f4efe6;
  max-width: 880px;
  margin: 0 auto;
  text-wrap: pretty;
  border: 0;
  padding: 0;
}
.nh-quote__author {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.nh-quote__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #3a2f24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nh-font-head);
  font-weight: 800;
  color: var(--nh-green);
}
.nh-quote__name { font-weight: 700; color: #fff; font-size: 15px; text-align: left; }
.nh-quote__role { font-size: 13.5px; color: #9d9183; text-align: left; }

/* Trust-Feature (Braun-Band) */
.nh-feature__icon { display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 16px; background: var(--nh-green); color: var(--nh-espresso); margin-bottom: 20px; }
.nh-feature__icon .ti { font-size: 28px; line-height: 1; color: var(--nh-espresso); stroke-width: 1.75; }
.nh-feature__title { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 9px; }
.nh-feature__text { font-size: 15px; line-height: 1.6; color: #c3b6a3; }

/* Referenz-Kachel */
.nh-ref { position: relative; border-radius: var(--nh-radius); overflow: hidden; height: 300px; display: block; transition: transform .2s ease; }
.nh-ref:hover { transform: translateY(-4px); }
.nh-ref__media { position: absolute; inset: 0; }
.nh-ref__media .image_container,
.nh-ref__media figure,
.nh-ref__media picture {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}
.nh-ref__media picture,
.nh-ref__media img,
.nh-ref__media .ce_image img,
.nh-ref__media .content-image img,
.nh-ref__media .image_container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.nh-ref__media .nh-imgph { height: 100%; border-radius: 0; }
.nh-ref__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,15,9,.78), rgba(20,15,9,0) 55%); }
.nh-ref__cap { position: absolute; left: 22px; right: 22px; bottom: 20px; }
.nh-ref__tag { font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--nh-green-light); }
.nh-ref__title { font-size: 21px; font-weight: 700; color: #fff; margin-top: 4px; }

/* Chips / Normen */
.nh-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.nh-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--nh-green-wash); color: var(--nh-green-dark); padding: 8px 14px; border-radius: 999px; font-weight: 700; font-size: 13px; }
.nh-chip::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--nh-green); }

/* Ablauf-Schritte */
.nh-step { background: #fff; border: 1px solid var(--nh-line); border-radius: var(--nh-radius); padding: 30px 28px; }
.nh-step__num { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--nh-espresso); color: var(--nh-green); font-family: var(--nh-font-head); font-weight: 800; font-size: 18px; margin-bottom: 18px; }
.nh-step__title { font-size: 19px; font-weight: 700; color: var(--nh-ink); margin-bottom: 8px; }
.nh-step__text { font-size: 14.5px; line-height: 1.6; color: var(--nh-muted); }
.nh-ablauf__title { font-size: 38px; margin: 0 0 40px; }
.nh-ablauf__title:has(+ .nh-ablauf__lead) { margin-bottom: 16px; }
.nh-ablauf__lead { margin: 0 0 40px; }
.nh-bg--brown .nh-step__title,
.nh-bg--espresso .nh-step__title,
.nh-bg--green .nh-step__title,
.nh-bg--forest .nh-step__title,
.nh-bg--hunter .nh-step__title,
.nh-bg--sage .nh-step__title,
.nh-bg--terracotta .nh-step__title,
.nh-bg--charcoal .nh-step__title {
  color: var(--nh-ink);
}

/* Glossar (Baum ABC) */
.nh-term { background: #fff; border: 1px solid var(--nh-line); border-radius: var(--nh-radius); padding: 26px 28px; display: flex; gap: 20px; align-items: flex-start; }
.nh-term__letter { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--nh-espresso); color: var(--nh-green); font-family: var(--nh-font-head); font-weight: 800; font-size: 20px; flex: 0 0 auto; }
.nh-term__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--nh-ink);
  margin-bottom: 7px;
}
.nh-grid--abc { gap: 22px; }
.nh-abc-teaser__content { flex: 1 1 auto; min-width: 0; }
.nh-abc-teaser__text { font-size: 14.5px; }
.nh-abc-teaser__note {
  font-size: 13.5px;
  color: #9d9183;
  margin-top: 28px;
  text-align: center;
}

/* ---------- Formular (Contao: Formulargenerator) ---------- */
.nh-form { background: #fff; border: 1px solid var(--nh-line); border-radius: var(--nh-radius-lg); padding: 40px 42px; }
.nh-form--dark { background: #2d251c; border-color: rgba(255,255,255,.08); }
.nh-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.nh-form__row .widget,
.nh-form__row .nh-field { margin-bottom: 0; }
.nh-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.nh-field__label { font-size: 13.5px; font-weight: 700; color: #3a3025; }
.nh-form--dark .nh-field__label { color: #c9b79c; }
.nh-field__input,
.nh-field__select,
.nh-field__textarea {
  font-family: var(--nh-font-body); font-size: 15px; padding: 13px 15px;
  border: 1px solid #d8ccb8; border-radius: var(--nh-radius-sm); background: #faf7f1; color: var(--nh-ink); outline: none;
  width: 100%;
}
.nh-field__select {
  cursor: pointer;
  appearance: none;
  -webkit-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='%237a6f60' stroke-width='2.2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}
.nh-form--dark .nh-field__input,
.nh-form--dark .nh-field__select,
.nh-form--dark .nh-field__textarea { border-color: #4a3d30; background: var(--nh-espresso); color: #fff; }
.nh-form--dark .nh-field__select {
  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='%23c9b79c' stroke-width='2.2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.nh-field__textarea { resize: vertical; }
.nh-source { font-size: 15px; padding: 13px 15px; border: 1px solid #4a3d30; border-radius: var(--nh-radius-sm); background: var(--nh-espresso); color: var(--nh-green); font-weight: 700; }
.nh-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; font-size: 13px; line-height: 1.5; color: var(--nh-muted); }
.nh-consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--nh-green-dark); }
.nh-source-badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(95,160,95,.15); border: 1px solid rgba(95,160,95,.4); color: #9bd49f; padding: 9px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 700; }

/* ---------- CTA-Band ---------- */
.nh-cta { background: var(--nh-green-dark); position: relative; overflow: hidden; }
.nh-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 74px 0;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.nh-cta__content { flex: 1 1 320px; min-width: 0; }
.nh-cta__title { font-size: 40px; font-weight: 800; line-height: 1.1; color: #fff; max-width: 600px; }
.nh-cta__text { margin-top: 14px; font-size: 17px; color: var(--nh-text-on-green); }
.nh-cta__actions { flex: 0 1 260px; display: flex; flex-direction: column; gap: 14px; min-width: min(100%, 220px); }
.nh-cta__actions .nh-cta__btn { padding: 17px 34px; font-size: 16px; border-radius: 12px; }
.nh-cta__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  justify-content: center;
  text-decoration: none;
}
.nh-cta__phone .ti { font-size: 18px; line-height: 1; }
.nh-cta__phone:hover { color: #fff; }
.nh-cta__decor {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 50%;
  pointer-events: none;
}

/* ---------- Kontakt-Infokarte ---------- */
.nh-infocard { background: var(--nh-brown); border-radius: var(--nh-radius); padding: 32px 30px; color: #e7e0d4; }
.nh-infoitem { display: flex; gap: 14px; align-items: flex-start; }
.nh-infoitem__icon { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 11px; background: var(--nh-green); color: var(--nh-espresso); flex: 0 0 auto; }
.nh-infoitem__icon--phone::before,
.nh-infoitem__icon--mail::before,
.nh-infoitem__icon--map::before {
  font-family: "tabler-icons";
  font-size: 19px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.nh-infoitem__icon--phone::before { content: "\eb09"; }
.nh-infoitem__icon--mail::before { content: "\eae5"; }
.nh-infoitem__icon--map::before { content: "\eae8"; }
.nh-infoitem__label { font-size: 12.5px; color: #c9b79c; }
.nh-infoitem__value { font-size: 16px; font-weight: 700; color: #fff; }
a.nh-infoitem__value:hover { color: #fff; opacity: .9; }

/* Kontakt-Boxen (Sidebar) */
.nh-kontakt-boxen {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.nh-kontakt-boxen__direct-title {
  color: #fff;
  margin-bottom: 20px;
}
.nh-kontakt-boxen__items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.nh-kontakt-boxen__hours {
  padding: 28px 30px;
  transition: none;
}
.nh-card.nh-kontakt-boxen__hours:hover {
  box-shadow: none;
  transform: none;
}
.nh-kontakt-boxen__hours-title {
  font-size: 16px;
  margin-bottom: 16px;
}
.nh-kontakt-boxen__hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
}
.nh-kontakt-boxen__hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.nh-kontakt-boxen__hours-day { color: var(--nh-muted); }
.nh-kontakt-boxen__hours-time {
  font-weight: 600;
  color: var(--nh-ink);
  text-align: right;
}
.nh-kontakt-boxen__map {
  overflow: hidden;
  border-radius: 16px;
}
.nh-kontakt-boxen__map-link {
  display: block;
}
.nh-kontakt-boxen__map picture,
.nh-kontakt-boxen__map img,
.nh-kontakt-boxen__map .image_container {
  display: block;
  width: 100%;
  height: 180px;
}
.nh-kontakt-boxen__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.nh-kontakt-boxen__map-ph {
  min-height: 180px;
  width: 100%;
}


/* ---------- Footer (RSCE / Contao-Layout) ---------- */
.nh-footer { background: var(--nh-footer); color: #bdb2a2; }
.nh-footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 72px 0 0;
}
.nh-footer__cols--1 { grid-template-columns: 1fr; }
.nh-footer__cols--2 { grid-template-columns: 1.4fr 1fr; }
.nh-footer__cols--3 { grid-template-columns: 1.4fr 1fr 1fr; }
.nh-footer__intro {
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 300px;
  margin: 0;
}
.nh-footer__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
  margin: 0 0 18px;
}
.nh-footer__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14.5px;
}
.nh-footer__list a,
.nh-footer__link {
  color: inherit;
  text-decoration: none;
}
.nh-footer__list a:hover,
.nh-footer__link:hover { color: var(--nh-green); }
.nh-footer__phone {
  color: #fff;
  font-weight: 600;
}
.nh-footer__phone:hover { color: var(--nh-green); }
.nh-footer__certs { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; padding: 34px 0 0; margin-top: 48px; border-top: 1px solid rgba(255,255,255,.08); }
.nh-footer__certs-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
}
.nh-footer__cert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
  padding: 6px 10px;
  height: 84px;
  max-height: 84px;
  box-sizing: border-box;
}
.nh-footer__cert .image_container,
.nh-footer__cert figure,
.nh-footer__cert picture {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-height: 72px;
  margin: 0;
  border-radius: 0;
  overflow: visible;
}
.nh-footer__cert img,
.nh-footer__cert .image_container img,
.nh-footer__cert picture img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-height: 72px;
  max-width: 180px;
  object-fit: contain;
  border-radius: 0 !important;
}
.nh-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: #7a6f60; }
.nh-footer__legal { display: flex; gap: 26px; }
.nh-footer__legal a:hover { color: var(--nh-green); }

/* ---------- Rechtstext-Seiten ---------- */
.nh-prose { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 34px; }
.nh-prose h2 { font-size: 21px; font-weight: 800; color: var(--nh-ink); margin-bottom: 12px; }
.nh-prose p { font-size: 16px; line-height: 1.7; color: #4a4034; }
.nh-note { font-size: 13.5px; color: #9d9183; border-top: 1px solid var(--nh-line-2); padding-top: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nh-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .nh-footer__cols--3,
  .nh-footer__cols--4 { grid-template-columns: repeat(2, 1fr); }
  .nh-hero__title { font-size: 52px; }
  .nh-pagehead__title { font-size: 44px; }
  .nh-h1 { font-size: 44px; } .nh-h2 { font-size: 34px; }
}
@media (max-width: 1099px) {
  .nh-nav__toggle {
    display: inline-flex;
  }
  .nh-nav {
    position: static;
    gap: 0;
  }
  .nh-nav__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(12,9,6,.52);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }
  body.nh-nav-open .nh-nav__backdrop {
    display: block;
  }
  body.nh-nav-open .nh-nav__toggle {
    background: rgba(36,29,22,.88);
    border-color: rgba(255,255,255,.2);
  }
  .nh-nav__toggle:focus {
    outline: none;
  }
  .nh-nav__toggle:focus-visible {
    outline: 2px solid var(--nh-green-light);
    outline-offset: 2px;
  }
  .nh-nav__panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 130;
    width: 50%;
    max-width: 50%;
    height: 100dvh;
    max-height: 100dvh;
    background: var(--nh-espresso);
    border: 0;
    border-left: 1px solid rgba(255,255,255,.08);
    box-shadow: -28px 0 60px -16px rgba(0,0,0,.55);
    overflow: hidden;
  }
  body.nh-nav-open .nh-nav__panel {
    display: flex;
    flex-direction: column;
    animation: nh-nav-slide-in .28s cubic-bezier(.22, 1, .36, 1);
  }
  @keyframes nh-nav-slide-in {
    from { transform: translateX(100%); opacity: .94; }
    to { transform: translateX(0); opacity: 1; }
  }
  .nh-nav__panel-inner {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    min-width: 0;
    gap: 0;
    height: 100%;
    padding: calc(100px + env(safe-area-inset-top, 0px)) 0 0;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
  }
  .nh-nav__panel .nh-nav__list,
  .nh-nav__panel .level_1 {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nh-nav__panel .level_1 > li,
  .nh-nav__panel .level_1 > li.nh-nav__has-sub {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nh-nav__panel .level_1 > li.nh-nav__has-sub {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .nh-nav__panel .level_1 > li:last-child {
    border-bottom: 0;
  }
  .nh-nav__panel a.nh-nav__item,
  .nh-nav__panel strong.nh-nav__item {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    margin: 0;
    padding: 18px var(--nh-gutter);
    border: 0;
    border-radius: 0;
    font-family: var(--nh-font-head);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #f4efe6;
    white-space: normal;
    text-align: left;
    background: transparent;
    box-shadow: none;
    transition: color .16s ease, background .16s ease;
  }
  .nh-nav__panel a.nh-nav__item:hover,
  .nh-nav__panel strong.nh-nav__item:hover {
    background: rgba(255,255,255,.04);
    color: #fff;
  }
  .nh-nav__panel a.nh-nav__item--active,
  .nh-nav__panel strong.nh-nav__item--active,
  .nh-nav__panel .active > a.nh-nav__item,
  .nh-nav__panel .active > strong.nh-nav__item,
  .nh-nav__panel strong.nh-nav__item[aria-current="page"] {
    background: rgba(95,160,95,.12);
    color: #fff;
    box-shadow: inset 4px 0 0 var(--nh-green);
    padding-left: calc(var(--nh-gutter) - 4px);
  }
  .nh-nav__panel .trail > a.nh-nav__item,
  .nh-nav__panel .trail > strong.nh-nav__item {
    background: transparent;
    color: #f4efe6;
    box-shadow: none;
    padding-left: var(--nh-gutter);
  }
  .nh-nav__panel .level_1 > li.nh-nav__has-sub > a.nh-nav__item,
  .nh-nav__panel .level_1 > li.nh-nav__has-sub > strong.nh-nav__item {
    flex: 0 0 auto;
    align-self: stretch;
    width: 100%;
    max-width: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: #f4efe6;
    padding: 18px var(--nh-gutter);
  }
  .nh-nav__panel .level_1 > li.nh-nav__has-sub > a.nh-nav__item:hover,
  .nh-nav__panel .level_1 > li.nh-nav__has-sub > strong.nh-nav__item:hover {
    background: rgba(255,255,255,.04);
    color: #fff;
  }
  .nh-nav__panel .level_1 > li.nh-nav__has-sub.active > a.nh-nav__item,
  .nh-nav__panel .level_1 > li.nh-nav__has-sub.active > strong.nh-nav__item,
  .nh-nav__panel .level_1 > li.nh-nav__has-sub.trail > a.nh-nav__item,
  .nh-nav__panel .level_1 > li.nh-nav__has-sub.trail > strong.nh-nav__item {
    background: rgba(95,160,95,.12);
    color: #fff;
    box-shadow: inset 4px 0 0 var(--nh-green);
    padding-left: calc(var(--nh-gutter) - 4px);
  }
  .nh-nav__panel .level_1 > li.nh-nav__has-sub.trail:not(.active) > a.nh-nav__item,
  .nh-nav__panel .level_1 > li.nh-nav__has-sub.trail:not(.active) > strong.nh-nav__item {
    background: transparent;
    color: #f4efe6;
    box-shadow: none;
    padding-left: var(--nh-gutter);
  }
  .nh-nav__panel .level_1 > li.nh-nav__has-sub > a.nh-nav__item::after,
  .nh-nav__panel .level_1 > li.nh-nav__has-sub > strong.nh-nav__item::after {
    display: none;
  }
  .nh-nav__panel .nh-subnav {
    position: static;
    display: block;
    width: 100%;
    min-width: 0;
    align-self: stretch;
    padding: 0;
  }
  .nh-nav__panel .level_1 > li.nh-nav__has-sub:hover .nh-subnav,
  .nh-nav__panel .nh-nav__has-sub:hover .nh-subnav {
    animation: none;
  }
  .nh-nav__panel .nh-subnav__panel {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background: rgba(0,0,0,.14);
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .nh-nav__panel a.nh-subnav__item,
  .nh-nav__panel strong.nh-subnav__item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 14px var(--nh-gutter);
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-family: var(--nh-font-body);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    color: #ddd4c8;
    white-space: normal;
    text-align: left;
    background: transparent;
  }
  .nh-nav__panel .nh-subnav__panel > :last-child {
    border-bottom: 0;
  }
  .nh-nav__panel .nh-subnav__mark {
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--nh-green);
    flex: 0 0 auto;
  }
  .nh-nav__panel a.nh-subnav__item:hover,
  .nh-nav__panel strong.nh-subnav__item:hover,
  .nh-nav__panel a.nh-subnav__item--active,
  .nh-nav__panel strong.nh-subnav__item--active,
  .nh-nav__panel strong.nh-subnav__item[aria-current="page"] {
    background: rgba(255,255,255,.05);
    color: #fff;
    box-shadow: none;
  }
  .nh-nav__panel .nh-nav__cta {
    position: sticky;
    bottom: 0;
    flex: 0 0 auto;
    margin: 0;
    margin-top: auto;
    padding: 20px var(--nh-gutter) calc(22px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255,255,255,.1);
    background: var(--nh-espresso);
    width: 100%;
    max-width: none;
    justify-content: center;
    box-sizing: border-box;
    font-size: 16px;
    border-radius: 0;
    white-space: nowrap;
  }
  .nh-header__end > .mod_navigation,
  .nh-header__end > nav.nh-nav {
    flex: 0 0 auto;
  }
}
@media (max-width: 767px) {
  .nh-nav__panel {
    inset: 0;
    left: 0;
    width: 100%;
    max-width: none;
    border-left: 0;
    box-shadow: none;
  }
  @keyframes nh-nav-slide-in {
    from { transform: translateX(8%); opacity: .94; }
    to { transform: translateX(0); opacity: 1; }
  }
}
@media (max-width: 760px) {
  :root { --nh-section-y: 60px; --nh-section-y-lg: 72px; --nh-gutter: 22px; }
  .nh-header__end { gap: 0; }
  .nh-grid--2, .nh-grid--3, .nh-grid--4,
  .nh-grid--service,
  .nh-footer__cols,
  .nh-footer__cols--2,
  .nh-footer__cols--3,
  .nh-footer__cols--4,
  .nh-cta__inner, .nh-form__row { grid-template-columns: 1fr; display: grid; }
  .nh-footer__bottom { flex-direction: column; align-items: flex-start; }
  .nh-footer__legal ul { flex-direction: column; gap: 12px; }
  .nh-cta__inner { flex-direction: column; align-items: stretch; }
  .nh-cta__actions { width: 100%; max-width: none; }
  .nh-teaser, .nh-teaser--reverse { flex-direction: column; align-items: stretch; }
  .nh-teaser__media { width: 100%; }
  .nh-bild-text,
  .nh-bild-text--image-right {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .nh-bild-text--image-right .nh-bild-text__media {
    order: 0;
  }
  .nh-bild-text__media {
    min-height: 320px;
  }
  .nh-bild-text__media picture,
  .nh-bild-text__media img,
  .nh-bild-text__media .nh-imgph {
    min-height: 320px;
  }
  .nh-bild-text__title { font-size: 34px; }
  .nh-card-row { flex-direction: column; align-items: flex-start; }
  .nh-hero__title { font-size: 38px; }
  .nh-pagehead__title { font-size: 34px; }
  .nh-h1 { font-size: 34px; }
  .nh-section--brown .nh-h2,
  .nh-h2--on-brown { font-size: 34px; }
  .nh-quote__text { font-size: 24px; }
  .nh-cutcalc__panel { padding: 32px 24px 28px; border-radius: 20px; }
  .nh-cutcalc__title { font-size: 28px; }
  .nh-cutcalc__chart { gap: 5px; }
  .nh-cutcalc__bar { height: 38px; border-radius: 7px; }
  .nh-cutcalc__label { font-size: 10px; margin-top: 5px; }
  .nh-cutcalc__legend { gap: 14px; }
  .nh-cutcalc__deco { width: 180px; height: 180px; right: -50px; top: -50px; }
  .nh-timeline__item {
    gap: 0;
  }
  .nh-main > .inside > .mod_breadcrumb.nh-breadcrumb {
    padding: 30px 0 0 !important;
  }
}

/* ==========================================================================
   Contao-Integration
   Ergänzt das Klickdummy-CSS um Anpassungen für Contao-Markup (#wrapper,
   Navigation ul/li, Formulargenerator, Inhaltselemente). Bestehende Contao-
   Klassen bleiben erhalten – nh-*-Klassen werden zusätzlich gesetzt.
   ========================================================================== */

/* Layout: Contao-Float-Grid neutralisieren */
#wrapper { margin: 0; width: auto; }
#container { display: block; float: none; padding: 0; }
#container::after { display: none; }
#main,
#left,
#right { float: none; width: auto; margin: 0; position: static; }
#footer { clear: none; }
#main > .inside:not(.nh-container),
#header > .inside:not(.nh-container),
#footer > .inside:not(.nh-container),
#left > .inside:not(.nh-container),
#right > .inside:not(.nh-container) { min-height: 0; max-width: none; padding: 0; }

/* Header/Footer: nh-container darf Contao-.inside-Reset nicht verlieren */
#header.nh-header > .inside.nh-container,
#footer.nh-footer > .inside.nh-container,
.nh-cta > .nh-container,
.nh-quote > .nh-container {
  max-width: var(--nh-maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--nh-gutter);
  padding-right: var(--nh-gutter);
  width: 100%;
  box-sizing: border-box;
}

/* Volle Breite für Band-Elemente im Artikel (Contao-Grid-Margins zurücksetzen) */
.mod_article > .nh-section,
.mod_article > .nh-news-home,
.mod_article > .mod_newslist,
.mod_article > .mod_newsreader,
.mod_article > .nh-cta,
.mod_article > .nh-quote,
.mod_article > .nh-hero,
.mod_article > .nh-pagehead {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* News-Module: Kinder (Pagehead, Sections) wie direkte Artikel-Kinder behandeln */
.mod_article > .mod_newslist,
.mod_article > .mod_newslist--home,
.mod_article > .mod_newsreader {
  display: contents;
}

/* Startseite: Referenzen-Teaser – gleiche Breite wie andere Sektionen, kein Doppel-Padding */
.mod_article > .nh-news-home,
.mod_article .nh-article-band__inner > .nh-news-home {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.mod_article.nh-article-band:has(.nh-news-home) {
  padding-block: 0;
}
.mod_article.nh-article-band .nh-article-band__inner:has(> .nh-news-home) {
  max-width: none;
  padding: 0;
}
.nh-news-home .nh-grid--ref {
  gap: 22px;
}
.mod_newslist--home .nh-container {
  padding: 0;
}

/* Breadcrumb + Hero klein (Layout-Modul vor Artikel, wie im Klickdummy) */
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--nh-espresso); /* Fallback ohne Hero klein */
  padding: 70px 0 0;
  box-sizing: border-box;
}
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb .nh-breadcrumb__list {
  max-width: var(--nh-maxw);
  margin: 0 auto;
  padding: 0 var(--nh-gutter);
  width: 100%;
  box-sizing: border-box;
}

/* Hintergrundfarbe vom folgenden Hero klein (.nh-pagehead) übernehmen */
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--cream) { background: var(--nh-cream); }
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--sand) { background: var(--nh-sand); }
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--white) { background: var(--nh-white); }
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--green-wash) { background: var(--nh-green-wash); }
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--mint) { background: var(--nh-mint); }
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--grass) { background: var(--nh-grass); }
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--orange) { background: var(--nh-orange); }
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--brown) { background: var(--nh-brown); }
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--espresso) { background: var(--nh-espresso); }
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--green) { background: var(--nh-green-dark); }
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--forest) { background: var(--nh-forest); }
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--hunter) { background: var(--nh-hunter); }
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--sage) { background: var(--nh-sage); }
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--terracotta) { background: var(--nh-terracotta); }
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--charcoal) { background: var(--nh-charcoal); }

/* Helle / neutrale Hero-Hintergründe: Breadcrumb-Typo dunkler */
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--cream) .nh-breadcrumb__list,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--cream) .nh-breadcrumb__list a,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--sand) .nh-breadcrumb__list,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--sand) .nh-breadcrumb__list a,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--white) .nh-breadcrumb__list,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--white) .nh-breadcrumb__list a,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--green-wash) .nh-breadcrumb__list,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--green-wash) .nh-breadcrumb__list a,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--mint) .nh-breadcrumb__list,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--mint) .nh-breadcrumb__list a {
  color: var(--nh-muted);
}
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--cream) li + li::before,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--sand) li + li::before,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--white) li + li::before,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--green-wash) li + li::before,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--mint) li + li::before {
  color: #b5a792;
}
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--cream) .nh-breadcrumb__list a:hover,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--sand) .nh-breadcrumb__list a:hover,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--white) .nh-breadcrumb__list a:hover,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--green-wash) .nh-breadcrumb__list a:hover,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--mint) .nh-breadcrumb__list a:hover {
  color: var(--nh-green-dark);
}
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--cream) li.active,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--cream) .nh-breadcrumb__current,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--sand) li.active,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--sand) .nh-breadcrumb__current,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--white) li.active,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--white) .nh-breadcrumb__current,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--green-wash) li.active,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--green-wash) .nh-breadcrumb__current,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--mint) li.active,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--mint) .nh-breadcrumb__current {
  color: var(--nh-green-dark);
}

/* Kräftige Farben (Grasgrün / Terracotta / Orange): dunkle Links für Kontrast */
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--grass) .nh-breadcrumb__list,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--grass) .nh-breadcrumb__list a,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--terracotta) .nh-breadcrumb__list,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--terracotta) .nh-breadcrumb__list a,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--orange) .nh-breadcrumb__list,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--orange) .nh-breadcrumb__list a {
  color: var(--nh-ink);
}
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--grass) li + li::before,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--terracotta) li + li::before,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--orange) li + li::before {
  color: rgba(34, 27, 19, 0.45);
}
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--grass) .nh-breadcrumb__list a:hover,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--terracotta) .nh-breadcrumb__list a:hover,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--orange) .nh-breadcrumb__list a:hover {
  color: #fff;
}
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--grass) li.active,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--grass) .nh-breadcrumb__current,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--terracotta) li.active,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--terracotta) .nh-breadcrumb__current,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--orange) li.active,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb:has(+ .mod_article .nh-pagehead.nh-bg--orange) .nh-breadcrumb__current {
  color: #fff;
}

.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb + .mod_article > .nh-pagehead,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb + .mod_article > .mod_newslist > .nh-pagehead,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb + .mod_article > .mod_newsreader > .nh-pagehead {
  padding-top: 0;
  display: flow-root;
}
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb + .mod_article > .nh-pagehead .nh-container,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb + .mod_article > .mod_newslist > .nh-pagehead .nh-container,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb + .mod_article > .mod_newsreader > .nh-pagehead .nh-container {
  padding-top: 20px;
}
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb + .mod_article > .nh-pagehead .nh-container:has(> .nh-pagehead__kicker:first-child),
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb + .mod_article > .mod_newslist > .nh-pagehead .nh-container:has(> .nh-pagehead__kicker:first-child),
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb + .mod_article > .mod_newsreader > .nh-pagehead .nh-container:has(> .nh-pagehead__kicker:first-child) {
  padding-top: 24px;
}
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb + .mod_article > .nh-pagehead .nh-pagehead__title:first-child,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb + .mod_article > .nh-pagehead .nh-pagehead__kicker:first-child,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb + .mod_article > .mod_newslist > .nh-pagehead .nh-pagehead__title:first-child,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb + .mod_article > .mod_newslist > .nh-pagehead .nh-pagehead__kicker:first-child,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb + .mod_article > .mod_newsreader > .nh-pagehead .nh-pagehead__title:first-child,
.nh-main > .inside > .mod_breadcrumb.nh-breadcrumb + .mod_article > .mod_newsreader > .nh-pagehead .nh-pagehead__kicker:first-child {
  margin-top: 0;
}

/* Header: Logo + Navigation nebeneinander */
#header.nh-header > .inside.nh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 140px;
  overflow: visible;
}
.nh-header__end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-left: auto;
  flex: 1 1 auto;
  min-width: 0;
  overflow: visible;
}
.nh-header__end > .mod_navigation,
.nh-header__end > nav.nh-nav {
  flex: 0 1 auto;
  min-width: 0;
  overflow: visible;
}
.nh-header__end > .mod_html,
.nh-header__end > .mod_inserttag {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.nh-header__end .nh-nav__cta,
.nh-header__end a.nh-btn.nh-nav__cta {
  align-self: center;
}

/* Navigation: Contao ul/li + nh-nav */
.nh-nav.block { overflow: visible; }
.nh-nav .nh-nav__list,
.nh-nav .level_1 {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nh-nav .level_1 > li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nh-nav .level_1 > li.nh-nav__has-sub,
.nh-nav .nh-nav__has-sub { position: relative; }
.nh-nav .level_1 > li.nh-nav__has-sub:hover .nh-subnav,
.nh-nav .nh-nav__has-sub:hover .nh-subnav { display: block; animation: nh-fade .16s ease; }
.nh-nav .level_1 > li.nh-nav__has-sub > a.nh-nav__item,
.nh-nav .level_1 > li.nh-nav__has-sub > strong.nh-nav__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nh-nav .level_1 > li.nh-nav__has-sub > a.nh-nav__item::after,
.nh-nav .level_1 > li.nh-nav__has-sub > strong.nh-nav__item::after {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%239bb89c' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
}
.nh-nav a.nh-nav__item,
.nh-nav strong.nh-nav__item {
  display: inline-block;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14.5px;
  color: #e7e0d4;
  border-radius: 8px;
  white-space: nowrap;
}
.nh-nav a.nh-nav__item:hover,
.nh-nav strong.nh-nav__item:hover,
.nh-nav .active > a.nh-nav__item,
.nh-nav .active > strong.nh-nav__item,
.nh-nav .trail > a.nh-nav__item,
.nh-nav .trail > strong.nh-nav__item,
.nh-nav a.nh-nav__item--active,
.nh-nav strong.nh-nav__item--active,
.nh-nav strong[aria-current="page"] {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.nh-nav .level_2,
.nh-nav .nh-subnav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nh-nav .nh-subnav {
  z-index: 60;
}
.nh-nav .nh-subnav__panel {
  display: flex;
  flex-direction: column;
}
.nh-nav a.nh-subnav__item,
.nh-nav strong.nh-subnav__item {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  box-sizing: border-box;
  padding: 11px 13px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.35;
  color: #2c2417;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
}
.nh-nav .nh-subnav__mark {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--nh-green);
  flex: 0 0 auto;
}
.nh-nav a.nh-subnav__item::before,
.nh-nav strong.nh-subnav__item::before {
  display: none;
}
.nh-nav a.nh-subnav__item:hover,
.nh-nav strong.nh-subnav__item:hover,
.nh-nav a.nh-subnav__item--active,
.nh-nav strong.nh-subnav__item--active,
.nh-nav strong.nh-subnav__item[aria-current="page"] {
  background: #f3efe6;
  color: var(--nh-green-dark);
}

/* Mobiles Menü – Panel-Overrides (nach globalen Nav-Regeln) */
@media (max-width: 1099px) {
  .nh-nav__panel a.nh-nav__item,
  .nh-nav__panel strong.nh-nav__item {
    display: flex;
    width: 100%;
    max-width: none;
    white-space: normal;
    border-radius: 0;
  }
  .nh-nav__panel .level_1 > li.nh-nav__has-sub > a.nh-nav__item,
  .nh-nav__panel .level_1 > li.nh-nav__has-sub > strong.nh-nav__item {
    display: flex;
    width: 100%;
    max-width: none;
  }
  .nh-nav__panel .nh-subnav,
  .nh-nav__panel .nh-subnav__panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
  }
  .nh-nav__panel a.nh-subnav__item,
  .nh-nav__panel strong.nh-subnav__item {
    display: flex;
    width: 100%;
    max-width: none;
    white-space: normal;
    color: #ddd4c8;
    background: transparent;
  }
  .nh-nav__panel a.nh-subnav__item:hover,
  .nh-nav__panel strong.nh-subnav__item:hover,
  .nh-nav__panel a.nh-subnav__item--active,
  .nh-nav__panel strong.nh-subnav__item--active,
  .nh-nav__panel strong.nh-subnav__item[aria-current="page"] {
    background: rgba(255,255,255,.05);
    color: #fff;
  }
}

/* Breadcrumb */
.nh-breadcrumb.block { overflow: visible; }
.nh-breadcrumb__list,
.nh-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
  color: #9d9183;
}
.nh-breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.nh-breadcrumb li + li::before {
  content: "/";
  color: #5a4f42;
}
.nh-breadcrumb a:hover { color: var(--nh-green); }
.nh-breadcrumb li.active,
.nh-breadcrumb .nh-breadcrumb__current { color: var(--nh-green); }

/* Inhaltselemente */
.mod_article,
.content-text,
.ce_text,
.content-element { margin-bottom: 0; }
.ce_text p,
.content-text p { font-size: 16px; line-height: 1.7; color: var(--nh-text); }
.ce_text h1, .content-text h1 { font-size: 56px; font-weight: 800; }
.ce_text h2, .content-text h2 { font-size: 44px; font-weight: 800; }
.ce_text h3, .content-text h3 { font-size: 20px; font-weight: 700; }
.ce_image img,
.content-image img,
.image_container img { border-radius: var(--nh-radius); }
.nh-hero .ce_image img,
.nh-hero .content-image img,
.nh-hero__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.nh-card__media .ce_image img,
.nh-card__media .content-image img,
.nh-card__media .image_container,
.nh-card__media picture { display: block; margin: 0; height: 100%; }
.nh-card__media .ce_image img,
.nh-card__media .content-image img,
.nh-card__media .image_container img,
.nh-card__media picture img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }

/* Formulargenerator */
.nh-form.block,
.ce_form .nh-form { overflow: visible; }
.nh-form .formbody { display: flex; flex-direction: column; }
.nh-form .widget,
.nh-form .nh-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.nh-form label,
.nh-form .nh-field__label {
  font-size: 13.5px;
  font-weight: 700;
  color: #3a3025;
}
.nh-form input.text,
.nh-form textarea.textarea,
.nh-form select.select,
.nh-form .nh-field__input,
.nh-form .nh-field__select,
.nh-form .nh-field__textarea {
  font-family: var(--nh-font-body);
  font-size: 15px;
  padding: 13px 15px;
  border: 1px solid #d8ccb8;
  border-radius: var(--nh-radius-sm);
  background-color: #faf7f1;
  color: var(--nh-ink);
  outline: none;
  width: 100%;
}
.nh-form .widget.widget-select {
  border: 0;
  padding: 0;
  background: transparent;
}
.nh-form select.nh-field__select,
.nh-form select.select {
  cursor: pointer;
  appearance: none;
  -webkit-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='%237a6f60' stroke-width='2.2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}
.nh-form .submit,
.nh-form button.submit,
.nh-form .nh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--nh-font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  background: var(--nh-green-dark);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(21,59,26,.7);
  width: 100%;
}
.nh-form .submit:hover,
.nh-form button.submit:hover { background: var(--nh-green-darker); }
.nh-form .checkbox_container.nh-consent,
.nh-form .nh-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--nh-muted);
  border: 0;
  padding: 0;
}
.nh-form .checkbox_container.nh-consent legend,
.nh-form .nh-consent legend { display: none; }
.nh-form .checkbox_container.nh-consent span,
.nh-form .nh-consent span { display: flex; align-items: flex-start; gap: 10px; }
.nh-form .checkbox,
.nh-form .nh-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--nh-green-dark);
  flex: 0 0 auto;
}
.nh-form--dark label,
.nh-form--dark .nh-field__label { color: #c9b79c; }
.nh-form--dark input.text,
.nh-form--dark textarea.textarea,
.nh-form--dark select.select,
.nh-form--dark .nh-field__input,
.nh-form--dark .nh-field__select,
.nh-form--dark .nh-field__textarea {
  border-color: #4a3d30;
  background-color: var(--nh-espresso);
  color: #fff;
}
.nh-form--dark select.nh-field__select,
.nh-form--dark select.select {
  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='%23c9b79c' stroke-width='2.2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.nh-form p.error,
.nh-form .error { color: #b42318; font-size: 14px; margin-bottom: 12px; }
.nh-form__confirmation,
.nh-form .form-confirmation {
  padding: 24px 28px;
  border-radius: 12px;
  background: var(--nh-green-wash);
  border: 1px solid rgba(95,160,95,.28);
  color: var(--nh-ink);
  font-size: 16px;
  line-height: 1.65;
  outline: none;
}
.nh-form__confirmation:focus,
.nh-form .form-confirmation:focus {
  box-shadow: 0 0 0 3px rgba(95,160,95,.28);
}
.nh-form--dark .nh-form__confirmation,
.nh-form--dark .form-confirmation {
  background: rgba(95,160,95,.14);
  border-color: rgba(143,207,147,.28);
  color: #f4efe6;
}

/* Footer-Navigation (Rechtliches) */
.nh-footer__legal ul,
.nh-footer .nh-footer__legal {
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nh-footer__legal a:hover,
.nh-footer .nh-footer__legal a:hover { color: var(--nh-green); }

/* Footer-Spalten: vertikale Menüliste (mod_navigation_footer / mod_customnav_footer / RSCE) */
.nh-footer .mod_navigation.nh-footer__list,
.nh-footer .mod_customnav.nh-footer__list,
.nh-footer nav.nh-footer__list {
  overflow: visible;
}
.nh-footer .mod_navigation.nh-footer__list.nh-nav,
.nh-footer .mod_customnav.nh-footer__list.nh-nav,
.nh-footer nav.nh-footer__list {
  display: block;
}
.nh-footer .mod_navigation.nh-footer__list ul,
.nh-footer .mod_navigation.nh-footer__list .nh-nav__list,
.nh-footer .mod_customnav.nh-footer__list ul,
.nh-footer .mod_customnav.nh-footer__list ul.level_1,
.nh-footer nav.nh-footer__list ul,
.nh-footer nav.nh-footer__list ul.level_1 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nh-footer .mod_navigation.nh-footer__list ul > li,
.nh-footer .mod_navigation.nh-footer__list .level_1 > li,
.nh-footer .mod_customnav.nh-footer__list ul > li,
.nh-footer .mod_customnav.nh-footer__list ul.level_1 > li,
.nh-footer nav.nh-footer__list ul > li,
.nh-footer nav.nh-footer__list ul.level_1 > li {
  display: block;
  margin: 0;
}
.nh-footer .mod_navigation.nh-footer__list a,
.nh-footer .mod_navigation.nh-footer__list strong,
.nh-footer .mod_navigation.nh-footer__list .nh-nav__item,
.nh-footer .mod_customnav.nh-footer__list a,
.nh-footer .mod_customnav.nh-footer__list strong,
.nh-footer .mod_customnav .nh-footer__link,
.nh-footer nav.nh-footer__list a,
.nh-footer nav.nh-footer__list strong {
  display: block;
  padding: 0;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  border-radius: 0;
  white-space: normal;
  background: transparent;
}
.nh-footer .mod_navigation.nh-footer__list a:hover,
.nh-footer .mod_navigation.nh-footer__list strong:hover,
.nh-footer .mod_navigation.nh-footer__list .nh-nav__item:hover,
.nh-footer .mod_navigation.nh-footer__list .active > a,
.nh-footer .mod_navigation.nh-footer__list .active > strong,
.nh-footer .mod_navigation.nh-footer__list .active > .nh-nav__item,
.nh-footer .mod_navigation.nh-footer__list strong[aria-current="page"],
.nh-footer .mod_customnav.nh-footer__list a:hover,
.nh-footer .mod_customnav.nh-footer__list strong:hover,
.nh-footer .mod_customnav .nh-footer__link:hover,
.nh-footer .mod_customnav .active > a,
.nh-footer .mod_customnav .active > strong,
.nh-footer .mod_customnav strong[aria-current="page"],
.nh-footer nav.nh-footer__list a:hover,
.nh-footer nav.nh-footer__list strong:hover {
  color: var(--nh-green);
  background: transparent;
}
.nh-footer__legal .mod_navigation ul,
.nh-footer__legal .mod_customnav ul,
.nh-footer .mod_customnav.nh-footer__legal ul,
.nh-footer .mod_navigation.nh-footer__legal ul,
.nh-footer nav.nh-footer__legal ul,
.nh-footer nav.nh-footer__legal ul.level_1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nh-footer .mod_customnav.nh-footer__legal,
.nh-footer .mod_navigation.nh-footer__legal,
.nh-footer nav.nh-footer__legal {
  display: flex;
  gap: 26px;
  overflow: visible;
}
.nh-footer .mod_customnav.nh-footer__legal ul > li,
.nh-footer .mod_navigation.nh-footer__legal ul > li,
.nh-footer nav.nh-footer__legal ul > li,
.nh-footer nav.nh-footer__legal ul.level_1 > li {
  display: block;
  margin: 0;
}
.nh-footer .mod_customnav.nh-footer__legal a,
.nh-footer .mod_customnav.nh-footer__legal strong,
.nh-footer .mod_navigation.nh-footer__legal a,
.nh-footer .mod_navigation.nh-footer__legal strong,
.nh-footer .mod_customnav.nh-footer__legal .nh-nav__item,
.nh-footer .mod_navigation.nh-footer__legal .nh-nav__item,
.nh-footer nav.nh-footer__legal a,
.nh-footer nav.nh-footer__legal strong {
  display: inline;
  padding: 0;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  border-radius: 0;
  white-space: nowrap;
  background: transparent;
}
.nh-footer .mod_customnav.nh-footer__legal a:hover,
.nh-footer .mod_customnav.nh-footer__legal strong:hover,
.nh-footer .mod_navigation.nh-footer__legal a:hover,
.nh-footer .mod_navigation.nh-footer__legal strong:hover,
.nh-footer .mod_customnav.nh-footer__legal .active > a,
.nh-footer .mod_customnav.nh-footer__legal .active > strong,
.nh-footer .mod_navigation.nh-footer__legal .active > a,
.nh-footer .mod_navigation.nh-footer__legal .active > strong,
.nh-footer .mod_customnav.nh-footer__legal strong[aria-current="page"],
.nh-footer .mod_navigation.nh-footer__legal strong[aria-current="page"],
.nh-footer nav.nh-footer__legal a:hover,
.nh-footer nav.nh-footer__legal strong:hover {
  color: var(--nh-green);
  background: transparent;
}

/* Utility-Klassen aus dem Klickdummy (ohne Inline-Styles) */
.nh-text-green { color: var(--nh-green); }
.nh-text-sand { color: #d8ccba; }
.nh-text-muted-footer { color: #9d9183; }
.nh-mt-14 { margin-top: 14px; }
.nh-mt-18 { margin-top: 18px; }
.nh-mt-24 { margin-top: 24px; }
.nh-grid-intro { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 52px; }
.nh-grid-contact { grid-template-columns: 1.25fr .95fr; gap: 48px; align-items: start; }
.nh-card--horizontal { padding: 28px 30px; display: flex; gap: 18px; align-items: flex-start; }
.nh-card--horizontal .nh-card__icon { margin: 0; flex: 0 0 auto; }

/* Tarif Karten (RSCE) */
.nh-tarif-grid {
  align-items: stretch;
  gap: 24px;
}
.nh-tarif-card {
  background: #fff;
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-radius);
  padding: 34px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.nh-tarif-card--featured {
  background: var(--nh-espresso);
  border-color: transparent;
  box-shadow: 0 24px 48px -24px rgba(40, 28, 14, .55);
}
.nh-tarif-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.nh-tarif-card__badge {
  flex: 0 0 auto;
  background: var(--nh-green);
  color: var(--nh-espresso);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  padding: 5px 11px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nh-tarif-card__tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #9d9183;
  text-transform: uppercase;
}
.nh-tarif-card--featured .nh-tarif-card__tier {
  color: #9bb89c;
}
.nh-tarif-card__title {
  font-family: var(--nh-font-head);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--nh-ink);
  margin: 0 0 6px;
}
.nh-tarif-card--featured .nh-tarif-card__title {
  color: #fff;
}
.nh-tarif-card__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--nh-muted);
  margin: 0 0 22px;
}
.nh-tarif-card--featured .nh-tarif-card__text {
  color: #c3b6a3;
}
.nh-tarif-card__features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 0;
}
.nh-tarif-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.45;
  color: #3a3025;
}
.nh-tarif-card--featured .nh-tarif-card__feature {
  color: #e7e0d4;
}
.nh-tarif-card__check {
  color: var(--nh-green);
  font-weight: 800;
  flex: 0 0 auto;
  line-height: 1.45;
}

/* Linkliste (RSCE) */
.nh-linkliste__headline {
  font-size: 32px;
  margin: 0 0 24px;
}
.nh-linkliste__headline:has(+ .nh-linkliste__lead) {
  margin-bottom: 16px;
}
.nh-linkliste__lead {
  margin: 0 0 24px;
}
.nh-linkliste__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nh-linkliste__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--nh-line-2);
  border-radius: 14px;
  padding: 18px 22px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.nh-linkliste__item:hover {
  border-color: #d8ccb8;
  box-shadow: 0 10px 24px -18px rgba(40, 28, 14, .28);
}
.nh-linkliste__item--external {
  justify-content: space-between;
}
.nh-linkliste__content {
  flex: 1 1 auto;
  min-width: 0;
}
.nh-linkliste__title {
  display: block;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--nh-ink);
}
.nh-linkliste__text {
  display: block;
  font-size: 13.5px;
  color: var(--nh-muted);
  margin-top: 2px;
}
.nh-linkliste__arrow {
  flex: 0 0 auto;
  color: var(--nh-green-dark);
  line-height: 0;
}
.nh-linkliste__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--nh-green-wash);
  color: var(--nh-green-dark);
  flex: 0 0 auto;
  line-height: 0;
}

/* Schnittzeit-Rechner */
.nh-cutcalc__panel {
  position: relative;
  overflow: hidden;
  background: var(--nh-espresso);
  border-radius: 24px;
  padding: 48px 48px 44px;
}
.nh-cutcalc__intro {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.nh-cutcalc__title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 12px;
}
.nh-eyebrow + .nh-cutcalc__title {
  margin-top: var(--nh-eyebrow-gap);
}
.nh-cutcalc__text {
  font-size: 15.5px;
  line-height: 1.65;
  color: #c3b6a3;
  margin-bottom: 30px;
}
.nh-cutcalc__chart {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  position: relative;
  z-index: 2;
}
.nh-cutcalc__month {
  text-align: center;
}
.nh-cutcalc__bar {
  height: 46px;
  border-radius: 9px;
}
.nh-cutcalc__month--allowed .nh-cutcalc__bar {
  background: var(--nh-green);
}
.nh-cutcalc__month--schonzeit .nh-cutcalc__bar {
  background: #5a4a3a;
}
.nh-cutcalc__label {
  font-size: 11.5px;
  font-weight: 700;
  margin-top: 7px;
}
.nh-cutcalc__month--allowed .nh-cutcalc__label {
  color: #cabfae;
}
.nh-cutcalc__month--schonzeit .nh-cutcalc__label {
  color: #8a7d6b;
}
.nh-cutcalc__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}
.nh-cutcalc__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #e7e0d4;
}
.nh-cutcalc__legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex: 0 0 auto;
}
.nh-cutcalc__legend-swatch--allowed {
  background: var(--nh-green);
}
.nh-cutcalc__legend-swatch--schonzeit {
  background: #5a4a3a;
}
.nh-cutcalc__deco {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border: 2px solid rgba(255,255,255,.07);
  border-radius: 50%;
  pointer-events: none;
}
.nh-cutcalc__disclaimer {
  font-size: 13px;
  color: #9d9183;
  margin-top: 16px;
  text-align: center;
}

.nh-btn--ghost-light { color: #fff; border-color: rgba(255,255,255,.35); }
.nh-hero--photo .nh-btn--ghost-light {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
}
.nh-hero--photo .nh-btn--ghost-light:hover { background: rgba(255,255,255,.22); color: #fff; }
.nh-hero .nh-imgph { height: 100%; border-radius: 0; }

/* Hero – Variante Band (Kopfbild A) */
.nh-hero--band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #4f9a52, var(--nh-green-dark));
}
.nh-hero__inner--band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  z-index: 2;
}
.nh-hero__content { max-width: 560px; }
.nh-hero__kicker--band {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  color: #d4ead4;
  margin-bottom: 20px;
}
.nh-hero__title--band {
  font-size: 74px;
  font-weight: 800;
  line-height: .98;
  color: #fff;
}
.nh-hero__text--band {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.6;
  color: #eaf4ea;
  max-width: 440px;
}
.nh-hero__aside { max-width: 330px; text-align: right; }
.nh-hero__aside-text {
  font-family: var(--nh-font-head);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.32;
  color: #fff;
}
.nh-hero__decor {
  position: absolute;
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 50%;
  pointer-events: none;
}
.nh-hero__decor--1 { right: -90px; top: -60px; width: 340px; height: 340px; }
.nh-hero__decor--2 { right: 60px; bottom: -120px; width: 220px; height: 220px; border-color: rgba(255,255,255,.10); }
.nh-btn--ghost-band {
  color: #fff;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.4);
}
.nh-btn--ghost-band:hover { background: rgba(255,255,255,.26); }

/* Hero – Variante Foto (Kopfbild B) */
.nh-hero--photo { min-height: 600px; }
.nh-hero--photo .nh-hero__media .image_container,
.nh-hero--photo .nh-hero__media figure { margin: 0; height: 100%; }
.nh-hero--photo .nh-hero__media picture,
.nh-hero--photo .nh-hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* Hero – Variante Geteilt (Kopfbild C) */
.nh-hero--split {
  display: flex;
  min-height: 580px;
  background: var(--nh-sand);
}
.nh-hero__split-text {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 72px 64px 72px var(--nh-gutter);
}
.nh-hero__split-inner {
  max-width: 540px;
  margin-left: auto;
  padding-right: 24px;
}
.nh-hero__kicker--split {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--nh-green-dark);
  margin-bottom: 22px;
}
.nh-hero__kicker--split::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--nh-green);
}
.nh-hero__title--split {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.04;
  color: var(--nh-espresso);
}
.nh-hero__text--split {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.65;
  color: #5f5446;
  max-width: 460px;
}
.nh-btn--ghost-split {
  color: var(--nh-espresso);
  border: 1.5px solid #cdbfa6;
}
.nh-btn--ghost-split:hover {
  border-color: var(--nh-green-dark);
  color: var(--nh-green-dark);
}
.nh-hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.nh-hero__stat-num {
  font-family: var(--nh-font-head);
  font-weight: 800;
  font-size: 34px;
  color: var(--nh-green-dark);
}
.nh-hero__stat-label {
  font-size: 13.5px;
  color: var(--nh-muted);
  font-weight: 600;
  margin-top: 2px;
}
.nh-hero__split-media {
  flex: 1;
  position: relative;
  min-height: 580px;
}
.nh-hero__split-media .image_container,
.nh-hero__split-media figure { margin: 0; height: 100%; }
.nh-hero__split-media picture,
.nh-hero__split-media img,
.nh-hero__split-media .nh-imgph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.nh-imgph--hero { min-height: 100%; border-radius: 0; }

@media (max-width: 1024px) {
  .nh-hero__inner--band { flex-direction: column; align-items: flex-start; }
  .nh-hero__aside { max-width: none; text-align: left; }
  .nh-hero__title--band { font-size: 52px; }
  .nh-hero__title--split { font-size: 44px; }
  .nh-hero--split { flex-direction: column; }
  .nh-hero__split-text { padding: 60px var(--nh-gutter); }
  .nh-hero__split-inner { margin: 0; padding-right: 0; }
  .nh-hero__split-media { min-height: 360px; }
}
@media (max-width: 760px) {
  .nh-hero__title--band { font-size: 38px; }
  .nh-hero__title--split { font-size: 34px; }
  .nh-hero__stats { gap: 24px; }
}

@media (max-width: 760px) {
  .nh-grid-intro,
  .nh-grid-contact { grid-template-columns: 1fr; }
  #header.nh-header > .inside.nh-header__inner { height: 140px; }
}

/* Artikel mit Hintergrundband (volle Breite) */
.mod_article.nh-article-band {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-block: var(--nh-section-y);
}
.mod_article.nh-article-band .nh-article-band__inner:has(> [class*="col-"]) {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 0;
}
.mod_article.nh-article-band .nh-article-band__inner > [class*="col-"] {
  grid-column: span 12;
  min-width: 0;
  margin-left: 0;
  margin-right: 0;
}
.mod_article.nh-article-band .nh-article-band__inner > [class*="col-"] .nh-container {
  max-width: none;
  padding-inline: 0;
}
.mod_article.nh-article-band .nh-article-band__inner > .nh-section[class*="col-"],
.mod_article.nh-article-band .nh-article-band__inner > .nh-rsce-slot[class*="col-"] {
  padding: 0;
  background: transparent;
}
@media (max-width: 991.98px) {
  .mod_article.nh-article-band .nh-article-band__inner > .col-md-6 + .col-md-6 {
    margin-top: 32px;
  }
}
@media (min-width: 768px) {
  .mod_article.nh-article-band .nh-article-band__inner > .col-sm-1 { grid-column: span 1; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-sm-2 { grid-column: span 2; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-sm-3 { grid-column: span 3; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-sm-4 { grid-column: span 4; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-sm-5 { grid-column: span 5; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-sm-6 { grid-column: span 6; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-sm-7 { grid-column: span 7; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-sm-8 { grid-column: span 8; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-sm-9 { grid-column: span 9; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-sm-10 { grid-column: span 10; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-sm-11 { grid-column: span 11; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-sm-12 { grid-column: span 12; }
}
@media (min-width: 992px) {
  .mod_article.nh-article-band .nh-article-band__inner > .col-md-1 { grid-column: span 1; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-md-2 { grid-column: span 2; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-md-3 { grid-column: span 3; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-md-4 { grid-column: span 4; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-md-5 { grid-column: span 5; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-md-6 { grid-column: span 6; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-md-7 { grid-column: span 7; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-md-8 { grid-column: span 8; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-md-9 { grid-column: span 9; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-md-10 { grid-column: span 10; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-md-11 { grid-column: span 11; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-md-12 { grid-column: span 12; }
}
@media (min-width: 1200px) {
  .mod_article.nh-article-band .nh-article-band__inner > .col-lg-1 { grid-column: span 1; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-lg-2 { grid-column: span 2; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-lg-3 { grid-column: span 3; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-lg-4 { grid-column: span 4; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-lg-5 { grid-column: span 5; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-lg-6 { grid-column: span 6; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-lg-7 { grid-column: span 7; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-lg-8 { grid-column: span 8; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-lg-9 { grid-column: span 9; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-lg-10 { grid-column: span 10; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-lg-11 { grid-column: span 11; }
  .mod_article.nh-article-band .nh-article-band__inner > .col-lg-12 { grid-column: span 12; }
}
