/* ============================================================
   PINSELWERK — Maler & Wandgestaltung
   Design-System: Weiß + Gelb + Farbspritzer (Orange/Blau/Violett)
   ============================================================ */

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-var.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1b150e;
  --ink-soft: #4c463d;
  --muted: #6f675b;
  --paper: #ffffff;
  --paper-warm: #fffaf0;
  --band: #f5eacb;
  --band-deep: #efdfae;
  --yellow: #0064bc;
  --yellow-deep: #044884;
  --orange: #015198;
  --blue: #2e86d9;
  --violet: #7c4fd0;
  --gold: #00549e;
  --line: #efe8da;
  --radius: 20px;
  --radius-sm: 14px;
  --pill: 999px;
  --shadow-soft: 0 10px 30px -12px rgba(27, 21, 14, 0.16);
  --shadow-card: 0 14px 40px -18px rgba(27, 21, 14, 0.22);
  --wrap: 1180px;
  --header-h: 78px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.wrap {
  width: min(var(--wrap), 100% - 2.5rem);
  margin-inline: auto;
}

::selection { background: var(--yellow); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 200;
  background: var(--ink); color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--pill);
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.92rem 1.9rem;
  border-radius: var(--pill);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s, background-color 0.22s, border-color 0.22s;
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-solid {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 8px 22px -10px rgba(232, 169, 22, 0.75);
}
.btn-solid:hover {
  background: var(--yellow-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(232, 169, 22, 0.85);
}

.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid #e6dcc6;
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #33291d; transform: translateY(-2px); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.3s;
}
.site-header.is-scrolled {
  box-shadow: 0 6px 24px -14px rgba(27, 21, 14, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.02em;
}
.logo svg { width: 34px; height: 34px; }
.logo .dot { color: var(--orange); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.main-nav a {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--ink); font-weight: 700; }

.header-cta { flex: none; }

.mobile-only { display: none; }
@media (max-width: 900px) {
  .mobile-only { display: block; }
  .mobile-only a { color: var(--orange) !important; }
}

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--band);
  align-items: center;
  justify-content: center;
  z-index: 130;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  position: relative;
  width: 20px; height: 2.4px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle span::before { position: absolute; top: -6.5px; }
.nav-toggle span::after { position: absolute; top: 6.5px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
@media (max-width: 900px) {
  /* backdrop-filter würde den Header zum Containing Block des fixierten
     Overlays machen — auf Mobile deshalb solide Fläche statt Blur */
  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: #fff;
  }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    background: var(--paper-warm);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s ease, visibility 0.32s;
  }
  body.nav-open .main-nav { opacity: 1; visibility: visible; }
  .main-nav ul {
    flex-direction: column;
    gap: 1.4rem;
    text-align: center;
  }
  .main-nav a { font-size: 1.5rem; font-weight: 800; color: var(--ink); }
  .main-nav ul li { opacity: 0; transform: translateY(14px); transition: opacity 0.35s ease, transform 0.35s ease; }
  body.nav-open .main-nav ul li { opacity: 1; transform: none; }
  body.nav-open .main-nav ul li:nth-child(2) { transition-delay: 0.05s; }
  body.nav-open .main-nav ul li:nth-child(3) { transition-delay: 0.1s; }
  body.nav-open .main-nav ul li:nth-child(4) { transition-delay: 0.15s; }
  body.nav-open .main-nav ul li:nth-child(5) { transition-delay: 0.2s; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  body.nav-open { overflow: hidden; }
  .logo { position: relative; z-index: 130; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 2rem;
  padding-top: clamp(1.5rem, 4vw, 3.5rem);
}

.hero-copy { padding-bottom: clamp(2.5rem, 5vw, 5rem); }

.hero h1 {
  font-size: clamp(2.45rem, 5.4vw, 4.05rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.3rem;
}
.splash-word {
  background: linear-gradient(92deg, var(--orange) 8%, var(--violet) 55%, var(--blue) 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.07rem;
  max-width: 46ch;
  margin-bottom: 1.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.6rem;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  max-width: 40ch;
}
.hero-feature-icon {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--band);
  display: grid;
  place-items: center;
}
.hero-feature-icon svg { width: 24px; height: 24px; }
.hero-feature strong { display: block; font-size: 0.99rem; font-weight: 800; }
.hero-feature p { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

.hero-visual {
  position: relative;
  align-self: end;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-splash {
  position: absolute;
  inset: -6% -14% -10% -12%;
  width: auto;
  height: auto;
  z-index: 0;
  animation: splash-in 0.9s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}
.hero-cut {
  position: relative;
  z-index: 1;
  width: min(100%, 505px);
  height: auto;
  filter: drop-shadow(0 24px 34px rgba(27, 21, 14, 0.22));
  animation: hero-rise 0.9s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes splash-in {
  from { opacity: 0; transform: scale(0.86) rotate(-4deg); }
  to { opacity: 1; transform: none; }
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: none; }
}

/* soft fade from hero into the yellow band */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 70px;
  background: linear-gradient(180deg, rgba(245, 234, 203, 0) 0%, rgba(245, 234, 203, 0.55) 100%);
  pointer-events: none;
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding-top: 1.5rem; }
  .hero-copy { padding-bottom: 0.5rem; text-align: center; }
  .hero-sub, .hero-feature { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-feature { text-align: left; margin-bottom: 1rem; }
  .hero-visual { min-height: 0; margin-top: 1.6rem; }
  .hero-cut { width: min(78%, 400px); }
}

/* ---------- Feature-Band (gelb) ---------- */

.feature-band {
  background: linear-gradient(180deg, var(--band) 0%, #f2e5bf 100%);
  border-radius: clamp(20px, 3vw, 34px);
  width: min(calc(var(--wrap) + 80px), 100% - 1.6rem);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.feature-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  padding: clamp(1.9rem, 3.6vw, 2.9rem) clamp(1.4rem, 4vw, 3.4rem);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.feature-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--band-deep);
  display: grid;
  place-items: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-item:hover .feature-icon { transform: translateY(-4px) rotate(-6deg); background: #eed592; }
.feature-item strong { font-size: 1.02rem; font-weight: 800; letter-spacing: -0.01em; }
.feature-item span { font-size: 0.87rem; color: var(--muted); line-height: 1.5; max-width: 24ch; }

@media (max-width: 860px) {
  .feature-band-inner { grid-template-columns: repeat(2, 1fr); gap: 1.7rem 1rem; }
}
@media (max-width: 430px) {
  .feature-band-inner { grid-template-columns: 1fr 1fr; }
  .feature-item span { display: none; }
}

/* ---------- Sections / headings ---------- */

.section { padding: clamp(3.6rem, 7.5vw, 6.2rem) 0; }

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(2.2rem, 4.5vw, 3.4rem);
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.section-head p { color: var(--muted); font-size: 1.02rem; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.9rem;
}
.kicker svg { width: 15px; height: 15px; }

/* ---------- Leistungen cards ---------- */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.4vw, 1.9rem);
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 0.9rem 1.7rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-card);
}
.card-media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.25rem;
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover .card-media img { transform: scale(1.055); }

.card-body { padding: 0 0.7rem; display: flex; flex-direction: column; flex: 1; }
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.card-tag::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: currentColor;
}
.card-tag.is-orange { color: var(--orange); }
.card-tag.is-blue { color: var(--blue); }
.card-tag.is-violet { color: var(--violet); }

.card h3 { font-size: 1.24rem; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; flex: 1; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.93rem;
  margin-top: 1.1rem;
  color: var(--ink);
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.25s; }
.card-link:hover svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .cards-3 { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

/* ---------- CTA-Band ---------- */

.cta-band { position: relative; overflow: hidden; padding: clamp(1.5rem, 3vw, 2.5rem) 0 0; }
.cta-band-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 460px;
}
.cta-canvas {
  position: absolute;
  top: 72px; right: calc((100vw - min(var(--wrap), 100vw - 2.5rem)) / -2);
  bottom: 0;
  width: 62%;
  background: linear-gradient(160deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  border-radius: 44px 0 0 0;
  z-index: 0;
}
.cta-copy { position: relative; z-index: 2; padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.cta-copy h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 15ch;
}
.cta-copy p { color: var(--muted); max-width: 42ch; margin-bottom: 1.8rem; }

.cta-visual {
  position: relative;
  z-index: 1;
  align-self: end;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 440px;
}
.cta-splash {
  position: absolute;
  inset: -4% 4% -14% -34%;
  z-index: 0;
}
.cta-cut {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  transform: scaleX(-1);
  filter: drop-shadow(0 20px 30px rgba(27, 21, 14, 0.25));
}

@media (max-width: 960px) {
  .cta-band-inner { grid-template-columns: 1fr; min-height: 0; }
  .cta-canvas {
    right: -1.25rem; left: 30%;
    width: auto;
    top: auto; height: 62%;
    border-radius: 40px 0 0 0;
  }
  .cta-copy { text-align: center; padding-bottom: 0; }
  .cta-copy h2, .cta-copy p { margin-inline: auto; }
  .cta-visual { min-height: 0; margin-top: 2rem; }
  .cta-cut { width: min(70%, 350px); }
}

/* ---------- Footer ---------- */

.site-footer {
  background: #17110b;
  color: #cfc8bc;
  margin-top: 0;
  position: relative;
}
.footer-stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--orange) 0 25%, var(--gold) 25% 50%, var(--blue) 50% 75%, var(--violet) 75% 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.4rem;
  padding: clamp(2.8rem, 5vw, 4.2rem) 0 2.6rem;
}
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.93rem; max-width: 30ch; color: #a89f90; }
.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer ul li { margin-bottom: 0.55rem; }
.site-footer ul a {
  font-size: 0.95rem;
  color: #a89f90;
  transition: color 0.2s;
}
.site-footer ul a:hover { color: var(--yellow); }
.footer-contact li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #a89f90;
}
.footer-contact svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 1.4rem 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.86rem;
  color: #8d8578;
}
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a:hover { color: var(--yellow); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.9rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Unterseiten: Page-Hero ---------- */

.page-hero {
  position: relative;
  background: linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 100%);
  padding: clamp(3rem, 6vw, 4.6rem) 0 clamp(2.2rem, 4vw, 3rem);
  overflow: hidden;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 0.9rem;
}
.page-hero p { color: var(--muted); max-width: 56ch; margin: 0 auto; font-size: 1.05rem; }
.page-hero .mini-splash {
  position: absolute;
  width: 190px;
  opacity: 0.9;
  pointer-events: none;
}
.page-hero .mini-splash.left { left: -60px; top: 12%; }
.page-hero .mini-splash.right { right: -70px; bottom: -30%; }

/* ---------- Leistungen Detail ---------- */

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 4.5vw, 4.4rem);
  align-items: center;
  padding: clamp(2rem, 4.5vw, 3.4rem) 0;
}
.service-row + .service-row { border-top: 1px solid var(--line); }
.service-row:nth-child(even) .service-media { order: 2; }
.service-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-card);
}
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-copy h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.service-copy p { color: var(--muted); margin-bottom: 1.2rem; }
.check-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.55rem;
  font-weight: 600;
  font-size: 0.97rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.32em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--yellow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b150e' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-11'/%3E%3C/svg%3E") center / 11px no-repeat;
}

@media (max-width: 860px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-media { order: 0; }
}

/* ---------- Stats (Zähler) ---------- */

.stats-band {
  background: linear-gradient(180deg, var(--band) 0%, #f2e5bf 100%);
  border-radius: clamp(20px, 3vw, 34px);
  width: min(calc(var(--wrap) + 80px), 100% - 1.6rem);
  margin: 0 auto;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  padding: clamp(2.1rem, 4vw, 3rem) clamp(1.4rem, 4vw, 3.4rem);
  text-align: center;
}
.stat strong {
  display: block;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.stat span { font-size: 0.92rem; color: var(--muted); font-weight: 600; }
.stats-note { text-align: center; font-size: 0.8rem; color: var(--muted); padding: 0.9rem 1rem 0; }
@media (max-width: 700px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Über uns ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-media img { width: 100%; height: auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.value-card .feature-icon { margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.4rem; }
.value-card p { color: var(--muted); font-size: 0.93rem; }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ---------- Kontakt ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4.5vw, 3.6rem);
  align-items: start;
}
.contact-cards { display: grid; gap: 1.1rem; }
.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-soft);
}
.contact-card .feature-icon { width: 50px; height: 50px; flex: none; }
.contact-card .feature-icon svg { width: 22px; height: 22px; }
.contact-card strong { display: block; font-weight: 800; font-size: 0.98rem; margin-bottom: 0.15rem; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.94rem; }
.contact-card a:hover { color: var(--ink); }

.contact-form {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.96rem;
  padding: 0.78rem 1rem;
  border: 1.5px solid #e5dcc8;
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(243, 188, 63, 0.25);
}
.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 1.3rem;
}
.form-consent input { margin-top: 0.25rem; accent-color: var(--yellow-deep); }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.9rem; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Rechtliches / Danke ---------- */

.legal-content { max-width: 720px; margin-inline: auto; }
.legal-content h2 { font-size: 1.4rem; font-weight: 800; margin: 2.2rem 0 0.7rem; }
.legal-content p { color: var(--ink-soft); margin-bottom: 0.9rem; }
.placeholder {
  display: inline-block;
  background: var(--band);
  border-radius: 8px;
  padding: 0.1rem 0.55rem;
  font-weight: 700;
  color: var(--ink);
}

.thanks-hero {
  min-height: calc(100vh - var(--header-h) - 220px);
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
.thanks-hero .mini-splash { position: absolute; width: 230px; pointer-events: none; }
.thanks-hero .mini-splash.left { left: -80px; top: 6%; }
.thanks-hero .mini-splash.right { right: -80px; bottom: 4%; }
.thanks-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 1rem; }
.thanks-hero p { color: var(--muted); max-width: 46ch; margin: 0 auto 2rem; }

/* ---------- Scroll-Reveals ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-splash, .hero-cut { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
