/* ─────────────────────────────────────────────────────────────
   kro.weddings — main.css (v5.0)
   Schwarz/Weiß Edition. Vollbreit-Hero. Bild-Banner.
   3-Karten-Services. Mobile gehärtet.
   ───────────────────────────────────────────────────────────── */

/* Design-Tokens ───────────────────────────────────────────── */

:root {
  --bg:        #FFFFFF;
  --bg-alt:    #F5F5F5;
  --ink:       #000000;
  --ink-soft:  #1A1A1A;
  --muted:     #666666;
  --line:      #E5E5E5;
  --line-deep: #C8C8C8;

  --f-display: "Cormorant Garamond", "Times New Roman", serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  --hairline:      1px solid var(--line);
  --hairline-deep: 1px solid var(--line-deep);
  --shadow-soft:   0 30px 60px -30px rgba(0, 0, 0, 0.18);

  --pad-x:  clamp(1.25rem, 4vw, 4.5rem);
  --pad-y:  clamp(4rem, 9vh, 9rem);
  --max-w:  1400px;

  --img-filter: none;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Auto-Hyphenation komplett aus für die ganze Seite */
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}

/* Eigennamen, Markenbegriffe, kurze Phrasen niemals umbrechen */
.no-break,
.about-teaser__name,
.about-page__name {
  white-space: nowrap;
  hyphens: none;
}

/* Scroll-Lock wenn Mobile-Menü offen */
body.kro-menu-open {
  overflow: hidden;
  touch-action: none;
}

img, svg, video { max-width: 100%; display: block; height: auto; }
img { filter: var(--img-filter); }

/* Global-Mono-Toggle (Theme-Einstellungen → Bilder global in S/W rendern). */
body.kro-mono-images img { filter: grayscale(100%) contrast(1.05); }
body.kro-mono-images .hero-video__media { filter: grayscale(100%) contrast(1.05); }

/* Logo-Bilder NIE in S/W filtern — sie sollen so erscheinen wie hochgeladen. */
.logo--image img,
body.kro-mono-images .logo--image img,
.no-filter,
.no-filter img { filter: none; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

p { margin: 0 0 1.25rem; }
p:last-child { margin-bottom: 0; }

/* Typografie ─────────────────────────────────────────────── */

h1, h2, h3, h4, .display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--ink);
  /* Worttrennungen komplett verbieten — nie Bindestriche mitten im Wort */
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}

h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 1.15rem + 1.2vw, 2.25rem); }
h4 { font-size: 1.45rem; font-weight: 400; line-height: 1.2; }

em, .italic { font-style: italic; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--ink);
  display: inline-block;
}

/* Eyebrow zentriert mit Hairlines beidseitig (links UND rechts). */
.eyebrow--centered::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--ink);
  display: inline-block;
}

.caption {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Layout ──────────────────────────────────────────────────── */

.container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.section { padding: var(--pad-y) var(--pad-x); }
.section--alt { background: var(--bg-alt); }
.section--ink { background: var(--ink); color: var(--bg); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--bg); }
.section--ink .eyebrow { color: var(--bg); }
.section--ink .eyebrow::before { background: var(--bg); }

/* Section-Head: zentriert, Eyebrow mit Hairlines beidseitig, klare Trennung. */
.section__head {
  margin-bottom: clamp(2.5rem, 5vh, 5rem);
  padding-bottom: 2rem;
  border-bottom: var(--hairline-deep);
  text-align: center;
}
.section__head h2 {
  max-width: 24ch;
  margin: 1.25rem auto 0;
}

/* Buttons ─────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 1.15rem 2.1rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  transition: background 0.5s ease, color 0.5s ease;
  cursor: pointer;
  line-height: 1;
}
.btn:hover { background: transparent; color: var(--ink); }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }

.btn--invert {
  background: var(--bg);
  border-color: var(--bg);
  color: var(--ink);
}
.btn--invert:hover { background: transparent; color: var(--bg); }

.link-underline {
  font-family: var(--f-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: inherit;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  display: inline-block;
  opacity: 0.85;
  transition: opacity 0.4s ease;
}
.link-underline:hover { opacity: 1; }

/* Topbar ──────────────────────────────────────────────────── */

.topbar {
  border-bottom: var(--hairline);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem var(--pad-x);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.topbar__inner span:last-child {
  color: var(--ink);
  font-weight: 400;
}

/* Header / Navigation ────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  z-index: 50;
  border-bottom: var(--hairline);
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

/* Logo als Bild */
.logo--image {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.logo--image img {
  height: 96px;
  width: auto;
  display: block;
  max-width: 320px;
  object-fit: contain;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.footer-logo img {
  height: 80px;
  width: auto;
  max-width: min(420px, 95%);
  display: block;
  object-fit: contain;
  image-rendering: auto;
}
@media (max-width: 540px) {
  .footer-logo img { height: 60px; }
}

/* Logo als Text-Fallback */
.logo {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.32em;
  text-transform: lowercase;
  color: var(--ink);
}

.primary-menu, .primary-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.primary-menu > li > a {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 4px 0;
  display: inline-block;
}
.primary-menu > li > a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a { color: var(--muted); }

.header-cta {
  margin-left: 0.5rem;
  border: 1px solid var(--ink);
  padding: 0.85rem 1.4rem !important;
  letter-spacing: 0.2em;
  transition: background 0.5s ease, color 0.5s ease;
}
.header-cta:hover { background: var(--ink); color: var(--bg) !important; }

.menu-toggle {
  display: none;
  cursor: pointer;
  background: transparent;
  border: 0;
  position: relative;
  z-index: 70;
  width: 44px;
  height: 44px;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  flex-shrink: 0;
}
.menu-toggle:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 2px;
}
/* Striche absolut positioniert — garantiert mittig, kein Flex-Drift. */
.menu-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
  transform: translateX(-50%);
  transform-origin: center;
}
.menu-toggle span:nth-child(1) { top: calc(50% - 7px); }
.menu-toggle span:nth-child(2) { top: 50%; margin-top: -0.75px; }
.menu-toggle span:nth-child(3) { top: calc(50% + 7px); }

/* Animiertes X wenn Menü offen */
.menu-toggle.is-active span:nth-child(1) {
  top: 50%;
  margin-top: -0.75px;
  transform: translateX(-50%) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
  top: 50%;
  margin-top: -0.75px;
  transform: translateX(-50%) rotate(-45deg);
}

/* HERO — Vollbreit-Bild deutlich höher ───────────────────── */

.hero-fullwidth { width: 100%; margin: 0; padding: 0; }
.hero-fullwidth__visual {
  width: 100%;
  /* DEUTLICH höher als vorher: 90vh auf Desktop, mind. 700px */
  height: clamp(700px, 92vh, 1100px);
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
}
.hero-fullwidth__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: var(--img-filter);
  transition: transform 12s ease;
}
.hero-fullwidth:hover .hero-fullwidth__visual img { transform: scale(1.04); }
.hero-fullwidth__caption {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

/* Hero-Balken — schmaler, kompakter */
.hero-bar {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(2rem, 4.5vh, 3.5rem) var(--pad-x);
  text-align: center;
}
.hero-bar__inner { max-width: 880px; margin: 0 auto; }
.hero-bar .eyebrow {
  color: var(--bg);
  justify-content: center;
  margin-bottom: 1.25rem;
}
.hero-bar .eyebrow::before { background: var(--bg); }
.hero-bar h1 {
  color: var(--bg);
  margin: 0 auto 1rem;
  max-width: 24ch;
  line-height: 1.15;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
}
.hero-bar h1 em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}
.hero-bar__sub {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  max-width: 50ch;
  margin: 0 auto 1.75rem;
  line-height: 1.45;
}
.hero-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: center;
}
.hero-bar__actions .link-underline {
  color: var(--bg);
  border-color: rgba(255,255,255,0.5);
}
.hero-bar__actions .link-underline:hover { border-color: var(--bg); }

/* PAGE-HERO — Bild mit Text-Overlay (für Kontakt + FAQ) ─── */

.page-hero {
  position: relative;
  width: 100%;
  height: clamp(420px, 60vh, 640px);
  overflow: hidden;
  background: var(--ink);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--img-filter) brightness(0.65);
}
.page-hero__overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem var(--pad-x);
  color: var(--bg);
}
.page-hero__overlay .eyebrow {
  color: var(--bg);
  margin-bottom: 1.25rem;
}
.page-hero__overlay .eyebrow::before { background: var(--bg); }
.page-hero__overlay h1 {
  color: var(--bg);
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.5rem);
  max-width: 22ch;
  margin: 0 auto 1rem;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.page-hero__overlay p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.4rem);
  max-width: 50ch;
  margin: 0 auto;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

/* Page-Header (klassische Variante, weiterhin für andere Pages) */

.page-header {
  padding: clamp(5rem, 10vh, 8rem) var(--pad-x) clamp(3rem, 6vh, 5rem);
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.page-header .eyebrow { justify-content: center; margin-bottom: 1.75rem; }
.page-header .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--ink);
  display: inline-block;
}
.page-header h1 {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  max-width: 22ch;
  margin: 0 auto 1.25rem;
  line-height: 1.1;
}
.page-header__sub {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.45rem);
  color: var(--muted);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.4;
}

/* ÜBER-MICH-Sektion auf Startseite — Sanja-Block prominent */

.about-teaser {
  padding: var(--pad-y) var(--pad-x);
}
.about-teaser__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-teaser__visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about-teaser__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-teaser__copy { max-width: 48ch; }
.about-teaser__eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 1rem;
  display: block;
}
.about-teaser__name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 1.4rem + 2.6vw, 4rem);
  line-height: 1.05;
  margin: 0 0 0.5rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.about-teaser__role {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.4rem);
  color: var(--muted);
  margin-bottom: 2rem;
  display: block;
}
.about-teaser__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.55rem);
  line-height: 1.55;
  margin: 0 0 2rem;
  color: var(--ink);
}
.about-teaser__signature {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* About-Page — Sanja-Block (ähnliche Struktur) */

.about-page__hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(4rem, 8vh, 7rem) var(--pad-x) var(--pad-y);
}
.about-page__visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about-page__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page__copy { max-width: 48ch; }
.about-page__name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 1.6rem + 3vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.about-page__role {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.5rem);
  color: var(--muted);
  margin-bottom: 2rem;
  display: block;
}
.about-page__copy p {
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.about-page__copy p.lead {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.45rem);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Services-Sektion auf Startseite — 3 Karten ──────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.services-grid--2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
  display: flex;
  flex-direction: column;
}
.service-card__visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.service-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.service-card:hover .service-card__visual img { transform: scale(1.04); }

.service-card__num {
  font-family: var(--f-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 0.5rem;
  display: block;
}
.service-card h3 {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.service-card p {
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
  flex-grow: 1;
}

/* Pull-Quote ─────────────────────────────────────────────── */

.pullquote {
  text-align: center;
  padding: var(--pad-y) var(--pad-x);
}
.pullquote blockquote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.6rem);
  line-height: 1.3;
  max-width: 28ch;
  margin: 0 auto;
  color: var(--ink);
}
.pullquote .ornament {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--muted);
  margin-bottom: 2rem;
  letter-spacing: 0.5em;
}

/* IMPRESSIONEN-Banner — Bild als Hintergrund, schmal ──── */

.image-banner {
  position: relative;
  width: 100%;
  height: clamp(300px, 38vh, 420px);
  overflow: hidden;
  background: var(--ink);
}
.image-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.image-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--img-filter) brightness(0.6);
}
.image-banner__overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem var(--pad-x);
  color: var(--bg);
}
.image-banner__overlay h2 {
  color: var(--bg);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.8rem);
  max-width: 24ch;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

/* Impressionen — Masonry-Grid ───────────────────────────── */

.impressions { padding: clamp(3rem, 6vh, 5rem) var(--pad-x); }

/* Multi-Column-Masonry-Layout: Bilder behalten ihre natürlichen Proportionen,
   keine festen Höhen, kein Beschnitt. Auch wenn Spans im Markup stehen, werden
   sie hier ignoriert (siehe .impression unten). */
.impressions__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  column-count: 3;
  column-gap: clamp(0.5rem, 1vw, 1rem);
}
.impression {
  /* Button-Reset, da impression ein <button> ist (für Lightbox-Trigger). */
  display: block;
  border: 0;
  padding: 0;
  margin: 0 0 clamp(0.5rem, 1vw, 1rem);
  font: inherit;
  color: inherit;
  cursor: zoom-in;
  position: relative;
  background: transparent;
  overflow: hidden;
  /* In Multi-Column Layouts wichtig: Item nicht zwischen Spalten brechen. */
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  width: 100%;
}
.impression:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}
.impression img {
  /* Natürliche Bildhöhe — kein object-fit-Beschnitt mehr. */
  width: 100%;
  height: auto;
  display: block;
  object-fit: initial;
  transition: transform 1.2s ease, opacity 0.3s ease;
}
.impression:hover img { transform: scale(1.03); }
/* Span-Klassen aus altem Grid-Layout — werden im Masonry-Layout ignoriert. */
.impression--lg-h,
.impression--lg-v,
.impression--md-sq,
.impression--sm,
.impression--wide { /* no-op */ }

.impressions__cta {
  text-align: center;
  margin-top: clamp(2.5rem, 5vh, 4rem);
}

/* LIGHTBOX ─────────────────────────────────────────────────── */

.kro-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 15, 15, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vh, 3rem) clamp(1rem, 5vw, 5rem);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: zoom-out;
}
.kro-lightbox.is-open {
  display: flex;
  opacity: 1;
}
.kro-lightbox__stage {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.kro-lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  filter: none !important; /* Lightbox nie in S/W rendern, auch nicht bei body.kro-mono-images. */
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  user-select: none;
  -webkit-user-drag: none;
}
.kro-lightbox__btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}
.kro-lightbox__btn:hover,
.kro-lightbox__btn:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  outline: none;
}
.kro-lightbox__close {
  top: clamp(1rem, 3vh, 2rem);
  right: clamp(1rem, 3vw, 2rem);
}
.kro-lightbox__prev,
.kro-lightbox__next {
  top: 50%;
  transform: translateY(-50%);
}
.kro-lightbox__prev { left: clamp(0.5rem, 2vw, 2rem); }
.kro-lightbox__next { right: clamp(0.5rem, 2vw, 2rem); }
.kro-lightbox__counter {
  position: absolute;
  bottom: clamp(1rem, 3vh, 2rem);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
}

/* Body-Scroll-Lock wenn Lightbox offen. */
body.kro-lightbox-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .kro-lightbox { padding: 0.5rem; }
  .kro-lightbox__btn { width: 44px; height: 44px; font-size: 18px; }
  .kro-lightbox__close { top: 0.75rem; right: 0.75rem; }
  .kro-lightbox__prev { left: 0.5rem; }
  .kro-lightbox__next { right: 0.5rem; }
  .kro-lightbox__img { max-height: 80vh; }
}

/* Pillars ────────────────────────────────────────────────── */

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}
.pillar { border-top: var(--hairline-deep); padding-top: 1.5rem; }
.pillar h4 { margin: 0 0 0.6rem; }
.pillar p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Final CTA ──────────────────────────────────────────────── */

.final {
  background: var(--ink);
  color: var(--bg);
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
}
.final__inner { max-width: 720px; margin: 0 auto; }
.final h2 {
  color: var(--bg);
  margin: 0 auto 1.5rem;
  line-height: 1.15;
  max-width: 24ch;
}
.final p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.35rem);
  color: rgba(255,255,255,0.85);
  margin: 0 0 2.5rem;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Page-Body ──────────────────────────────────────────────── */

.page-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad-x) var(--pad-y);
}
.page-body p, .page-body li {
  font-size: 16.5px;
  line-height: 1.75;
}
.page-body h2, .page-body h3 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.page-body h2:first-child, .page-body h3:first-child { margin-top: 0; }
.page-body ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}
.page-body ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
}
.page-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 1px;
  background: var(--muted);
}
.page-body a {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}
.page-body a:hover { border-color: var(--muted); }

/* Services-Detail-Page ──────────────────────────────────── */

.service-block {
  padding: var(--pad-y) var(--pad-x);
  scroll-margin-top: 100px;
}
.service-block:nth-child(even) { background: var(--bg-alt); }
.service-block__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.service-block:nth-child(odd) .service-block__visual { order: 2; }
.service-block__visual {
  aspect-ratio: 5 / 6;
  overflow: hidden;
}
.service-block__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-block__copy h3 {
  margin: 1.5rem 0 1.25rem;
  max-width: 22ch;
}
.service-block__intro {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
  margin: 0 0 2rem;
  color: var(--ink-soft);
}
.service-block__items {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.6rem 2rem;
}
.service-block__items li {
  font-size: 15px;
  padding: 0.85rem 0;
  border-bottom: var(--hairline);
  position: relative;
  padding-left: 1.4rem;
}
.service-block__items li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--muted);
}
.service-block__for-whom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: var(--hairline);
}
.service-block__for-whom strong {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--muted);
  display: block;
  margin-bottom: 0.5rem;
}

/* FAQ ─────────────────────────────────────────────────────── */

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(3rem, 6vh, 5rem) var(--pad-x) var(--pad-y);
}
.faq-item { border-bottom: var(--hairline-deep); }
.faq-item:first-child { border-top: var(--hairline-deep); }
.faq-item__q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1.75rem 0;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.45rem);
  line-height: 1.3;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.4s ease;
}
.faq-item__q:hover { color: var(--muted); }
.faq-item__q .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}
.faq-item__q .icon::before, .faq-item__q .icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.45s ease;
}
.faq-item__q .icon::before { width: 100%; height: 1px; top: 50%; left: 0; }
.faq-item__q .icon::after { width: 1px; height: 100%; top: 0; left: 50%; }
.faq-item.is-open .faq-item__q .icon::after { transform: scaleY(0); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.faq-item__a-inner {
  padding: 0 0 2rem;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 65ch;
}

/* Kontakt ─────────────────────────────────────────────────── */

.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 6vh, 5rem) var(--pad-x) var(--pad-y);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.contact-info { max-width: 38ch; }
.contact-info p {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.3rem);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.contact-info__block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: var(--hairline);
}
.contact-info__block h4 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin: 0 0 0.75rem;
}
.contact-info__block p {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 15px;
  line-height: 1.6;
}

.contact-form {
  background: var(--bg);
  padding: clamp(2rem, 4vw, 3rem);
  border: var(--hairline-deep);
}

/* Kontakt-Sektion auf Startseite — eigener Container */
.contact-home {
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg-alt);
}
.contact-home__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

/* v8: links = Text oben + Bild drunter, rechts = Formular allein */
.contact-home__inner--stacked-left {
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact-home__left {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3vw, 2.5rem);
}
.contact-home__left .contact-home__image {
  width: 100%;
}
.contact-home__left .contact-home__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.contact-home__email {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  margin-top: -0.5rem;
}
.contact-home__email a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.contact-home__right {
  position: sticky;
  top: 100px;
}

.contact-home__intro h2 {
  font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.6rem);
  margin: 1.25rem 0 1rem;
  max-width: 18ch;
}
.contact-home__intro p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

/* Fluent Forms Override ──────────────────────────────────── */

.contact-form .ff-el-input--label label,
.contact-form .ff-el-input--content label,
.contact-home__form .ff-el-input--label label,
.contact-home__form .ff-el-input--content label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.contact-form .ff-el-form-control,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form select,
.contact-form textarea,
.contact-home__form .ff-el-form-control,
.contact-home__form input[type="text"],
.contact-home__form input[type="email"],
.contact-home__form input[type="tel"],
.contact-home__form input[type="date"],
.contact-home__form select,
.contact-home__form textarea {
  font-family: var(--f-body) !important;
  font-size: 15px !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: var(--hairline-deep) !important;
  border-radius: 0 !important;
  padding: 0.85rem 0 !important;
  color: var(--ink) !important;
  width: 100%;
  transition: border-color 0.4s ease;
}
.contact-form .ff-el-form-control:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.contact-home__form .ff-el-form-control:focus,
.contact-home__form input:focus,
.contact-home__form select:focus,
.contact-home__form textarea:focus {
  outline: none !important;
  border-bottom-color: var(--ink) !important;
}
.contact-form button[type="submit"],
.contact-form .ff-btn-submit,
.contact-home__form button[type="submit"],
.contact-home__form .ff-btn-submit {
  font-family: var(--f-body) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.2em !important;
  padding: 1.15rem 2.1rem !important;
  border: 1px solid var(--ink) !important;
  background: var(--ink) !important;
  color: var(--bg) !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: background 0.5s ease, color 0.5s ease;
}
.contact-form button[type="submit"]:hover,
.contact-form .ff-btn-submit:hover,
.contact-home__form button[type="submit"]:hover,
.contact-home__form .ff-btn-submit:hover {
  background: transparent !important;
  color: var(--ink) !important;
}

.contact-fallback {
  padding: 2rem;
  background: var(--bg-alt);
  border: var(--hairline-deep);
  font-size: 15px;
  line-height: 1.6;
}

/* INSTAGRAM-Sektion ──────────────────────────────────────── */

.instagram-section {
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
}
.instagram-section__head { margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.instagram-section h2 {
  font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.6rem);
  margin: 1rem 0 0.5rem;
}
.instagram-section .eyebrow {
  justify-content: center;
}
.instagram-section__handle {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.3rem);
  color: var(--muted);
  margin-bottom: 2rem;
  display: block;
}
.instagram-section__handle a {
  border-bottom: 1px solid var(--muted);
  padding-bottom: 2px;
}
.instagram-section__cta {
  margin-top: clamp(2rem, 4vh, 3rem);
}

/* Smash-Balloon-Override für S/W-Look. */
.instagram-section .sbi-instagram-feed,
.instagram-section #sb_instagram {
  max-width: var(--max-w);
  margin: 0 auto;
}
.instagram-section #sb_instagram .sbi_item img {
  filter: var(--img-filter);
}

/* Footer ─────────────────────────────────────────────────── */

.site-footer {
  background: var(--bg);
  padding: clamp(3rem, 6vh, 5rem) var(--pad-x) 2rem;
  border-top: var(--hairline);
}
.site-footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: var(--hairline);
}
.site-footer h5 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.site-footer a {
  font-size: 14px;
  color: var(--ink);
}
.site-footer a:hover { color: var(--muted); }
.site-footer .signature {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 28ch;
  margin-top: 0.75rem;
}
.site-footer__legal {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.site-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.site-footer__credit-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-footer__credit-logo {
  display: inline-flex;
  align-items: center;
  border: 0 !important;
  padding: 0 !important;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.site-footer__credit-logo:hover { opacity: 1; }
.site-footer__credit-logo img {
  height: 24px;
  width: auto;
  max-width: 100px;
  display: block;
  filter: none !important; /* Logo nie in S/W rendern */
}
.site-footer__credit a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-deep);
  padding-bottom: 1px;
  transition: border-color 0.4s ease;
}
.site-footer__credit a:hover { border-color: var(--ink); }
/* Logo-Link braucht keinen Underline-Border. */
.site-footer__credit a.site-footer__credit-logo { border-bottom: 0; }

/* 404 ────────────────────────────────────────────────────── */

.error-404 {
  text-align: center;
  padding: clamp(5rem, 12vh, 10rem) var(--pad-x);
  max-width: 600px;
  margin: 0 auto;
}
.error-404 .display-num {
  font-family: var(--f-display);
  font-size: 6rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1;
  margin-bottom: 1rem;
}

/* WP-Defaults ─────────────────────────────────────────────── */

.alignleft  { float: left;  margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption-text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-top: 0.5rem;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px,1px,1px,1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Reveal-Animation ───────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 1.1s ease, transform 1.1s ease;
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* HERO-SLIDER ─────────────────────────────────────────────── */

.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(700px, 92vh, 1100px);
  overflow: hidden;
  background: var(--bg-alt);
}
.hero-slider__track {
  position: absolute;
  inset: 0;
}
.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}
.hero-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border: 0;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
  color: var(--ink);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider__nav:hover { background: var(--bg); }
.hero-slider__nav--prev { left: 1.5rem; }
.hero-slider__nav--next { right: 1.5rem; }

.hero-slider__dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.hero-slider__dot {
  width: 36px;
  height: 2px;
  background: rgba(255,255,255,0.45);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 0.4s ease;
}
.hero-slider__dot.is-active { background: rgba(255,255,255,1); }
.hero-slider__dot:hover { background: rgba(255,255,255,0.8); }

/* HERO-VIDEO (v8 — ersetzt Slider) ────────────────────────── */

.hero-video {
  position: relative;
  width: 100%;
  height: clamp(560px, 88vh, 1050px);
  overflow: hidden;
  background: #000;
}
.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}
.hero-video__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  /* Wird sichtbar wenn Video nicht autoplayt (z.B. Mobile-Datensparmodus). */
}

/* Reduzierte Animationen respektieren — Video pausieren */
@media (prefers-reduced-motion: reduce) {
  .hero-video__media {
    /* Browser pausieren autoplay-Videos hier automatisch — Poster wird angezeigt. */
    animation: none;
  }
}

/* About-Page Sanja-Großbuchstaben + Bild-Break ─────────── */

.about-page__name--upper {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.about-page__copy .lead-sub {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
  color: var(--muted);
  margin: -0.75rem 0 1.5rem;
}
.about-page__break {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(2rem, 4vh, 4rem) var(--pad-x);
}
.about-page__break img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* SERVICES-ACCORDION ─────────────────────────────────────── */

.services-accordion {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) var(--pad-y);
}

.service-acc {
  border-top: var(--hairline-deep);
  scroll-margin-top: 100px;
}
.service-acc:last-child { border-bottom: var(--hairline-deep); }

.service-acc__header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1.75rem 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: background 0.3s ease;
}
.service-acc__header:hover {
  background: var(--bg-alt);
}

.service-acc__visual {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}
.service-acc__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 4s ease;
}
.service-acc__header:hover .service-acc__visual img { transform: scale(1.04); }

.service-acc__head-text { padding-right: clamp(1rem, 3vw, 3rem); }

.service-acc__head-text .eyebrow {
  margin-bottom: 0.6rem;
}
.service-acc__title {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.95rem);
  margin: 0.25rem 0 1rem;
  max-width: 30ch;
  line-height: 1.15;
}
.service-acc__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.service-acc__price {
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  font-style: italic;
}
.service-acc__toggle-hint {
  font-family: var(--f-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.service-acc__toggle-hint .icon {
  width: 18px;
  height: 18px;
  position: relative;
}
.service-acc__toggle-hint .icon::before,
.service-acc__toggle-hint .icon::after {
  content: "";
  position: absolute;
  background: var(--muted);
  transition: transform 0.4s ease;
}
.service-acc__toggle-hint .icon::before {
  top: 50%; left: 0; width: 100%; height: 1px;
}
.service-acc__toggle-hint .icon::after {
  top: 0; left: 50%; width: 1px; height: 100%;
}
.service-acc[aria-expanded="true"] .service-acc__toggle-hint .icon::after,
.service-acc.is-open .service-acc__toggle-hint .icon::after {
  transform: scaleY(0);
}

.service-acc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.service-acc__body-inner {
  padding: 0.5rem 0 3rem clamp(0px, calc(280px + clamp(1.5rem, 3vw, 3rem)), 320px);
  max-width: 760px;
}

/* SERVICES-PAGE v8 ─────────────────────────────────────────── */

/* Klickbare Service-Card auf der Services-Seite (Anker zum Detail). */
.service-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.service-card__link .link-underline {
  margin-top: 0.5rem;
}

/* Editorial-Detail-Block — immer sichtbar, Bild + Text nebeneinander, alternierend. */
.services-details {
  background: var(--bg);
}
.service-detail {
  padding: clamp(3.5rem, 8vh, 7rem) var(--pad-x);
  scroll-margin-top: 100px;
  border-top: var(--hairline-deep);
}
.service-detail:first-child { border-top: 0; }
.service-detail__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.service-detail--flip .service-detail__inner {
  grid-template-columns: 1.05fr 0.95fr;
}
.service-detail--flip .service-detail__visual {
  order: 2;
}
.service-detail--flip .service-detail__content {
  order: 1;
}

.service-detail__visual {
  position: sticky;
  top: 110px;
}
.service-detail__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.service-detail__content .eyebrow {
  margin-bottom: 1rem;
}
.service-detail__title {
  font-size: clamp(1.6rem, 1.2rem + 1.3vw, 2.4rem);
  margin: 0.5rem 0 1.5rem;
  max-width: 24ch;
  line-height: 1.15;
}
.service-detail__intro {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.3rem);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
}
.service-detail__overview {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.65;
}
.service-detail__overview em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.95rem;
}
.service-detail__outro {
  margin: 2rem 0;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
}
.service-detail__cta {
  border-top: var(--hairline);
  padding-top: 2rem;
  margin-top: 2rem;
}
.service-detail__cta-text {
  font-family: var(--f-display);
  font-style: italic;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.service-detail__cta-text em { font-style: italic; }
.service-detail__cta-note {
  margin-top: 1rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* LEISTUNGEN-ACCORDION (innerhalb des Service-Detail-Blocks) ─ */

.leistungen-accordion {
  border-top: var(--hairline);
  border-bottom: var(--hairline);
  margin: 2rem 0;
}
.leistungen-accordion__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 1.25rem 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
}
.leistungen-accordion__label {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink);
}
.leistungen-accordion__icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}
.leistungen-accordion__icon::before,
.leistungen-accordion__icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.4s ease;
}
.leistungen-accordion__icon::before {
  top: 50%; left: 0; width: 100%; height: 1px;
}
.leistungen-accordion__icon::after {
  top: 0; left: 50%; width: 1px; height: 100%;
}
.leistungen-accordion.is-open .leistungen-accordion__icon::after {
  transform: scaleY(0);
}

.leistungen-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.leistungen-accordion__body-inner {
  padding: 0.25rem 0 2rem;
}
.leistungen-accordion__block {
  margin-bottom: 1.75rem;
}
.leistungen-accordion__block:last-child { margin-bottom: 0; }
.leistungen-accordion__block h4 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.2rem);
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.leistungen-accordion__block ul,
.leistungen-accordion__items-flat {
  list-style: none;
  padding: 0;
  margin: 0;
}
.leistungen-accordion__block li,
.leistungen-accordion__items-flat li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.55;
}
.leistungen-accordion__block li::before,
.leistungen-accordion__items-flat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.85rem;
  height: 1px;
  background: var(--muted);
}

.service-acc__intro {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
  margin: 0 0 1.5rem;
  color: var(--ink);
}
.service-acc__overview {
  margin: 0 0 2.5rem;
  color: var(--muted);
}

.service-acc__blocks {
  margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.service-acc__block h4 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink);
  margin: 0 0 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: var(--hairline);
}
.service-acc__block ul,
.service-acc__items-flat {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-acc__block li,
.service-acc__items-flat li {
  font-size: 15px;
  line-height: 1.55;
  padding: 0.5rem 0 0.5rem 1.4rem;
  position: relative;
}
.service-acc__block li::before,
.service-acc__items-flat li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--muted);
}
.service-acc__items-flat {
  margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0 2rem;
}
.service-acc__items-flat li {
  border-bottom: var(--hairline);
  padding: 0.85rem 0 0.85rem 1.4rem;
}

.service-acc__outro {
  font-style: italic;
  color: var(--muted);
  margin: 0 0 2.5rem;
  font-family: var(--f-display);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
  line-height: 1.5;
}

.service-acc__price-block {
  background: var(--bg-alt);
  padding: 1.5rem 1.75rem;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-left: 3px solid var(--ink);
}
.service-acc__price-label {
  font-family: var(--f-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.service-acc__price-big {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1;
}
.service-acc__price-note {
  font-size: 14px;
  color: var(--muted);
  margin: 0.4rem 0 0;
}

.service-acc__cta {
  text-align: left;
}
.service-acc__cta-text {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  color: var(--ink);
  margin: 0 0 1.5rem;
  max-width: 50ch;
  line-height: 1.5;
}
.service-acc__cta-note {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin: 1rem 0 0;
}

/* CONTACT-HOME mit Sanja-Bild ────────────────────────────── */

.contact-home__inner--with-image {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact-home__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.contact-home__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTACT-PAGE mit Sanja-Bild ────────────────────────────── */

.contact-page {
  padding: clamp(3rem, 6vh, 5rem) var(--pad-x) var(--pad-y);
}
.contact-page__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact-page__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.contact-page__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-page__content {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

/* v8: Text + Bild gestapelt links, Formular rechts (analog Home) */
.contact-page__inner--stacked-left {
  grid-template-columns: 1fr 1fr;
}
.contact-page__inner--stacked-left .contact-page__left {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 3vw, 2.5rem);
}
.contact-page__inner--stacked-left .contact-page__image {
  width: 100%;
  aspect-ratio: 4 / 5;
}
.contact-page__inner--stacked-left .contact-info {
  max-width: none;
}
.contact-page__right {
  position: sticky;
  top: 110px;
}
.contact-info__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.1rem, 0.95rem + 0.5vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.contact-info__intro {
  font-family: var(--f-body);
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-info__block {
  border-top: var(--hairline);
  padding-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.contact-info__block h4 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin: 0 0 0.6rem;
}
.contact-info__block p { margin: 0; }

/* FOOTER-BADGE ────────────────────────────────────────────── */

.footer-badge {
  margin-top: 1.5rem;
}
.footer-badge img {
  width: 90px;
  height: auto;
  filter: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.footer-badge img:hover { opacity: 1; }


/* ─────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────── */

/* Tablet quer ≤ 1100px */
@media (max-width: 1100px) {
  :root { --pad-y: clamp(3.5rem, 8vh, 7rem); }
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .services-grid { gap: 1.25rem; }
  .hero-fullwidth__visual { height: clamp(600px, 80vh, 900px); }
}

/* Tablet ≤ 900px */
@media (max-width: 900px) {
  .about-teaser__grid,
  .about-page__hero,
  .service-block__inner,
  .contact-grid,
  .contact-home__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .service-block:nth-child(odd) .service-block__visual { order: 0; }
  .impressions__grid {
    column-count: 2;
  }

  .hero-fullwidth__visual { height: clamp(550px, 70vh, 800px); }
  .page-hero { height: clamp(380px, 55vh, 560px); }

  /* Services: 3 → 2 Spalten auf Tablet */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile groß ≤ 720px */
@media (max-width: 720px) {
  :root {
    --pad-x: 1.25rem;
    --pad-y: clamp(3rem, 7vh, 5rem);
  }
  body { font-size: 16px; }

  .topbar { font-size: 10.5px; }
  .topbar__inner {
    padding: 0.6rem var(--pad-x);
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .site-header__inner { padding: 0.85rem 1.25rem; }
  .logo--image img { height: 72px; max-width: 240px; }

  /* Nav-Wrapper aus dem Flex-Flow nehmen, sonst sitzt der Burger mittig
     statt rechts (space-between rechnet sonst mit 3 statt 2 Children). */
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
  }

  /* Burger sicher nach rechts. */
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .primary-menu {
    display: none;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: 1rem var(--pad-x) 2rem;
    border-bottom: var(--hairline);
    z-index: 65;
    box-shadow: 0 24px 48px -16px rgba(0,0,0,0.12);
  }
  .primary-menu > li { width: 100%; }
  .primary-menu > li > a {
    padding: 1.25rem 0;
    border-bottom: var(--hairline);
    width: 100%;
    display: block;
    font-size: 13px;
  }
  .primary-menu .header-cta {
    margin: 1.5rem 0 0;
    text-align: center;
    border: 1px solid var(--ink) !important;
    padding: 1rem 1.4rem !important;
    width: 100%;
  }
  .primary-menu.is-open {
    display: flex !important;
  }

  .hero-fullwidth__visual {
    height: clamp(500px, 75vh, 720px);
  }

  /* Hero-Video Mobile */
  .hero-video {
    height: clamp(420px, 70vh, 640px);
    min-height: 380px;
  }

  /* Hero-Slider Mobile (Legacy) */
  .hero-slider {
    height: clamp(500px, 75vh, 720px);
    min-height: 420px;
  }
  .hero-slider__nav {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  .hero-slider__nav--prev { left: 0.75rem; }
  .hero-slider__nav--next { right: 0.75rem; }
  .hero-slider__dots {
    bottom: 1rem;
    gap: 0.4rem;
  }
  .hero-slider__dot { width: 24px; }

  .hero-bar { padding: 2rem 1.25rem; }
  .hero-bar h1 {
    font-size: clamp(1.5rem, 5vw, 2.1rem);
    line-height: 1.15;
    max-width: 20ch;
  }
  .hero-bar__sub {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .hero-bar__actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .hero-bar__actions .btn,
  .hero-bar__actions .link-underline {
    width: 100%;
    text-align: center;
  }
  .hero-bar__actions .btn { padding: 1.2rem 1.5rem; }

  .page-hero { height: clamp(340px, 50vh, 480px); }

  /* Services: alle untereinander */
  .services-grid,
  .services-grid--2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .service-card__visual { aspect-ratio: 4 / 3; }

  /* Service-Accordion Mobile */
  .service-acc__header {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem 0;
  }
  .service-acc__visual { aspect-ratio: 16 / 10; }
  .service-acc__head-text { padding-right: 0; }
  .service-acc__price-row {
    justify-content: flex-start;
    gap: 1rem;
  }
  .service-acc__body-inner {
    padding-left: 0;
    padding-bottom: 2rem;
  }

  /* About-Block: Bild oben, Text drunter; Sanja-Name groß */
  .about-teaser__name { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .about-page__name   { font-size: clamp(2rem, 8vw, 3rem); }
  .about-page__break img { aspect-ratio: 4 / 3; }

  /* Contact-Home & Contact-Page Mobile */
  .contact-home__inner,
  .contact-home__inner--with-image,
  .contact-home__inner--stacked-left,
  .contact-page__inner,
  .contact-page__inner--stacked-left {
    grid-template-columns: 1fr;
  }
  .contact-home__right,
  .contact-page__right {
    position: static;
    top: auto;
  }
  .contact-page__image { aspect-ratio: 5 / 4; }

  /* Service-Detail-Block (v8) Mobile: Bild oben, Text drunter, kein Sticky */
  .service-detail { padding: 3rem var(--pad-x); }
  .service-detail__inner,
  .service-detail--flip .service-detail__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-detail--flip .service-detail__visual { order: 0; }
  .service-detail--flip .service-detail__content { order: 1; }
  .service-detail__visual {
    position: static;
    top: auto;
  }
  .service-detail__visual img { aspect-ratio: 4 / 3; }
  .service-detail__title { font-size: clamp(1.4rem, 6vw, 2rem); }

  .impressions__grid {
    column-count: 2;
    column-gap: 0.4rem;
  }
  .impression { margin-bottom: 0.4rem; }

  .image-banner { height: clamp(220px, 30vh, 320px); }

  .pillars__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }
  .site-footer__legal {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .page-header {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }
  .page-header h1 { font-size: clamp(1.75rem, 6vw, 2.6rem); }
  .page-header__sub { font-size: 1rem; }

  .pullquote { padding: 4rem 1.25rem; }
  .pullquote blockquote { font-size: clamp(1.4rem, 5vw, 1.9rem); }

  .final h2 { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
  .service-block__items { grid-template-columns: 1fr; }

  .contact-home__intro h2 { font-size: clamp(1.5rem, 6vw, 2.1rem); }
}

/* Mobile mittel ≤ 540px */
@media (max-width: 540px) {
  .logo--image img { height: 62px; max-width: 220px; }
  .hero-fullwidth__visual {
    height: clamp(440px, 70vh, 640px);
  }
  .hero-slider {
    height: clamp(440px, 70vh, 640px);
  }
  .hero-bar h1 { font-size: clamp(1.35rem, 5.5vw, 1.85rem); }
  .topbar__inner { font-size: 9.5px; }
}

/* Sehr klein ≤ 380px */
@media (max-width: 380px) {
  .topbar { display: none; }
  .hero-fullwidth__visual { height: clamp(400px, 65vh, 560px); }
}
