* {
  box-sizing: border-box;
}

:root {
  --anthracite: #171717;
  --anthracite-soft: #232323;
  --anthracite-muted: #2d2d2d;
  --sand: #c8a96e;
  --sand-light: #e2cda8;
  --sand-fog: #f4eee4;
  --stone: #d7c7ae;
  --white: #ffffff;
  --off-white: #f5f2ec;
  --ink: #1d1d1d;
  --text-muted: #5a5a5a;
  --line: #e6dfd4;
  --danger: #b73434;
  --success-bg: #eef6ef;
  --success-border: #b7cfbc;
  --success-text: #234027;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 16px 38px rgba(12, 12, 12, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1200px, calc(100vw - 48px));
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(200, 169, 110, 0.18);
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(12px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-nav.is-scrolled {
  background: rgba(15, 15, 15, 0.92);
  border-color: rgba(200, 169, 110, 0.28);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-logo span {
  color: var(--sand);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--sand);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 4px;
  background: var(--sand);
  color: #1b1305;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--sand-light);
  transform: translateY(-1px);
}

section {
  padding: 104px 0;
}

.section-label {
  margin: 0 0 12px;
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 850;
}

.section-sub {
  max-width: 680px;
  margin: 0 0 42px;
  color: var(--text-muted);
  font-size: 1rem;
}

.dark-section .section-title {
  color: var(--white);
}

.dark-section .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 150px;
  background:
    radial-gradient(circle at 15% 20%, rgba(200, 169, 110, 0.24), transparent 32%),
    radial-gradient(circle at 85% 25%, rgba(200, 169, 110, 0.12), transparent 28%),
    linear-gradient(135deg, #0b0b0b 0%, #181818 45%, #101010 100%);
  color: var(--white);
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.72) 58%, rgba(10, 10, 10, 0.35) 100%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.025) 2px, transparent 2px, transparent 24px);
  pointer-events: none;
}

.hero-ornament {
  position: absolute;
  top: -8%;
  right: -10%;
  width: min(44vw, 520px);
  height: min(44vw, 520px);
  border: 1px solid rgba(200, 169, 110, 0.18);
  transform: rotate(24deg);
  box-shadow: inset 0 0 0 28px rgba(200, 169, 110, 0.04);
}

.hero-ornament::before,
.hero-ornament::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(200, 169, 110, 0.18);
}

.hero-ornament::before {
  inset: 48px;
}

.hero-ornament::after {
  inset: 110px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 7px 16px;
  border: 1px solid rgba(200, 169, 110, 0.42);
  border-radius: 999px;
  background: rgba(200, 169, 110, 0.12);
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--sand);
  box-shadow: 0 0 0 6px rgba(200, 169, 110, 0.16);
}

.hero-title {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 0.65s cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero-line.accent {
  color: var(--sand);
}

.hero-line:nth-child(2) {
  animation-delay: 0.12s;
}

.hero-line:nth-child(3) {
  animation-delay: 0.24s;
}

.hero-tagline {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--sand);
  color: #1a1200;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--sand-light);
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--sand);
  color: var(--sand);
  transform: translateY(-1px);
}

.hero-stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(200, 169, 110, 0.2);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
}

.hero-stat {
  padding: 20px 24px 22px;
  border-right: 1px solid rgba(200, 169, 110, 0.12);
  text-align: center;
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--sand);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#leistungen {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.service-card {
  position: relative;
  isolation: isolate;
  height: 100%;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(234, 223, 204, 0.98) 0%, rgba(206, 186, 158, 0.98) 46%, rgba(166, 138, 102, 0.98) 100%);
  border: 1px solid rgba(138, 108, 68, 0.34);
  border-radius: 14px;
  box-shadow:
    0 18px 36px rgba(27, 21, 14, 0.16),
    inset 0 1px 0 rgba(255, 245, 228, 0.56),
    inset 0 -16px 28px rgba(102, 74, 41, 0.22);
  overflow: hidden;
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 245, 229, 0.44), transparent 34%),
    linear-gradient(145deg, rgba(255, 245, 229, 0.12), transparent 46%),
    linear-gradient(180deg, transparent 54%, rgba(95, 68, 38, 0.14) 100%);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  background:
    linear-gradient(180deg, rgba(240, 229, 211, 1) 0%, rgba(215, 196, 168, 1) 44%, rgba(177, 148, 111, 1) 100%);
  border-color: rgba(152, 118, 74, 0.44);
  box-shadow:
    0 22px 42px rgba(27, 21, 14, 0.2),
    inset 0 1px 0 rgba(255, 247, 233, 0.62),
    inset 0 -18px 30px rgba(102, 74, 41, 0.24);
  transform: translateY(-4px);
}

.service-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  margin-bottom: 0;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #e0d5c3, #baa688);
  transition: transform 0.28s ease, filter 0.28s ease;
}

.service-card:hover .service-visual {
  transform: scale(1.02);
  filter: saturate(1.04);
}

.service-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 55%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 2px, transparent 2px, transparent 18px);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.service-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 26px 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04) 0%, rgba(17, 17, 17, 0.82) 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.tone-1 { background: linear-gradient(135deg, #eadfce, #b4a087); }
.tone-2 { background: linear-gradient(135deg, #d4c4ad, #8d7a62); }
.tone-3 { background: linear-gradient(135deg, #d2c3b0, #9e7e68); }
.tone-4 { background: linear-gradient(135deg, #e6d9c4, #b89e74); }
.tone-5 { background: linear-gradient(135deg, #cec1af, #8e8377); }
.tone-6 { background: linear-gradient(135deg, #ded2c3, #a58e73); }
.tone-7 { background: linear-gradient(135deg, #d5c0ab, #946d53); }
.tone-8 { background: linear-gradient(135deg, #d8cfbe, #7f7465); }

.service-tag {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1rem, 0.92rem + 0.3vw, 1.16rem);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.32);
  max-width: 18ch;
}

.service-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  line-height: 1.58;
  text-align: center;
  max-width: 30ch;
}

.service-card:focus-within .service-overlay {
  opacity: 1;
  transform: translateY(0);
}

.service-card:focus-within .service-visual::before {
  opacity: 1;
}

@media (hover: hover) {
  .service-card:hover .service-overlay {
    opacity: 1;
    transform: translateY(0);
  }

  .service-card:hover .service-visual::before {
    opacity: 1;
  }
}

.service-card:focus-visible {
  outline: 2px solid rgba(200, 169, 110, 0.55);
  outline-offset: 4px;
}

#portfolio {
  background:
    linear-gradient(180deg, rgba(200, 169, 110, 0.08), transparent 120px),
    var(--anthracite);
  color: var(--white);
}

.refs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ref-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--anthracite-muted);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.ref-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.28);
}

.ref-visual {
  position: relative;
  min-height: 220px;
  padding: 18px;
  background: linear-gradient(155deg, #47423a, #1f1f1f);
}

.ref-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(200, 169, 110, 0.28), transparent 36%),
    linear-gradient(145deg, transparent 32%, rgba(255, 255, 255, 0.06) 32%, rgba(255, 255, 255, 0.06) 34%, transparent 34%),
    repeating-linear-gradient(130deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04) 2px, transparent 2px, transparent 20px);
}

.ref-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--sand);
  color: #1a1200;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ref-placeholder {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ref-body {
  padding: 22px 22px 24px;
}

.ref-body h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.25;
}

.ref-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ref-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

#ueber {
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}

.trust-item {
  padding: 30px 24px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffefb 0%, #ffffff 100%);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.trust-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(200, 169, 110, 0.12);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--sand);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.trust-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: stretch;
  padding: 36px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(245, 242, 236, 0.8), rgba(255, 255, 255, 0.95)),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.about-copy p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 1rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-mark {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 18px 8px;
  text-align: right;
  overflow: hidden;
}

.about-mark::before {
  content: "VOR ORT";
  position: absolute;
  inset: auto 0 auto auto;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(200, 169, 110, 0.12);
  font-size: clamp(3.6rem, 10vw, 6.4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.92;
  pointer-events: none;
  white-space: nowrap;
}

.about-mark strong,
.about-mark span,
.about-mark small {
  position: relative;
  z-index: 1;
}

.about-mark strong {
  color: var(--ink);
  font-size: 1.9rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.about-mark span {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-mark small {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#kontakt {
  background: var(--off-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
}

.contact-card,
.form-card {
  padding: 34px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.contact-card {
  background: var(--anthracite);
  color: var(--white);
}

.contact-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
}

.contact-card > p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.66);
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(200, 169, 110, 0.12);
}

.contact-detail-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--sand);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail strong {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
  font-weight: 600;
}

.contact-note {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(200, 169, 110, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.contact-links a {
  color: var(--sand-light);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.form-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 800;
}

.form-card > p {
  margin: 0 0 22px;
  color: var(--text-muted);
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  position: relative;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: #666055;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1.5px solid #d8cfbf;
  border-radius: 6px;
  background: #fffdfa;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--sand);
  box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.14);
  background: var(--white);
}

.form-field textarea {
  min-height: 138px;
  resize: vertical;
}

.form-field input.input-error,
.form-field select.input-error,
.form-field textarea.input-error {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(183, 52, 52, 0.12);
}

.error-msg {
  display: none;
  margin-top: 7px;
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 600;
}

.error-msg.is-visible {
  display: block;
}

.consent-field label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--sand);
  box-shadow: none;
}

.consent-field.is-error label {
  color: var(--danger);
}

.consent-field a {
  color: #9a6f2e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 0 0 20px;
  padding: 15px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.92rem;
}

.form-status.is-error {
  border-color: rgba(183, 52, 52, 0.18);
  background: rgba(183, 52, 52, 0.07);
  color: #862727;
}

.form-status.is-info {
  border-color: rgba(200, 169, 110, 0.22);
  background: rgba(200, 169, 110, 0.09);
  color: #6f5422;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  width: 100%;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  background: var(--anthracite);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  background: #262626;
  transform: translateY(-1px);
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

.form-success {
  display: none;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid var(--success-border);
  border-radius: 8px;
  background: var(--success-bg);
  color: var(--success-text);
}

.form-success.is-visible {
  display: block;
}

.form-success strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.form-reset {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #365d3a;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

footer {
  background: #111111;
  border-top: 1px solid rgba(200, 169, 110, 0.16);
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
}

.footer-logo {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-logo span {
  color: var(--sand);
}

.footer-copy {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.84rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--sand);
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 8px 0;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  background: rgba(17, 17, 17, 0.97);
  border-top: 1px solid rgba(200, 169, 110, 0.25);
  backdrop-filter: blur(10px);
}

.mobile-bar-inner {
  display: flex;
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 54px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-right: 1px solid rgba(200, 169, 110, 0.14);
}

.mobile-bar-btn:last-child {
  border-right: 0;
}

.mobile-bar-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(200, 169, 110, 0.08), transparent 220px),
    var(--off-white);
}

.legal-shell {
  padding: 140px 0 96px;
}

.legal-card {
  max-width: 860px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-meta {
  margin: 0 0 14px;
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-card h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.legal-card h2 {
  margin: 34px 0 14px;
  color: var(--ink);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.2;
}

.legal-card h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-card p,
.legal-card li {
  color: var(--text-muted);
  font-size: 1rem;
}

.legal-card a:not(.legal-backlink) {
  color: var(--anthracite);
  text-decoration-color: rgba(200, 169, 110, 0.6);
  text-underline-offset: 0.16em;
}

.legal-address {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.75;
}

.legal-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.legal-card ul {
  margin: 0 0 24px;
  padding-left: 20px;
}

.legal-backlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  background: var(--anthracite);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .services-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-stats,
  .refs-grid,
  .contact-layout,
  .about-panel {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-mark {
    min-height: 180px;
    align-items: flex-start;
    text-align: left;
  }

  .about-mark::before {
    left: 0;
    right: auto;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 82px;
  }

  .container {
    width: min(1200px, calc(100vw - 32px));
  }

  section {
    padding: 78px 0;
  }

  .site-nav .nav-inner {
    min-height: 66px;
  }

  .nav-cta {
    display: none;
  }

  #hero {
    min-height: auto;
    padding-top: 122px;
    padding-bottom: 124px;
  }

  .hero-ornament {
    width: 70vw;
    height: 70vw;
    top: 8%;
    right: -18%;
  }

  .hero-actions,
  .form-row,
  .footer-inner,
  .footer-links,
  .hero-stats,
  .services-grid,
  .trust-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero-actions {
    display: flex;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-stats {
    display: grid;
  }

  .hero-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(200, 169, 110, 0.12);
  }

  .hero-stat:last-child {
    border-bottom: 0;
  }

  .contact-card,
  .form-card,
  .about-panel,
  .legal-card {
    padding: 26px 22px;
  }

  .footer-inner {
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-bar {
    display: block;
  }
}

/* ===== Lokale Landingpages ===== */
.region-links {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.region-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
}

.region-list,
.lp-region-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px 24px;
}

.region-list a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--duration-fast, 150ms) ease, border-color var(--duration-fast, 150ms) ease;
}

.region-list a:hover,
.region-list a:focus-visible {
  color: var(--sand);
  border-color: var(--sand);
}

.lp-hero {
  position: relative;
  min-height: clamp(320px, 42vw, 460px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--anthracite);
}

.lp-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.35) 0%, rgba(23, 23, 23, 0.85) 100%);
}

.lp-hero-content {
  position: relative;
  padding-top: 120px;
  padding-bottom: 48px;
  color: var(--white);
}

.lp-breadcrumb {
  font-size: 0.85rem;
  color: var(--stone, #d7c7ae);
  margin-bottom: 16px;
}

.lp-breadcrumb a {
  color: var(--stone, #d7c7ae);
  text-decoration: none;
}

.lp-breadcrumb a:hover,
.lp-breadcrumb a:focus-visible {
  color: var(--sand);
}

.lp-breadcrumb span {
  margin: 0 6px;
  opacity: 0.6;
}

.lp-title {
  font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3rem);
  font-weight: 850;
  line-height: 1.1;
  max-width: 18ch;
  margin-bottom: 24px;
}

.lp-hero-cta {
  display: inline-block;
}

.lp-body {
  padding: clamp(56px, 8vw, 104px) 0;
}

.lp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.lp-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 20px;
}

.lp-aside {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.lp-aside-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.lp-bullets {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.lp-bullets li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.lp-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sand);
}

.lp-trust {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  color: var(--text-muted);
  line-height: 1.6;
}

.lp-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-cta-phone {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.lp-cta-phone:hover,
.lp-cta-phone:focus-visible {
  color: var(--sand);
}

.lp-region {
  padding: clamp(48px, 7vw, 88px) 0;
}

.lp-region .lp-region-links a {
  color: var(--stone, #d7c7ae);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--duration-fast, 150ms) ease, border-color var(--duration-fast, 150ms) ease;
}

.lp-region .lp-region-links a:hover,
.lp-region .lp-region-links a:focus-visible {
  color: var(--sand);
  border-color: var(--sand);
}

@media (max-width: 860px) {
  .lp-grid {
    grid-template-columns: 1fr;
  }

  .lp-aside {
    position: static;
  }
}
