/* Lokale Schrift (DSGVO — kein Google-Fonts-Request) */
@font-face {
  font-family: 'Urbanist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/urbanist-var.woff2') format('woff2');
}

:root {
  --ink: #14130f;
  --ink-soft: #6b6760;
  --bg: #ffffff;
  --bg-soft: #f5f3ef;
  --card: #ffffff;
  --line: rgba(20, 19, 15, 0.10);
  --accent: #14130f;
  --radius: 10px;
  --header-h: 76px;
  --max: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: 'Urbanist', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.mobile-bar { display: none; }

/* ---------- Under-Construction-Gate ---------- */
.uc-gate {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: #fff; overflow: hidden; background: var(--ink);
}
.wdf-unlocked .uc-gate { display: none; }
html:not(.wdf-unlocked), html:not(.wdf-unlocked) body { overflow: hidden; }
.uc-bg {
  position: absolute; inset: 0;
  background: url('img/foto-09.webp') center / cover no-repeat;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
.uc-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(14,11,10,.66), rgba(14,11,10,.66)); }
.uc-inner { position: relative; z-index: 2; max-width: 640px; padding: 40px 28px; }
.uc-logo { width: min(400px, 74vw); height: auto; margin: 0 auto 30px; display: block; }
.uc-kicker { font-size: .8rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.uc-title { font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 18px; }
.uc-lead { font-size: 1.1rem; color: rgba(255,255,255,.85); font-weight: 500; max-width: 460px; margin: 0 auto 34px; line-height: 1.55; }
.uc-contact { display: flex; flex-direction: column; gap: 6px; font-size: 1.02rem; color: rgba(255,255,255,.9); font-weight: 500; }
.uc-contact a { color: #fff; text-decoration: none; font-weight: 700; }
.uc-contact a:hover { text-decoration: underline; }
.uc-toggle {
  position: fixed; right: 18px; bottom: 18px; z-index: 502;
  width: 44px; height: 44px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%; color: rgba(255,255,255,.55); cursor: pointer; opacity: .5;
  transition: background .25s, color .25s, border-color .25s, opacity .25s;
}
.uc-toggle:hover { opacity: 1; background: rgba(255,255,255,.16); color: #fff; border-color: #fff; }
.uc-pop {
  position: fixed; right: 18px; bottom: 72px; z-index: 503;
  background: #fff; color: var(--ink); border-radius: 14px; padding: 16px; width: 260px;
  box-shadow: 0 30px 60px -22px rgba(0,0,0,.6);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .22s, transform .22s, visibility .22s;
}
.uc-pop.open { opacity: 1; visibility: visible; transform: none; }
.uc-pop label { display: block; font-size: .78rem; font-weight: 700; margin-bottom: 8px; }
.uc-row { display: flex; gap: 8px; }
.uc-pop input {
  flex: 1; min-width: 0; font-family: inherit; font-size: 1rem; padding: 9px 11px;
  border: 1.5px solid rgba(20,19,15,.14); border-radius: 9px; color: var(--ink);
}
.uc-pop input:focus { outline: none; border-color: var(--ink); }
.uc-pop button {
  font-family: inherit; font-weight: 700; font-size: .9rem; color: #fff; background: var(--ink);
  border: none; border-radius: 9px; padding: 9px 14px; cursor: pointer;
}
.uc-err { margin-top: 8px; font-size: .82rem; color: #c0392b; font-weight: 600; min-height: 1em; }
@media (prefers-reduced-motion: reduce) { .uc-bg { animation: none; } }

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

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: var(--line);
}
.header-inner {
  height: 100%;
  display: grid; align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
}

/* Logo (links) */
.brand {
  display: inline-flex; align-items: baseline; gap: 1px;
  text-decoration: none; color: var(--ink);
  font-weight: 800; font-size: 1.25rem; letter-spacing: -0.01em;
  justify-self: start;
}
.brand-accent { font-weight: 500; color: var(--ink-soft); }
.brand-logo { height: 38px; width: auto; display: block; }
.footer-brand .brand-logo { height: 44px; }
@media (max-width: 880px) { .brand-logo { height: 32px; } }

/* Menü (mittig) */
.main-nav {
  display: flex; align-items: center; gap: 38px;
  justify-self: center;
}
.main-nav a {
  text-decoration: none; color: var(--ink-soft);
  font-weight: 600; font-size: 0.96rem; letter-spacing: 0;
  position: relative; transition: color .2s ease;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--ink); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { transform: scaleX(1); }

/* Aktionen (rechts) */
.header-actions { display: flex; align-items: center; gap: 10px; justify-self: end; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit; font-weight: 700; font-size: 0.875rem;
  text-decoration: none; cursor: pointer; border: none;
  border-radius: var(--radius); transition: transform .15s ease, background .2s ease, opacity .2s ease;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--btn-primary-bg, var(--ink));
  color: var(--btn-primary-text, #fff);
  padding: 9px 18px; gap: 8px;
}
.btn-primary:hover { opacity: 0.86; }

/* Kalender-Icon + Schnitt-Animation */
.cal-icon-wrap { display: inline-flex; }
.cal-icon { width: 17px; height: 17px; overflow: visible; }
.cal-half {
  transform-origin: 12px 12px;
  transition: transform .45s cubic-bezier(.2, .85, .25, 1);
}
.scissors {
  transform-origin: 12px 12px;
  transform: translateY(-13px) scale(.85);
  opacity: 0;
}

.cal-icon.cutting .cal-left  { transform: translate(-2.5px, 1.5px) rotate(-10deg); }
.cal-icon.cutting .cal-right { transform: translate(2.5px, 1.5px) rotate(10deg); }
.cal-icon.cutting .scissors  { animation: snip .85s ease forwards; }

@keyframes snip {
  0%   { opacity: 0; transform: translateY(-13px) scale(.85); }
  18%  { opacity: 1; transform: translateY(-7px) scale(1); }
  68%  { opacity: 1; transform: translateY(6px) scale(1); }
  100% { opacity: 0; transform: translateY(11px) scale(1); }
}

.btn-outline {
  background: transparent;
  color: var(--btn-outline, var(--ink));
  padding: 8px 18px;
  border: 1.5px solid var(--btn-outline, var(--ink));
}
.btn-outline:hover { background: var(--btn-outline, var(--ink)); color: #fff; }

/* Icon-Button (quadratisch, z.B. Instagram) */
.btn-icon { padding: 8px; width: 40px; height: 40px; }
.btn-icon svg { display: block; }

/* Burger (mobil) */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.burger span {
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (V5 — Logo auf Foto) ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh;
  padding-top: var(--header-h);
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  background: var(--ink);
}
/* Bild-Layer (echtes <img>, immer sichtbar) mit langsamem Zoom (Video-Effekt) */
.hero-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  animation: heroZoom 22s ease-in-out infinite alternate;
  will-change: transform;
}
/* Dunkles Overlay über dem Bild */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(14, 11, 10, 0.62), rgba(14, 11, 10, 0.62));
}
.hero > .container { position: relative; z-index: 2; }
.hero-scroll { z-index: 3; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.12); } }
@media (prefers-reduced-motion: reduce) { .hero-img { animation: none; } }
.hero-inner { max-width: 760px; margin: 0 auto; padding: 40px 0; }
.hero-logo { width: min(440px, 72vw); height: auto; margin: 0 auto 30px; display: block; }
.hero-lead {
  font-size: 1.2rem; color: rgba(255, 255, 255, 0.85); font-weight: 500;
  max-width: 520px; margin: 0 auto 34px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero .btn-outline {
  color: #fff; border-color: rgba(255, 255, 255, 0.6);
}
.hero .btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero-rating {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 28px; font-weight: 600; color: #fff;
}
.hero-rating .stars { color: #f5a623; letter-spacing: 1px; }
.hero-rating .muted { color: rgba(255, 255, 255, 0.7); font-weight: 500; font-size: 0.95rem; }
@media (max-width: 860px) { .hero-inner { padding-bottom: 56px; } }

/* Scroll-Indikator */
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: grid; place-items: center; width: 46px; height: 46px;
  color: #fff; border: 1px solid rgba(255,255,255,.4); border-radius: 50%;
  text-decoration: none; opacity: .85;
  animation: heroBounce 1.8s ease-in-out infinite;
  transition: background .25s ease, border-color .25s ease, opacity .25s ease;
}
.hero-scroll:hover { background: rgba(255,255,255,.14); border-color: #fff; opacity: 1; }
@keyframes heroBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}
@media (prefers-reduced-motion: reduce) { .hero-scroll { animation: none; } }

/* CTA unter Preisliste */
.fokus-cta { margin-top: 48px; display: flex; justify-content: center; }

/* ---------- Sektionen ---------- */
.section { padding: 96px 0; }
.section-kicker {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  line-height: 1.06; letter-spacing: -0.02em; margin-bottom: 20px;
}
.section-lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 580px; font-weight: 500; }

.wir { background: var(--bg); }
.fokus { background: var(--bg-soft); }
.konzept { background: var(--bg); }
.impressionen { background: var(--bg-soft); }

/* Wir — Split Text + Damals/Heute-Collage */
.wir-split {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center;
  margin-bottom: 8px;
}
.wir-copy .section-lead { max-width: 480px; }

/* Heritage-Badge */
.wir-badge {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 30px;
  padding: 14px 20px 14px 16px; border: 1px solid var(--line);
  border-radius: 14px; background: var(--bg-soft);
}
.wb-num { font-size: 2.1rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.wb-txt { font-size: 0.9rem; font-weight: 600; line-height: 1.35; color: var(--ink-soft); }

/* Collage */
.wir-media { position: relative; margin: 0; padding-bottom: 46px; }
.wir-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(100%); transition: filter .4s ease;
}
.wm-now {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4 / 3; box-shadow: 0 30px 60px -30px rgba(20,19,15,.5);
}
.wm-then {
  position: absolute; right: 0; bottom: 0; width: 46%;
  border-radius: 12px; overflow: hidden; aspect-ratio: 3 / 4;
  border: 5px solid var(--bg); box-shadow: 0 24px 46px -22px rgba(20,19,15,.55);
}
.wm-then { left: -8px; right: auto; }
.wm-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(20,19,15,.82); color: #fff; padding: 4px 10px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.wir-media:hover .wm-now img, .wir-media:hover .wm-then img { filter: grayscale(0%); }
@media (max-width: 860px) {
  .wir-split { grid-template-columns: 1fr; gap: 36px; }
  .wir-media { order: -1; padding-bottom: 30px; }
  .wm-then { width: 42%; }
}
@media (max-width: 480px) {
  .wm-then { width: 48%; left: 0; }
}

/* Bento-Galerie */
.bento {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 12px; grid-auto-flow: dense; margin-top: 44px;
}
.bento figure { margin: 0; overflow: hidden; border-radius: 14px; }
.bento img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(100%); transition: transform .5s ease, filter .4s ease;
}
.bento figure:hover img { transform: scale(1.05); filter: grayscale(0%); }
.bento .b-wide { grid-column: span 2; }
.bento .b-tall { grid-row: span 2; }
.bento .b-big { grid-column: span 2; grid-row: span 2; }
@media (max-width: 720px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .bento .b-big { grid-column: span 2; grid-row: span 2; }
  .bento .b-wide { grid-column: span 2; grid-row: span 1; }
}

/* Reviews */
.reviews-title {
  margin-top: 52px; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
  letter-spacing: -0.02em; text-align: center;
}
.reviews { margin-top: 26px; }
.reviews-head {
  display: flex; align-items: center; justify-content: center;
  gap: 20px 28px; flex-wrap: wrap; margin-bottom: 34px;
}
.score-card {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 16px 28px; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 16px;
}
.score-num {
  font-size: 3rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1;
}
.score-meta {
  display: flex; flex-direction: column; gap: 6px;
  padding-left: 20px; border-left: 1px solid var(--line);
}
.reviews-stars { color: #f5a623; font-size: 1.15rem; letter-spacing: 2px; line-height: 1; }
.reviews-count { color: var(--ink-soft); font-weight: 500; font-size: 0.9rem; }
.reviews-link {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; font-weight: 700; font-size: 0.92rem;
  color: var(--ink); padding: 11px 20px; border: 1.5px solid var(--line);
  border-radius: 999px; transition: border-color .2s, background .2s, color .2s;
}
.reviews-link .g-icon { color: #4285F4; transition: color .2s; }
.reviews-link:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.reviews-link:hover .g-icon { color: #fff; }
.reviews-cta { display: flex; justify-content: center; margin-top: 44px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
/* Marquee — Bewertungen laufen endlos von rechts nach links */
.reviews-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.reviews-track {
  display: flex; gap: 18px; width: max-content;
  animation: reviewsScroll 48s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
.reviews-track .review-card { flex: 0 0 360px; }
@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
}
.review-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; padding: 26px 26px 22px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.review-card:hover { border-color: rgba(20,19,15,.22); box-shadow: 0 22px 44px -30px rgba(20,19,15,.5); }
.review-card .rc-top {
  display: flex; align-items: flex-start; justify-content: space-between;
}
.review-card .stars { color: #f5a623; font-size: 0.95rem; letter-spacing: 1px; }
.review-card .rc-quote {
  font-size: 2.6rem; line-height: .5; font-weight: 800;
  color: var(--line); font-family: Georgia, serif; margin-top: 6px;
}
.review-card .body {
  font-size: 1rem; line-height: 1.6; color: var(--ink);
  margin: 14px 0 20px; flex: 1;
}
.review-card .rc-author { display: flex; align-items: center; gap: 11px; }
.review-card .rc-avatar {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%;
  background: var(--ink); color: #fff; display: grid; place-items: center;
  font-size: 0.9rem; font-weight: 800;
}
.review-card .author { font-weight: 700; font-size: 0.92rem; }
.reviews-empty { color: var(--ink-soft); font-size: 0.98rem; }

/* Services / Unser Fokus — Karten-Grid */
.fokus .section-kicker, .fokus .section-title { text-align: center; }
.services {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.service-card {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  padding: 28px; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 16px; opacity: 0;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card.in { animation: cardIn .55s cubic-bezier(.2,.8,.2,1) both; }
@keyframes cardIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.service-card:hover {
  transform: translateY(-4px); border-color: var(--ink);
  box-shadow: 0 24px 44px -28px rgba(20,19,15,.45);
}
.sc-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
}
.sc-name { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; }
.sc-price {
  flex-shrink: 0; font-size: 0.95rem; font-weight: 800; white-space: nowrap;
  background: var(--ink); color: #fff; padding: 6px 14px; border-radius: 999px;
}
.sc-desc { color: var(--ink-soft); font-size: 1rem; line-height: 1.55; }

.services-note {
  margin: 32px auto 0; color: var(--ink-soft); font-size: 0.95rem;
  max-width: 640px; line-height: 1.55; text-align: center;
}
@media (max-width: 640px) { .services { grid-template-columns: 1fr; } }

/* Konzept — Split (Überschrift links, Punkte rechts) */
.konzept-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.konzept-left { position: sticky; top: calc(var(--header-h) + 40px); }
.konzept-left .section-kicker { margin-bottom: 14px; }
.konzept-left .section-title { margin-bottom: 28px; }
.konzept-media { margin: 0; border-radius: 16px; overflow: hidden; }
.konzept-media img {
  width: 100%; height: 340px; object-fit: cover; display: block;
  filter: grayscale(100%); transition: transform .6s ease, filter .5s ease;
}
.konzept-media:hover img { transform: scale(1.04); filter: grayscale(0%); }

.konzept-list { display: flex; flex-direction: column; }
.k-item {
  display: grid; grid-template-columns: auto 1fr; gap: 20px;
  padding: 26px 0; border-bottom: 1px solid var(--line);
  opacity: 0;
}
.konzept-list .k-item:first-child { padding-top: 0; }
.k-item.in { animation: cardIn .6s cubic-bezier(.2,.8,.2,1) both; }

.k-icon {
  width: 50px; height: 50px; border-radius: 14px;
  border: 1px solid var(--line); display: grid; place-items: center;
  flex: none; color: var(--ink); background: transparent;
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s cubic-bezier(.2,.8,.2,1);
}
.k-icon svg { width: 24px; height: 24px; stroke: currentColor; }
.k-body { display: flex; flex-direction: column; gap: 5px; padding-top: 2px; }
.k-title { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }
.k-text { color: var(--ink-soft); font-size: 1rem; }

/* Hover: Icon-Box invertiert + leichtes Anheben */
.k-item:hover .k-icon { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-2px); }

/* Hover: Icon-spezifische Animationen */
.k-item:hover .k-icon[data-icon="leaf"] svg { animation: leafSway .9s ease; transform-origin: 50% 90%; }
.k-item:hover .k-icon[data-icon="drop"] svg { animation: dropBob .7s ease; }
.k-item:hover .k-icon[data-icon="ocean"] svg { animation: waveFlow .9s ease-in-out infinite; }
.k-item:hover .k-icon[data-icon="calendar"] svg { animation: calPulse .8s ease; transform-origin: 50% 50%; }

@keyframes leafSway { 0%,100% { transform: rotate(0); } 30% { transform: rotate(-13deg); } 65% { transform: rotate(8deg); } }
@keyframes dropBob { 0%,100% { transform: translateY(0); } 40% { transform: translateY(-5px); } 70% { transform: translateY(1px); } }
@keyframes waveFlow { 0%,100% { transform: translateX(-1.6px); } 50% { transform: translateX(1.6px); } }
@keyframes calPulse { 0%,100% { transform: scale(1) rotate(0); } 40% { transform: scale(1.14) rotate(-5deg); } }

@media (max-width: 820px) {
  .konzept-split { grid-template-columns: 1fr; gap: 34px; }
  .konzept-left { position: static; }
  .konzept-media img { height: auto; aspect-ratio: 16 / 10; }
}
@media (prefers-reduced-motion: reduce) {
  .k-item { opacity: 1; }
  .k-item.in { animation: none; }
  .k-item:hover .k-icon svg { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  .service-card { opacity: 1; }
  .service-card.in { animation: none; }
  .service-card, .service-card * { transition: none !important; }
}

/* ---------- Standort / Karte ---------- */
.standort { background: var(--bg); }
.map-split {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px;
  margin-top: 44px; align-items: stretch;
}
.map-info { display: flex; flex-direction: column; gap: 24px; }
.map-address { font-style: normal; line-height: 1.7; color: var(--ink-soft); font-size: 1.05rem; }
.map-address strong { display: block; color: var(--ink); font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.map-hours {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--line); padding-top: 20px;
}
.map-hours li { display: flex; justify-content: space-between; gap: 16px; font-size: 0.98rem; }
.map-hours span:first-child { color: var(--ink-soft); }
.map-hours span:last-child { font-weight: 600; }
.map-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.map-embed {
  position: relative;
  border-radius: 16px; overflow: hidden; min-height: 400px;
  box-shadow: 0 24px 50px -30px rgba(20,19,15,.5);
}
.map-embed iframe {
  width: 100%; height: 100%; min-height: 400px; display: block; border: 0;
  filter: grayscale(100%) contrast(1.05); transition: filter .5s ease;
}
.map-embed:hover iframe { filter: grayscale(0%); }
/* Maps-Consent-Platzhalter */
.map-consent {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; gap: 14px;
  padding: 28px; background: var(--bg-soft);
}
.map-consent p { max-width: 340px; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.5; }
.map-consent-link { font-size: 0.88rem; font-weight: 600; color: var(--ink); text-decoration: underline; }

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300;
  display: flex; align-items: center; justify-content: space-between; gap: 20px 28px;
  flex-wrap: wrap; max-width: 920px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 18px 22px; box-shadow: 0 30px 60px -24px rgba(20,19,15,.5);
}
.cookie-banner[hidden] { display: none; }
.cookie-text { flex: 1 1 340px; }
.cookie-text strong { display: block; font-size: 0.98rem; margin-bottom: 5px; }
.cookie-text p { font-size: 0.88rem; line-height: 1.5; color: var(--ink-soft); }
.cookie-link {
  background: none; border: none; padding: 0; cursor: pointer; font: inherit;
  color: var(--ink); text-decoration: underline; font-size: 0.88rem;
}
.cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-actions .btn { padding: 10px 18px; font-size: 0.9rem; }
@media (max-width: 880px) {
  .cookie-banner { bottom: 86px; } /* über der Mobile-Bar */
  .cookie-actions { flex: 1 1 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}
@media (max-width: 820px) {
  .map-split { grid-template-columns: 1fr; gap: 28px; }
  .map-embed, .map-embed iframe { min-height: 320px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: #fff;
  padding: 88px 0 34px;
  border-radius: 40px 40px 0 0;
  margin-top: 8px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.brand--light { color: #fff; }
.brand--light .brand-accent { color: rgba(255, 255, 255, 0.55); }
.footer-tagline {
  margin-top: 18px; max-width: 320px;
  color: rgba(255, 255, 255, 0.6); font-size: 0.98rem; font-weight: 500;
}
.footer-follow {
  margin-top: 32px; font-size: 0.95rem; font-weight: 700; color: #fff;
}
.footer-socials { display: flex; gap: 12px; margin-top: 14px; }
.footer-socials a {
  display: grid; place-items: center; width: 42px; height: 42px;
  color: #fff; text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%;
  transition: background .25s ease, border-color .25s ease, transform .25s ease, color .25s ease;
}
.footer-socials a:hover {
  background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-3px);
}
.footer-socials a span { font-size: 0.8rem; font-weight: 700; }

.footer-col h4 {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li {
  color: rgba(255, 255, 255, 0.82); text-decoration: none;
  font-size: 0.96rem; font-weight: 500; transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-hours li { display: flex; flex-direction: column; gap: 1px; }
.footer-hours li + li { margin-top: 10px; }
.footer-hours .days { color: rgba(255, 255, 255, 0.55); font-size: 0.9rem; }
.footer-hours li > span:last-child { white-space: nowrap; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px; padding-top: 28px; flex-wrap: wrap;
}
.footer-copy { color: rgba(255, 255, 255, 0.45); font-size: 0.88rem; }
.footer-legal { display: flex; gap: 24px; }
.legal-link {
  background: none; border: none; cursor: pointer; font-family: inherit;
  color: rgba(255, 255, 255, 0.6); font-size: 0.88rem; font-weight: 500;
  padding: 0; transition: color .2s;
}
.legal-link:hover { color: #fff; }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 19, 15, 0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; transition: opacity .2s ease;
}
.modal-backdrop.open { opacity: 1; }
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--card); border-radius: 18px;
  width: 100%; max-width: 640px; max-height: 85vh;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.4);
  transform: translateY(12px) scale(.98); transition: transform .2s ease;
}
.modal-backdrop.open .modal { transform: none; }
.modal-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 26px 28px 18px; border-bottom: 1px solid var(--line);
}
.modal-head h3 { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.01em; }
.modal-close {
  background: none; border: none; cursor: pointer; line-height: 1;
  font-size: 1.8rem; color: var(--ink-soft); padding: 0 4px;
  transition: color .2s;
}
.modal-close:hover { color: var(--ink); }
.modal-body {
  padding: 24px 28px 30px; overflow-y: auto;
  white-space: pre-line; color: var(--ink-soft);
  font-size: 1rem; line-height: 1.65;
}

/* ---------- Termin-Formular (kompakt) ---------- */
.modal--form { max-width: 500px; }
.modal--form .modal-head { padding: 18px 22px 14px; }
.modal--form .modal-head h3 { font-size: 1.25rem; }
.modal--form .modal-body { white-space: normal; color: var(--ink); padding: 16px 22px 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; border: none; }
.field > span, .field-legend { font-size: 0.8rem; font-weight: 700; color: var(--ink); }
.field em { color: #c0392b; font-style: normal; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 9px 11px; border: 1.5px solid var(--line); border-radius: 9px;
  background: var(--bg); width: 100%; transition: border-color .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink);
}
.field textarea { resize: vertical; min-height: 44px; }

/* Platzhalter statt Labels (grau, innen) */
.field ::placeholder { color: rgba(20, 19, 15, 0.42); opacity: 1; }
/* Datum: Overlay-Platzhalter, da <input type=date> keinen placeholder unterstützt */
.field-date { position: relative; }
.field-date .date-ph {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: rgba(20, 19, 15, 0.42); font-size: 1rem; font-weight: 400;
  pointer-events: none; transition: opacity .15s ease;
}
.field-date input:focus ~ .date-ph,
.field-date input:valid ~ .date-ph { opacity: 0; }
.field-date input::-webkit-datetime-edit { color: transparent; }
.field-date input:focus::-webkit-datetime-edit,
.field-date input:valid::-webkit-datetime-edit { color: var(--ink); }
/* Select-Platzhalter grau bis Auswahl getroffen */
.select-empty:has(option[value=""]:checked) { color: rgba(20, 19, 15, 0.42); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  display: inline-flex; align-items: center; cursor: pointer;
  padding: 5px 11px; border: 1.5px solid var(--line); border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; color: var(--ink-soft);
  transition: all .16s ease; user-select: none;
}
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip:has(input:checked) { background: var(--ink); color: #fff; border-color: var(--ink); }
.check {
  display: flex; align-items: flex-start; gap: 9px; margin: 4px 0 0;
  font-size: 0.82rem; line-height: 1.45; color: var(--ink-soft);
}
.check input { margin-top: 2px; width: 17px; height: 17px; flex-shrink: 0; accent-color: var(--ink); }
.inline-link {
  background: none; border: none; padding: 0; cursor: pointer;
  font: inherit; color: var(--ink); text-decoration: underline;
}
.form-note {
  margin: 10px 0 12px; padding: 9px 12px; border-radius: 9px;
  background: var(--bg-soft); font-size: 0.8rem; line-height: 1.4; color: var(--ink-soft);
}
.form-actions { display: flex; }
.form-actions .btn-primary { padding: 11px 22px; font-size: 0.95rem; width: 100%; justify-content: center; }
.form-status { margin-top: 9px; font-size: 0.88rem; font-weight: 600; min-height: 1em; }
.form-status.ok { color: #2e7d32; }
.form-status.err { color: #c0392b; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  /* Header: nur Logo + Burger — CTA & Social liegen in der Bottom-Bar.
     backdrop-filter hier AUS: sonst wird der Header zum Containing-Block
     und das fixed Fullscreen-Menü würde auf Header-Höhe abgeschnitten. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .site-header:not(.scrolled) { background: rgba(255, 255, 255, 0.96); }
  .header-inner { grid-template-columns: 1fr auto; }
  .main-nav { grid-column: unset; }
  .header-actions #primaryBtn, .header-actions #contactBtn { display: none; }
  .header-actions { justify-self: end; }
  .burger { display: flex; margin-left: auto; }

  /* Kompaktes Dropdown-Menü — rechts unter dem Burger */
  .main-nav {
    position: fixed; top: calc(var(--header-h) - 6px); right: 16px; left: auto; z-index: 90;
    width: min(300px, calc(100vw - 32px));
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border: 1px solid var(--line);
    border-radius: 16px; padding: 6px 20px;
    box-shadow: 0 30px 60px -26px rgba(20, 19, 15, 0.45);
    transform: translateY(-10px) scale(.98); transform-origin: top right;
    opacity: 0; visibility: hidden;
    transition: opacity .24s ease, transform .24s ease, visibility .24s;
  }
  .main-nav.open { transform: translateY(0) scale(1); opacity: 1; visibility: visible; }
  .main-nav a {
    color: var(--ink); font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em;
    padding: 14px 4px; width: 100%;
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between;
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav a::before { content: none; }
  .main-nav a::after {
    content: '→'; display: inline; position: static;
    width: auto; height: auto; background: none; transform: none;
    color: var(--ink-soft); font-size: 1.1rem; font-weight: 400;
  }

  /* Überschriften mobil zentriert */
  .section-kicker, .section-title, .section-lead { text-align: center; }
  .section-lead { margin-left: auto; margin-right: auto; }
  .wir-copy { text-align: center; }
  .wir-copy .section-lead { margin-left: auto; margin-right: auto; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .section { padding: 68px 0; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* Platz für Bottom-Bar */
  body { padding-bottom: 78px; }

  /* Mobile Bottom-Bar */
  .mobile-bar {
    display: flex; align-items: center; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
  }
  .mb-termin { flex: 1; justify-content: center; padding: 13px 18px; }
  .mb-socials { flex: none; display: flex; gap: 10px; }
  .mb-social {
    flex: none; width: 48px; height: 48px; display: grid; place-items: center;
    color: var(--ink); border: 1px solid var(--line); border-radius: 12px;
    text-decoration: none; transition: background .2s ease, border-color .2s ease;
  }
  .mb-social:active { background: var(--bg-soft); border-color: var(--ink); }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (max-width: 380px) {
  .container { padding: 0 20px; }
  #primaryBtn { padding: 9px 14px; }
  .reviews-track .review-card { flex-basis: 300px; }
}
