/* ==========================================================================
   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.875rem;
  --radius-2xl: 1.125rem;
  --radius-3xl: 1.5rem;

  --background: oklch(0.995 0.005 350);
  --foreground: oklch(0.25 0.05 350);
  --card: oklch(1 0 0);
  --primary: oklch(0.65 0.22 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-soft: 0 1px 2px 0 rgb(0 0 0 / 0.04), 0 8px 24px -12px oklch(0.65 0.22 350 / 0.18);
  --shadow-glow: 0 4px 12px -4px oklch(0.65 0.22 350 / 0.18), 0 24px 48px -24px oklch(0.65 0.22 350 / 0.28);

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

/* ----- 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.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
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; }

.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: none; }

/* ----- 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 .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { box-shadow: var(--shadow-glow); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: oklch(0.65 0.22 350 / 0.35);
  color: var(--primary);
}
.btn-outline:hover { background: oklch(0.92 0.08 350 / 0.4); 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); }
.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; }

/* ----- Header ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  background: oklch(0.975 0.012 75 / 0.85);
  border-bottom: 1px solid var(--hairline);
}
.site-header__inner {
  max-width: 76rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand__mark {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.625rem;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  display: flex; align-items: center; justify-content: center;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
}
.site-nav { display: none; align-items: center; gap: 2rem; }
.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: oklch(0.25 0.05 350 / 0.75);
  transition: color .18s ease;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--primary); }
.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; }

@media (min-width: 768px) {
  .site-nav { display: flex; }
  .menu-toggle { display: none; }
}

/* ----- Footer ---------------------------------------------------------- */
.site-footer {
  margin-top: 0;
  background: var(--gradient-soft);
  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.625rem; font-weight: 500; letter-spacing: -0.02em; color: var(--foreground); }
.site-footer h4 { font-size: 0.78rem; font-weight: 600; margin-bottom: 1rem; color: var(--foreground); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.12em; }
.site-footer p, .site-footer a, .site-footer li { font-size: 0.9rem; color: var(--muted-foreground); }
.site-footer .lead { margin-top: 0.875rem; line-height: 1.65; }
.contact-list { display: flex; flex-direction: column; gap: 0.625rem; }
.contact-list a { display: inline-flex; align-items: center; gap: 0.5rem; transition: color .18s ease; }
.contact-list a:hover { color: var(--foreground); }
.nav-list { display: flex; flex-direction: column; gap: 0.625rem; }
.nav-list a:hover { color: var(--foreground); }
.site-footer__bottom {
  border-top: 1px solid var(--hairline);
  padding: 1.5rem 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted-foreground);
}
@media (min-width: 768px) {
  .site-footer__inner { grid-template-columns: repeat(3, 1fr); }
}

/* ----- Hero (Home) ----------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-soft);
}
.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.25rem; line-height: 1.02; letter-spacing: -0.025em; }
.hero__title br { line-height: 1.02; }
.hero__lead { font-size: 1.0625rem; 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  { position: absolute; bottom: -2rem; left: -1.5rem; width: 10rem; transform: rotate(-6deg); display: none; }
.hero__media .photo-slot--corner-right { position: absolute; top: -1.5rem; right: -1rem; width: 9rem; transform: rotate(8deg); display: none; }

@media (min-width: 640px) {
  .hero__media .photo-slot--corner-left,
  .hero__media .photo-slot--corner-right { display: flex; }
}
@media (min-width: 768px) {
  .hero__inner { padding-top: 7rem; padding-bottom: 9rem; grid-template-columns: 1.05fr 0.95fr; gap: 4.5rem; }
  .hero__title { font-size: 5.25rem; }
}

/* ----- Trust strip ----------------------------------------------------- */
.trust-strip { border-bottom: 1px solid var(--hairline); background: var(--background); }
.trust-strip__inner {
  max-width: 76rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.trust-strip__num { font-size: 1.75rem; font-family: var(--font-display); font-weight: 500; color: var(--foreground); letter-spacing: -0.02em; }
.trust-strip__lbl { font-size: 0.78rem; color: var(--muted-foreground); margin-top: 0.5rem; }
@media (min-width: 768px) { .trust-strip__inner { grid-template-columns: repeat(4, 1fr); } }

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

/* ----- Feature cards --------------------------------------------------- */
.feature-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-2xl);
  padding: 2.25rem;
  transition: border-color .2s ease, transform .2s ease;
}
.feature-card:hover { border-color: var(--foreground); transform: translateY(-2px); }
.feature-card__icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-soft);
}
.feature-card h3 { font-size: 1.375rem; margin-bottom: 0.625rem; letter-spacing: -0.015em; }
.feature-card p { font-size: 0.9375rem; color: var(--muted-foreground); line-height: 1.65; }

/* ----- 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; } }

/* ----- 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 */
.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; }
@media (max-width: 767px) {
  .gallery-grid--page .gallery-grid__hero,
  .gallery-grid--page .gallery-grid__wide { grid-column: span 2 / span 2; grid-row: auto; }
}

/* ----- Reviews --------------------------------------------------------- */
.reviews { background: var(--gradient-soft); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.review-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--card);
  padding: 2rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-2xl);
}
.review__quote { color: var(--foreground); line-height: 1.65; margin-top: 0.875rem; font-size: 0.9375rem; }
.review__name  { margin-top: 1.25rem; font-size: 0.8rem; font-weight: 600; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.1em; }

/* ----- CTA panel ------------------------------------------------------- */
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  background: var(--gradient-soft);
  border: 1px solid var(--hairline);
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--foreground);
}
@media (min-width: 768px) { .cta-panel { padding: 5rem 3rem; } }
.cta-panel .stripes-bg { display: none; }
.cta-panel h2 { font-size: 2.125rem; letter-spacing: -0.02em; color: var(--foreground); }
.cta-panel p { margin: 1.25rem auto 0; max-width: 36rem; color: var(--muted-foreground); 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; }
@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(--gradient-soft);
  border-bottom: 1px solid var(--hairline);
  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(--gradient-soft);
  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 { border: 1px solid var(--hairline); border-radius: var(--radius-2xl); padding: 2rem 1.5rem; text-align: center; }
.price-card--featured { border-color: var(--primary); background: oklch(0.92 0.08 350 / 0.3); }
.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; background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -0.02em; margin-top: 0.75rem; }
.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; }

.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(--gradient-soft);
  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(--gradient-primary);
  color: var(--primary-foreground);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}
.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 {
  margin-top: 4rem;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-3xl);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-glow);
}
@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: 2rem 1rem;
  text-align: center;
}
.center-screen__inner { max-width: 28rem; }
.center-screen h1 { font-size: 4.5rem; }
.center-screen h2 { margin-top: 1rem; font-size: 1.25rem; font-family: var(--font-body); font-weight: 600; }
.center-screen p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.center-screen .btn { margin-top: 1.5rem; }

/* ----- 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: 6rem 0 3rem; }
.intro h2 { font-size: 2.25rem; letter-spacing: -0.02em; }
@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; }

/* 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;
}
