/* =========================================================
   EXCLUSIV INSTITUT — Dark-Luxury Edition
   Palette: Espresso + Creme + Champagner-Gold
   Fonts: Cormorant Garamond (Display) / Jost (UI & Body)
   ========================================================= */

:root {
  /* Dunkel */
  --espresso: #171009;   /* dunkelster Grund / Footer */
  --coffee:   #1F160E;   /* dunkle Sektion */
  --mocha:    #2A1F15;   /* dunkle Oberfläche / Karten */
  --mocha-2:  #35281C;

  /* Hell — leicht abgedunkelt für mehr Kontrast zum Gold-Logo */
  --ivory:    #F0E6D4;   /* Seiten-Grund hell */
  --cream:    #E8DCC6;   /* helle Sektion */
  --sand:     #DDD0B8;   /* gedämpft hell */

  /* Gold — warm & gelblich (passend zum Logo) */
  --gold:     #C9A227;   /* Primär-Gold */
  --gold-lt:  #E8C96A;   /* helles Gold / Glanz */
  --gold-dk:  #A07B1C;
  --gold-glow: rgba(201, 162, 39, 0.7);
  --gold-glow-hover: rgba(201, 162, 39, 0.85);
  --gold-gradient: linear-gradient(120deg, var(--gold-dk), var(--gold) 55%, var(--gold-lt));

  /* Text */
  --ink:        #2B2118;   /* Text auf hell */
  --ink-soft:   #6E6151;   /* Sekundär auf hell */
  --light:      #F2EADB;   /* Text auf dunkel */
  --light-soft: #B6A488;   /* Sekundär auf dunkel */

  /* Linien */
  --line:      #E4D9C4;    /* Hairline hell */
  --line-gold: rgba(198,161,91,.28);

  --f-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --f-body: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --container-wide: 1320px;
  --radius: 6px;
  --radius-sm: 4px;
  --space-section: clamp(4.5rem, 9vw, 8rem);
  --touch-min: 44px;

  --shadow-sm: 0 2px 10px rgba(23,16,9,.08);
  --shadow: 0 24px 50px -24px rgba(23,16,9,.45);
  --shadow-lg: 0 50px 90px -40px rgba(23,16,9,.6);
  --ease: cubic-bezier(.22,.61,.36,1);

  /* Feste Buttons unten rechts */
  --float-size: 52px;
  --float-icon: 22px;
  --float-gap: .6rem;
  --float-offset: 1.25rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 500; line-height: 1.08; color: var(--ink); letter-spacing: .005em; }
::selection { background: var(--gold); color: var(--espresso); }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.muted { color: var(--ink-soft); }
.ta-right { text-align: right; }

.skip-link { position: absolute; left: 1rem; top: -3rem; z-index: 200; background: var(--espresso); color: var(--gold-lt); padding: .6rem 1rem; border-radius: 4px; transition: top .2s; }
.skip-link:focus { top: 1rem; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px;
}

/* ---------- Eyebrow / Section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--f-body); font-size: .72rem; font-weight: 500;
  letter-spacing: .32em; text-transform: uppercase; color: var(--gold-dk);
}
.eyebrow--light { color: var(--gold-lt); }
.eyebrow__dot { width: 26px; height: 1px; background: var(--gold); display: inline-block; }

.section { padding-block: var(--space-section); }
.section--cream { background: var(--cream); }
.section--dark { background: var(--coffee); color: var(--light); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--light); }

.section__head { max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: 3.4rem; }
.section__head .eyebrow { margin-bottom: .8rem; }
.section__title { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 500; margin-bottom: .6rem; }
.section__sub { color: var(--ink-soft); font-size: 1.05rem; font-weight: 300; }
.section--dark .section__sub { color: var(--light-soft); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.9rem; font-family: var(--f-body); font-weight: 500;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  border-radius: 2px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn--lg { padding: 1.1rem 2.3rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--gold-gradient);
  color: var(--espresso);
  box-shadow: 0 14px 30px -14px var(--gold-glow);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -16px var(--gold-glow-hover); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--gold); color: var(--gold-dk); }
.section--dark .btn--ghost, .hero .btn--ghost { color: var(--light); border-color: rgba(226,200,140,.4); }
.section--dark .btn--ghost:hover, .hero .btn--ghost:hover { border-color: var(--gold-lt); color: var(--gold-lt); }
.btn--light { background: var(--ivory); color: var(--ink); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--whatsapp { background: #1FA855; color: #fff; box-shadow: 0 14px 30px -14px rgba(31,168,85,.7); }
.btn--whatsapp:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -16px rgba(31,168,85,.85); }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-top: calc(1.65rem + env(safe-area-inset-top, 0px));
  padding-bottom: 1.65rem;
  transition: padding .35s var(--ease), background .35s, box-shadow .35s;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav.is-scrolled {
  padding-top: calc(.85rem + env(safe-area-inset-top, 0px));
  padding-bottom: .85rem;
  background: rgba(240,230,212,.94); backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line), 0 10px 34px -22px rgba(23,16,9,.5);
}

/* Nav-Farben */
.nav__links a:not(.btn) { color: var(--ink); }
.nav.is-scrolled .nav__links a:not(.btn) { color: var(--ink); }

.brand { display: inline-flex; align-items: center; gap: .65rem; transition: color .35s; }
.brand--image { gap: 0; }

/* Logo — Premium (Glanz nur via drop-shadow auf Bildpixel, kein Rechteck-Overlay) */
.brand__logo-shell {
  display: inline-block;
  position: relative;
  line-height: 0;
  perspective: 900px;
  transform-style: preserve-3d;
  transition: transform .55s var(--ease);
  transform: perspective(900px) translateZ(20px) rotateX(8deg) rotateY(-4deg);
}
.brand__logo-shell--footer {
  transform: perspective(900px) translateZ(16px) rotateX(6deg) rotateY(-3deg);
}

.brand__img {
  display: block;
  position: relative;
  z-index: 1;
  height: clamp(68px, 9vw, 100px);
  width: auto;
  max-width: min(72vw, 400px);
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  transform: translateZ(4px);
  transition: transform .55s var(--ease);
  filter:
    drop-shadow(0 4px 2px rgba(160, 123, 28, 0.45))
    drop-shadow(0 14px 30px -14px rgba(201, 162, 39, 0.7));
  animation: logoGlowPulse 8s ease-in-out infinite;
}
.brand--image:hover .brand__img { animation-duration: 3.5s; }

@keyframes logoGlowPulse {
  0%, 72% {
    filter:
      drop-shadow(0 4px 2px rgba(160, 123, 28, 0.45))
      drop-shadow(0 14px 30px -14px rgba(201, 162, 39, 0.7));
  }
  88% {
    filter:
      drop-shadow(0 5px 3px rgba(160, 123, 28, 0.5))
      drop-shadow(0 22px 40px -16px rgba(201, 162, 39, 0.85));
  }
  100% {
    filter:
      drop-shadow(0 4px 2px rgba(160, 123, 28, 0.45))
      drop-shadow(0 14px 30px -14px rgba(201, 162, 39, 0.7));
  }
}

.brand__logo-shell--footer .brand__img {
  height: clamp(76px, 9.5vw, 108px);
}
.nav.is-scrolled .brand__img { height: clamp(58px, 7.2vw, 84px); }

@media (prefers-reduced-motion: reduce) {
  .brand__img { animation: none; }
}
.brand__mark { display: grid; place-items: center; transition: transform .4s var(--ease), color .35s; }
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.06); }
.brand__text { font-family: var(--f-display); font-size: 1.4rem; font-weight: 600; letter-spacing: .03em; display: inline-flex; flex-direction: column; line-height: 1; }
.brand__tag { font-family: var(--f-body); font-size: .5rem; font-weight: 400; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 2.1rem; }
.nav__links a:not(.btn) { font-size: .74rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; position: relative; padding: .2rem 0; white-space: nowrap; transition: color .2s; }
.nav__links a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
.nav__links a:not(.btn):hover { color: var(--gold); }
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__links a:not(.btn).is-active { color: var(--gold); }
.nav__links a:not(.btn).is-active::after { width: 100%; }
.nav.is-scrolled .nav__links a:not(.btn):hover { color: var(--gold-dk); }
.nav.is-scrolled .nav__links a:not(.btn).is-active { color: var(--gold-dk); }
.nav__cta { margin-left: .6rem; }
.nav .btn--primary { padding: .7rem 1.4rem; }

.nav__backdrop {
  position: fixed; inset: 0; z-index: 115;
  background: rgba(23, 16, 9, 0.42);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s var(--ease), visibility .35s;
}
.nav__backdrop.is-open { opacity: 1; visibility: visible; pointer-events: auto; }

.nav__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  min-width: 44px; min-height: 44px; padding: .5rem;
  z-index: 110; touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.nav__toggle span { width: 26px; height: 1.5px; background: currentColor; color: var(--light); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s, background .3s; }
.nav.is-scrolled .nav__toggle span { color: var(--ink); }
.nav__toggle.is-open span { background: var(--ink); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================
   HERO (Scroll-Video, zentriert)
   ========================================================= */
.hero {
  position: relative;
  background: radial-gradient(120% 100% at 85% 10%, #2A1D11, var(--espresso) 70%);
  color: var(--light);
  overflow: clip;
}
.hero--scrollfx .hero__track {
  position: relative;
  height: 148vh;
  min-height: 600px;
}
.hero--scrollfx .hero__sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(5.5rem, 10vh, 7.5rem);
  padding-bottom: clamp(2.5rem, 5vh, 3.5rem);
  overflow: hidden;
}
.hero__stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
}
.hero__media {
  position: relative;
  width: min(98vw, 1180px);
  margin-inline: auto;
  will-change: transform;
  transform: scale(var(--hero-media-s, 0.9));
  transform-origin: center center;
}
.hero__frame {
  margin: 0;
  width: 100%;
  transform: scale(var(--hero-frame-s, 1));
  transform-origin: center center;
  will-change: transform;
  box-shadow: var(--shadow-lg);
}
.frame--cinema { aspect-ratio: 16 / 9; border: 1px solid var(--line-gold); }
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  background: var(--mocha);
}
.hero__frame.frame--cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23,16,9,.82) 0%, rgba(23,16,9,.45) 38%, transparent 62%),
    linear-gradient(0deg, rgba(23,16,9,.7) 0%, transparent 50%);
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding: clamp(1.1rem, 3vw, 2rem);
  padding-bottom: clamp(1.1rem, 3vw, 2rem);
  pointer-events: none;
  opacity: var(--hero-overlay-o, 1);
  transform: translateY(calc(var(--hero-overlay-y, 0) * 1px));
  will-change: opacity, transform;
}
.hero__overlay .btn { pointer-events: auto; }
.hero__overlay .hero__title {
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  margin: .45rem 0 .15rem;
  color: var(--light);
  text-shadow: 0 2px 24px rgba(23,16,9,.45);
}
.hero__overlay .hero__script {
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  margin-bottom: .55rem;
  color: var(--gold-lt);
}
.hero__overlay .hero__lead {
  font-size: clamp(.84rem, 1.5vw, .95rem);
  color: rgba(242,234,219,.92);
  max-width: 38ch;
  line-height: 1.55;
  margin: 0;
}
.hero__overlay .hero__actions {
  margin: 1rem 0 0;
  gap: .65rem;
}
.hero__overlay .eyebrow--light { color: var(--gold-lt); }
.hero__trust--overlay {
  flex-direction: row;
  flex-wrap: wrap;
  gap: .85rem 1.35rem;
  border-top: 1px solid rgba(226,200,140,.28);
  padding-top: .75rem;
  margin-top: 1.15rem;
}
.hero__trust--overlay strong { font-size: 1.15rem; color: var(--gold-lt); }
.hero__trust--overlay .muted { font-size: .6rem; color: rgba(242,234,219,.78); }
.hero.hero--ready .hero__overlay > * {
  animation: heroFadeUp .9s var(--ease) both;
}
.hero.hero--ready .hero__overlay > *:nth-child(1) { animation-delay: .08s; }
.hero.hero--ready .hero__overlay > *:nth-child(2) { animation-delay: .16s; }
.hero.hero--ready .hero__overlay > *:nth-child(3) { animation-delay: .24s; }
.hero.hero--ready .hero__overlay > *:nth-child(4) { animation-delay: .32s; }
.hero.hero--ready .hero__overlay > *:nth-child(5) { animation-delay: .4s; }
.hero.hero--ready .hero__overlay > *:nth-child(6) { animation-delay: .48s; }
.hero.hero--ready .hero__overlay > *:nth-child(7) { animation-delay: .56s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.hero__hint {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  opacity: var(--hero-hint-o, 1);
  transition: opacity .25s var(--ease);
  pointer-events: none;
}
.hero__hint .hero__scroll { pointer-events: auto; position: static; transform: none; }
.hero__hint-txt {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--light-soft);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__bg .spark { position: absolute; border-radius: 50%; background: var(--gold-lt); opacity: .5; box-shadow: 0 0 12px 2px rgba(225,200,140,.6); }
.hero__bg .spark:nth-child(1) { width: 5px; height: 5px; top: 24%; left: 12%; }
.hero__bg .spark:nth-child(2) { width: 3px; height: 3px; top: 62%; left: 20%; opacity: .35; }
.hero__bg .spark:nth-child(3) { width: 6px; height: 6px; top: 40%; left: 48%; opacity: .3; }
.hero__bg .spark:nth-child(4) { width: 4px; height: 4px; top: 74%; left: 42%; opacity: .4; }
.hero__bg::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 80% 30%, rgba(198,161,91,.14), transparent 70%); }

.hero__title { font-size: clamp(2.9rem, 6.8vw, 5.2rem); font-weight: 500; margin: 1.2rem 0 .4rem; color: var(--light); letter-spacing: .01em; }
.hero__script { display: block; font-family: var(--f-display); font-style: italic; font-weight: 500; font-size: clamp(1.6rem, 3.4vw, 2.6rem); color: var(--gold-lt); margin-bottom: 1.5rem; }
.hero__lead { font-size: 1.08rem; color: var(--light-soft); max-width: 40ch; font-weight: 300; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2.2rem 0 2.6rem; }

.hero__trust { display: flex; flex-wrap: wrap; gap: 2.4rem; padding-top: 1.8rem; border-top: 1px solid var(--line-gold); }
.hero__trust li { display: flex; flex-direction: column; gap: .1rem; }
.hero__trust strong { font-size: 1.7rem; font-family: var(--f-display); font-weight: 600; color: var(--gold-lt); line-height: 1.1; }
.hero__trust .muted { font-size: .74rem; color: var(--light-soft); letter-spacing: .08em; text-transform: uppercase; }
.stars { color: var(--gold); letter-spacing: 2px; }
.stars--gold { color: var(--gold); font-size: 1.3rem; }

.frame { position: relative; overflow: hidden; border-radius: var(--radius); }
.frame--portrait { aspect-ratio: 4 / 5; border: 1px solid var(--line-gold); }
.frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); pointer-events: none; }
.frame__img { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--mocha); }
.frame__img--photo { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.frame__img--hero { background-position: center 30%; }
.frame--portrait .frame__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, transparent 55%, rgba(23,16,9,.5)); }

.frame__badge {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(23,16,9,.62); backdrop-filter: blur(8px); border: 1px solid var(--line-gold);
  border-radius: 3px; padding: .75rem 1rem;
  opacity: var(--hero-badge-o, 1);
}
.frame__badge-k { font-family: var(--f-display); font-size: 1.15rem; font-weight: 600; color: var(--gold-lt); }
.frame__badge-v { font-size: .74rem; color: var(--light-soft); }

.hero__pill { position: absolute; background: rgba(251,248,241,.96); border-radius: 2px; padding: .6rem 1rem; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; color: var(--ink); box-shadow: var(--shadow); display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap; }
.hero__pill--1 { top: 7%; left: -7%; }
.hero__pill--2 { bottom: 12%; right: -6%; color: var(--gold-dk); }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--green { background: #37c46b; box-shadow: 0 0 0 4px rgba(55,196,107,.2); }

.hero__scroll { width: 24px; height: 40px; border: 1px solid var(--line-gold); border-radius: 999px; display: grid; place-items: start center; padding-top: 7px; }
.hero__scroll span { width: 3px; height: 8px; border-radius: 4px; background: var(--gold-lt); animation: scrolldot 1.7s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(10px); } }

/* =========================================================
   USP
   ========================================================= */
.usp { background: var(--ivory); padding-block: clamp(2.8rem, 5vw, 4rem); border-bottom: 1px solid var(--line); }
.usp__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.usp__item { text-align: center; padding: .5rem; position: relative; }
.usp__item:not(:last-child)::after { content: ""; position: absolute; right: -1rem; top: 10%; height: 80%; width: 1px; background: var(--line); }
.usp__icon { width: 34px; height: 34px; color: var(--gold-dk); margin: 0 auto .9rem; }
.usp__item h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: .3rem; }
.usp__item p { font-size: .86rem; color: var(--ink-soft); }

/* =========================================================
   CARDS (Leistungen)
   ========================================================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card { position: relative; display: flex; flex-direction: column; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--gold); }
.card--featured { border-color: var(--gold); }
.card__photo { position: relative; aspect-ratio: 16 / 10; background-size: cover; background-position: center; background-color: var(--mocha); background-repeat: no-repeat; }
.card__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(23,16,9,.35)); transition: opacity .4s; }
.card:hover .card__photo { }
.card__photo img, .card__photo > span { }
.card__flag { position: absolute; top: 1rem; right: 1rem; z-index: 2; background: linear-gradient(120deg, var(--gold-dk), var(--gold-lt)); color: var(--espresso); font-family: var(--f-body); font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 2px; }
.card__body { flex: 1; display: flex; flex-direction: column; padding: 1.6rem 1.7rem 1.7rem; }
.card__title { font-size: 1.6rem; font-weight: 600; margin-bottom: .4rem; }
.card__desc { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1.3rem; }
.card__meta { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.card__pricing {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.card__pricing-main { display: flex; flex-wrap: wrap; gap: 1rem 1.35rem; }
.card__price-item { display: flex; flex-direction: column; gap: .1rem; }
.card__price-k {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.price { font-family: var(--f-display); font-size: 1.55rem; font-weight: 600; color: var(--ink); line-height: 1; }
.price--refill { font-size: 1.25rem; color: var(--gold-dk); }
.price small { font-size: .7rem; font-family: var(--f-body); color: var(--ink-soft); letter-spacing: .1em; text-transform: uppercase; }
.dur { font-size: .74rem; color: var(--ink-soft); letter-spacing: .08em; text-transform: uppercase; flex-shrink: 0; padding-bottom: .15rem; }
.card__cta { display: inline-flex; align-items: center; gap: .5rem; margin-top: auto; font-family: var(--f-body); font-weight: 500; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dk); }
.card__cta span { transition: transform .25s var(--ease); }
.card__cta:hover span { transform: translateX(5px); }

/* =========================================================
   LEISTUNGEN & PREISE
   ========================================================= */
.services__grid { align-items: stretch; }
.services__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: clamp(2rem, 4vw, 2.8rem);
  align-items: stretch;
}
.services__note {
  display: flex;
  align-items: center;
  padding: 1.35rem 1.5rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .84rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.services__gift { height: 100%; }

.giftcard { position: relative; border-radius: var(--radius); overflow: hidden; color: var(--light); background: radial-gradient(120% 120% at 100% 0%, var(--mocha-2), var(--espresso) 75%); border: 1px solid var(--line-gold); box-shadow: var(--shadow); }
.giftcard::after { content: "✦"; position: absolute; right: .3rem; bottom: -1.8rem; font-size: 9rem; color: rgba(198,161,91,.1); }
.giftcard__inner { padding: 2.2rem 2rem; position: relative; z-index: 1; }
.giftcard h3 { color: var(--gold-lt); font-size: 1.7rem; font-weight: 600; margin: .7rem 0 .7rem; }
.giftcard p { font-size: .9rem; color: var(--light-soft); margin-bottom: 1.5rem; }

/* =========================================================
   GALERIE (auf dunkel)
   ========================================================= */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 1rem; }
.gallery__item:nth-child(7) { grid-column: span 2; }
.gallery__item { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; border: 1px solid var(--line-gold); outline: none; }
.gallery__item:focus-visible { box-shadow: 0 0 0 2px var(--gold); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item .g__img { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--mocha); background-repeat: no-repeat; transition: transform .7s var(--ease); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(23,16,9,.7)); opacity: .5; transition: opacity .4s; }
.gallery__item:hover .g__img { transform: scale(1.08); }
.gallery__item:hover::after { opacity: .85; }
.gallery__tag { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; color: var(--gold-lt); font-size: .68rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; transform: translateY(6px); opacity: 0; transition: opacity .4s, transform .4s; }
.gallery__item:hover .gallery__tag { opacity: 1; transform: translateY(0); }
.gallery__lead { max-width: 52ch; margin: -1.8rem auto 2rem; text-align: center; }
.gallery__lead p { color: var(--light-soft); font-size: .95rem; }
.gallery__cta { display: flex; justify-content: center; margin-top: 2.2rem; }

/* =========================================================
   ÜBER MICH
   ========================================================= */
.about { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.frame--about { aspect-ratio: 4 / 4.6; border: 1px solid var(--line); }
.about__stat { position: absolute; right: -1.3rem; bottom: -1.3rem; background: var(--espresso); color: var(--light); border: 1px solid var(--line-gold); border-radius: var(--radius); padding: 1.2rem 1.5rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: .9rem; }
.about__stat strong { font-family: var(--f-display); font-size: 2.8rem; font-weight: 600; color: var(--gold-lt); line-height: 1; }
.about__stat span { font-size: .74rem; color: var(--light-soft); line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; }
.about__copy .eyebrow { margin-bottom: .8rem; }
.about__copy .section__title { text-align: left; margin: 0 0 1.3rem; }
.about__copy p { color: var(--ink-soft); margin-bottom: 1rem; }
.about__copy p strong { color: var(--ink); font-weight: 500; }
.about__list { margin: 1.5rem 0 2rem; display: grid; gap: .8rem; }
.about__list li { display: flex; align-items: flex-start; gap: .8rem; font-size: .95rem; }
.about__list span { color: var(--gold-dk); font-weight: 600; }
.about__sign { font-family: var(--f-display); font-style: italic; font-size: 1.9rem; color: var(--gold-dk); margin-top: .4rem; line-height: 1; }
.about__signrole { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin: .3rem 0 1.6rem; }
.about__studio {
  position: absolute;
  left: -1.2rem;
  bottom: 3.8rem;
  width: 42%;
  max-width: 210px;
  z-index: 2;
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow);
}
.frame--studio { aspect-ratio: 4 / 3; }
.about__studio-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: .45rem .65rem;
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: rgba(23, 16, 9, .78);
}

/* =========================================================
   ABLAUF / STEPS
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.step { position: relative; padding: 2rem 1.5rem; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.step__num { font-family: var(--f-display); font-size: 2.8rem; font-weight: 500; color: var(--gold); display: block; margin-bottom: .5rem; line-height: 1; }
.step h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: .4rem; }
.step p { font-size: .88rem; color: var(--ink-soft); }
.step:not(:last-child)::after { content: ""; position: absolute; top: 3.2rem; right: -1rem; width: 1.4rem; height: 1px; background: var(--gold); z-index: 1; }

/* =========================================================
   GOOGLE BEWERTUNGEN
   ========================================================= */
.google-reviews { max-width: 640px; margin-inline: auto; }
.google-reviews__card {
  background: var(--mocha);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
}
.google-reviews__head {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-bottom: 1.2rem;
}
.google-reviews__icon { display: grid; place-items: center; flex-shrink: 0; }
.google-reviews__kicker {
  font-family: var(--f-display); font-size: 1.35rem; font-weight: 600;
  color: var(--gold-lt); line-height: 1.2;
}
.google-reviews__meta { font-size: .82rem; color: var(--light-soft); margin-top: .2rem; }
.google-reviews__text { color: var(--light-soft); font-size: .98rem; line-height: 1.7; margin-bottom: 1.6rem; }
.google-reviews__actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }
.google-reviews__hint {
  margin-top: 1.2rem; font-size: .74rem; color: rgba(182, 164, 136, .85); line-height: 1.55;
}

.reviews__layout { display: grid; gap: clamp(2rem, 4vw, 2.8rem); }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  padding: .45rem 1rem;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: rgba(42, 31, 21, .55);
}
.rating-badge--light { background: rgba(42, 31, 21, .72); }
.rating-badge--inline {
  display: inline-flex;
  margin-bottom: 0;
  padding: .15rem .55rem;
  vertical-align: middle;
  font-size: .82rem;
}
.rating-badge__stars { color: var(--gold); letter-spacing: .08em; font-size: .9rem; line-height: 1; }
.rating-badge__score { font-family: var(--f-display); font-size: 1.15rem; font-weight: 600; color: var(--gold-lt); line-height: 1; }
.rating-badge__label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--light-soft); }
.rating-badge--inline .rating-badge__stars { font-size: .72rem; }
.rating-badge--inline .rating-badge__score { font-size: .95rem; }

/* Kundenstimmen (Google) */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.quote { background: var(--mocha); border: 1px solid var(--line-gold); border-radius: var(--radius); padding: 2rem 1.9rem; transition: transform .4s var(--ease), border-color .4s; }
.quote--wide { grid-column: 1 / -1; }
.quote:hover { transform: translateY(-6px); border-color: var(--gold); }
.quote__stars { color: var(--gold); font-size: .95rem; letter-spacing: .12em; margin-bottom: 1rem; line-height: 1; }
.quote p:not(.quote__stars) { font-size: 1.02rem; color: var(--light); line-height: 1.7; margin-bottom: 1.5rem; font-weight: 300; font-style: italic; font-family: var(--f-display); }
.quote footer { display: flex; align-items: center; gap: .9rem; }
.quote__initial {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-lt);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--line-gold);
}
.quote footer strong { display: block; color: var(--gold-lt); font-family: var(--f-display); font-size: 1.15rem; font-weight: 600; }
.quote footer span span { font-size: .74rem; color: var(--light-soft); letter-spacing: .04em; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 800px; }
.faq__list { display: grid; gap: .8rem; }
.faq__item { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s; }
.faq__item[open] { border-color: var(--gold); }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.3rem 1.5rem; font-family: var(--f-display); font-weight: 600; font-size: 1.2rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: ""; width: 11px; height: 11px; flex-shrink: 0; border-right: 1.5px solid var(--gold-dk); border-bottom: 1.5px solid var(--gold-dk); transform: rotate(45deg); transition: transform .3s var(--ease); margin-top: -3px; }
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: 3px; }
.faq__body { padding: 0 1.5rem 1.4rem; }
.faq__body p { color: var(--ink-soft); font-size: .95rem; }

/* =========================================================
   CTA-BAND (dunkel)
   ========================================================= */
/* =========================================================
   TERMIN-FLOW (flexibel, ohne Online-Kalender)
   ========================================================= */
.termin-flow {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--cream);
  border-block: 1px solid var(--line);
}
.termin-flow__head { max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: 2.8rem; }
.termin-flow__head .eyebrow { margin-bottom: .8rem; }
.termin-flow__head .section__title { margin-bottom: .6rem; }
.termin-flow__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 960px;
  margin-inline: auto;
}
.termin-flow__step {
  position: relative;
  padding: 2rem 1.6rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.termin-flow__step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}
.termin-flow__num {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: .55rem;
}
.termin-flow__step h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: .45rem; }
.termin-flow__step p { font-size: .88rem; color: var(--ink-soft); line-height: 1.65; }
.termin-flow__step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 2.4rem;
  right: -.95rem;
  color: var(--gold-dk);
  font-size: 1.1rem;
  z-index: 1;
}

.cta { position: relative; background: radial-gradient(110% 130% at 15% 20%, #2A1D11, var(--espresso) 70%); color: var(--light); text-align: center; padding-block: clamp(4rem, 8vw, 6rem); overflow: hidden; }
.cta::before, .cta::after { content: "✦"; position: absolute; color: rgba(198,161,91,.14); font-size: 7rem; }
.cta::before { top: 10%; left: 8%; }
.cta::after { bottom: 6%; right: 10%; }
.cta__inner { position: relative; z-index: 1; max-width: 680px; margin-inline: auto; }
.cta h2 { color: var(--light); font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 500; margin: 1rem 0 .6rem; }
.cta p { color: var(--light-soft); margin-bottom: 2rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact { display: flex; flex-direction: column; gap: clamp(2rem, 4vw, 3rem); }
.contact__intro { max-width: 62ch; }
.contact__intro .eyebrow { margin-bottom: .8rem; }
.contact__intro .section__title { text-align: left; }
.contact__intro > p { color: var(--ink-soft); margin: 1rem 0 1.6rem; }
.contact__flex {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
}
.contact__flex svg { flex-shrink: 0; color: var(--gold-dk); margin-top: .1rem; }
.contact__flex p { font-size: .9rem; color: var(--ink-soft); margin: 0; line-height: 1.6; }
.contact__flex strong { color: var(--ink); font-weight: 500; }
.contact__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.contact__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
}
.contact__location { min-height: 100%; }
.contact__map {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: clamp(420px, 52vh, 560px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--ivory);
}
.contact__map-consent {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  text-align: center;
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(228,217,196,.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(228,217,196,.55) 1px, transparent 1px);
  background-size: 28px 28px;
}
.contact__map-consent::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(201,162,39,.16), transparent 52%),
    linear-gradient(180deg, transparent 35%, rgba(240,230,212,.92) 78%);
  pointer-events: none;
}
.contact__map-preview {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding-bottom: 9rem;
  pointer-events: none;
}
.contact__map-pin {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  color: var(--gold-dk);
  background: rgba(240,230,212,.92);
  border: 1px solid var(--line-gold);
  box-shadow: 0 14px 34px -18px rgba(23,16,9,.45);
  animation: map-pin-float 3.6s ease-in-out infinite;
}
@keyframes map-pin-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.contact__map-card,
.contact__map-actions,
.contact__map-note { position: relative; z-index: 1; }
.contact__map-card {
  width: min(100%, 22rem);
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(240,230,212,.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}
.contact__map-kicker {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dk);
  font-weight: 500;
  margin-bottom: .45rem;
}
.contact__map-place {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: .35rem;
}
.contact__map-addr { color: var(--ink-soft); font-size: .95rem; }
.contact__map-hint { margin-top: .55rem; font-size: .82rem; color: var(--ink-soft); }
.contact__map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  width: min(100%, 22rem);
}
.contact__map-note {
  max-width: 26rem;
  font-size: .78rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.contact__map.is-loaded .contact__map-consent { display: none; }
.contact__map-frame {
  display: none;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  animation: map-fade-in .45s var(--ease) both;
}
.contact__map.is-loaded .contact__map-frame { display: flex; }
@keyframes map-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.contact__map-frame iframe {
  display: block;
  flex: 1;
  width: 100%;
  min-height: 0;
  border: 0;
}
.contact__map-link {
  display: block;
  padding: .75rem 1rem;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--gold-dk);
  border-top: 1px solid var(--line);
  background: var(--ivory);
  transition: color .2s, background .2s;
}
.contact__map-link:hover { color: var(--ink); background: rgba(255,255,255,.45); }

.contact__form { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.contact__form-title { font-size: 1.7rem; font-weight: 600; margin-bottom: 1.5rem; }
.field { margin-bottom: 1.15rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--ink); margin-bottom: .45rem; }
.req { color: var(--gold-dk); }
.field input, .field select, .field textarea { width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); font: inherit; font-size: .95rem; font-weight: 300; color: var(--ink); background: var(--cream); transition: border-color .2s, box-shadow .2s, background .2s; }
.field input::placeholder, .field textarea::placeholder { color: #b3a692; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: var(--ivory); box-shadow: 0 0 0 3px rgba(198,161,91,.15); outline: none; }
.field textarea { resize: vertical; min-height: 92px; }
.field__error { display: none; color: #b4442f; font-size: .8rem; margin-top: .35rem; }
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: #b4442f; background: #fbf3ef; }
.field.is-invalid .field__error { display: block; }
.field--check { margin-bottom: 1.4rem; }
.field--check .checkbox { margin-bottom: 0; }
.field--check.is-invalid .checkbox { color: #9a3b2a; }
.form__error {
  display: none;
  background: #fbf3ef;
  border: 1px solid #e8c4bc;
  color: #9a3b2a;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.form__error.is-visible { display: block; }

.checkbox { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; color: var(--ink-soft); margin-bottom: 1.4rem; cursor: pointer; }
.checkbox input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--gold-dk); flex-shrink: 0; }
.link { color: var(--gold-dk); text-decoration: underline; text-underline-offset: 2px; }

.form__success { margin-top: 1rem; background: #eef6ec; color: #37692f; border: 1px solid #cfe4c6; border-radius: var(--radius-sm); padding: .95rem 1rem; font-size: .9rem; }
.form__hint { margin-top: 1rem; font-size: .78rem; color: var(--ink-soft); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--espresso); color: var(--light-soft); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 2.4rem; padding-bottom: 2.8rem; }
.brand--footer { color: var(--light); }
.brand--footer .brand__mark { color: var(--gold-lt); }
.footer__brand p { margin: 1.1rem 0 1.4rem; font-size: .9rem; color: var(--light-soft); max-width: 32ch; font-weight: 300; }
.footer__social { display: flex; gap: .7rem; }
.footer__social a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-gold); color: var(--gold-lt); transition: background .25s, transform .25s, color .25s; }
.footer__social a:hover { background: var(--gold); color: var(--espresso); transform: translateY(-3px); }
.footer__col h4 { color: var(--gold-lt); font-family: var(--f-body); font-size: .7rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 500; margin-bottom: 1.1rem; }
.footer__col a, .footer__col span { display: block; font-size: .9rem; color: var(--light-soft); margin-bottom: .65rem; transition: color .2s; font-weight: 300; }
.footer__name {
  font-family: var(--f-display);
  font-size: 1.15rem !important;
  color: var(--gold-lt) !important;
  font-weight: 500;
  margin-bottom: .75rem !important;
}
.footer__col a:hover { color: var(--gold-lt); }
.footer__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.5rem; border-top: 1px solid var(--line-gold); font-size: .78rem; color: #8a795f; }
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a:hover { color: var(--gold-lt); }

/* Schnellkontakt: Nach oben · Instagram · Facebook · WhatsApp · Route */
.social-floats {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: calc(var(--float-offset) + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: var(--float-gap);
}
.social-float {
  width: var(--float-size);
  height: var(--float-size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(23, 16, 9, 0.35);
  transition: transform .3s var(--ease), box-shadow .3s, background .3s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.social-float__icon {
  width: var(--float-icon);
  height: var(--float-icon);
  display: block;
  flex-shrink: 0;
}
.social-float:hover { transform: translateY(-3px) scale(1.05); }
.social-float--wa {
  background: #1FA855;
  box-shadow: 0 14px 30px -10px rgba(31, 168, 85, 0.75);
}
.social-float--wa:hover { box-shadow: 0 20px 36px -12px rgba(31, 168, 85, 0.85); }
.social-float--ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 14px 30px -10px rgba(188, 24, 136, 0.45);
}
.social-float--ig:hover { box-shadow: 0 20px 36px -12px rgba(188, 24, 136, 0.55); }
.social-float--fb {
  background: #1877F2;
  box-shadow: 0 14px 30px -10px rgba(24, 119, 242, 0.55);
}
.social-float--fb:hover { box-shadow: 0 20px 36px -12px rgba(24, 119, 242, 0.7); }

.social-float--route {
  background: var(--coffee);
  color: var(--gold-lt);
  border: 1px solid rgba(198, 161, 91, 0.42);
  box-shadow: 0 14px 30px -12px rgba(23, 16, 9, 0.45);
}
.social-float--route:hover {
  background: var(--mocha);
  box-shadow: 0 20px 36px -12px rgba(201, 162, 39, 0.42);
}

.social-float--top {
  display: none;
  background: var(--gold);
  color: var(--espresso);
  box-shadow: 0 14px 30px -14px rgba(201, 162, 39, 0.7);
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}
.social-float--top.is-visible { display: grid; }
.social-float--top:hover {
  background: var(--gold-lt);
  box-shadow: 0 20px 36px -12px rgba(201, 162, 39, 0.85);
}

/* Galerie-Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(23,16,9,.92);
  display: grid; place-items: center; padding: 2rem; backdrop-filter: blur(6px);
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: min(92vw, 1100px); max-height: 78vh; object-fit: contain;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-gold);
}
.lightbox__cap {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  color: var(--gold-lt); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
}
.lightbox__close {
  position: absolute; top: 1.2rem; right: 1.4rem; font-size: 2.2rem; line-height: 1;
  color: var(--light); width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; transition: background .2s, color .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,.1); color: var(--gold-lt); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  background: rgba(23, 16, 9, .55);
  color: var(--gold-lt);
  font-size: 1.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background .2s, color .2s, transform .2s;
}
.lightbox__nav:hover { background: rgba(201, 162, 39, .22); color: var(--light); }
.lightbox__nav--prev { left: max(1rem, env(safe-area-inset-left, 0px)); }
.lightbox__nav--next { right: max(1rem, env(safe-area-inset-right, 0px)); }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-reveal-delay="1"] { transition-delay: .09s; }
.reveal[data-reveal-delay="2"] { transition-delay: .18s; }
.reveal[data-reveal-delay="3"] { transition-delay: .27s; }
.reveal[data-reveal-delay="4"] { transition-delay: .36s; }

/* =========================================================
   SCROLL-VIDEO (Einblicke)
   ========================================================= */
.videoscroll { background: var(--espresso); }
.videoscroll__track { position: relative; height: 180vh; }
.videoscroll__sticky { position: sticky; top: 0; height: 100vh; display: grid; place-items: center; overflow: hidden; }
.videoscroll__frame {
  position: relative; width: min(92vw, 1120px); aspect-ratio: 16 / 9;
  border-radius: 8px; overflow: hidden; border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-lg);
  transform: scale(var(--vs, .32)); transform-origin: center center; will-change: transform;
}
.videoscroll__video { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--mocha); }
.videoscroll__overlay {
  position: absolute; inset: 0; display: grid; place-content: center; align-items: center; gap: .35rem;
  padding: 1rem; text-align: center; color: #fff;
  background: linear-gradient(180deg, rgba(23,16,9,.22), rgba(23,16,9,.55));
}
.videoscroll__title { color: #fff; font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 500; }
.videoscroll__sub { color: rgba(255,255,255,.85); font-size: 1.05rem; }

/* =========================================================
   HANDCRAFTED MICRO-INTERACTIONS — dezente "teure" Details
   ========================================================= */

/* Signatur: feine Gold-Linie zeichnet sich unter zentrierte Section-Titel */
.section__head .section__title { position: relative; display: inline-block; padding-bottom: .55rem; }
.section__head .section__title::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 56px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%) scaleX(0); transition: transform 1s var(--ease) .2s;
}
.section__head.is-in .section__title::after { transform: translateX(-50%) scaleX(1); }

/* Primär-Button: edler Gold-Schimmer wandert bei Hover durch */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -75%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-18deg); transition: left .65s var(--ease); pointer-events: none;
}
.btn--primary:hover::after { left: 135%; }

/* Text-Links: Gold-Unterstrich zeichnet sich von links */
.footer__col a { position: relative; display: block; width: fit-content; }
.footer__legal a { position: relative; display: inline-block; }
.footer__col a::after, .footer__legal a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.footer__col a:hover::after, .footer__legal a:hover::after { transform: scaleX(1); transform-origin: left; }

/* Leistungskarten: Foto zoomt sanft, Gold-Linie zieht unter dem Foto ein */
.card__photo { transition: transform .7s var(--ease); }
.card:hover .card__photo { transform: scale(1.05); }
.card__body { position: relative; }
.card__body::before {
  content: ""; position: absolute; top: 0; left: 1.7rem; right: 1.7rem; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease);
}
.card:hover .card__body::before { transform: scaleX(1); }

/* Galerie: feiner Gold-Rahmen zeichnet sich ein */
.gallery__item::before {
  content: ""; position: absolute; inset: 9px; z-index: 2; pointer-events: none;
  border: 1px solid var(--gold-lt); opacity: 0; transform: scale(1.04);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.gallery__item:hover::before { opacity: .85; transform: scale(1); }

/* FAQ: Gold-Akzentbalken wächst beim Öffnen, Summary reagiert */
.faq__item { position: relative; }
.faq__item::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-lt));
  transform: scaleY(0); transform-origin: top; transition: transform .45s var(--ease);
}
.faq__item[open]::before { transform: scaleY(1); }
.faq__item summary { transition: color .25s; }
.faq__item:hover summary { color: var(--gold-dk); }

/* Ablauf: Gold-Linie oben zieht ein, Nummer hebt sich */
.step::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.step:hover::before { transform: scaleX(1); }
.step__num { display: inline-block; transition: transform .4s var(--ease), color .3s; }
.step:hover .step__num { transform: translateY(-3px); color: var(--gold-dk); }

/* Bewertungen: Anführungszeichen reagiert lebendig */
.quote__mark { display: inline-block; transition: transform .5s var(--ease); }
.quote:hover .quote__mark { transform: translateY(-3px) scale(1.12); }

/* Über-uns-Bild: sanfter Zoom bei Hover */
.frame--about .frame__img { transition: transform .8s var(--ease); }
.about__media:hover .frame--about .frame__img { transform: scale(1.04); }

/* USP-Icons: lebendiger, präziser Hover */
.usp__item { transition: transform .4s var(--ease); }
.usp__item:hover { transform: translateY(-4px); }
.usp__icon { transition: transform .5s var(--ease); }
.usp__item:hover .usp__icon { transform: scale(1.12) rotate(-4deg); }

/* =========================================================
   HINTERGRUND-EFFEKTE (Aurora · Partikel · Körnung)
   ========================================================= */
.hero__aurora {
  position: absolute; inset: -25%; z-index: 0; pointer-events: none; opacity: .55;
  background:
    radial-gradient(35% 45% at 30% 38%, rgba(225,200,140,.22), transparent 70%),
    radial-gradient(30% 42% at 72% 62%, rgba(198,161,91,.18), transparent 70%);
  filter: blur(34px); animation: auroraDrift 22s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  0%   { transform: translate(-3%, -2%) scale(1); }
  50%  { transform: translate(4%, 3%) scale(1.12); }
  100% { transform: translate(-2%, 5%) scale(1.06); }
}
.hero__particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; background: var(--gold-lt); box-shadow: 0 0 8px 1px rgba(225,200,140,.55); }

/* Intensitätsstufen */
.fx-off .hero__aurora, .fx-off .hero__particles, .fx-off .spark { display: none; }
.fx-more .hero__aurora { opacity: .88; }
.fx-more .particle { opacity: .7 !important; box-shadow: 0 0 12px 2px rgba(225,200,140,.65); }
.fx-more .spark { opacity: .65; }
.motion-calm .hero__aurora { animation-duration: 34s; }
.motion-lively .hero__aurora { animation-duration: 14s; }

/* Sektions-Glow & Karten-Effekte */
.services, #ueber-mich, #ablauf { position: relative; overflow: hidden; }
.services::before,
#ueber-mich::after,
#ablauf::before {
  content: "";
  position: absolute;
  width: min(42vw, 380px);
  height: min(42vw, 380px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.services::before {
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(201,162,39,.14), transparent 68%);
}
#ueber-mich::after {
  bottom: -18%;
  left: -10%;
  background: radial-gradient(circle, rgba(201,162,39,.1), transparent 70%);
}
#ablauf::before {
  top: 20%;
  right: -12%;
  background: radial-gradient(circle, rgba(198,161,91,.09), transparent 72%);
}
.services > .container, #ueber-mich .about, #ablauf > .container { position: relative; z-index: 1; }

.card--featured {
  box-shadow: 0 0 0 1px rgba(201, 162, 39, .18), var(--shadow);
}
.card--featured:hover {
  box-shadow: 0 0 28px 2px rgba(201, 162, 39, .22), var(--shadow-lg);
}
.step:hover .step__num {
  color: var(--gold-lt);
  text-shadow: 0 0 20px rgba(201,162,39,.45);
  transition: color .35s, text-shadow .35s;
}
.gallery__item.is-in .g__img {
  animation: galleryZoom 1.1s var(--ease) both;
}
@keyframes galleryZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
[data-parallax] { will-change: transform; }

/* Film-Körnung (Textur über allem) */
.grain {
  position: fixed; inset: 0; z-index: 70; pointer-events: none; opacity: .04; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}
.grain-off .grain { display: none; }

/* Badge-Steuerung */
.hide-termine .hero__pill--1 { display: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {

  .usp__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
  .usp__item:nth-child(2)::after { display: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .quotes { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Navigation kollabiert früher (Tablet), damit sie nie überläuft */
@media (max-width: 960px) {
  .theme-light .nav,
  .theme-light .nav.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto;
    width: min(82vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: center;
    gap: 1.2rem;
    background: var(--ivory);
    padding: calc(2rem + env(safe-area-inset-top, 0px)) calc(2rem + env(safe-area-inset-right, 0px)) calc(2rem + env(safe-area-inset-bottom, 0px)) 2rem;
    box-shadow: -20px 0 60px -20px rgba(23,16,9,.5);
    transform: translateX(100%); transition: transform .4s var(--ease);
    z-index: 120;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    visibility: hidden;
    pointer-events: none;
  }
  .nav__links.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav__links a:not(.btn) {
    color: var(--ink) !important; font-family: var(--f-display);
    font-size: 1.4rem; letter-spacing: .02em; text-transform: none;
    padding: .35rem 0; min-height: 44px; display: inline-flex; align-items: center;
  }
  .nav__cta { margin-left: 0; margin-top: .5rem; width: 100%; justify-content: center; }
  .brand__logo-shell { transform: none; perspective: none; }
  .brand__img { transform: none; animation: none; }
}

@media (max-width: 760px) {
  :root {
    --space-section: clamp(2.6rem, 6.5vw, 3.25rem);
    --float-offset: 1rem;
  }

  .container { width: min(100% - 1.25rem, var(--container)); }
  .nav { padding-top: calc(.85rem + env(safe-area-inset-top, 0px)); padding-bottom: .85rem; }
  .nav.is-scrolled { padding-top: calc(.55rem + env(safe-area-inset-top, 0px)); padding-bottom: .55rem; }
  .brand__img { height: clamp(46px, 12.5vw, 54px); max-width: min(58vw, 240px); }
  .nav.is-scrolled .brand__img { height: clamp(42px, 11vw, 50px); }

  .hero__aurora, .hero__bg .spark, .hero__particles { display: none; }
  .hero--scrollfx .hero__track { height: auto; min-height: 0; }
  .hero--scrollfx .hero__sticky {
    position: relative;
    min-height: 0;
    padding-top: 5.25rem;
    padding-bottom: 2.5rem;
  }
  .hero__media {
    width: min(98vw, 560px);
    transform: none !important;
  }
  .frame--cinema { aspect-ratio: 4 / 5; }
  .hero__overlay { padding-bottom: clamp(3.6rem, 10vw, 4.5rem); }
  .hero__overlay .hero__title { font-size: clamp(1.55rem, 7vw, 2rem); }
  .hero__overlay .hero__script { font-size: 1.1rem; }
  .hero__overlay .hero__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__overlay .hero__actions .btn { width: 100%; }
  .hero__trust--overlay { gap: .5rem 1rem; }
  .hero__trust--overlay strong { font-size: 1rem; }
  .hero__frame { transform: none !important; }
  .frame__badge { opacity: 1 !important; }
  .hero__hint { display: none; }
  .frame--portrait { aspect-ratio: 1 / 1.08; }
  .hero__pill { display: none; }
  .frame__badge { padding: .55rem .75rem; }
  .frame__badge-k { font-size: 1rem; }
  .frame__badge-v { font-size: .66rem; }

  .section__head { margin-bottom: 1.65rem; }
  .section__title { font-size: clamp(1.75rem, 6.8vw, 2.25rem); }
  .section__sub { font-size: .92rem; line-height: 1.55; }
  .eyebrow { font-size: .66rem; letter-spacing: .24em; }

  .usp { padding-block: 2rem; }
  .usp__grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem .85rem; }
  .usp__item { padding: .25rem; }
  .usp__item::after { display: none !important; }
  .usp__icon { width: 28px; height: 28px; margin-bottom: .55rem; }
  .usp__item h3 { font-size: 1.05rem; margin-bottom: .2rem; }
  .usp__item p { font-size: .78rem; line-height: 1.45; }

  /* Video: kein Scroll-Trap auf Mobile — kompaktes statisches Format */
  .videoscroll__track { height: auto; padding: 1.5rem 0 1.75rem; }
  .videoscroll__sticky { position: relative; height: auto; display: block; overflow: visible; }
  .videoscroll__frame {
    width: 100%;
    aspect-ratio: 16 / 10;
    transform: none !important;
    --vs: 1 !important;
    border-radius: var(--radius);
  }
  .videoscroll__overlay { padding: .85rem; gap: .2rem; }
  .videoscroll__title { font-size: clamp(1.45rem, 5.5vw, 1.85rem); }
  .videoscroll__sub { font-size: .84rem; padding-inline: 0; line-height: 1.45; }

  .cards { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
  .card__photo { aspect-ratio: 16 / 11; }
  .card__body { padding: 1.15rem 1.2rem 1.25rem; }
  .card__title { font-size: 1.3rem; }
  .card__desc { font-size: .82rem; margin-bottom: .75rem; line-height: 1.45; }
  .card__pricing { margin-bottom: .85rem; padding-top: .75rem; flex-wrap: wrap; gap: .65rem; }
  .card__pricing-main { gap: .75rem 1rem; }
  .price { font-size: 1.35rem; }
  .price--refill { font-size: 1.1rem; }
  .services__bottom { grid-template-columns: 1fr; gap: 1rem; margin-top: 1.5rem; }
  .services__note { padding: 1rem 1.1rem; font-size: .78rem; }
  .giftcard__inner { padding: 1.45rem 1.25rem; }
  .giftcard h3 { font-size: 1.45rem; }
  .giftcard p { font-size: .86rem; margin-bottom: 1.1rem; }

  /* Galerie: horizontal wischen */
  #galerie .container { overflow: visible; }
  .gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: .65rem;
    margin-inline: -.25rem;
    padding: .15rem .25rem .25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery__item,
  .gallery__item--tall,
  .gallery__item--wide,
  .gallery__item:nth-child(7) {
    flex: 0 0 min(68vw, 240px);
    height: 168px;
    grid-column: unset;
    grid-row: unset;
    scroll-snap-align: center;
  }
  .gallery__tag { opacity: 1; transform: translateY(0); font-size: .58rem; left: .7rem; bottom: .7rem; }
  .gallery__lead { margin: -1rem auto 1.35rem; }
  .gallery__lead p { font-size: .86rem; }
  .gallery__cta { margin-top: 1.5rem; }

  .about { grid-template-columns: 1fr; gap: 1.5rem; }
  .frame--about { aspect-ratio: 4 / 3.6; max-width: min(100%, 360px); margin-inline: auto; }
  .about__stat { right: .25rem; bottom: -.65rem; padding: .75rem .9rem; gap: .65rem; }
  .about__stat strong { font-size: 1.85rem; }
  .about__stat span { font-size: .66rem; }
  .about__copy .section__title { margin-bottom: .85rem; }
  .about__copy p { font-size: .92rem; margin-bottom: .75rem; }
  .about__list { margin: 1rem 0 1.35rem; gap: .55rem; }
  .about__list li { font-size: .88rem; }
  .about__sign { font-size: 1.55rem; }
  .about__signrole { margin-bottom: 1.1rem; }
  .about__studio { left: .5rem; bottom: 2.5rem; width: 44%; max-width: 150px; }
  .about__studio-cap { font-size: .52rem; padding: .35rem .5rem; }

  .steps { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .step { padding: 1.15rem .95rem; }
  .step::after { display: none; }
  .step__num { font-size: 2rem; margin-bottom: .35rem; }
  .step h3 { font-size: 1.1rem; }
  .step p { font-size: .8rem; line-height: 1.45; }

  .google-reviews__card { padding: 1.25rem 1.1rem; }
  .google-reviews__kicker { font-size: 1.15rem; }
  .google-reviews__text { font-size: .9rem; margin-bottom: 1.1rem; }
  .google-reviews__actions { gap: .65rem; }
  .google-reviews__hint { font-size: .7rem; margin-top: .85rem; }
  .rating-badge { margin-bottom: .75rem; padding: .4rem .85rem; }
  .rating-badge__score { font-size: 1rem; }

  .termin-flow { padding-block: 2.25rem; }
  .termin-flow__head { margin-bottom: 1.65rem; }
  .termin-flow__steps { grid-template-columns: 1fr; gap: .75rem; }
  .termin-flow__step { padding: 1.15rem 1rem; }
  .termin-flow__step::after { display: none; }
  .termin-flow__num { font-size: 1.85rem; }
  .termin-flow__step h3 { font-size: 1.1rem; }
  .termin-flow__step p { font-size: .82rem; }

  .faq__item summary { padding: 1rem 1.1rem; font-size: 1.05rem; }
  .faq__body { padding: 0 1.1rem 1rem; }
  .faq__body p { font-size: .88rem; }

  .cta { padding-block: 2.5rem; }
  .cta h2 { font-size: clamp(1.75rem, 6.5vw, 2.2rem); margin: .65rem 0 .45rem; }
  .cta p { margin-bottom: 1.35rem; font-size: .92rem; }

  .contact { gap: 1.35rem; }
  .contact__intro > p { margin: .75rem 0 1.1rem; font-size: .92rem; }
  .contact__flex { padding: .85rem .95rem; margin-bottom: 1.1rem; }
  .contact__flex p { font-size: .84rem; }
  .contact__body { grid-template-columns: 1fr; gap: 1.25rem; }
  .contact__form { order: 1; }
  .contact__location { order: 2; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field input, .field select, .field textarea { font-size: 16px; min-height: var(--touch-min); }
  .field select { padding-right: 2.25rem; }
  .contact__map { min-height: 0; height: auto; }
  .contact__map-consent { min-height: 260px; padding: 1rem; gap: .9rem; }
  .contact__map-preview { padding-bottom: 6.5rem; }
  .contact__map-pin { width: 3.5rem; height: 3.5rem; }
  .contact__map-card { width: 100%; padding: .9rem 1rem; }
  .contact__map-place { font-size: 1.15rem; }
  .contact__map-hint { font-size: .76rem; margin-top: .4rem; }
  .contact__map-frame iframe { height: 220px; }
  .contact__form { padding: 1.25rem 1.1rem; }
  .contact__form-title { font-size: 1.4rem; margin-bottom: 1rem; }
  .field { margin-bottom: .9rem; }
  .field textarea { min-height: 80px; }
  .checkbox { font-size: .8rem; margin-bottom: 1rem; }

  .btn--lg { padding: .95rem 1.35rem; font-size: .72rem; }
  .footer { padding-top: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.35rem; padding-bottom: 1.75rem; }
  .footer__brand p { margin: .75rem 0 0; font-size: .86rem; }
  .brand__logo-shell--footer .brand__img { height: clamp(52px, 14vw, 64px); }
  .footer__col h4 { margin-bottom: .7rem; }
  .footer__col a, .footer__col span { font-size: .86rem; margin-bottom: .45rem; }
  .footer__bar { flex-direction: column; text-align: center; gap: .75rem; padding-block: 1.1rem; font-size: .72rem; }
  .footer__legal { flex-wrap: wrap; justify-content: center; gap: .85rem 1.1rem; }

  .lightbox { padding: 1rem; padding-top: calc(1rem + env(safe-area-inset-top, 0px)); }
  .lightbox__close { top: calc(.8rem + env(safe-area-inset-top, 0px)); right: calc(.8rem + env(safe-area-inset-right, 0px)); min-width: 44px; min-height: 44px; }
  .lightbox__cap { bottom: calc(1rem + env(safe-area-inset-bottom, 0px)); max-width: 90vw; text-align: center; }
  .lightbox__nav { width: 42px; height: 42px; font-size: 1.55rem; }
  .quotes { gap: 1.1rem; }
  .ultra-edition .quotes { grid-template-columns: 1fr; }

  .contact-finale__hero { padding-block: 2.75rem; }
  .contact-finale__hero h2 { font-size: clamp(1.85rem, 7vw, 2.35rem); }
  .contact-finale__hero p { font-size: .92rem; margin-bottom: 1.35rem; }
  .contact-finale__actions { flex-direction: column; align-items: stretch; }
  .contact-finale__actions .btn { width: 100%; }

}

@media (max-width: 480px) {
  :root { --float-size: 46px; --float-icon: 20px; --float-gap: .5rem; }

  .hero__media { width: min(98vw, 440px); }
  .cta__actions, .contact__actions, .contact__map-actions, .google-reviews__actions { flex-direction: column; align-items: stretch; }
  .cta__actions .btn, .contact__actions .btn, .contact__map-actions .btn, .google-reviews__actions .btn { width: 100%; }
  .frame__badge { flex-direction: column; align-items: flex-start; gap: .2rem; }

  .usp__grid { gap: .9rem .7rem; }
  .usp__item h3 { font-size: .98rem; }
  .usp__item p { font-size: .74rem; }

  .cards { grid-template-columns: 1fr; }
  .card__title { font-size: 1.25rem; }
  .card__price-k { font-size: .58rem; }
  .price { font-size: 1.28rem; }
  .price--refill { font-size: 1.05rem; }
  .gallery__item,
  .gallery__item--tall,
  .gallery__item--wide,
  .gallery__item:nth-child(7) { flex-basis: min(74vw, 220px); height: 152px; }

  .steps { grid-template-columns: 1fr; }
  .step { padding: 1rem .9rem; }

  .contact__map-consent { min-height: 240px; }
  .contact__map-note { font-size: .72rem; }
}

/* =========================================================
   THEME: HELL (Creme + Gold) — Variante à la AURA / AURUM
   Aktivierung: <body class="theme-light">  (siehe index-hell.html)
   ========================================================= */
body.theme-light { background: var(--ivory); }

/* Navigation: leicht getönter Hintergrund damit Logo besser wirkt */
.theme-light .nav {
  background: rgba(232, 220, 198, 0.72);
  backdrop-filter: blur(10px);
}
.theme-light .nav.is-scrolled {
  background: rgba(226, 214, 192, 0.96);
}

/* Hero → warm, etwas dunkler */
.theme-light .hero {
  background:
    radial-gradient(90% 70% at 80% 0%, rgba(198,161,91,.2), transparent 60%),
    linear-gradient(180deg, #E8DCC6, #DDD0B8);
  color: var(--ink);
}
.theme-light .hero__title { color: var(--ink); }
.theme-light .hero__script { color: var(--gold-dk); }
.theme-light .hero__lead { color: var(--ink-soft); }
.theme-light .hero .eyebrow--light { color: var(--gold-dk); }
.theme-light .hero__trust { border-top-color: var(--line); }
.theme-light .hero__trust strong { color: var(--gold-dk); }
.theme-light .hero__trust .muted { color: var(--ink-soft); }
.theme-light .hero__scroll { border-color: var(--gold); }
.theme-light .hero__scroll span { background: var(--gold-dk); }
.theme-light .hero__hint-txt { color: var(--ink-soft); }
.theme-light .hero__overlay .hero__title { color: var(--light); }
.theme-light .hero__overlay .hero__script { color: var(--gold-lt); }
.theme-light .hero__overlay .hero__lead { color: rgba(242,234,219,.92); }
.theme-light .hero__overlay .btn--ghost { color: var(--light); border-color: rgba(226,200,140,.45); }
.theme-light .hero__overlay .btn--ghost:hover { color: var(--gold-lt); border-color: var(--gold-lt); }
.theme-light .hero__bg .spark { background: var(--gold); box-shadow: 0 0 10px 1px rgba(198,161,91,.5); }

/* Navigation über hellem Hero → dunkle Schrift */
.theme-light .nav__links a:not(.btn) { color: var(--ink); }
.theme-light .nav__links a:not(.btn).is-active { color: var(--gold-dk); }
.theme-light .nav__toggle span { color: var(--ink); background: var(--ink); }
.theme-light .nav__links a:not(.btn):hover { color: var(--gold-dk); }

/* Ghost-Buttons in dunklen Sektionen + Hero-Overlay */
.theme-light .section--dark .btn--ghost { color: var(--light); border-color: rgba(226,200,140,.4); }
.theme-light .section--dark .btn--ghost:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

/* Footer → hell (Sand) */
.theme-light .footer { background: #DDD0B8; color: var(--ink-soft); }
.theme-light .brand--footer, .theme-light .brand--footer .brand__text { color: var(--ink); }
.theme-light .brand--footer .brand__mark { color: var(--gold-dk); }
.theme-light .footer__brand p { color: var(--ink-soft); }
.theme-light .footer__col h4 { color: var(--gold-dk); }
.theme-light .footer__col a, .theme-light .footer__col span { color: var(--ink-soft); }
.theme-light .footer__name { color: var(--gold-dk) !important; }
.theme-light .footer__col a:hover, .theme-light .footer__legal a:hover { color: var(--gold-dk); }
.theme-light .footer__social a { border-color: var(--line-gold); color: var(--gold-dk); }
.theme-light .footer__social a:hover { background: var(--gold); color: #fff; }
.theme-light .footer__bar { border-top-color: var(--line-gold); color: #9a8869; }

/* Mobil-Menü-Links bleiben dunkel (bereits per Media-Query gesetzt) */

/* =========================================================
   REDUCED MOTION
   ========================================================= */
/* =========================================================
   RECHTSTEXTE (Impressum · Datenschutz · AGB)
   ========================================================= */
.legal-page .nav { position: sticky; top: 0; }
.legal-page .legal { padding-top: clamp(1.5rem, 4vw, 2.5rem); }
.legal-page .nav__links a:not(.btn) { color: var(--ink); }
.legal-page .brand__mark { color: var(--gold-dk); }

.legal { padding-block: clamp(3rem, 8vw, 5rem); }
.legal__inner { max-width: 760px; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin: .6rem 0 .4rem; }
.legal__updated { color: var(--ink-soft); font-size: .88rem; margin-bottom: 2.5rem; }
.legal section { margin-bottom: 2.2rem; }
.legal h2 { font-size: 1.45rem; font-weight: 600; margin-bottom: .75rem; color: var(--ink); }
.legal p, .legal li { color: var(--ink-soft); font-size: .96rem; margin-bottom: .75rem; line-height: 1.75; }
.legal a { color: var(--gold-dk); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--gold); }
.legal__list { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.legal__list li { margin-bottom: .35rem; }
.legal code { font-size: .85em; background: var(--cream); padding: .1rem .35rem; border-radius: 3px; }
.legal__back { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }

/* =========================================================
   LUXURY EDITION — 25k-Level Polish
   ========================================================= */
body.is-loading { overflow: hidden; }

.ultra-edition,
.lux-edition {
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dk) var(--ivory);
}
.ultra-edition::-webkit-scrollbar,
.lux-edition::-webkit-scrollbar { width: 8px; }
.ultra-edition::-webkit-scrollbar-track,
.lux-edition::-webkit-scrollbar-track { background: var(--ivory); }
.ultra-edition::-webkit-scrollbar-thumb,
.lux-edition::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dk), var(--gold));
  border-radius: 99px;
}

/* Preloader — scharfes Logo + Premium-Animation */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(70% 55% at 50% 42%, rgba(201, 162, 39, .12), transparent 70%),
    var(--espresso);
  transition: opacity .75s var(--ease), visibility .75s, transform .75s var(--ease);
}
.preloader.is-active .preloader__inner {
  animation: preloaderEnter .9s var(--ease) both;
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.03);
}
.preloader__stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(88vw, 280px);
  aspect-ratio: 1;
}
.preloader__glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, .28) 0%, transparent 68%);
  animation: preloaderGlow 2.4s ease-in-out infinite;
  pointer-events: none;
}
.preloader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, .14);
  pointer-events: none;
}
.preloader__ring::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: var(--gold-lt);
  border-right-color: rgba(201, 162, 39, .4);
  animation: preloaderRing 2.8s linear infinite;
}
.preloader__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1rem;
  opacity: 0;
  transform: translateY(14px) scale(.96);
}
.preloader__mark {
  display: block;
  line-height: 0;
}
.preloader__logo {
  display: block;
  width: clamp(72px, 22vw, 96px);
  height: clamp(72px, 22vw, 96px);
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  filter:
    drop-shadow(0 2px 1px rgba(160, 123, 28, .35))
    drop-shadow(0 12px 32px rgba(201, 162, 39, .48));
  animation: preloaderLogoFloat 2.6s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}
.preloader__brand {
  font-family: var(--f-display);
  font-size: clamp(.78rem, 2.8vw, .88rem);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-lt);
  opacity: 0;
  animation: preloaderFadeUp .7s var(--ease) .35s forwards;
}
.preloader__tag {
  font-family: var(--f-body);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--light-soft);
  opacity: 0;
  animation: preloaderFadeUp .7s var(--ease) .5s forwards;
}
.preloader__line {
  width: 0;
  height: 1px;
  margin-top: .15rem;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-lt), transparent);
  box-shadow: 0 0 12px rgba(201, 162, 39, .45);
  animation: preloaderLine 1.6s var(--ease) .55s forwards;
}
.preloader__dots {
  display: inline-flex;
  gap: .45rem;
  margin-top: .25rem;
  opacity: 0;
  animation: preloaderFadeUp .5s var(--ease) .75s forwards;
}
.preloader__dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  animation: preloaderDot 1.1s ease-in-out infinite;
}
.preloader__dots span:nth-child(2) { animation-delay: .15s; }
.preloader__dots span:nth-child(3) { animation-delay: .3s; }

@keyframes preloaderEnter {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
  to { opacity: 1; transform: none; }
}
@keyframes preloaderFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@keyframes preloaderLogoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.02); }
}
@keyframes preloaderGlow {
  0%, 100% { opacity: .45; transform: scale(.94); }
  50% { opacity: .85; transform: scale(1.06); }
}
@keyframes preloaderRing {
  to { transform: rotate(360deg); }
}
@keyframes preloaderLine {
  to { width: min(42vw, 148px); }
}
@keyframes preloaderDot {
  0%, 80%, 100% { opacity: .25; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 110;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px var(--gold-glow);
  pointer-events: none;
  transition: width .08s linear;
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--cream);
  padding-block: .85rem;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dk);
  white-space: nowrap;
}
.marquee__dot { color: var(--gold); font-size: .75rem; opacity: .7; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Manifesto */
.manifesto {
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background: var(--espresso);
  color: var(--light);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: "✦";
  position: absolute;
  top: 12%;
  left: 8%;
  font-size: clamp(4rem, 12vw, 9rem);
  color: rgba(201, 162, 39, .08);
  pointer-events: none;
}
.manifesto__quote { max-width: 18ch; margin-inline: auto; }
.manifesto__line {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--light);
}
.manifesto__line--accent {
  font-style: italic;
  color: var(--gold-lt);
  margin-top: .15rem;
}
.manifesto__quote footer {
  margin-top: 1.6rem;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--light-soft);
}

/* Stats band */
.stats-band {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--coffee) 0%, var(--espresso) 100%);
  border-block: 1px solid var(--line-gold);
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stats-band__item strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: .45rem;
}
.stats-band__item span {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--light-soft);
}

/* Gallery filters */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.8rem;
}
.gallery__filter {
  padding: .55rem 1.15rem;
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--light-soft);
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: transparent;
  transition: color .25s, border-color .25s, background .25s, transform .25s var(--ease);
}
.gallery__filter:hover { color: var(--gold-lt); border-color: var(--gold); }
.gallery__filter.is-active {
  color: var(--espresso);
  background: var(--gold-gradient);
  border-color: transparent;
  box-shadow: 0 10px 24px -14px var(--gold-glow);
}
.gallery__item.is-filtered-out {
  display: none !important;
}
.gallery.is-filtering .gallery__item:not(.is-filtered-out) {
  animation: galleryFadeIn .45s var(--ease) both;
}
@keyframes galleryFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* About pull quote */
.about__pull {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(201, 162, 39, .08), transparent);
}
.about__pull p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.45;
}

/* Contact hours */
.contact__hours {
  padding: 1.35rem 1.4rem;
  margin-bottom: 1rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contact__hours-kicker {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: .85rem;
}
.contact__hours-list { display: grid; gap: .55rem; }
.contact__hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .9rem;
  color: var(--ink-soft);
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--line);
}
.contact__hours-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact__hours-list li span:first-child { color: var(--ink); font-weight: 500; }
.contact__hours-note {
  margin-top: .85rem;
  font-size: .8rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem 1rem calc(.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(240, 230, 212, .96);
  backdrop-filter: blur(14px) saturate(1.2);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 40px -20px rgba(23, 16, 9, .35);
  transform: translateY(110%);
  transition: transform .45s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__wa {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #1FA855;
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(31, 168, 85, .8);
  transition: transform .25s var(--ease);
}
.sticky-cta__wa:hover { transform: scale(1.06); }
.sticky-cta__btn { flex: 1; padding: .85rem 1rem; }

/* Footer extras */
.footer__tagline { margin: .75rem 0 .35rem; }
.footer__hours {
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--light-soft);
  margin-bottom: 1rem;
}

/* Hero split lines */
.hero__title .split-line {
  display: block;
  overflow: hidden;
}
.hero__title .split-line > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.hero.hero--ready .hero__title .split-line > span {
  animation: splitLineUp .95s var(--ease) forwards;
}
.hero.hero--ready .hero__title .split-line:nth-child(2) > span { animation-delay: .12s; }
@keyframes splitLineUp {
  to { transform: none; opacity: 1; }
}

/* Premium card shine */
.ultra-edition .card,
.lux-edition .card {
  position: relative;
  overflow: hidden;
}
.ultra-edition .card::before,
.lux-edition .card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, .12) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: transform .75s var(--ease);
  pointer-events: none;
}
.ultra-edition .card:hover::before,
.lux-edition .card:hover::before { transform: translateX(120%); }
.ultra-edition .card--featured,
.lux-edition .card--featured {
  box-shadow: 0 28px 60px -28px rgba(201, 162, 39, .35);
  border-color: rgba(201, 162, 39, .45);
}

/* Magnetic-ready buttons */
.ultra-edition .btn--primary,
.ultra-edition .nav__cta,
.lux-edition .btn--primary,
.lux-edition .nav__cta {
  position: relative;
  overflow: hidden;
  transform: translate(var(--mag-x, 0), var(--mag-y, 0));
}
.ultra-edition .btn--primary::after,
.lux-edition .btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: translateX(-130%);
  transition: transform .6s var(--ease);
}
.ultra-edition .btn--primary:hover::after,
.lux-edition .btn--primary:hover::after { transform: translateX(130%); }
.ultra-edition .btn--primary:hover,
.ultra-edition .nav__cta:hover,
.lux-edition .btn--primary:hover,
.lux-edition .nav__cta:hover {
  transform: translate(var(--mag-x, 0), calc(var(--mag-y, 0) - 3px));
}

/* Kontakt-Finale (ersetzt CTA-Band + doppelten Intro) */
.contact-finale { scroll-margin-top: 5rem; }
.contact-finale__hero {
  padding-block: clamp(4rem, 9vw, 6.5rem);
  background: radial-gradient(120% 140% at 20% 0%, #2A1D11, var(--espresso) 72%);
  color: var(--light);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-finale__hero::after {
  content: "✦";
  position: absolute;
  right: 10%;
  bottom: 8%;
  font-size: clamp(4rem, 10vw, 8rem);
  color: rgba(201, 162, 39, .1);
  pointer-events: none;
}
.contact-finale__hero-inner { max-width: 640px; margin-inline: auto; position: relative; z-index: 1; }
.contact-finale__hero h2 {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 500;
  color: var(--light);
  margin: 1rem 0 .65rem;
  line-height: 1.08;
}
.contact-finale__hero p { color: var(--light-soft); margin-bottom: 1.8rem; font-size: 1.02rem; }
.contact-finale__actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }
.contact-finale__hero .contact-finale__phone {
  color: var(--gold-lt);
  border-color: rgba(201, 162, 39, .55);
  background: rgba(201, 162, 39, .06);
}
.contact-finale__hero .contact-finale__phone svg {
  stroke: var(--gold-lt);
}
.contact-finale__hero .contact-finale__phone:hover {
  color: var(--gold);
  border-color: var(--gold-lt);
  background: rgba(201, 162, 39, .14);
  box-shadow: 0 12px 28px -14px var(--gold-glow);
}
.contact-finale__hero .contact-finale__phone:hover svg {
  stroke: var(--gold);
}
.contact-finale__body { padding-block: clamp(3rem, 6vw, 4.5rem); }
.contact-finale__body .contact__body { margin-top: 0; }

/* Ultra Edition — mehr Luft, weniger Lärm */
.ultra-edition {
  --space-section: clamp(5rem, 10vw, 9rem);
}
.ultra-edition .section__head { margin-bottom: 3.8rem; }
.ultra-edition .manifesto { padding-block: clamp(4rem, 9vw, 7rem); }
.ultra-edition .quotes { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.ultra-edition .quote {
  padding: 1.65rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.ultra-edition .quote p:not(.quote__stars) {
  font-size: .95rem;
  margin-bottom: auto;
  padding-bottom: 1.25rem;
}
.ultra-edition .google-reviews__actions { justify-content: center; }
.ultra-edition .hero__overlay .hero__lead { max-width: 42ch; }

@media (min-width: 961px) {
  .sticky-cta { display: none !important; }
}

@media (max-width: 960px) {
  body.sticky-cta-on .social-floats { bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 760px) {
  .marquee { padding-block: .65rem; }
  .marquee__track { gap: 1.5rem; font-size: .95rem; }
  .manifesto { padding-block: 2.5rem; }
  .manifesto__line { font-size: clamp(1.65rem, 7vw, 2.2rem); }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
  .stats-band__item strong { font-size: 1.75rem; }
  .gallery__filters { gap: .4rem; margin-bottom: 1.25rem; }
  .gallery__filter { padding: .45rem .85rem; font-size: .62rem; }
  .about__pull { padding: 1rem 1.1rem; }
  .about__pull p { font-size: 1.05rem; }
  .contact__hours { padding: 1.1rem; }
}

/* Cookie-Einwilligung (DSGVO) */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(110%);
  transition: transform .45s var(--ease);
  pointer-events: none;
}
.cookie-consent.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-consent__inner {
  max-width: 520px;
  margin-inline: auto;
  padding: 1.25rem 1.35rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.cookie-consent__title {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .45rem;
  color: var(--ink);
}
.cookie-consent__text {
  font-size: .86rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.cookie-consent__text a { color: var(--gold-dk); text-decoration: underline; }
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
body.cookie-banner-open .sticky-cta.is-visible { transform: translateY(110%); }

/* =========================================================
   PREMIUM RESPONSIVE — 60k Edition (alle Geräte)
   ========================================================= */

/* —— Large Desktop (1200px+) —— */
@media (min-width: 1200px) {
  :root {
    --container: var(--container-wide);
    --space-section: clamp(5.5rem, 8vw, 9.5rem);
  }

  .container { width: min(100% - 3rem, var(--container)); }

  .nav__links { gap: 2.4rem; }
  .nav__links a:not(.btn) { font-size: .76rem; }

  .hero--scrollfx .hero__track { height: 155vh; }
  .hero__media { width: min(96vw, 1280px); }
  .hero__overlay .hero__title { font-size: clamp(2.2rem, 3.8vw, 3.75rem); }
  .hero__overlay .hero__lead { font-size: 1rem; max-width: 44ch; }

  .section__head { margin-bottom: 4rem; max-width: 700px; }
  .section__title { font-size: clamp(2.4rem, 3.8vw, 3.65rem); }

  .usp__grid { gap: 2.5rem 3rem; }
  .usp__item h3 { font-size: 1.42rem; }

  .cards { gap: 1.85rem; }
  .card__body { padding: 1.75rem 1.85rem 1.9rem; }
  .card__title { font-size: 1.68rem; }

  .gallery { grid-auto-rows: 240px; gap: 1.15rem; }

  .about { gap: clamp(3rem, 5vw, 5rem); }
  .frame--about { max-width: 480px; }

  .steps { gap: 1.35rem; }
  .ultra-edition .quotes { gap: 1.5rem; }
  .ultra-edition .quote { padding: 1.85rem 1.65rem; }

  .contact__body { gap: clamp(2.5rem, 5vw, 5rem); }
  .contact__map { min-height: clamp(460px, 54vh, 600px); }
  .contact-finale__hero { padding-block: clamp(5rem, 9vw, 7.5rem); }
  .contact-finale__hero h2 { font-size: clamp(2.4rem, 4vw, 3.5rem); }

  .footer__grid { gap: 2.8rem 3rem; }
}

/* —— Ultra-Wide (1400px+) —— */
@media (min-width: 1400px) {
  :root { --container-wide: 1360px; }

  .hero__overlay { padding: clamp(1.5rem, 2.5vw, 2.5rem); }
  .manifesto__quote { max-width: 22ch; }
  .manifesto__line { font-size: clamp(2.4rem, 4vw, 4rem); }
}

/* —— Tablet Landscape (961–1024px) —— */
@media (min-width: 961px) and (max-width: 1024px) {
  .nav__links { gap: 1.35rem; }
  .nav__links a:not(.btn) { font-size: .68rem; letter-spacing: .14em; }
  .nav .btn--primary { padding: .65rem 1.15rem; font-size: .72rem; }

  .hero--scrollfx .hero__track { height: 135vh; min-height: 540px; }
  .hero__media { width: min(96vw, 920px); }
  .hero__overlay .hero__title { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }

  .cards { gap: 1.25rem; }
  .card__body { padding: 1.35rem 1.4rem 1.5rem; }
  .card__title { font-size: 1.45rem; }
  .card__desc { font-size: .84rem; }

  .ultra-edition .quotes { grid-template-columns: repeat(2, 1fr); }
  .ultra-edition .quotes .quote:last-child { grid-column: 1 / -1; max-width: 480px; margin-inline: auto; width: 100%; }

  .contact__body { gap: 2rem; }
  .contact__map { min-height: 400px; }
  .contact__form { padding: 1.5rem 1.6rem; }

  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
}

/* —— Tablet Portrait (761–960px) —— */
@media (min-width: 761px) and (max-width: 960px) {
  .hero--scrollfx .hero__track { height: auto; min-height: 0; }
  .hero--scrollfx .hero__sticky {
    position: relative;
    min-height: 0;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  .hero__media { width: min(94vw, 680px); transform: none !important; }
  .hero__frame { transform: none !important; }
  .hero__overlay .hero__title { font-size: clamp(2rem, 5vw, 2.65rem); }
  .hero__hint { display: none; }

  .usp__grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1.5rem; }
  .usp__item:nth-child(2)::after { display: none; }

  .cards { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
  .cards .card:last-child { grid-column: 1 / -1; max-width: 520px; margin-inline: auto; width: 100%; }

  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
    overflow: visible;
    margin-inline: 0;
    padding: 0;
    scroll-snap-type: none;
  }
  .gallery__item,
  .gallery__item--tall,
  .gallery__item--wide,
  .gallery__item:nth-child(7) {
    flex: unset;
    height: auto;
    scroll-snap-align: unset;
  }
  .gallery__item:nth-child(7) { grid-column: span 2; }

  .ultra-edition .quotes { grid-template-columns: repeat(2, 1fr); }
  .ultra-edition .quotes .quote:last-child { grid-column: 1 / -1; }

  .contact__body { grid-template-columns: 1fr; gap: 1.75rem; }
  .contact__form { order: 1; }
  .contact__location { order: 2; }
  .contact__map { min-height: 340px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
}

/* —— Mobile Premium Polish (≤760px) —— */
@media (max-width: 760px) {
  .gallery__filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    margin-inline: -.25rem;
    padding: .15rem .25rem .35rem;
    gap: .45rem;
  }
  .gallery__filters::-webkit-scrollbar { display: none; }
  .gallery__filter {
    flex-shrink: 0;
    scroll-snap-align: start;
    min-height: var(--touch-min);
    display: inline-flex;
    align-items: center;
  }

  .contact-finale__hero .contact-finale__phone {
    min-height: var(--touch-min);
    justify-content: center;
  }
  .contact__map-actions .btn { min-height: var(--touch-min); }
  .contact__map-actions { width: 100%; max-width: none; }
  .cookie-consent__inner { max-width: none; margin-inline: 0; }
  .cookie-consent__actions .btn { flex: 1; min-width: 0; min-height: var(--touch-min); }

  .hero__overlay {
    padding: 1rem 1rem 1.25rem;
    background: linear-gradient(0deg, rgba(23,16,9,.88) 0%, rgba(23,16,9,.35) 55%, transparent 100%);
  }
  .hero__overlay .hero__trust--overlay { margin-top: .85rem; padding-top: .65rem; }

  .manifesto__quote { max-width: 100%; padding-inline: .5rem; }
  .manifesto__line { font-size: clamp(1.55rem, 6.8vw, 2rem); line-height: 1.18; }

  .btn, .nav__cta { min-height: var(--touch-min); }
  .sticky-cta__btn { min-height: var(--touch-min); }

  .social-floats {
    right: max(var(--float-offset), env(safe-area-inset-right, 0px));
    bottom: max(var(--float-offset), env(safe-area-inset-bottom, 0px));
  }
  body.sticky-cta-on .social-floats {
    bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
  }

  .footer__social a { width: var(--touch-min); height: var(--touch-min); }
  .footer__col a, .footer__col span { line-height: 1.55; }

  .ultra-edition { --space-section: clamp(3rem, 7vw, 4rem); }
  .ultra-edition .section__head { margin-bottom: 2rem; }
}

/* —— Kleine Phones (≤480px) —— */
@media (max-width: 480px) {
  .container { width: min(100% - 1rem, var(--container)); }

  .hero__overlay .hero__title { font-size: clamp(1.45rem, 7.5vw, 1.85rem); line-height: 1.12; }
  .hero__overlay .hero__script { font-size: 1rem; }
  .hero__overlay .hero__lead { font-size: .8rem; line-height: 1.5; }
  .hero__trust--overlay { gap: .4rem .85rem; }
  .hero__trust--overlay strong { font-size: .92rem; }
  .hero__trust--overlay .muted { font-size: .56rem; }

  .gallery__filter { padding: .5rem .75rem; font-size: .58rem; letter-spacing: .1em; }

  .contact-finale__hero { padding-block: 2.25rem; }
  .contact-finale__hero h2 { font-size: clamp(1.65rem, 7.5vw, 2rem); }
  .contact-finale__hero p { font-size: .88rem; }

  .quote { padding: 1.15rem 1.05rem; }
  .quote p:not(.quote__stars) { font-size: .86rem; }

  .faq__item summary { padding: .95rem 1rem; font-size: 1rem; min-height: var(--touch-min); display: flex; align-items: center; }

  .cookie-consent { padding: .75rem .75rem calc(.75rem + env(safe-area-inset-bottom, 0px)); }
  .cookie-consent__actions { flex-direction: column; }
  .cookie-consent__actions .btn { width: 100%; }
}

/* —— Touch-Geräte: Hover-Effekte dämpfen —— */
@media (hover: none) {
  .card:hover { transform: none; box-shadow: none; }
  .card:hover .card__photo { transform: none; }
  .usp__item:hover { transform: none; }
  .btn--primary:hover { transform: none; }
  .ultra-edition .btn--primary:hover,
  .ultra-edition .nav__cta:hover { transform: none; }
}

/* —— Landscape-Phones —— */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .hero--scrollfx .hero__sticky { padding-top: 4.5rem; padding-bottom: 1.5rem; }
  .hero__media { width: min(70vw, 520px); }
  .frame--cinema { aspect-ratio: 16 / 9; }
  .hero__overlay { padding-bottom: .75rem; }
  .hero__overlay .hero__title { font-size: 1.45rem; }
  .hero__overlay .hero__script { font-size: .95rem; margin-bottom: .35rem; }
  .hero__overlay .hero__lead { display: none; }
  .hero__trust--overlay { display: none; }
  .nav__links { padding-top: calc(1rem + env(safe-area-inset-top, 0px)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .preloader,
  .preloader__ring,
  .preloader__glow,
  .preloader__logo,
  .preloader__dots span { animation: none !important; }
  .preloader__inner { opacity: 1 !important; transform: none !important; }
  .preloader__brand,
  .preloader__tag,
  .preloader__dots { opacity: 1 !important; transform: none !important; }
  .preloader__line { width: 120px !important; }
  .hero__title .split-line > span { transform: none; opacity: 1; animation: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero--scrollfx .hero__track { height: auto; min-height: 0; }
  .hero--scrollfx .hero__sticky { position: relative; }
  .hero__media, .hero__frame { transform: none !important; }
  .hero__overlay { opacity: 1 !important; transform: none !important; }
  .hero.hero--ready .hero__overlay > * { animation: none !important; }
  .frame__badge, .hero__hint { opacity: 1 !important; }
  .card--featured { animation: none !important; }
  .hero__scroll span { animation: none; }
  [data-float] { animation: none !important; }
}

/* =========================================================
   PREMIUM-FEINSCHLIFF (€60k) — gezielte Overrides
   ========================================================= */

/* Logo: schlanker, crisper, ohne pulsierenden Halo */
.ultra-edition .brand__img {
  height: clamp(42px, 5vw, 56px);
  filter: drop-shadow(0 2px 5px rgba(160, 123, 28, 0.22));
  animation: none;
  transform: none;
}
.ultra-edition .nav.is-scrolled .brand__img { height: clamp(38px, 4.4vw, 48px); }
.ultra-edition .brand__logo-shell--footer .brand__img { height: clamp(54px, 6.5vw, 74px); }
.ultra-edition .brand__logo-shell { transform: none; perspective: none; }

/* Schwebende Buttons: kohärent & edel (WhatsApp bleibt grün als Haupt-CTA) */
.ultra-edition .social-float--ig,
.ultra-edition .social-float--fb {
  background: var(--coffee);
  color: var(--gold-lt);
  border: 1px solid rgba(198, 161, 91, 0.42);
  box-shadow: 0 14px 30px -12px rgba(23, 16, 9, 0.45);
}
.ultra-edition .social-float--ig:hover,
.ultra-edition .social-float--fb:hover {
  background: var(--mocha);
  box-shadow: 0 20px 36px -12px rgba(201, 162, 39, 0.42);
}

/* Eleganter Gold-Cursor-Ring (Desktop) */
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none;
  width: 32px; height: 32px; margin: -16px 0 0 -16px; border-radius: 50%;
  border: 1.5px solid var(--gold); background: transparent;
  opacity: 0; will-change: transform;
  transition: opacity .3s ease, width .25s var(--ease), height .25s var(--ease),
              margin .25s var(--ease), background .25s ease, border-color .25s ease;
}
.cursor-ring.is-visible { opacity: .75; }
.cursor-ring.is-active {
  width: 52px; height: 52px; margin: -26px 0 0 -26px;
  background: rgba(201, 162, 39, 0.10); border-color: var(--gold-lt);
}
.cursor-ring.is-press { width: 24px; height: 24px; margin: -12px 0 0 -12px; }
@media (hover: none), (pointer: coarse) { .cursor-ring { display: none; } }

/* =========================================================
   MOBILE-KORREKTUR — Bewertungen 1-spaltig, Overflow-Schutz
   (Basis-Regel Z.2117 überschrieb die Mobile-Media-Query)
   ========================================================= */
html { overflow-x: clip; }
@media (max-width: 760px) {
  .ultra-edition .quotes { grid-template-columns: 1fr; gap: 1rem; }
  .ultra-edition .quotes .quote:last-child { grid-column: auto; max-width: none; }
}

/* Mobile: nur "Nach oben"-Float — IG/FB/WA/Route stecken in Sticky-Bar & Footer */
@media (max-width: 760px) {
  .social-float--ig,
  .social-float--fb,
  .social-float--wa,
  .social-float--route { display: none; }
}

/* Mobile: Header ohne backdrop-filter — es erzeugt einen Containing Block,
   der das fixe Off-Canvas-Menü im 71px-Header einsperrt. Deckung als Ersatz. */
@media (max-width: 760px) {
  .nav, .theme-light .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(238, 227, 206, 0.97); }
  .nav.is-scrolled, .theme-light .nav.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(232, 220, 198, 0.98); }
}

/* WhatsApp-Float: kein Grün — Palette wie die übrigen Floats (Espresso + Gold) */
.social-float--wa,
.ultra-edition .social-float--wa {
  background: var(--coffee);
  color: var(--gold-lt);
  border: 1px solid rgba(198, 161, 91, 0.42);
  box-shadow: 0 14px 30px -12px rgba(23, 16, 9, 0.45);
}
.social-float--wa:hover,
.ultra-edition .social-float--wa:hover {
  background: var(--mocha);
  box-shadow: 0 20px 36px -12px rgba(201, 162, 39, 0.42);
}
