:root {
  --bg: #fcf8f6;
  --bg-soft: #f6efeb;
  --surface: rgba(255,255,255,0.86);
  --surface-strong: rgba(255,255,255,0.96);
  --text: #2f2624;
  --muted: #6f615d;
  --line: rgba(68, 45, 37, 0.10);
  --accent: #cfa99a;
  --accent-dark: #b48a7a;
  --accent-soft: #f2dfd7;
  --whatsapp: #25d366;
  --whatsapp-dark: #1daa52;
  --shadow: 0 18px 60px rgba(72, 49, 41, 0.12);
  --shadow-soft: 0 14px 40px rgba(72,49,41,0.10);
  --radius: 28px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(207, 169, 154, 0.18), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(180deg, #fffdfc 0%, var(--bg) 42%, #fff 100%);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

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

.section { padding: 92px 0; position: relative; }
.section-tight { padding: 72px 0; }
.section-intro { max-width: 760px; margin-bottom: 34px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 0 0 6px rgba(207, 169, 154, 0.16);
}

h1, h2, h3 {
  margin: 0;
  line-height: 0.98;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 6vw, 6rem); margin-top: 18px; }
h2 { font-size: clamp(2.3rem, 4vw, 4rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.lead {
  max-width: 60ch;
  margin-top: 18px;
  font-size: 1.08rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(252, 248, 246, 0.78);
  border-bottom: 1px solid rgba(68, 45, 37, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  background: white;
  padding: 4px;
}

.brand-text { min-width: 0; }
.brand-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  line-height: 1;
}
.brand-subtitle {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.96rem;
  padding: 12px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav a:hover,
.nav a.current {
  color: var(--text);
  background: rgba(255,255,255,0.76);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  text-align: center;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 16px 30px rgba(180, 138, 122, 0.28);
}
.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.84);
  border-color: var(--line);
  backdrop-filter: blur(10px);
}
.btn-whatsapp {
  color: white;
  background: linear-gradient(135deg, var(--whatsapp-dark), var(--whatsapp));
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.26);
}
.btn-label-short { display: none; }

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow-soft);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: relative;
  transition: 0.25s ease;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle.active span { background: transparent; }
.menu-toggle.active span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.active span::after { top: 0; transform: rotate(-45deg); }

.hero,
.page-hero {
  padding: 56px 0 84px;
  overflow: hidden;
}

.hero-grid,
.page-hero-grid,
.grid-2,
.contact-main,
.story-grid,
.cta-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: center;
}

.hero-copy,
.page-hero-copy { position: relative; z-index: 1; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-actions .btn { flex: 0 1 auto; }

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card,
.about-card,
.service-card,
.panel,
.contact-card,
.gallery-card,
.info-card,
.review-card,
.price-card,
.impressum-card,
.before-after-card,
.gift-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
}

.stat-card,
.feature-item,
.mini-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.stat-card { padding: 20px; }
.stat-card strong { display:block; font-size:1.05rem; margin-bottom: 6px; }

.hero-visual,
.page-hero-visual {
  position: relative;
  min-height: 530px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 20px 0;
}

.hero-blob,
.hero-blob::before,
.hero-blob::after {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}
.hero-blob {
  width: 82%;
  height: 82%;
  background: linear-gradient(160deg, rgba(255,255,255,0.86), rgba(242,223,215,0.9));
  box-shadow: var(--shadow);
}
.hero-blob::before,
.hero-blob::after { content: ""; inset: auto; }
.hero-blob::before {
  width: 160px; height: 160px; right: 6%; top: -26px; background: rgba(255,255,255,0.9);
}
.hero-blob::after {
  width: 120px; height: 120px; left: 8%; bottom: -24px; background: rgba(207,169,154,0.22);
}

.portrait-card,
.page-photo,
.gallery-focus {
  position: relative;
  width: min(100%, 520px);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(51, 34, 29, 0.18);
  border: 10px solid rgba(255,255,255,0.7);
  background: white;
  z-index: 2;
}
.portrait-card { transform: rotate(-2deg); }
.portrait-card img,
.page-photo img,
.gallery-focus img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portrait-card img { aspect-ratio: 0.88; }
.page-photo img { aspect-ratio: 0.92; }
.gallery-focus img { aspect-ratio: 0.9; }

.hero-badges,
.page-badges {
  position: relative;
  z-index: 3;
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.floating-logo,
.floating-tag,
.badge-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(68, 45, 37, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.floating-logo {
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:22px;
}
.floating-logo img {
  width:44px; height:44px; object-fit:cover; border-radius:14px; padding:3px; background:white;
}
.floating-tag,
.badge-card {
  padding: 16px 18px;
  border-radius: 22px;
}
.badge-card strong,
.floating-tag strong,
.floating-logo strong,
.feature-item strong,
.review-card strong,
.contact-card strong,
.info-card strong,
.price-card strong,
.impressum-card strong,
.highlight-band strong,
.card strong {
  color: var(--text);
}

.split-box,
.about-card,
.contact-card,
.price-card,
.review-card,
.info-card,
.impressum-card,
.panel,
.gallery-card,
.before-after-card,
.gift-card { padding: 26px; }
.about-card img { width:100%; aspect-ratio: 0.95; object-fit:cover; border-radius:24px; }

.feature-list,
.list-grid,
.contact-grid,
.products-grid,
.review-grid,
.mini-grid,
.insta-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; }
.feature-item { padding: 16px 18px; }
.mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mini-card { padding: 18px; }

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

.service-card,
.price-card {
  padding: 24px;
  min-height: 250px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover,
.price-card:hover,
.insta-card:hover { transform: translateY(-4px); box-shadow: 0 28px 50px rgba(72,49,41,0.16); }

.service-top span,
.price-card .category,
.kicker {
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 16px;
}
.price {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--text);
  font-weight: 800;
  width: fit-content;
  margin-top: 18px;
}

.highlight-band,
.cta-band {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(207,169,154,0.22), rgba(255,255,255,0.78));
  border: 1px solid var(--line);
  display:flex;
  gap:20px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.gallery-grid {
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:18px;
}
.gallery-item {
  grid-column: span 4;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(68,45,37,0.06);
  background: white;
  min-height: 250px;
}
.gallery-item img {
  width:100%; height:100%; object-fit:cover; transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: "Zum Vergrößern klicken";
  position:absolute;
  left:18px;
  bottom:18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(68,45,37,0.08);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 10px 14px;
  border-radius:999px;
  backdrop-filter: blur(10px);
}
.gallery-item.tall { grid-row: span 2; min-height: 520px; }
.gallery-item.wide { grid-column: span 8; }

.check-list,
.contact-list,
.impressum-list,
.gift-list {
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:12px;
}
.check-list li,
.contact-list li,
.impressum-list li,
.gift-list li {
  display:flex;
  align-items:flex-start;
  gap:10px;
  color: var(--muted);
  line-height: 1.65;
}
.dot {
  width:10px;
  height:10px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  margin-top: 9px;
  flex: 0 0 auto;
}

.contact-main { gap: 22px; margin-top: 24px; }
.booking-panel {
  padding: 22px;
  display:grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items:center;
}
.booking-panel img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  padding: 10px;
  background: white;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.orte-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.ort-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 10px 24px rgba(72, 49, 41, 0.06);
}

.ort-pill:hover,
.ort-pill:focus-visible {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.96);
  color: var(--text);
  border-color: rgba(68, 45, 37, 0.14);
  box-shadow: 0 16px 28px rgba(72, 49, 41, 0.12);
}

.ort-pill:focus-visible {
  outline: 2px solid rgba(180, 138, 122, 0.35);
  outline-offset: 2px;
}
.orte-note {
  margin-top: 16px;
  font-size: 0.96rem;
}

.review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.review-card p:first-of-type {
  font-size: 1.04rem;
  color: var(--text);
}
.review-card footer {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 700;
}

.before-after-card {
  display: grid;
  gap: 18px;
}
.before-after {
  --position: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(68,45,37,0.08);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 2;
}
.before-after-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.before-after-overlay {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}
.before-after-overlay .before-after-image {
  width: 100%;
}
.before-after-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: rgba(255,255,255,0.95);
  transform: translateX(-1px);
}
.before-after-handle {
  position: absolute;
  left: var(--position);
  top: 50%;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(68,45,37,0.08);
  box-shadow: var(--shadow-soft);
  transform: translate(-50%, -50%);
}
.before-after-handle::before,
.before-after-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
}
.before-after-handle::before {
  left: 16px;
  transform: translateY(-50%) rotate(-135deg);
}
.before-after-handle::after {
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
}
.before-after-label {
  position: absolute;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(68,45,37,0.08);
  font-weight: 800;
  font-size: 0.92rem;
}
.before-after-label.before { left: 18px; }
.before-after-label.after { right: 18px; }
.before-after-range-wrap {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}
.before-after-range {
  width: 100%;
  accent-color: var(--accent-dark);
}

.insta-card {
  display: block;
  text-decoration: none;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.insta-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.insta-card-copy {
  padding: 18px 18px 20px;
}
.insta-card-copy strong {
  display: block;
  margin-bottom: 6px;
}

.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 0 20px;
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 34px 20px 0;
  position: relative;
  font-weight: 800;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent-dark);
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  padding: 0 0 20px;
}

.gift-card {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, rgba(207,169,154,0.18), rgba(255,255,255,0.92));
}
.gift-actions {
  display: grid;
  gap: 12px;
  min-width: min(100%, 260px);
}

.footer {
  padding: 28px 0 42px;
  color: var(--muted);
}
.footer-wrap {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding-top:20px;
  border-top: 1px solid rgba(68,45,37,0.08);
}
.footer-links {
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}
.footer a {
  text-decoration: none;
}
.footer a:hover { text-decoration: underline; text-underline-offset: 3px; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(22, 16, 15, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.lightbox.active { display:flex; }
.lightbox-inner {
  width: min(92vw, 980px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 32px;
  padding: 18px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.lightbox img {
  width:100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 24px;
  background: white;
}
.lightbox-close {
  position:absolute;
  top:10px; right:10px;
  width:48px; height:48px;
  border:none; border-radius:999px;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  font-size:1.5rem;
  cursor:pointer;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
.floating-actions .btn { box-shadow: 0 18px 30px rgba(72, 49, 41, 0.16); }

.muted-box {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  border:1px solid var(--line);
}

.impressum-card + .impressum-card { margin-top: 18px; }
.impressum-card h3 { margin-bottom: 12px; }
.small { font-size: 0.92rem; }

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .grid-2,
  .contact-main,
  .story-grid,
  .cta-grid,
  .gift-card {
    grid-template-columns: 1fr;
  }
  .hero-visual,
  .page-hero-visual { min-height: 420px; }
  .service-grid,
  .pricing-grid,
  .contact-grid,
  .products-grid,
  .review-grid,
  .list-grid,
  .insta-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-item,
  .gallery-item.wide { grid-column: span 6; }
  .gallery-item.tall { min-height: 420px; }
  .orte-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  body { padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }
  .container { width: min(calc(100% - 24px), var(--max)); }
  .nav-wrap { min-height: 72px; gap: 12px; }
  .brand { gap: 10px; max-width: calc(100% - 64px); }
  .brand img { width: 46px; height:46px; border-radius: 14px; }
  .brand-title { font-size: 1.55rem; }
  .brand-subtitle { font-size: 0.68rem; letter-spacing: 0.14em; }
  .menu-toggle { display:inline-flex; width:48px; height:48px; border-radius:14px; flex:0 0 auto; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    padding: 14px;
    background: rgba(255,255,255,0.97);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 24px 50px rgba(72, 49, 41, 0.16);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    display: none;
    max-height: min(72vh, 540px);
    overflow-y: auto;
  }
  .nav.open { display:flex; }
  .nav a { width:100%; padding:14px 16px; }
  .hero,
  .page-hero { padding: 26px 0 54px; }
  .hero-copy,
  .page-hero-copy { order: 1; }
  .hero-visual,
  .page-hero-visual { order: 2; gap:14px; padding: 0; min-height: unset; }
  .hero-blob { display:none; }
  .portrait-card,
  .page-photo,
  .gallery-focus,
  .before-after {
    transform: none;
    border-width: 7px;
    border-radius: 26px;
    width: min(100%, 430px);
  }
  .hero-badges,
  .page-badges,
  .hero-stats,
  .feature-list,
  .service-grid,
  .pricing-grid,
  .contact-grid,
  .products-grid,
  .review-grid,
  .list-grid,
  .booking-panel,
  .mini-grid,
  .insta-grid,
  .gift-card { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
  p { font-size: 0.98rem; line-height: 1.68; }
  .hero-actions { gap: 12px; margin-top: 22px; }
  .hero-actions .btn,
  .highlight-band .btn,
  .cta-band .btn,
  .booking-panel .btn,
  .gift-actions .btn { width: 100%; }
  .section { padding: 62px 0; }
  .service-card,
  .price-card,
  .contact-card,
  .panel,
  .info-card,
  .review-card,
  .impressum-card,
  .gallery-card,
  .about-card,
  .before-after-card,
  .gift-card,
  .faq-item,
  .insta-card { border-radius: 22px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    min-height: 220px;
    border-radius: 22px;
  }
  .gallery-item::after {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 8px 12px;
    font-size: 0.78rem;
    text-align: center;
  }
  .booking-panel { gap:14px; justify-items:center; text-align:center; }
  .booking-panel img { width:116px; height:116px; border-radius:20px; }
  .footer-wrap { flex-direction:column; align-items:stretch; text-align:center; }
  .lightbox { padding: 12px; }
  .lightbox-inner { width:100%; border-radius:24px; padding: 12px; }
  .lightbox img { max-height:72vh; border-radius:18px; }
  .lightbox-close { width:42px; height:42px; }
  .floating-actions {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    padding: 10px;
    border-radius: 24px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(68,45,37,0.08);
    box-shadow: 0 18px 40px rgba(72, 49, 41, 0.16);
    backdrop-filter: blur(16px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .floating-actions .btn {
    width: 100%;
    min-height: 58px;
    padding: 10px 8px;
    border-radius: 18px;
    font-size: 0.86rem;
    line-height: 1.15;
    letter-spacing: 0;
    box-shadow: none;
  }
  .floating-actions .btn .btn-label-full { display:none; }
  .floating-actions .btn .btn-label-short { display:inline; }
  .orte-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 20px), var(--max)); }
  .brand-subtitle { display:none; }
  .brand-title { font-size: 1.24rem; }
  h1 { font-size: clamp(2rem, 11.2vw, 2.8rem); }
  h2 { font-size: clamp(2rem, 10vw, 2.6rem); }
  p, .lead { font-size: 0.95rem; }
  .section { padding: 54px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall { min-height: 240px; }
  .gallery-item::after { content: "Tippen zum Vergrößern"; }
  .price { width: 100%; }
  .floating-actions { padding: 8px; gap:8px; grid-template-columns: repeat(3, minmax(0,1fr)); }
  .floating-actions .btn { min-height:54px; padding:8px 6px; font-size:0.78rem; }
  .orte-grid,
  .insta-grid { grid-template-columns: 1fr; gap: 10px; }
  .ort-pill { min-height: 42px; }
  .before-after-handle {
    width: 48px;
    height: 48px;
  }
  .gift-actions {
    min-width: 0;
  }
}

@media (max-width: 390px) {
  .floating-actions .btn { font-size: 0.72rem; }
}


.impressum-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.impressum-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); line-height: 1.7; }


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

.footer-link-button {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-link-button:hover {
  color: var(--text);
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
}

.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(24,18,17,0.56);
  backdrop-filter: blur(12px);
}

html[data-consent-required="true"],
html[data-consent-required="true"] body {
  overflow: hidden;
}

html[data-consent-required="true"] .cookie-banner {
  pointer-events: auto;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-banner-card {
  width: min(100%, 1040px);
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(68,45,37,0.10);
  border-radius: 30px;
  box-shadow: 0 28px 60px rgba(72,49,41,0.20);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.35fr auto;
  gap: 18px;
  align-items: center;
  backdrop-filter: blur(16px);
  pointer-events: auto;
  margin-bottom: 0;
}

.cookie-banner-copy {
  display: grid;
  gap: 10px;
}

.cookie-banner-copy strong {
  font-size: 1.1rem;
}

.cookie-banner-actions,
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-banner-actions .btn,
.cookie-modal-actions .btn {
  min-height: 50px;
}

.cookie-modal {
  background: rgba(24,18,17,0.56);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-modal-card {
  width: min(100%, 760px);
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(68,45,37,0.10);
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.22);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text);
}

.cookie-modal-copy {
  display: grid;
  gap: 12px;
  padding-right: 54px;
}

.cookie-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.cookie-option {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.cookie-option-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-option-title {
  font-weight: 800;
  color: var(--text);
}

.cookie-option-text {
  color: var(--muted);
  line-height: 1.65;
}

.cookie-option input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--accent-dark);
}

.cookie-status-box {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
}

.cookie-required-note {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 820px) {
  .cookie-banner {
    padding: 12px;
  }

  .cookie-banner-card {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 24px;
    margin-bottom: 0;
  }

  .cookie-banner-actions,
  .cookie-modal-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .btn,
  .cookie-modal-actions .btn {
    width: 100%;
  }

  .cookie-modal {
    padding: 12px;
  }

  .cookie-modal-card {
    padding: 22px 18px;
    border-radius: 26px;
    max-height: min(88vh, 860px);
    overflow: auto;
  }

  .cookie-modal-copy {
    padding-right: 40px;
  }
}


.map-consent-wrap {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.map-consent-box {
  position: relative;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,239,235,0.96));
  box-shadow: var(--shadow-soft);
}

.map-consent-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(246,239,235,0.98));
  z-index: 2;
}

.map-consent-placeholder[hidden] {
  display: none;
}

.map-consent-placeholder-inner {
  max-width: 620px;
  display: grid;
  gap: 14px;
}

.map-consent-placeholder .hero-actions {
  justify-content: center;
}

.map-embed {
  min-height: 360px;
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.helper-note {
  margin-top: 12px;
  font-size: 0.95rem;
}

@media (max-width: 820px) {
  .map-consent-box,
  .map-embed,
  .map-embed iframe {
    min-height: 320px;
  }

  .map-consent-placeholder {
    padding: 18px;
  }
}

/* Mobile Optimierungen */
body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

section[id] {
  scroll-margin-top: 108px;
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 84px;
  }

  section[id] {
    scroll-margin-top: 84px;
  }

  body {
    padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
  }

  .hero-grid,
  .page-hero-grid,
  .grid-2,
  .contact-main,
  .story-grid,
  .cta-grid {
    gap: 22px;
  }

  .section-intro {
    margin-bottom: 26px;
  }

  .eyebrow {
    padding: 7px 12px;
    font-size: 0.82rem;
  }

  h2 {
    margin-bottom: 14px;
  }

  .lead {
    margin-top: 14px;
    font-size: 1rem;
  }

  .hero-stats {
    gap: 12px;
    margin-top: 24px;
  }

  .portrait-card,
  .page-photo,
  .gallery-focus,
  .before-after {
    width: 100%;
    max-width: 430px;
  }

  .hero-badges,
  .page-badges {
    gap: 12px;
    width: 100%;
  }

  .floating-logo,
  .floating-tag,
  .badge-card {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .split-box,
  .about-card,
  .contact-card,
  .price-card,
  .review-card,
  .info-card,
  .impressum-card,
  .panel,
  .gallery-card,
  .before-after-card,
  .gift-card {
    padding: 20px;
  }

  .service-card,
  .price-card {
    min-height: unset;
    padding: 20px;
  }

  .stat-card,
  .feature-item,
  .mini-card {
    padding: 18px;
    border-radius: 20px;
  }

  .faq-item {
    padding: 0 16px;
    border-radius: 20px;
  }

  .faq-item summary {
    padding: 18px 28px 18px 0;
    font-size: 1rem;
  }

  .faq-item p {
    padding-bottom: 18px;
  }

  .highlight-band,
  .cta-band {
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
  }

  .booking-panel {
    gap: 14px;
  }

  .booking-panel img {
    width: 104px;
    height: 104px;
  }

  .orte-grid {
    gap: 10px;
  }

  .ort-pill {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 0.92rem;
  }

  .before-after {
    aspect-ratio: 4 / 3;
  }

  .before-after-label {
    top: 14px;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.84rem;
  }

  .before-after-label.before {
    left: 14px;
  }

  .before-after-label.after {
    right: 14px;
  }

  .before-after-handle {
    width: 48px;
    height: 48px;
  }

  .gift-card {
    gap: 18px;
  }

  .gift-actions {
    width: 100%;
    min-width: 0;
  }

  .footer {
    padding: 18px 0 22px;
  }

  .footer-links {
    gap: 10px;
  }

  .floating-actions {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    padding: 8px;
    gap: 8px;
    border-radius: 20px;
  }

  .floating-actions .btn {
    min-height: 54px;
    padding: 8px 6px;
    border-radius: 16px;
    font-size: 0.8rem;
  }

  .cookie-banner {
    align-items: flex-end;
    padding: 12px;
  }

  .cookie-banner-card {
    width: 100%;
    max-height: min(88dvh, 820px);
    overflow: auto;
    border-radius: 24px;
  }

  .cookie-banner-copy {
    gap: 8px;
  }

  .cookie-banner-copy strong {
    font-size: 1.02rem;
  }

  .cookie-modal-card {
    width: 100%;
    max-height: min(88dvh, 860px);
  }

  .cookie-option {
    padding: 16px;
    border-radius: 20px;
  }

  .cookie-option-top {
    align-items: flex-start;
  }

  .map-consent-box,
  .map-embed,
  .map-embed iframe {
    min-height: 300px;
  }

  .map-consent-placeholder {
    padding: 18px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: calc(98px + env(safe-area-inset-bottom, 0px));
  }

  .hero,
  .page-hero {
    padding: 18px 0 42px;
  }

  .section {
    padding: 50px 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .portrait-card,
  .page-photo,
  .gallery-focus,
  .before-after {
    max-width: none;
    border-width: 6px;
    border-radius: 22px;
  }

  .hero-badges,
  .page-badges {
    gap: 10px;
  }

  .split-box,
  .about-card,
  .contact-card,
  .price-card,
  .review-card,
  .info-card,
  .impressum-card,
  .panel,
  .gallery-card,
  .before-after-card,
  .gift-card,
  .service-card {
    padding: 18px;
    border-radius: 20px;
  }

  .floating-logo,
  .floating-tag,
  .badge-card {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .floating-logo img {
    width: 40px;
    height: 40px;
  }

  .booking-panel img {
    width: 96px;
    height: 96px;
  }

  .gallery-item::after {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 8px 10px;
  }

  .before-after {
    aspect-ratio: 4 / 5;
  }

  .before-after-handle {
    width: 42px;
    height: 42px;
  }

  .before-after-handle::before,
  .before-after-handle::after {
    width: 8px;
    height: 8px;
  }

  .before-after-handle::before {
    left: 12px;
  }

  .before-after-handle::after {
    right: 12px;
  }

  .floating-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 7px;
    gap: 7px;
  }

  .floating-actions .btn {
    min-height: 50px;
    padding: 6px 4px;
    font-size: 0.74rem;
  }

  .cookie-banner-card,
  .cookie-modal-card {
    border-radius: 22px;
  }

  .cookie-modal-card {
    padding: 18px 16px 20px;
  }

  .cookie-modal-copy {
    padding-right: 36px;
  }

  .cookie-modal-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .map-consent-box,
  .map-embed,
  .map-embed iframe {
    min-height: 280px;
    border-radius: 22px;
  }

  .map-consent-placeholder {
    padding: 16px;
  }
}

@media (max-width: 390px) {
  .brand-title {
    font-size: 1.16rem;
  }

  .floating-actions .btn {
    min-height: 48px;
    font-size: 0.68rem;
    letter-spacing: -0.01em;
  }

  .ort-pill {
    font-size: 0.88rem;
  }
}
