/* ==========================================================================
   BIBER ABRISS — Design System
   ========================================================================== */

:root {
  --c-bg: #ffffff;
  --c-bg-soft: #f6f8f7;
  --c-bg-mint: #E7F4EE;
  --c-ink: #0b0f0d;
  --c-ink-soft: #2a302d;
  --c-mute: #6b7672;
  --c-line: #e4e8e6;
  --c-brand: #207A4F;
  --c-brand-2: #2FB36E;
  --c-brand-dark: #0E3D2E;
  --c-brand-soft: #E7F4EE;

  --f-display: 'Alumni Sans', 'Inter', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 6px rgba(14, 61, 46, 0.06);
  --shadow-md: 0 12px 36px -8px rgba(14, 61, 46, 0.18);
  --shadow-lg: 0 30px 80px -20px rgba(14, 61, 46, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1320px;
  --nav-h: 84px;
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--c-ink);
  background: var(--c-bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

::selection { background: var(--c-brand); color: #fff; }

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
.display {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 0.92;
  text-transform: none;
}
h1, h2 { font-family: var(--f-display); font-weight: 500; letter-spacing: -0.015em; line-height: 0.95; }
h3, h4 { font-family: var(--f-body); font-weight: 600; letter-spacing: -0.01em; }

h1 { font-size: clamp(3rem, 8vw, 7.5rem); }
h2 { font-size: clamp(2.25rem, 5.5vw, 5rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-brand);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--c-brand);
  display: inline-block;
}

.lead {
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  color: var(--c-ink-soft);
  max-width: 60ch;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: clamp(80px, 10vw, 160px) 0; position: relative; }
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }
.section--dark { background: var(--c-brand-dark); color: #fff; }
.section--ink { background: var(--c-ink); color: #fff; }
.section--mint { background: var(--c-brand-soft); }
.section--soft { background: var(--c-bg-soft); }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .4s var(--ease), background .3s, color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--c-brand);
  color: #fff;
}
.btn--primary:hover { background: var(--c-brand-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--light {
  background: #fff;
  color: var(--c-ink);
}
.btn--light:hover { background: var(--c-brand-soft); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}
.btn--ghost:hover { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }

.btn--dark {
  background: var(--c-ink);
  color: #fff;
}
.btn--dark:hover { background: var(--c-brand); }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 28px;
  transition: background .4s var(--ease), box-shadow .4s, padding .4s;
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 rgba(11,15,13,0.06);
  padding: 10px 28px;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.nav__brand img { height: 56px; width: auto; transition: transform .4s var(--ease); }
.nav__brand:hover img { transform: rotate(-4deg) scale(1.02); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--c-line);
  padding: 6px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
}
.nav__link {
  display: inline-block;
  padding: 10px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-ink-soft);
  border-radius: var(--radius-pill);
  transition: background .3s, color .3s;
  position: relative;
}
.nav__link:hover { color: var(--c-brand); }
.nav__link.is-active { background: var(--c-brand); color: #fff; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--c-ink);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: background .3s, transform .3s;
}
.nav__cta:hover { background: var(--c-brand); transform: translateY(-2px); }

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-ink);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .3s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-brand-dark);
  color: #fff;
  z-index: 99;
  padding: calc(var(--nav-h) + 20px) 28px 40px;
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  padding-top: 30px;
}
.mobile-menu__link {
  font-family: var(--f-display);
  font-size: clamp(2.25rem, 9vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  transition: transform .4s var(--ease), color .3s;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-menu__link:hover { color: var(--c-brand-2); transform: translateX(8px); }
.mobile-menu__footer {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}
.mobile-menu__footer a { color: #fff; font-weight: 600; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,31,22,0.35) 0%, rgba(7,31,22,0.6) 45%, rgba(7,31,22,0.9) 100%),
    linear-gradient(120deg, rgba(14,61,46,0.25) 0%, transparent 60%);
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.06);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.06);
}
.hero__eyebrow .pulse {
  width: 8px; height: 8px;
  background: var(--c-brand-2);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(47,179,110,0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47,179,110,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(47,179,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,179,110,0); }
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(3.5rem, 10vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-brand-2);
}
.hero__lead {
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin-bottom: 40px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__meta {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
  max-width: 780px;
}
.hero__meta > div {
  padding-right: 24px;
}
.hero__meta-value {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
  color: #fff;
}
.hero__meta-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .hero__meta > div:last-child { grid-column: span 2; }
}

.hero__scroll {
  position: absolute;
  right: 28px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.hero__scroll-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: grid;
  place-items: center;
  animation: scrollBob 2.4s infinite var(--ease);
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@media (max-width: 640px) { .hero__scroll { display: none; } }

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  background: #071f16;        /* dunkelgrün wie Footer — passend zur Marke */
  color: #fff;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee--mint { background: var(--c-brand-soft); color: var(--c-brand-dark); border-color: transparent; }
.marquee__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee__item {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  display: inline-flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.marquee__item::after {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--c-brand-2);
  border-radius: 50%;
  display: inline-block;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   Section Header
   -------------------------------------------------------------------------- */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}
.sec-head__left { max-width: 640px; }
.sec-head__eyebrow { margin-bottom: 18px; }
.sec-head__title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.02em;
}
.sec-head__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-brand);
}
.sec-head__right {
  max-width: 420px;
  color: var(--c-ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .sec-head { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .services { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 32px 32px 36px;
  overflow: hidden;
  transition: transform .6s var(--ease), box-shadow .6s, border-color .4s;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card__num {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--c-mute);
  letter-spacing: 0.06em;
}
.service-card__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 18px 0 16px;
}
.service-card__desc {
  color: var(--c-ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.service-card__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: auto;
  aspect-ratio: 4/3;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.service-card:hover .service-card__image img { transform: scale(1.08); }
.service-card__arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-ink);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background .3s, transform .4s var(--ease);
}
.service-card:hover .service-card__arrow {
  background: var(--c-brand);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.stat {
  padding: 56px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.stat:last-child { border-right: none; }
.stat__value { display: block; margin: 0; }
.stat__label { margin: 0 !important; max-width: 220px; line-height: 1.45; }
.stat__value {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
}
.stat__value sup {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.32em;
  color: var(--c-brand-2);
  margin-left: 4px;
  vertical-align: top;
  letter-spacing: 0;
}
.stat__label {
  margin-top: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 14.5px;
}
@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat:last-child { border-bottom: none; }
}

/* --------------------------------------------------------------------------
   About / Split
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse { grid-template-columns: 1fr 1.1fr; }
.split--reverse .split__media { order: -1; }
@media (max-width: 900px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__media { order: 0; }
}

.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.split__media:hover img { transform: scale(1.05); }
.split__media--badge::after {
  content: "SEIT 2012";
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  color: var(--c-ink);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.split__content h2 {
  font-family: var(--f-display);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.split__content h2 em { font-style: italic; font-weight: 300; color: var(--c-brand); }
.split__content p {
  color: var(--c-ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 32px 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
  font-size: 15.5px;
  color: var(--c-ink-soft);
}
.feature-list svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--c-brand);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   Process
   -------------------------------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.process__step {
  padding: 40px 32px;
  border-right: 1px solid var(--c-line);
  position: relative;
  counter-increment: step;
  transition: background .4s;
}
.process__step:hover { background: var(--c-brand-soft); }
.process__step:last-child { border-right: none; }
.process__step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--f-display);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--c-brand);
  line-height: 1;
  margin-bottom: 24px;
}
.process__step h3 {
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.process__step p {
  color: var(--c-ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process__step { border-bottom: 1px solid var(--c-line); }
  .process__step:nth-child(even) { border-right: none; }
}
@media (max-width: 520px) {
  .process { grid-template-columns: 1fr; }
  .process__step { border-right: none; }
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial__stars { display: flex; gap: 2px; color: #F5B638; }
.testimonial__stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial__quote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--c-ink-soft);
  flex: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--c-line);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-brand-soft);
  color: var(--c-brand-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.testimonial__name { font-weight: 600; font-size: 15px; }
.testimonial__role { font-size: 13.5px; color: var(--c-mute); }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--c-line);
}
.faq-item {
  border-bottom: 1px solid var(--c-line);
}
.faq-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 4px;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color .3s;
}
.faq-item__head:hover { color: var(--c-brand); }
.faq-item__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .3s, transform .4s var(--ease);
}
.faq-item.is-open .faq-item__icon {
  background: var(--c-brand);
  color: #fff;
  transform: rotate(45deg);
}
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.faq-item__body-inner {
  padding: 0 4px 28px;
  max-width: 780px;
  color: var(--c-ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   CTA Band
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--c-brand-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 96px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, var(--c-brand) 0%, transparent 70%);
  opacity: 0.5;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 14s ease-in-out infinite;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--c-brand-2) 0%, transparent 70%);
  opacity: 0.28;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 16s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}
.cta-band__content { position: relative; z-index: 2; }
.cta-band h2 {
  font-family: var(--f-display);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-band h2 em { font-style: italic; font-weight: 300; color: var(--c-brand-2); }
.cta-band p { color: rgba(255,255,255,0.78); font-size: 1.05rem; line-height: 1.6; max-width: 500px; }
.cta-band__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-band__phone {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s;
}
.cta-band__phone:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
.cta-band__phone-label { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.cta-band__phone-value { font-family: var(--f-display); font-size: 1.75rem; font-weight: 500; letter-spacing: -0.01em; }
@media (max-width: 900px) { .cta-band { grid-template-columns: 1fr; gap: 40px; } }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.8);
  padding: 96px 0 32px;
  position: relative;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand img { height: 64px; width: auto; margin-bottom: 22px; }
.footer__brand p { font-size: 15px; line-height: 1.6; max-width: 380px; color: rgba(255,255,255,0.65); }
.footer__heading {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}
.footer__list { display: grid; gap: 12px; }
.footer__list a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: color .3s, transform .3s;
  display: inline-block;
}
.footer__list a:hover { color: var(--c-brand-2); transform: translateX(4px); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom a { color: rgba(255,255,255,0.65); }
.footer__bottom a:hover { color: #fff; }
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Page Header (inner pages)
   -------------------------------------------------------------------------- */
.page-head {
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 100px;
  background: var(--c-brand-dark);
  color: #fff;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
  mask-image: linear-gradient(180deg, transparent, #000 40%, #000 70%, transparent);
}
.page-head__crumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.page-head__crumbs a { color: rgba(255,255,255,0.8); }
.page-head__crumbs a:hover { color: #fff; }
.page-head__title {
  font-family: var(--f-display);
  font-size: clamp(2.75rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.page-head__title em { font-style: italic; font-weight: 300; color: var(--c-brand-2); }
.page-head__lead {
  max-width: 620px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info__item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--c-bg-soft);
  border-radius: var(--radius);
  transition: background .3s;
}
.contact-info__item:hover { background: var(--c-brand-soft); }
.contact-info__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--c-brand);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__label { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-mute); font-weight: 600; }
.contact-info__value { font-family: var(--f-display); font-size: 1.35rem; font-weight: 500; margin-top: 4px; display: block; color: var(--c-ink); letter-spacing: -0.01em; }

.form {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }

.form__field { display: flex; flex-direction: column; gap: 8px; position: relative; }
.form__field label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-weight: 600;
}
.form__field input,
.form__field textarea,
.form__field select {
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
  font-family: var(--f-body);
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}
.form__field textarea { min-height: 140px; resize: vertical; }
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  border-color: var(--c-brand);
  box-shadow: 0 0 0 4px rgba(32,122,79,0.12);
}
.form__check { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--c-ink-soft); line-height: 1.5; }
.form__check input { margin-top: 3px; accent-color: var(--c-brand); }
.form__check a { color: var(--c-brand); text-decoration: underline; text-underline-offset: 3px; }

.form__submit {
  margin-top: 10px;
  background: var(--c-ink);
  color: #fff;
  padding: 18px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background .3s, transform .3s;
}
.form__submit:hover { background: var(--c-brand); transform: translateY(-2px); }
.form__submit svg { width: 18px; height: 18px; }

.form__status {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  display: none;
}
.form__status.is-success { display: block; background: var(--c-brand-soft); color: var(--c-brand-dark); border: 1px solid rgba(32,122,79,0.25); }
.form__status.is-error { display: block; background: #fff1f0; color: #aa1f1f; border: 1px solid #ffd6d2; }

/* Inline-Bestätigung nach erfolgreichem Submit */
.form-success {
  text-align: center;
  padding: 40px 24px 32px;
  animation: form-success-in .5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes form-success-in {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.form-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-brand-2);
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  animation: form-success-pop .55s cubic-bezier(0.34, 1.56, 0.64, 1) .1s both;
  box-shadow: 0 12px 32px -10px rgba(47,179,110,0.55);
}
@keyframes form-success-pop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}
.form-success__icon svg { width: 36px; height: 36px; stroke: var(--c-brand-dark); }
.form-success__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-brand);
  font-weight: 700;
  margin-bottom: 12px;
}
.form-success__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: var(--c-ink);
}
.form-success__title em {
  font-style: italic;
  color: var(--c-brand);
  font-weight: 300;
}
.form-success__lead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-ink-soft, #4b5563);
  max-width: 460px;
  margin: 0 auto 20px;
}
.form-success__lead strong { color: var(--c-ink); }
.form-success__urgent {
  font-size: 0.92rem;
  color: var(--c-ink-soft, #6b7280);
  margin: 18px 0 0;
}
.form-success__urgent a {
  color: var(--c-brand-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(47,179,110,0.5);
  padding-bottom: 1px;
}
.form-success__urgent a:hover { border-bottom-color: var(--c-brand); }

/* --------------------------------------------------------------------------
   Gallery (service pages)
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--w8 { grid-column: span 8; aspect-ratio: 16/9; }
.gallery__item--w4 { grid-column: span 4; }
.gallery__item--w6 { grid-column: span 6; }
.gallery__item--w12 { grid-column: span 12; aspect-ratio: 21/9; }
@media (max-width: 900px) {
  .gallery__item--w8, .gallery__item--w6 { grid-column: span 12; aspect-ratio: 16/9; }
  .gallery__item--w4 { grid-column: span 6; }
}

/* --------------------------------------------------------------------------
   Pricing / Info cards
   -------------------------------------------------------------------------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.info-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .info-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; } }

.info-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--c-brand-soft);
  color: var(--c-brand);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.info-card__icon svg { width: 26px; height: 26px; }
.info-card h3 {
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.info-card p { color: var(--c-ink-soft); font-size: 15.5px; line-height: 1.6; }
.info-card__list { margin-top: 18px; display: grid; gap: 10px; }
.info-card__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--c-ink-soft);
}
.info-card__list svg { width: 16px; height: 16px; color: var(--c-brand); flex-shrink: 0; margin-top: 4px; }

/* --------------------------------------------------------------------------
   Map embed
   -------------------------------------------------------------------------- */
.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  height: 440px;
  position: relative;
}
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(0.98); }

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */
.legal {
  max-width: 860px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--c-ink-soft);
}
.legal h2 { font-family: var(--f-display); font-size: 2rem; font-weight: 500; margin: 48px 0 16px; color: var(--c-ink); letter-spacing: -0.01em; }
.legal h3 { font-size: 1.15rem; font-weight: 600; margin: 28px 0 10px; color: var(--c-ink); }
.legal p { margin-bottom: 14px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal ul li { margin-bottom: 6px; }
.legal a { color: var(--c-brand); text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   Reveal animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.u-mt-0 { margin-top: 0 !important; }
.u-tac { text-align: center; }
.u-muted { color: var(--c-mute); }

.noise::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: overlay;
}

/* --------------------------------------------------------------------------
   Wood / Kaminholz Sortiment (dedicated page)
   -------------------------------------------------------------------------- */
.wood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .wood-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .wood-grid { grid-template-columns: 1fr; } }

.wood-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s;
}
.wood-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.wood-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.wood-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.wood-card:hover .wood-card__image img { transform: scale(1.06); }
.wood-card__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 12px;
  margin-bottom: 14px;
  background: var(--c-brand-dark);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}
.wood-card__badge--hot { background: var(--c-brand); }
.wood-card__body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.wood-card__name {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 6px;
}
.wood-card__latin {
  font-style: italic;
  color: var(--c-mute);
  font-size: 14px;
  margin-bottom: 16px;
}
.wood-card__desc {
  color: var(--c-ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.wood-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
  background: var(--c-bg-soft);
  border-radius: 12px;
  margin-bottom: 20px;
}
.wood-card__spec-label {
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-weight: 600;
}
.wood-card__spec-value {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  margin-top: 2px;
}
.wood-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.wood-card__features span {
  padding: 4px 10px;
  background: var(--c-brand-soft);
  color: var(--c-brand-dark);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
}

/* Pricing table */
.price-table {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.price-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 0;
  padding: 20px 28px;
  border-bottom: 1px solid var(--c-line);
  align-items: center;
  transition: background .25s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover:not(.price-row--head) { background: var(--c-bg-soft); }
.price-row--head {
  background: var(--c-ink);
  color: #fff;
  font-family: var(--f-body);
  font-size: 11.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}
.price-row__name {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.price-row--head .price-row__name { font: inherit; }
.price-row__value { color: var(--c-ink-soft); font-size: 15px; }
.price-row__price {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--c-brand);
  letter-spacing: -0.01em;
}
.price-row--head .price-row__price { color: #fff; font: inherit; }

@media (max-width: 720px) {
  .price-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    padding: 18px 20px;
  }
  .price-row--head { display: none; }
  .price-row__name { grid-column: span 2; margin-bottom: 4px; font-size: 1.15rem; }
  .price-row__value::before {
    content: attr(data-label);
    display: block;
    font-size: 10.5px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-mute);
    font-weight: 600;
    margin-bottom: 2px;
  }
  .price-row__price::before {
    content: "Preis";
    display: block;
    font-size: 10.5px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-mute);
    font-weight: 600;
    margin-bottom: 2px;
    font-family: var(--f-body);
  }
}

/* Order steps */
.order-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.order-step {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  position: relative;
  transition: border-color .3s, transform .3s var(--ease);
}
.order-step:hover { border-color: var(--c-brand); transform: translateY(-3px); }
.order-step__num {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--c-brand);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.order-step h3 {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.order-step p {
  color: var(--c-ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}
@media (max-width: 900px) { .order-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .order-steps { grid-template-columns: 1fr; } }

/* Moisture bar */
.moisture-scale {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.moisture-bar {
  position: relative;
  height: 14px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #ffb74d 0%, #ffd54f 25%, #aed581 55%, var(--c-brand-2) 85%, var(--c-brand) 100%);
  margin: 28px 0 12px;
}
.moisture-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.moisture-marker__dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--c-brand-dark);
  box-shadow: 0 4px 12px rgba(14,61,46,0.25);
}
.moisture-marker__label {
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-brand-dark);
  font-weight: 700;
  background: var(--c-brand-soft);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  position: absolute;
  top: 28px;
}
.moisture-legend {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--c-mute);
  letter-spacing: 0.06em;
  margin-top: 36px;
}
@media (max-width: 600px) {
  .moisture-scale { padding: 28px 22px; }
  .moisture-legend { font-size: 11px; }
}

/* --------------------------------------------------------------------------
   Einsatzgebiet (Region-Section)
   -------------------------------------------------------------------------- */
.region {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.region__visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, rgba(47,179,110,0.22) 0%, transparent 60%),
    linear-gradient(135deg, var(--c-brand-dark) 0%, #1a5d3e 100%);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.region__rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.region__ring {
  position: absolute;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 50%;
  animation: ringPulse 6s infinite var(--ease-out);
}
.region__ring--1 { width: 28%; height: 28%; border-color: rgba(47,179,110,0.5); animation-delay: 0s; }
.region__ring--2 { width: 52%; height: 52%; border-color: rgba(47,179,110,0.32); animation-delay: 0.8s; }
.region__ring--3 { width: 76%; height: 76%; border-color: rgba(255,255,255,0.2); animation-delay: 1.6s; }
.region__ring--4 { width: 100%; height: 100%; border-color: rgba(255,255,255,0.1); animation-delay: 2.4s; }
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.04); opacity: 1; }
}
.region__center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
}
.region__pin {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-brand-2);
  display: grid; place-items: center;
  margin: 0 auto 14px;
  box-shadow: 0 0 0 8px rgba(47,179,110,0.2), 0 0 0 18px rgba(47,179,110,0.08);
}
.region__pin svg { width: 26px; height: 26px; color: var(--c-brand-dark); }
.region__label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.region__city {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.region__radius {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}
.region__radius span { color: var(--c-brand-2); }

.region__content h2 {
  font-family: var(--f-display);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.region__content h2 em { font-style: italic; font-weight: 300; color: var(--c-brand); }
.region__content p {
  color: var(--c-ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.region__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}
.region__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink-soft);
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s;
}
.region__chip::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--c-brand);
  border-radius: 50%;
}
.region__chip:hover {
  background: var(--c-brand);
  color: #fff;
  border-color: var(--c-brand);
  transform: translateY(-2px);
}
.region__chip:hover::before { background: #fff; }

@media (max-width: 900px) {
  .region { grid-template-columns: 1fr; gap: 36px; }
  .region__visual { aspect-ratio: 4/3; max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ==========================================================================
   MOBILE OPTIMIZATIONS
   Tablet + Phone überschreiben gezielt die Desktop-Defaults.
   ========================================================================== */

/* ---- Tablet & kleiner (≤ 768px) ------------------------------------- */
@media (max-width: 768px) {
  :root { --nav-h: 72px; }

  .container { padding: 0 20px; }

  .section { padding: 72px 0; }
  .section--tight { padding: 48px 0; }

  /* Navigation */
  .nav { padding: 12px 16px; }
  .nav.is-scrolled { padding: 8px 16px; }
  .nav__brand img { height: 58px; }
  .nav__toggle { width: 44px; height: 44px; }

  /* Mobile Menu */
  .mobile-menu { padding: calc(var(--nav-h) + 16px) 20px 32px; }
  .mobile-menu__inner { gap: 16px; padding-top: 16px; }
  .mobile-menu__link { font-size: 2.4rem; padding: 6px 0; }
  .mobile-menu__footer { padding-top: 28px; font-size: 14px; }

  /* Hero */
  .hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 56px) 0 56px;
  }
  .hero__eyebrow { margin-bottom: 20px; padding: 8px 14px; font-size: 11px; }
  .hero__title {
    font-size: clamp(2.75rem, 12vw, 4.5rem);
    margin-bottom: 20px;
  }
  .hero__lead {
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.55;
  }
  .hero__cta {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .hero__cta .btn {
    flex: 1 1 0;
    width: auto;
    justify-content: center;
    padding: 12px 14px;
    font-size: 13px;
    gap: 6px;
    white-space: nowrap;
  }
  .hero__cta .btn svg { width: 14px; height: 14px; flex-shrink: 0; }
  .hero__meta {
    margin-top: 36px;
    padding-top: 22px;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 10px;
  }
  .hero__meta > div { padding-right: 0; border-top: none; padding-top: 0; }
  .hero__meta > div:last-child { grid-column: auto; border-top: none; padding-top: 0; }
  .hero__meta-value { font-size: 1.95rem; }
  .hero__meta-label { font-size: 10.5px; line-height: 1.3; }
  .hero__scroll { display: none; }

  /* Marquee */
  .marquee { padding: 20px 0; }
  .marquee__item { font-size: 1.6rem; gap: 36px; }
  .marquee__item::after { width: 10px; height: 10px; }
  .marquee__track { gap: 36px; }

  /* Section headers */
  .sec-head {
    margin-bottom: 40px;
    gap: 16px;
  }
  .sec-head__title { font-size: clamp(2rem, 8vw, 2.75rem); }
  .sec-head__right { font-size: 0.98rem; }

  /* Page head */
  .page-head { padding: calc(var(--nav-h) + 40px) 0 64px; }
  .page-head__title { font-size: clamp(2.5rem, 11vw, 4rem); margin-bottom: 18px; }
  .page-head__lead { font-size: 1rem; line-height: 1.55; }
  .page-head__crumbs { margin-bottom: 18px; font-size: 11px; }

  /* Service cards */
  .service-card {
    min-height: auto;
    padding: 24px 22px 26px;
  }
  .service-card__title { font-size: 1.85rem; margin: 14px 0 12px; }
  .service-card__desc { font-size: 14.5px; margin-bottom: 18px; }
  .service-card__arrow {
    width: 40px; height: 40px;
    top: 24px; right: 22px;
  }
  .service-card__image { aspect-ratio: 16/10; }

  /* Info cards */
  .info-card { padding: 24px 22px; }
  .info-card__icon { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 18px; }
  .info-card__icon svg { width: 22px; height: 22px; }
  .info-card h3 { font-size: 1.5rem; }
  .info-card p { font-size: 14.5px; }

  /* Stats */
  .stat { padding: 36px 20px; }
  .stat__value { font-size: 2.75rem; }
  .stat__label { font-size: 13.5px; }

  /* Split sections */
  .split, .split--reverse { gap: 32px; }
  .split__media { aspect-ratio: 4/3; }
  .split__content h2 { font-size: clamp(1.85rem, 7vw, 2.5rem); margin-bottom: 18px; }
  .split__content p { font-size: 1rem; line-height: 1.6; margin-bottom: 14px; }
  .feature-list { margin: 22px 0; gap: 12px; }
  .feature-list li { font-size: 14.5px; padding-bottom: 12px; gap: 12px; }
  .split__media--badge::after {
    bottom: 16px; left: 16px;
    padding: 8px 14px; font-size: 11px;
  }

  /* Process */
  .process__step { padding: 28px 22px; }
  .process__step::before { font-size: 2.5rem; margin-bottom: 16px; }
  .process__step h3 { font-size: 1.4rem; }
  .process__step p { font-size: 14.5px; }

  /* Testimonials */
  .testimonial { padding: 28px 24px; gap: 16px; }
  .testimonial__quote { font-size: 0.98rem; }
  .testimonial__avatar { width: 40px; height: 40px; font-size: 14px; }

  /* FAQ */
  .faq-item__head {
    padding: 22px 0;
    font-size: 1.65rem;
    gap: 14px;
  }
  .faq-item__icon { width: 46px; height: 46px; }
  .faq-item__body-inner { font-size: 1.05rem; padding-bottom: 22px; }

  /* CTA band */
  .cta-band {
    padding: 40px 28px;
    gap: 28px;
    border-radius: 18px;
  }
  .cta-band h2 { font-size: clamp(1.85rem, 7vw, 2.5rem); margin-bottom: 14px; }
  .cta-band p { font-size: 0.98rem; }
  .cta-band__actions { gap: 12px; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }
  .cta-band__phone { padding: 16px 18px; }
  .cta-band__phone-value { font-size: 1.4rem; }
  .cta-band::before, .cta-band::after { filter: blur(48px); }

  /* Contact */
  .contact-grid { gap: 28px; }
  .contact-info { gap: 14px; }
  .contact-info__item { padding: 18px; gap: 14px; }
  .contact-info__icon { width: 40px; height: 40px; }
  .contact-info__icon svg { width: 18px; height: 18px; }
  .contact-info__label { font-size: 11px; }
  .contact-info__value { font-size: 1.1rem; }

  /* Form */
  .form {
    padding: 24px 20px;
    gap: 16px;
    border-radius: 18px;
  }
  .form__field input,
  .form__field textarea,
  .form__field select {
    padding: 12px 14px;
    font-size: 16px; /* ≥ 16px verhindert iOS-Zoom beim Fokus */
  }
  .form__field textarea { min-height: 120px; }
  .form__check { font-size: 13px; }
  .form__submit { padding: 16px 22px; width: 100%; justify-content: center; }

  /* Map */
  .map { height: 320px; border-radius: 18px; }

  /* Gallery */
  .gallery { gap: 10px; }
  .gallery__item--w4 { grid-column: span 12; aspect-ratio: 16/10; }

  /* Footer */
  .footer { padding: 64px 0 24px; }
  .footer__top {
    gap: 32px;
    padding-bottom: 40px;
  }
  .footer__brand img { height: 52px; margin-bottom: 16px; }
  .footer__brand p { font-size: 14.5px; }
  .footer__heading { font-size: 0.9rem; margin-bottom: 16px; }
  .footer__list { gap: 10px; }
  .footer__list a { font-size: 14.5px; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 24px;
    font-size: 12.5px;
  }

  /* Buttons generell */
  .btn { padding: 15px 24px; font-size: 14.5px; }

  /* Legal */
  .legal h2 { font-size: 1.6rem; margin: 36px 0 12px; }
  .legal h3 { font-size: 1.05rem; margin: 24px 0 8px; }
  .legal p, .legal ul { font-size: 15px; }
}

/* ---- Phone (≤ 480px) ------------------------------------------------ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .nav { padding: 10px 14px; }
  .nav__brand img { height: 56px; }

  .hero { padding: calc(var(--nav-h) + 40px) 0 48px; }
  .hero__title { font-size: clamp(2.7rem, 11vw, 3.6rem); line-height: 1.04; }
  .hero__lead { font-size: 0.96rem; }
  .hero__meta { grid-template-columns: repeat(3, 1fr); gap: 10px 8px; }
  .hero__meta > div:last-child { grid-column: auto; border-top: none; padding-top: 0; }
  .hero__meta > div:nth-child(2) { border-top: none; padding-top: 0; }
  .hero__meta-value { font-size: 1.65rem; }
  .hero__meta-label { font-size: 9.5px; }

  .sec-head__title { font-size: clamp(1.95rem, 8.5vw, 2.6rem); }

  .page-head { padding: calc(var(--nav-h) + 32px) 0 52px; }
  .page-head__title { font-size: clamp(2.1rem, 11vw, 3.2rem); }

  .marquee__item { font-size: 1.35rem; gap: 28px; }
  .marquee__track { gap: 28px; }

  .stat__value { font-size: 2.4rem; }
  .stat__value sup { font-size: 0.42em; }

  .service-card { padding: 22px 20px 24px; }
  .service-card__title { font-size: 1.65rem; }

  .info-card { padding: 22px 20px; }

  .process__step { padding: 24px 20px; }

  .testimonial { padding: 24px 22px; }

  .faq-item__head { font-size: 1.5rem; padding: 20px 0; }
  .faq-item__icon { width: 34px; height: 34px; }

  .cta-band { padding: 32px 22px; }
  .cta-band h2 { font-size: clamp(1.65rem, 7.5vw, 2.2rem); }

  .form__row { grid-template-columns: 1fr; }

  .contact-info__value { font-size: 1.05rem; }

  .map { height: 280px; }

  .footer__top { gap: 24px; padding-bottom: 32px; }
  .footer { padding: 52px 0 20px; }
}

/* ---- iOS Safari Viewport-Fix ---------------------------------------- */
@supports (-webkit-touch-callout: none) {
  .hero { min-height: -webkit-fill-available; }
}
@media (max-width: 768px) {
  @supports (-webkit-touch-callout: none) {
    .hero { min-height: auto; }
  }
}

/* ---- Hover-Effekte auf Touch-Geräten deaktivieren ------------------- */
@media (hover: none) {
  .service-card:hover { transform: none; box-shadow: var(--shadow-sm); }
  .service-card:hover .service-card__image img { transform: none; }
  .service-card:hover .service-card__arrow { background: var(--c-ink); transform: none; }
  .split__media:hover img { transform: none; }
  .gallery__item:hover img { transform: none; }
  .info-card:hover { transform: none; }
  .testimonial:hover { transform: none; }
  .btn:hover { transform: none; }
  .nav__cta:hover { transform: none; }
  .footer__list a:hover { transform: none; }
}

/* ==========================================================================
   FINE-TUNING (overrides)
   ========================================================================== */

/* ---- Sections: kompakter + Sec-Head einzeilig ---------------------- */
.section { padding: clamp(40px, 5vw, 80px) 0; }
.section--tight { padding: clamp(28px, 3.5vw, 56px) 0; }
.sec-head { margin-bottom: 32px; }
.sec-head__left { max-width: none; flex: 1 1 auto; }
.sec-head__title {
  white-space: nowrap;
  font-size: clamp(2rem, 4.5vw, 4rem);
}
@media (max-width: 900px) {
  .sec-head__title { white-space: normal; }
}
.stat { padding: 40px 28px; }
@media (max-width: 768px) {
  .stat { padding: 32px 20px; }
}

/* ---- Nav: transparent → grünes Glas beim Scrollen ------------------
   Default: komplett transparent (Logo + weiße Links über dem Hero).
   Sobald gescrollt wird, fadet ein dunkelgrüner Glas-Hintergrund
   mit Blur ein. Slide-in beim Load und Hide-on-Scroll-Down bleiben.  */
:root { --nav-h: 80px; }
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transform: translateY(-100%);
  transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1),
              background .35s ease,
              backdrop-filter .35s ease,
              box-shadow .35s ease,
              border-color .35s ease;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav.is-ready  { transform: translateY(0); }
.nav.is-hidden { transform: translateY(-100%); }
.nav.is-scrolled {
  background: rgba(7,31,22,0.72) !important;
  backdrop-filter: saturate(160%) blur(18px) !important;
  -webkit-backdrop-filter: saturate(160%) blur(18px) !important;
  box-shadow: 0 8px 28px -12px rgba(7,31,22,0.45) !important;
  border-bottom-color: rgba(255,255,255,0.08);
  padding: 0 !important;            /* gleiche Höhe wie unscrolled */
}

.nav__inner {
  pointer-events: auto;
  max-width: 1320px;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: none;
  border: none;
  min-height: var(--nav-h);
}

.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  height: 100%;
}
.nav__brand img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: none;
  transition: none;
  background: transparent;
}
.nav.is-scrolled .nav__brand img { height: 52px; }

/* Mittel-Links — durchgehend weiß (transparent über Hero, Glas beim Scroll) */
.nav__links {
  position: static;
  top: auto; left: auto; right: auto;
  margin: 0;
  width: auto;
  max-width: none;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  gap: 4px;
}
.nav__link {
  color: rgba(255,255,255,0.92);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  transition: color .25s;
  position: relative;
}
.nav__link:hover                        { color: #fff; background: transparent; }
.nav__link.is-active                    { color: #fff; background: transparent; }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px;
  bottom: 0;
  height: 2px;
  background: var(--c-brand-2);
}
.nav.is-scrolled .nav__link             { color: rgba(255,255,255,0.92); }
.nav.is-scrolled .nav__link:hover       { color: #fff; }
.nav.is-scrolled .nav__link.is-active   { color: #fff; }

/* CTA — heller Button gegen den dunklen Hintergrund (Hero & Glas) */
.nav__cta {
  background: var(--c-brand-2);
  color: var(--c-brand-dark);
  border: none;
  padding: 13px 24px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 6px;
  gap: 8px;
}
.nav__cta svg { width: 14px; height: 14px; }
.nav__cta:hover {
  background: #fff;
  color: var(--c-brand-dark);
  border: none;
  transform: none;
}

/* Toggle (Mobile) — hell auf transparentem/dunklem Hintergrund */
.nav__toggle {
  pointer-events: auto;
  background: transparent;
  color: #fff;
}
.nav__toggle span { background: #fff; }

@media (max-width: 1100px) {
  .nav__inner { gap: 14px; padding: 0 20px; }
  .nav__link  { padding: 9px 12px; font-size: 12px; letter-spacing: 0.06em; }
  .nav__cta   { padding: 11px 18px; font-size: 12px; letter-spacing: 0.1em; }
}

@media (max-width: 980px) {
  :root { --nav-h: 80px; }
  .nav__inner { padding: 0 20px; min-height: var(--nav-h); }
  .nav__brand img { height: 60px; }
  .nav.is-scrolled .nav__brand img { height: 60px; }
  .nav__links { display: none !important; }
  .nav__cta   { display: none !important; }
  .nav__toggle { display: inline-flex !important; }
}

@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  .nav__inner { padding: 0 16px; min-height: var(--nav-h); }
  .nav__brand img { height: 56px; }
  .nav.is-scrolled .nav__brand img { height: 56px; }
}

@media (max-width: 360px) {
  :root { --nav-h: 64px; }
  .nav__brand img { height: 48px; }
  .nav.is-scrolled .nav__brand img { height: 48px; }
}

/* ---- Hero: Eyebrow kleiner + Scroll-Indikator weg ------------------- */
.hero__scroll { display: none !important; }

.hero__eyebrow {
  padding: 6px 14px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  margin-bottom: 26px;
  gap: 10px;
}
.hero__eyebrow .pulse { width: 6px; height: 6px; }

/* ---- Marquee zierlicher --------------------------------------------- */
.marquee { padding: 18px 0; }
.marquee__track { gap: 44px; }
.marquee__item {
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  gap: 44px;
  font-weight: 300;
  letter-spacing: 0;
}
.marquee__item::after {
  width: 6px; height: 6px;
}

@media (max-width: 768px) {
  .marquee { padding: 14px 0; }
  .marquee__item { font-size: 1.1rem; gap: 28px; }
  .marquee__track { gap: 28px; }
}

/* ---- FAQ: Plus rechtsbündig, ausgewogene Größe --------------------- */
.faq-item__head {
  justify-content: space-between;
  gap: 16px;
  padding: 24px 4px;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 500;
}
.faq-item__icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
}
.faq-item__icon svg { width: 22px !important; height: 22px !important; stroke-width: 2.2; }
.faq-item__body-inner {
  font-size: 1.05rem;
  padding: 0 4px 24px;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .faq-item__head { gap: 12px; padding: 18px 0; font-size: 1.55rem; }
  .faq-item__icon { width: 40px; height: 40px; }
  .faq-item__icon svg { width: 18px !important; height: 18px !important; }
  .faq-item__body-inner { padding-bottom: 18px; font-size: 0.98rem; }
}

/* ---- Footer: dunkles Grün statt Schwarz ----------------------------- */
.footer {
  background: #071f16; /* sehr dunkles Grün, nicht schwarz */
  color: rgba(255,255,255,0.82);
}
.footer a { color: rgba(255,255,255,0.78); }
.footer__list a:hover { color: var(--c-brand-2); }
.footer__bottom { border-top-color: rgba(255,255,255,0.08); }

/* Footer-Kontaktliste mit Icons */
.footer__list--icons li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  line-height: 1.5;
}
.footer__list--icons a { transform: none !important; }
.footer__icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--c-brand-2);
  transition: color .3s;
}
.footer__list--icons li:hover .footer__icon { color: #fff; }
.footer__radius {
  margin-top: 10px;
  padding-top: 14px !important;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer__radius .footer__icon { color: rgba(255,255,255,0.4); }

/* ---- Leaflet-Karte (ersetzt iframe) --------------------------------- */
#map,
#map-home {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  z-index: 1;
}
.map { padding: 0; background: var(--c-bg-soft); }

/* Home-Map: Container bekommt feste Rundung + Schatten */
.region__visual--map {
  background: var(--c-bg-soft);
  padding: 0;
  overflow: hidden;
}
.region__visual--map #map-home {
  border-radius: inherit;
}
.leaflet-container {
  font-family: var(--f-body);
  background: #e7efe9 !important;
}
.leaflet-popup-content-wrapper {
  border-radius: 12px;
  padding: 4px 8px;
  box-shadow: var(--shadow-md);
}
.leaflet-popup-content {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.55;
  margin: 12px 14px;
}
.leaflet-popup-content strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.15rem;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.leaflet-popup-tip { box-shadow: none; }
.biber-marker {
  width: 36px;
  height: 36px;
  background: var(--c-brand);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 8px 20px rgba(14,61,46,0.35);
  display: grid;
  place-items: center;
  color: #fff;
}
.biber-marker svg {
  transform: rotate(45deg);
  width: 16px;
  height: 16px;
}
.biber-radius {
  stroke: var(--c-brand);
  fill: var(--c-brand);
  fill-opacity: 0.08;
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
}

/* ==========================================================================
   FINAL MOBILE POLISH
   ========================================================================== */

/* Verhindere horizontales Scrollen auf jeder Seite */
html, body { overflow-x: hidden; max-width: 100%; }
img, video, iframe { max-width: 100%; height: auto; }

/* Tablet (≤ 900px) */
@media (max-width: 900px) {
  .split, .split--reverse {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  /* Mobile: Bild immer oben, Text immer drunter — egal welche DOM-Reihenfolge */
  .split__media { order: -1; aspect-ratio: 16/10; max-height: 420px; }
  .split__content { order: 0; }
  .split__media img { width: 100%; height: 100%; object-fit: cover; }

  .sec-head {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .sec-head__title { font-size: clamp(1.85rem, 6vw, 2.6rem); white-space: normal; }

  .stats { grid-template-columns: repeat(3, 1fr) !important; }
  .stats--2x2 { grid-template-columns: repeat(2, 1fr) !important; }
  .stats--2x2 .stat { border-right: 1px solid rgba(255,255,255,0.1); border-bottom: none; }
  .stats--2x2 .stat:nth-child(2n) { border-right: none; }
  .stats--2x2 .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat { padding: 28px 12px; }
}

/* Gallery-Pfeile: standardmäßig versteckt (Desktop) */
.gallery-nav { display: none; }

/* Phone (≤ 768px) */
@media (max-width: 768px) {
  /* <br> in Split-h2/CTA-Titeln auf Mobile weg — wir nutzen <em> Block stattdessen */
  .split__content h2 br,
  .cta-band h2 br { display: none; }

  /* Überschriften: <em>-Teil auf eigene Zeile (2-zeilig) und größer */
  .sec-head__title,
  .split__content h2,
  .cta-band h2 {
    font-size: clamp(2.2rem, 8.5vw, 3rem) !important;
    line-height: 1.05;
  }
  .sec-head__title em,
  .split__content h2 em,
  .cta-band h2 em { display: block; }
  .sec-head__title--inline em,
  .h-inline em { display: inline; }
  .h-inline { font-size: clamp(1.85rem, 7vw, 2.4rem) !important; line-height: 1.1; }
  /* h-2lines: <br> bleibt sichtbar, <em> bleibt inline → genau 2 Zeilen */
  .h-2lines em { display: inline !important; }
  .h-2lines br { display: inline !important; }

  /* Hero-Titel: 2 Zeilen, kein Mittendrin-Umbruch */
  .hero__title {
    hyphens: manual;
    word-break: keep-all;
    overflow-wrap: normal;
    line-height: 1.05;
  }

  /* Wood-Cards: ohne Bilder kompakter */
  .wood-card__body { padding: 22px 20px; }
  .wood-card__name { font-size: 1.65rem; }
  .wood-card__badge { margin-bottom: 12px; padding: 5px 10px; font-size: 10.5px; }

  /* Page-Head Titel sicher umbrechen (ohne Bindestrich-Trennung) */
  .page-head__title,
  .sec-head__title,
  .cta-band h2,
  .split__content h2 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: manual;
  }

  /* Service-Cards: min-height weg, Höhe folgt Inhalt */
  .service-card { min-height: auto; }

  /* Kontakt-Info-Karten kompakter */
  .contact-info__item { flex-wrap: wrap; }

  /* Region-Visual Karte: unter dem Text statt darüber */
  .region__visual { aspect-ratio: 1/1; max-width: 100%; order: 2; }
  .region__content { order: 1; }

  /* Footer 1-spaltig */
  .footer__top {
    grid-template-columns: 1fr !important;
  }

  /* Marquee Schatten reduzieren */
  .marquee::before, .marquee::after { width: 40px; }

  /* Legal-Seiten: <br> im Adressblock bleibt sichtbar, aber Umbruch erlaubt */
  .legal p { word-wrap: break-word; }

  /* Gallery → horizontaler Slider mit Scroll-Snap */
  .gallery-wrap { position: relative; }
  .gallery {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 20px 16px;
    margin: 0 -20px;
    scroll-padding: 0 20px;
    scroll-behavior: smooth;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery__item {
    grid-column: auto !important;
    flex: 0 0 85%;
    aspect-ratio: 4/3;
    scroll-snap-align: center;
    border-radius: 14px;
    overflow: hidden;
  }
  .gallery__item img { width: 100%; height: 100%; object-fit: cover; }

  .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(7,31,22,0.85);
    color: #fff;
    border: none;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 16px rgba(7,31,22,0.35);
    cursor: pointer;
    backdrop-filter: blur(6px);
  }
  .gallery-nav:active { transform: translateY(-50%) scale(0.94); }
  .gallery-nav svg { width: 20px; height: 20px; }
  .gallery-nav--prev { left: 8px; }
  .gallery-nav--next { right: 8px; }

  /* Process-Schritte 1-spaltig */
  .process { grid-template-columns: 1fr !important; gap: 16px; }

  /* Sektion-Padding enger auf Mobile */
  .section { padding: 56px 0; }
  .section--tight { padding: 40px 0; }

  /* CTA-Band kompakter */
  .cta-band__actions { flex-direction: column; width: 100%; gap: 12px; }
  .cta-band__phone {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 16px 26px;
    gap: 10px;
  }
  .cta-band__phone-label { display: none; }
  .cta-band__phone-value {
    font-family: var(--f-body) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    color: #fff;
  }
  .cta-band__phone::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") no-repeat center / contain;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") no-repeat center / contain;
    color: #fff;
  }
}

/* Small Phone (≤ 480px) */
@media (max-width: 480px) {
  .stats { grid-template-columns: repeat(3, 1fr) !important; }
  .stats--2x2 { grid-template-columns: repeat(2, 1fr) !important; }
  .stat { padding: 22px 8px; }
  .stat__value { font-size: 1.75rem !important; }
  .stat__label { font-size: 11px; }

  /* Wood-Card noch kompakter */
  .wood-card__body { padding: 20px 18px; }
  .wood-card__specs { padding: 12px; gap: 8px; }
  .wood-card__spec-value { font-size: 1.05rem; }

  /* Buttons Tap-Target */
  .btn { min-height: 48px; }
  .nav__toggle { min-width: 48px; min-height: 48px; }

  /* Page-Head etwas weniger Padding */
  .page-head__lead { font-size: 0.95rem; }

  /* CTA-Band Telefonnummer kleiner */
  .cta-band__phone-value { font-size: 1.2rem; }

  /* Region-Map etwas kleiner */
  .map { height: 240px; }
  #map-home { min-height: 280px; }

  /* Crumbs nicht zu lang */
  .page-head__crumbs { flex-wrap: wrap; }

  /* Hero Meta noch kompakter */
  .hero__meta-value { font-size: 1.7rem !important; }
  .hero__meta-label { font-size: 11.5px !important; }

  /* Stat-Zahlen kleiner */
  .stat__value { font-size: 2.5rem !important; }

  /* Info-Grid 1-spaltig (überschreibt --4 für kleine Screens) */
  .info-grid, .info-grid--4 { grid-template-columns: 1fr !important; }

  /* Container-Padding mobil minimal */
  .container { padding: 0 18px; }

  /* Tabellen-Layout auf Kontakt-Info-Karten besser */
  .contact-info__item { padding: 16px; gap: 12px; }
  .contact-info__icon { width: 38px; height: 38px; }

  /* Form auf sehr kleinen Screens */
  .form { padding: 22px 18px; }
}

/* Sehr kleines Phone (≤ 360px) */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .hero__title { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .page-head__title { font-size: clamp(1.85rem, 10vw, 2.6rem); }
  .sec-head__title { font-size: clamp(1.55rem, 8vw, 2.2rem); }
  .nav__brand img { height: 48px; }
}

/* Region Chips kleiner auf Mobil */
@media (max-width: 768px) {
  .region__chips { gap: 6px; margin: 20px 0; }
  .region__chip {
    padding: 6px 12px;
    font-size: 12px;
    gap: 6px;
  }
  .region__chip::before { width: 5px; height: 5px; }
}

/* Touch-Geräte: Hover-Effekte deaktivieren, die auf Touch komisch wirken */
@media (hover: none) {
  .service-card:hover,
  .info-card:hover,
  .wood-card:hover,
  .order-step:hover,
  .gallery__item:hover img {
    transform: none;
  }
  .nav__cta:hover { transform: none; }
}
