/* ==========================================================================
   Zuckerwerkstatt Hamburg - static rebuild
   Look 1:1 vom Lovable-Tailwind-Design, handgeschrieben.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Inter:wght@400;500;600;700&display=swap');

/* ----- Design tokens ---------------------------------------------------- */
:root {
  --radius: 0.75rem;
  --radius-2xl: 1.125rem;
  --radius-3xl: 1.5rem;

  --background: oklch(0.995 0.005 350);
  --surface-warm: oklch(0.985 0.008 60);
  --foreground: oklch(0.25 0.05 350);
  --card: oklch(1 0 0);
  --primary: oklch(0.65 0.22 350);
  --primary-hover: oklch(0.6 0.23 350);
  --primary-glow: oklch(0.78 0.18 350);
  --primary-foreground: oklch(0.99 0.005 350);
  --muted-foreground: oklch(0.5 0.05 350);
  --accent: oklch(0.92 0.08 350);
  --accent-foreground: oklch(0.3 0.1 350);
  --hairline: oklch(0.92 0.045 350);

  --gradient-primary: linear-gradient(135deg, oklch(0.65 0.22 350), oklch(0.78 0.18 340));
  --gradient-soft: linear-gradient(180deg, oklch(0.99 0.01 350), oklch(0.96 0.04 350));

  --shadow-xs:   0 1px 2px rgb(0 0 0 / 0.04);
  --shadow-soft: 0 1px 2px rgb(0 0 0 / 0.03), 0 6px 16px -10px oklch(0.65 0.22 350 / 0.12);
  --shadow-md:   0 2px 4px rgb(0 0 0 / 0.04), 0 12px 28px -16px oklch(0.65 0.22 350 / 0.18);
  --shadow-glow: 0 2px 8px -2px oklch(0.65 0.22 350 / 0.12), 0 16px 40px -20px oklch(0.65 0.22 350 / 0.22);

  --ease: cubic-bezier(0.32, 0.72, 0.24, 1);
  --duration: 0.2s;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

::selection {
  background: oklch(0.65 0.22 350 / 0.18);
  color: var(--foreground);
}

/* Scroll-Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-reveal-delay="1"] { transition-delay: 0.08s; }
.reveal[data-reveal-delay="2"] { transition-delay: 0.16s; }
.reveal[data-reveal-delay="3"] { transition-delay: 0.24s; }

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

/* ----- Reset & base ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; padding: 0; }
main { flex: 1; }

h1, h2, h3, .font-display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* ----- Helpers --------------------------------------------------------- */
.container { width: 100%; max-width: 76rem; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }
.container-narrow { max-width: 64rem; }
.container-tight  { max-width: 56rem; }
@media (min-width: 768px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
/* Gradient nur als seltener Akzent: H2-Subheadlines bekommen solid foreground */
h2.text-gradient,
.split__title.text-gradient {
  background: none;
  color: var(--foreground);
  -webkit-text-fill-color: var(--foreground);
}
.bg-gradient-primary { background: var(--gradient-primary); color: var(--primary-foreground); }
.bg-gradient-soft    { background: var(--gradient-soft); }
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-glow { box-shadow: var(--shadow-glow); }

.stripes { display: none; }
.dotted-divider { display: none; }

.muted { color: var(--muted-foreground); }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ----- Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.625rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9375rem;
  border: 1px solid transparent;
  transition: background-color var(--duration) var(--ease),
              color var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease);
  white-space: nowrap;
  letter-spacing: -0.005em;
  cursor: pointer;
}
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border-color: oklch(0.65 0.22 350 / 0.3);
  color: var(--primary);
}
.btn-outline:hover {
  background: oklch(0.92 0.08 350 / 0.35);
  border-color: var(--primary);
}
.btn-light {
  background: var(--background);
  color: var(--primary);
  border-color: var(--background);
  box-shadow: var(--shadow-soft);
}
.btn-light:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost-light {
  border-color: rgb(255 255 255 / 0.4);
  color: var(--primary-foreground);
  background: transparent;
}
.btn-ghost-light:hover { background: rgb(255 255 255 / 0.1); border-color: var(--primary-foreground); }
.btn-sm { padding: 0.55rem 1.125rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 1.875rem; font-size: 0.9375rem; }

@keyframes btn-pulse {
  0%, 100% { box-shadow: var(--shadow-soft); }
  50% { box-shadow: 0 0 0 8px oklch(0.65 0.22 350 / 0.15), var(--shadow-md); }
}
.btn-pulse { animation: btn-pulse 2.8s ease-in-out infinite; }
.btn-pulse:hover { animation: none; }
@media (prefers-reduced-motion: reduce) {
  .btn-pulse { animation: none; }
}

/* ----- Header ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
          backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.site-header__inner {
  max-width: 76rem;
  margin: 0 auto;
  padding: 1.125rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand__mark {
  width: 1.875rem; height: 1.875rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
}
.brand__mark svg { width: 18px; height: 18px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.375rem;
  color: var(--primary);
  background: none;
  -webkit-background-clip: initial;
          background-clip: initial;
  line-height: 1;
  letter-spacing: -0.015em;
}
.site-nav { display: none; align-items: center; gap: 2rem; }
.site-nav a {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: oklch(0.3 0.04 350 / 0.85);
  letter-spacing: 0.005em;
  padding-bottom: 0.3rem;
  transition: color .18s ease;
}
.site-nav a:hover { color: var(--primary); }
.site-nav a.is-active { color: var(--foreground); }
.site-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}
.site-nav__cta {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: oklch(0.3 0.04 350 / 0.85);
  letter-spacing: 0.005em;
  transition: color .18s ease;
}
.site-nav__cta:hover { color: var(--primary); }
.site-nav__cta svg { color: currentColor; }
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  border-radius: 0.75rem;
  color: var(--primary);
  transition: background-color .2s ease;
}
.menu-toggle:hover, .menu-toggle:focus-visible { background: oklch(0.92 0.08 350 / 0.4); outline: none; }
.menu-toggle svg { width: 24px; height: 24px; }
.mobile-nav { display: none; }
.mobile-nav.is-open {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid oklch(0.92 0.08 350 / 0.4);
  background: var(--background);
}
.mobile-nav a {
  padding: 0.85rem 0.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: oklch(0.25 0.05 350 / 0.85);
  transition: background-color .2s ease, color .2s ease;
}
.mobile-nav a:hover { background: oklch(0.92 0.08 350 / 0.5); color: var(--primary); }
.mobile-nav a.is-active { color: var(--primary); background: oklch(0.92 0.08 350 / 0.35); }
.mobile-nav .btn { justify-content: center; margin-top: 0.5rem; padding: 1rem 1.5rem; font-size: 1rem; }
body.menu-open { overflow: hidden; }

/* ----- Sticky Mobile-CTA ---------------------------------------------- */
.sticky-cta { display: none; }
@media (max-width: 767px) {
  .sticky-cta {
    position: fixed;
    bottom: 0.875rem;
    left: 0.875rem;
    right: 0.875rem;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.005em;
    box-shadow: 0 6px 24px -6px oklch(0.65 0.22 350 / 0.4), 0 2px 6px rgb(0 0 0 / 0.12);
    transform: translateY(140%);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
    -webkit-tap-highlight-color: transparent;
  }
  .sticky-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
  }
  .sticky-cta svg { color: currentColor; flex-shrink: 0; }
  body.menu-open .sticky-cta { display: none; }
}

@media (min-width: 768px) {
  .site-header__inner {
    max-width: none;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: 1.5rem;
  }
  .brand { justify-self: start; }
  .site-nav { display: flex; justify-self: center; }
  .site-nav__cta { display: inline-flex; justify-self: end; }
  .menu-toggle { display: none; }
}

/* ----- Footer ---------------------------------------------------------- */
.site-footer {
  margin-top: 0;
  background: var(--surface-warm);
  border-top: 1px solid var(--hairline);
}
.site-footer__stripes { display: none; }
.site-footer__inner {
  max-width: 76rem;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3rem;
  display: grid;
  gap: 3rem;
}
.site-footer h3 { font-size: 1.75rem; font-weight: 500; letter-spacing: -0.025em; color: var(--primary); font-family: var(--font-display); }
.site-footer h4 { font-size: 0.72rem; font-weight: 600; margin-bottom: 1.25rem; color: var(--foreground); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.16em; }
.site-footer p, .site-footer a, .site-footer li { font-size: 0.9rem; color: var(--muted-foreground); transition: color var(--duration) var(--ease); }
.site-footer .lead { margin-top: 1rem; line-height: 1.7; max-width: 22rem; }
.contact-list { display: flex; flex-direction: column; gap: 0.875rem; }
.contact-list a { display: inline-flex; align-items: center; gap: 0.65rem; }
.contact-list a svg { color: var(--primary); flex-shrink: 0; opacity: 0.7; }
.contact-list a:hover { color: var(--foreground); }
.contact-list a:hover svg { opacity: 1; }
.nav-list { display: flex; flex-direction: column; gap: 0.875rem; }
.nav-list a:hover { color: var(--primary); }
.site-footer__bottom {
  border-top: 1px solid var(--hairline);
  padding: 1.75rem 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted-foreground);
  letter-spacing: 0.005em;
}
@media (min-width: 768px) {
  .site-footer__inner { grid-template-columns: repeat(3, 1fr); }
}

/* ----- Hero (Home) ----------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--surface-warm);
}
.hero__blob { display: none; }
.hero__inner {
  position: relative;
  max-width: 76rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 6.5rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}
.hero__body { display: flex; flex-direction: column; gap: 1.75rem; }
.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.hero__location svg { flex-shrink: 0; color: var(--primary); }
.hero__title { font-size: 3.5rem; line-height: 0.98; letter-spacing: -0.035em; }
.hero__title br { line-height: 0.98; }
.hero__lead { font-size: 1.125rem; color: var(--muted-foreground); max-width: 32rem; line-height: 1.65; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; padding-top: 0.5rem; }
.hero__rating { display: flex; align-items: center; gap: 1rem; padding-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.hero__rating strong { color: var(--foreground); }
.stars { display: inline-flex; gap: 0.125rem; color: var(--primary); }
.stars svg { fill: var(--primary); color: var(--primary); }

.hero__media { position: relative; }
.hero__media .photo-slot--corner-left,
.hero__media .photo-slot--corner-right { display: none !important; }
@media (min-width: 768px) {
  .hero__inner { padding-top: 7rem; padding-bottom: 9rem; grid-template-columns: 1.15fr 0.85fr; gap: 5rem; }
  .hero__title { font-size: 6.5rem; letter-spacing: -0.04em; }
}

/* ----- Trust strip ----------------------------------------------------- */
.trust-strip { background: var(--background); }
.trust-strip__inner {
  max-width: 76rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-strip__inner > div { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.trust-strip__inner > div > svg {
  color: var(--primary);
  width: 22px;
  height: 22px;
  opacity: 0.85;
}
.trust-strip__num { font-size: 2rem; font-family: var(--font-display); font-weight: 500; color: var(--foreground); letter-spacing: -0.03em; line-height: 1; }
.trust-strip__lbl { font-size: 0.78rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
@media (min-width: 768px) {
  .trust-strip__inner { grid-template-columns: repeat(4, 1fr); padding: 4rem 2rem; }
  .trust-strip__num { font-size: 2.5rem; }
}

/* ----- Generic section ------------------------------------------------- */
.section { padding: 5rem 0; }
.section--narrow { padding: 3rem 0; }
.section__head { text-align: center; max-width: 44rem; margin: 0 auto 3.5rem; }
.section__title { font-size: 2.75rem; letter-spacing: -0.03em; line-height: 1.02; }
.section__lead { margin-top: 1.25rem; color: var(--muted-foreground); font-size: 1.0625rem; line-height: 1.65; }
@media (min-width: 768px) {
  .section { padding: 8rem 0; }
  .section--narrow { padding: 5rem 0; }
  .section__head { margin-bottom: 5rem; }
  .section__title { font-size: 4rem; letter-spacing: -0.035em; }
}

/* ----- Feature cards --------------------------------------------------- */
.feature-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 3.5rem; } }
.feature-card {
  position: relative;
  background: none;
  border: 0;
  border-top: 1px solid var(--primary);
  padding: 1.75rem 0 0;
  transition: transform var(--duration) var(--ease);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--foreground);
  transition: width 0.4s var(--ease);
}
.feature-card:hover::before { width: 2.5rem; }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 1rem; letter-spacing: -0.025em; }
.feature-card p { font-size: 0.9375rem; color: var(--muted-foreground); line-height: 1.7; }

/* ----- Split section --------------------------------------------------- */
.split { display: grid; gap: 3rem; align-items: center; padding: 4rem 0; }
@media (min-width: 768px) { .split { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.split__media { position: relative; }
.split__badge {
  position: absolute;
  bottom: -1.25rem; right: 1.25rem;
  background: var(--card);
  border-radius: 0.625rem;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.25rem;
  display: none;
  align-items: center;
  gap: 0.75rem;
}
.split__badge svg { color: var(--primary); }
.split__badge .lbl { font-size: 0.9rem; font-weight: 600; }
.split__badge .sub { font-size: 0.78rem; color: var(--muted-foreground); }
@media (min-width: 768px) { .split__badge { display: flex; } }
.split__title { font-size: 2.25rem; letter-spacing: -0.02em; }
.split__lead { margin-top: 1.25rem; color: var(--muted-foreground); line-height: 1.7; font-size: 1.0625rem; }
.bullet-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.75rem; font-size: 0.9375rem; }
.bullet-list li { display: flex; gap: 0.875rem; line-height: 1.55; }
.bullet-list li::before {
  content: "";
  margin-top: 0.625rem;
  width: 0.375rem; height: 0.375rem;
  border-radius: 9999px;
  background: var(--primary);
  flex-shrink: 0;
}
.link-arrow {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--foreground);
  border-bottom: 1px solid var(--foreground);
  padding-bottom: 0.125rem;
  transition: gap .18s ease, color .18s ease;
}
.link-arrow:hover { gap: 0.75rem; color: var(--primary); border-color: var(--primary); }
@media (min-width: 768px) { .split__title { font-size: 3.25rem; } }

/* ----- Steps / How it works ------------------------------------------- */
.steps {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: steps;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}
.steps__item {
  position: relative;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-2xl);
  padding: 2.25rem 2rem;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.steps__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.steps__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.25rem;
  opacity: 0.7;
}
.steps__item h3 {
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.steps__item p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ----- Split Price-Kicker --------------------------------------------- */
.split__price {
  margin-top: 2rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.85rem;
  padding: 0.65rem 1.25rem;
  background: oklch(0.92 0.08 350 / 0.35);
  border-radius: 9999px;
}
.split__price-amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.025em;
}
.split__price-detail {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  letter-spacing: 0.005em;
}

/* ----- Gallery teaser & full gallery ----------------------------------- */
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  display: inline-flex; align-items: center; gap: 0.375rem;
  border-bottom: 1px solid var(--foreground);
  padding-bottom: 0.125rem;
  transition: gap .18s ease, color .18s ease;
}
.gallery-link:hover { gap: 0.625rem; color: var(--primary); border-color: var(--primary); }

/* Gallery page specific spans + lightbox hover */
.gallery-grid--page { grid-auto-flow: dense; }
.gallery-grid--page img {
  cursor: zoom-in;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s var(--ease);
}
.gallery-grid--page img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery-grid--page img:active { transform: translateY(-2px); }
.gallery-grid--page .gallery-grid__hero {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  aspect-ratio: 1/1;
}
.gallery-grid--page .gallery-grid__wide {
  grid-column: span 2 / span 2;
  aspect-ratio: 2/1;
}
@media (max-width: 767px) {
  .gallery-grid--page .gallery-grid__hero {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
  }
  .gallery-grid--page .gallery-grid__wide {
    grid-column: span 2 / span 2;
    grid-row: auto;
    aspect-ratio: 2/1;
  }
}

/* ----- Reviews --------------------------------------------------------- */
.reviews { background: var(--surface-warm); }
.reviews__rating {
  margin: 2rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.875rem 1.5rem 0.875rem 1rem;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 9999px;
  box-shadow: var(--shadow-soft);
}
.reviews__rating-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.035em;
  line-height: 1;
  padding: 0 0.5rem;
}
.reviews__rating-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}
.reviews__rating-meta .stars { color: var(--primary); }
.reviews__rating-meta .stars svg { width: 14px; height: 14px; fill: var(--primary); }
.reviews__rating-caption {
  font-size: 0.82rem;
  color: var(--muted-foreground);
  letter-spacing: 0.005em;
}
.reviews__rating-caption strong { color: var(--foreground); font-weight: 600; }
.review-grid { display: grid; gap: 3.5rem; }
@media (min-width: 768px) { .review-grid { grid-template-columns: repeat(2, 1fr); gap: 5rem 4rem; } }
.review {
  position: relative;
  max-width: 36rem;
}
.review .stars { color: var(--primary); opacity: 0.6; }
.review .stars svg { width: 12px; height: 12px; }
.review__quote {
  color: var(--foreground);
  line-height: 1.55;
  margin-top: 1rem;
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.012em;
}
@media (min-width: 768px) { .review__quote { font-size: 1.5rem; line-height: 1.45; } }
.review__name  { margin-top: 1.75rem; font-size: 0.78rem; font-weight: 600; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.14em; }

/* ----- CTA panel ------------------------------------------------------- */
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  background: var(--primary);
  border: 0;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, oklch(1 0 0 / 0.18), transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 90%, oklch(1 0 0 / 0.12), transparent 60%);
  pointer-events: none;
}
.cta-panel > * { position: relative; }
@media (min-width: 768px) { .cta-panel { padding: 5.5rem 3rem; } }
.cta-panel .stripes-bg { display: none; }
.cta-panel h2 { font-size: 2.125rem; letter-spacing: -0.025em; color: var(--primary-foreground); }
.cta-panel p { margin: 1.25rem auto 0; max-width: 36rem; color: var(--primary-foreground); opacity: 0.9; font-size: 1.0625rem; line-height: 1.6; }
.cta-panel__buttons { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.cta-panel__buttons .btn-primary {
  background: var(--primary-foreground);
  color: var(--primary);
  box-shadow: 0 4px 14px rgb(0 0 0 / 0.12);
}
.cta-panel__buttons .btn-primary:hover {
  background: var(--primary-foreground);
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.18);
}
.cta-panel__buttons .btn-outline {
  background: transparent;
  border-color: rgb(255 255 255 / 0.5);
  color: var(--primary-foreground);
}
.cta-panel__buttons .btn-outline:hover {
  background: rgb(255 255 255 / 0.12);
  border-color: var(--primary-foreground);
}
@media (min-width: 768px) { .cta-panel h2 { font-size: 2.75rem; } }

/* ----- Photo (echte Bilder) ------------------------------------------- */
.photo {
  display: block;
  width: 100%;
  border-radius: var(--radius-2xl);
  object-fit: cover;
  background: var(--accent);
}
.photo--ratio-4-3 { aspect-ratio: 4/3; }
.photo--ratio-16-9 { aspect-ratio: 16/9; }
.photo--ratio-3-4 { aspect-ratio: 3/4; }
.photo--ratio-square { aspect-ratio: 1/1; }
.photo--bordered { border: 4px solid var(--background); }

/* ----- Photo slot (Platzhalter) ---------------------------------------- */
.photo-slot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 2px dashed oklch(0.65 0.22 350 / 0.3);
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.photo-slot--ratio-4-3   { aspect-ratio: 4/3; }
.photo-slot--ratio-16-9  { aspect-ratio: 16/9; }
.photo-slot--ratio-3-4   { aspect-ratio: 3/4; }
.photo-slot--ratio-square{ aspect-ratio: 1/1; }
.photo-slot__pattern { position: absolute; inset: 0; opacity: 0.06; pointer-events: none; }
.photo-slot__body { position: relative; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 1rem; color: oklch(0.65 0.22 350 / 0.7); }
.photo-slot__icon {
  width: 3rem; height: 3rem;
  border-radius: 1rem;
  background: oklch(0.65 0.22 350 / 0.1);
  display: flex; align-items: center; justify-content: center;
}
.photo-slot__label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

/* ----- Kindergeburtstag-Page ------------------------------------------ */
.kg-hero {
  background: var(--surface-warm);
  padding: 5rem 0;
  text-align: center;
}
@media (min-width: 768px) { .kg-hero { padding: 7rem 0; } }
.kg-hero h1 { font-size: 3rem; letter-spacing: -0.025em; }
@media (min-width: 768px) { .kg-hero h1 { font-size: 5rem; } }
.kg-hero__lead { margin-top: 1.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; color: var(--muted-foreground); font-size: 1.0625rem; line-height: 1.7; }
.kg-badge {
  display: inline-block;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 1.5rem;
}

.kg-stats { display: grid; gap: 1.5rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .kg-stats { grid-template-columns: repeat(3, 1fr); } }
.kg-stat {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-2xl);
  padding: 2rem 1.5rem;
  text-align: center;
}
.kg-stat svg { margin: 0 auto 1rem; color: var(--primary); }
.kg-stat__val { font-size: 1.375rem; font-family: var(--font-display); font-weight: 500; letter-spacing: -0.015em; }
.kg-stat__lbl { font-size: 0.78rem; color: var(--muted-foreground); margin-top: 0.35rem; text-transform: uppercase; letter-spacing: 0.12em; }

.kg-panels { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .kg-panels { grid-template-columns: 1fr 1fr; } }
.kg-panel {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
}
.kg-panel h2 { font-size: 1.625rem; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.check-list { display: flex; flex-direction: column; gap: 0.875rem; }
.check-list li { display: flex; gap: 0.75rem; font-size: 0.9375rem; line-height: 1.6; }
.check-list svg { color: var(--primary); flex-shrink: 0; margin-top: 0.2rem; }

.kg-pricing {
  margin-top: 5rem;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-3xl);
}
.kg-pricing__inner {
  background: var(--card);
  border-radius: var(--radius-3xl);
  padding: 2.5rem 2rem;
}
@media (min-width: 768px) { .kg-pricing__inner { padding: 4rem 3rem; } }
.kg-pricing h2 { font-size: 2.25rem; text-align: center; letter-spacing: -0.02em; }
@media (min-width: 768px) { .kg-pricing h2 { font-size: 2.75rem; } }
.kg-pricing__grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .kg-pricing__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.price-card {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-2xl);
  padding: 2.25rem 1.5rem 2rem;
  text-align: center;
  background: var(--card);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.price-card--featured {
  border-color: var(--primary);
  background: var(--card);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  padding-top: 2.75rem;
}
.price-card--featured::before {
  content: "Beliebt";
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
}
.price-card__lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-foreground); font-weight: 600; }
.price-card--featured .price-card__lbl { color: var(--primary); }
.price-card__amount { font-size: 3rem; font-family: var(--font-display); font-weight: 500; color: var(--primary); letter-spacing: -0.025em; margin-top: 0.75rem; }
.price-card--featured .price-card__amount { font-size: 3.25rem; }
.price-card__sub { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.5rem; }
.kg-pricing__note { margin-top: 1.5rem; text-align: center; font-size: 0.875rem; color: var(--muted-foreground); }
.kg-pricing__note p { margin: 0.25rem 0; }
.kg-pricing__hint {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
  text-align: center;
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.kg-pricing__hint strong {
  color: var(--foreground);
  font-weight: 600;
  font-size: 1.0625rem;
}

.kg-detail-grid { display: grid; gap: 2rem; margin-top: 4rem; }
@media (min-width: 768px) {
  .kg-detail-grid { grid-template-columns: repeat(3, 1fr); }
  .kg-detail-grid--two { grid-template-columns: repeat(2, 1fr); }
}
.kg-detail {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-2xl);
  padding: 2.25rem;
}
.kg-detail h3 { font-size: 1.375rem; margin-bottom: 0.875rem; letter-spacing: -0.015em; }
.kg-detail p { font-size: 0.9375rem; color: var(--muted-foreground); line-height: 1.65; }

/* FAQ */
.faq { margin-top: 5rem; }
@media (min-width: 768px) { .faq { margin-top: 7rem; } }
.faq__title { font-size: 2.25rem; text-align: center; margin-bottom: 3rem; letter-spacing: -0.025em; }
@media (min-width: 768px) { .faq__title { font-size: 3rem; margin-bottom: 4rem; } }
.faq__list { max-width: 48rem; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--hairline);
  padding: 1.25rem 0;
}
.faq__item:first-child { border-top: 1px solid var(--hairline); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--foreground);
  letter-spacing: -0.015em;
  padding: 0.5rem 0;
  transition: color var(--duration) var(--ease);
}
.faq__item summary:hover { color: var(--primary); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin-top: 0.875rem;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
  padding-right: 3.5rem;
}
@media (min-width: 768px) { .faq__item summary { font-size: 1.25rem; } }

.kg-outro { margin-top: 5rem; text-align: center; }
.kg-outro h2 { font-size: 2.5rem; letter-spacing: -0.02em; }
@media (min-width: 768px) { .kg-outro h2 { font-size: 3rem; } }
.kg-outro__note { margin-top: 1rem; font-size: 0.78rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.12em; }

/* ----- Kontakt-Page ---------------------------------------------------- */
.kontakt-head { text-align: center; margin-bottom: 4rem; }
.kontakt-head h1 { font-size: 3rem; letter-spacing: -0.025em; }
@media (min-width: 768px) { .kontakt-head h1 { font-size: 4.5rem; } }
.kontakt-head p { margin-top: 1.25rem; color: var(--muted-foreground); font-size: 1.0625rem; }

.kontakt-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .kontakt-grid { grid-template-columns: 1fr 1fr; } }
.kontakt-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.kontakt-row { display: flex; align-items: flex-start; gap: 1rem; }
.kontakt-row__icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.625rem;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kontakt-row__label { font-size: 0.78rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.kontakt-row__value { font-size: 1.0625rem; font-weight: 500; transition: color .18s ease; line-height: 1.45; margin-top: 0.2rem; }
.kontakt-row:hover .kontakt-row__value { color: var(--primary); }

.kontakt-map {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--hairline);
  min-height: 26rem;
}
.kontakt-map iframe { width: 100%; height: 100%; min-height: 26rem; border: 0; display: block; }

.kontakt-cta {
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-3xl);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.kontakt-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, oklch(1 0 0 / 0.18), transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 90%, oklch(1 0 0 / 0.12), transparent 60%);
  pointer-events: none;
}
.kontakt-cta > * { position: relative; }
@media (min-width: 768px) { .kontakt-cta { padding: 4rem 3rem; } }
.kontakt-cta h2 { font-size: 1.875rem; letter-spacing: -0.02em; }
@media (min-width: 768px) { .kontakt-cta h2 { font-size: 2.5rem; } }
.kontakt-cta p { margin-top: 1rem; opacity: 0.92; font-size: 1.0625rem; }
.kontakt-cta .btn { margin-top: 2rem; }

/* ----- 404 ------------------------------------------------------------- */
.center-screen {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
  background: var(--surface-warm);
}
.center-screen__inner { max-width: 32rem; }
.center-screen h1 {
  font-size: 7rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--primary);
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .center-screen h1 { font-size: 9rem; } }
.center-screen h2 { margin-top: 0.5rem; font-size: 1.5rem; font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; }
.center-screen p { margin-top: 1rem; font-size: 1rem; color: var(--muted-foreground); line-height: 1.7; }
.center-screen .btn { margin-top: 2rem; }

/* ----- Lucide icon sizing --------------------------------------------- */
.icon-sm { width: 14px; height: 14px; }
.icon    { width: 18px; height: 18px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 22px; height: 22px; }

/* ----- Galerie outro --------------------------------------------------- */
.galerie-outro { margin-top: 3rem; text-align: center; }

/* ----- Legal / Impressum / Datenschutz -------------------------------- */
.legal-page { padding: 4rem 0 5rem; }
.legal-page h1 { font-size: 2.75rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .legal-page h1 { font-size: 3.5rem; } }
.legal-page h2 {
  font-size: 1.4rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
  font-family: var(--font-display);
  font-weight: 600;
}
.legal-page p { color: var(--foreground); line-height: 1.7; margin-bottom: 1rem; }
.legal-page a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.legal-page a:hover { text-decoration: none; }
.legal-page .legal-note {
  margin-top: 3rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--primary);
  background: oklch(0.92 0.08 350 / 0.25);
  border-radius: 0 0.5rem 0.5rem 0;
  font-size: 0.95rem;
}
.site-footer__bottom a { color: var(--muted-foreground); text-decoration: underline; text-underline-offset: 2px; }
.site-footer__bottom a:hover { color: var(--primary); }

/* ----- Intro / SEO Welcome -------------------------------------------- */
.intro { padding: 5rem 0 3rem; }
@media (min-width: 768px) { .intro { padding: 7rem 0 4rem; } }
.intro h2 { font-size: 2.25rem; letter-spacing: -0.025em; line-height: 1.05; }
@media (min-width: 768px) { .intro h2 { font-size: 3rem; } }
.intro__lead { font-size: 1.0625rem; color: var(--foreground); line-height: 1.7; margin-top: 1.5rem; max-width: 54rem; }
.intro__lead + .intro__lead { color: var(--muted-foreground); }
.intro__cta { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ----- Callout (Anzahlungs-Hinweis) ----------------------------------- */
.callout {
  position: relative;
  background: linear-gradient(135deg, oklch(0.92 0.08 350 / 0.55), oklch(0.78 0.18 350 / 0.18));
  border: 2px solid var(--primary);
  border-radius: var(--radius-3xl);
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  box-shadow: var(--shadow-soft);
  color: var(--foreground);
}
.callout::before {
  content: "!";
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.callout__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.callout__body { font-size: 0.95rem; line-height: 1.55; color: var(--foreground); }
.callout__body strong { color: var(--primary); font-weight: 700; }
.callout--compact { padding: 1rem 1rem 1rem 3.75rem; }
.callout--compact::before { width: 2rem; height: 2rem; font-size: 1.125rem; top: 1rem; left: 0.875rem; }
.callout--compact .callout__title { font-size: 1rem; margin-bottom: 0.25rem; }
.callout--compact .callout__body { font-size: 0.85rem; }

.callout--inverse {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--primary-foreground);
  box-shadow: var(--shadow-glow);
}
.callout--inverse::before {
  background: var(--background);
  color: var(--primary);
}
.callout--inverse .callout__title {
  background: none;
  -webkit-text-fill-color: var(--primary-foreground);
  color: var(--primary-foreground);
}
.callout--inverse .callout__body { color: var(--primary-foreground); opacity: 0.95; }
.callout--inverse .callout__body strong { color: var(--primary-foreground); text-decoration: underline; }

/* ----- Lightbox -------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: oklch(0.12 0.02 350 / 0.94);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox__img {
  max-width: 92vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  display: block;
  box-shadow: 0 24px 64px -16px rgb(0 0 0 / 0.5);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: oklch(1 0 0 / 0.1);
  color: #fff;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0;
  transition: background 0.18s ease, transform 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: oklch(1 0 0 / 0.22); }
.lightbox__close:active,
.lightbox__nav:active { transform: scale(0.94); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__nav--prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:active { transform: translateY(-50%) scale(0.94); }
.lightbox__nav--next:active { transform: translateY(-50%) scale(0.94); }
.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: oklch(1 0 0 / 0.12);
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
}
body.lightbox-open { overflow: hidden; }
@media (max-width: 640px) {
  .lightbox__nav { width: 2.5rem; height: 2.5rem; font-size: 1.5rem; }
  .lightbox__nav--prev { left: 0.75rem; }
  .lightbox__nav--next { right: 0.75rem; }
  .lightbox__close { top: 0.75rem; right: 0.75rem; }
}

/* Anzahlungs-Badge (klein, für Hero/Pricing) */
.deposit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: oklch(0.99 0.005 350 / 0.95);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-soft);
}
.deposit-badge__dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 9999px;
  background: var(--primary);
  flex-shrink: 0;
}
