/* ===================================================================
   CIRCLEONE — Komponenten
   Header · Hero · Step-Cards · Text/Bild · USP · Standorte · Preise
   FAQ · Formulare · Impact-Rail · Galerie · Footer
   =================================================================== */

/* ═══ HEADER ══════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--co-white);
  border-bottom: 1px solid var(--co-line);
  transition: background var(--dur-ui) var(--ease-out),
              box-shadow var(--dur-ui) var(--ease-out);
}
.site-header[data-scrolled="true"] {
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
          backdrop-filter: blur(16px) saturate(130%);
  box-shadow: var(--shadow-head);
  border-bottom-color: transparent;
}

/* Standortleiste */
.locbar {
  background: var(--co-charcoal);
  color: var(--co-white);
}
.locbar__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  min-height: 46px;
  overflow-x: auto;
  scrollbar-width: none;
}
.locbar__inner::-webkit-scrollbar { display: none; }
.locbar__label {
  font-size: 11px;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  color: var(--co-gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.locbar__list { display: flex; gap: var(--sp-1); }
.locbar__list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 var(--sp-3);
  font-size: 12.5px;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, .78);
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out);
}
.locbar__list a:hover { color: var(--co-white); }
.locbar__list a[aria-current="page"] { color: var(--co-gold); font-weight: var(--fw-semi); }

/* Hauptnavigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: var(--head-h);
  transition: min-height var(--dur-ui) var(--ease-out);
}
.site-header[data-scrolled="true"] .nav { min-height: var(--head-h-sm); }

.nav__logo { flex-shrink: 0; display: inline-flex; align-items: center; min-height: 44px; }
.nav__logo img, .nav__logo svg {
  width: 219px;
  height: auto;
  transition: width var(--dur-ui) var(--ease-out);
}
.site-header[data-scrolled="true"] .nav__logo img { width: 206px; }

.nav__links { display: flex; align-items: center; gap: var(--sp-1); }
.nav__links > li > a,
.nav__links > li > button {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: 44px;
  padding: 0 var(--sp-3);
  background: none;
  border: 0;
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  color: var(--co-graphite);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav__links > li > a:hover,
.nav__links > li > button:hover { color: var(--co-charcoal); }
.nav__links > li > a[aria-current="page"] { color: var(--co-charcoal); font-weight: var(--fw-semi); }
.nav__links > li > a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: var(--sp-3); right: var(--sp-3); bottom: 8px;
  height: 2px;
  background: var(--co-gold);
}
.nav__chev {
  width: 9px; height: 9px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--dur-ui) var(--ease-out);
}
[aria-expanded="true"] > .nav__chev { transform: rotate(-135deg) translate(-2px, -2px); }

/* Dropdown 300–380 px */
.nav__drop {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 320px;
  padding: var(--sp-3);
  background: var(--co-white);
  border: 1px solid var(--co-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), visibility 180ms;
}
.nav__item { position: relative; }
.nav__item[data-open="true"] .nav__drop {
  opacity: 1; visibility: visible; transform: translateY(8px);
}
.nav__drop a {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  font-size: var(--fs-small);
  color: var(--co-graphite);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.nav__drop a:hover { background: var(--co-paper); color: var(--co-charcoal); }
.nav__drop small { display: block; font-size: 12px; color: var(--co-gold-text); margin-top: 1px; }

.nav__cta { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.nav__cta .btn { min-height: 48px; padding-inline: var(--sp-6); }

/* Burger */
.burger {
  display: none;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 22px; height: 1.8px;
  background: var(--co-charcoal);
  position: relative;
  transition: background var(--dur-fast) var(--ease-out);
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px; height: 1.8px;
  background: var(--co-charcoal);
  transition: transform var(--dur-ui) var(--ease-out);
}
.burger span::before { top: -7px; }
.burger span::after  { top:  7px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .burger { display: inline-flex; }
  .nav { min-height: var(--head-h-mob); }
  .site-header[data-scrolled="true"] .nav { min-height: var(--head-h-mob); }
  .nav__logo img { width: 180px; }
  .site-header[data-scrolled="true"] .nav__logo img { width: 180px; }
}
@media (max-width: 559px) {
  .nav__cta .btn { display: none; }
  .nav__logo img { width: 166px; }
}

/* ═══ MOBILMENÜ ═══════════════════════════════════════════════════ */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--co-charcoal);
  color: var(--co-white);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur-ui) var(--ease-out),
              transform var(--dur-ui) var(--ease-out),
              visibility var(--dur-ui);
  -webkit-overflow-scrolling: touch;
}
.nav-overlay[data-open="true"] { opacity: 1; visibility: visible; transform: none; }
.nav-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--head-h-mob);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.nav-overlay__close {
  width: 48px; height: 48px;
  background: none;
  border: 0;
  color: var(--co-white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.nav-overlay__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: var(--sp-8);
  padding-block: var(--sp-8) var(--sp-10);
}
.nav-overlay h2 {
  font-size: 11px;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--co-gold);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-4);
}
.nav-overlay a:not(.btn) {
  display: block;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: color var(--dur-fast) var(--ease-out), padding-left var(--dur-fast) var(--ease-out);
}
.nav-overlay a:not(.btn):hover { color: var(--co-gold); padding-left: 6px; }
.nav-overlay .btn { width: 100%; margin-top: var(--sp-5); }
body[data-lock="true"] { overflow: hidden; }

/* ═══ HERO ════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(820px, calc(62vw + 200px), 980px);   /* +200 px, Kundenwunsch */
  background: var(--co-charcoal);
  color: var(--co-white);
  overflow: clip;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: var(--focus, 50% 42%); }
/* Zwei Verläufe: einer von unten für den Textblock, einer von links, damit
   Eyebrow und Headline auch über hellen Bildstellen lesbar bleiben.
   Zielkorridor laut Masteranalyse: 38–55 % Schwarz. */
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(23,25,24,.34) 0%, rgba(23,25,24,.22) 28%, rgba(23,25,24,.82) 100%),
    linear-gradient(90deg,  rgba(23,25,24,.66) 0%, rgba(23,25,24,.28) 48%, rgba(23,25,24,0) 82%);
}
@media (max-width: 767px) {
  .hero::after {
    background:
      linear-gradient(180deg, rgba(23,25,24,.46) 0%, rgba(23,25,24,.38) 26%, rgba(23,25,24,.86) 100%);
  }
}
.hero__inner { padding-block: var(--space-xl) var(--space-lg); min-width: 0; }
.hero__content { max-width: 660px; min-width: 0; }
.hero .eyebrow { color: var(--co-gold); }
.hero h1 { color: var(--co-white); max-width: 12ch; }
.hero h1 .u2 { display: block; }
.hero__sub {
  margin-top: var(--sp-6);
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
  color: rgba(255, 255, 255, .9);
  max-width: 34ch;
  font-weight: var(--fw-medium);
}
.hero__anchor {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding: var(--sp-3) var(--sp-5);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--r-pill);
  font-size: var(--fs-small);
  color: var(--co-white);
}
.hero__anchor b { color: var(--co-gold); font-weight: var(--fw-bold); }

.hero--compact { min-height: clamp(620px, calc(42vw + 200px), 740px); }
.hero--compact h1 { max-width: 20ch; }

@media (max-width: 767px) {
  .hero { min-height: 760px; }
  .hero__content { max-width: 100%; }
  .hero__sub { max-width: 100%; }
}

/* ═══ 3-SCHRITTE-CARDS ════════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-5);
}
.step-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 320px;
  padding: clamp(24px, 3vw, 42px);
  border-top: 2px solid var(--co-gold);
  background: var(--co-white);
  box-shadow: var(--shadow-soft);
}
.step-card__index {
  font-size: var(--fs-index);
  line-height: .95;
  font-weight: var(--fw-light);
  color: var(--co-gold);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--sp-4);
}
.step-card h3 {
  margin-bottom: var(--sp-4);
  max-width: 100%;
  font-size: clamp(1.375rem, 1.2rem + .7vw, 1.75rem);
  overflow-wrap: anywhere;
}
.step-card p { font-size: 1.0625rem; }
.step-card .btn, .step-card .link-gold { margin-top: var(--sp-6); align-self: start; }

@media (max-width: 900px) { .steps { grid-template-columns: 1fr; gap: var(--sp-4); } .step-card { min-height: 0; } }

/* ═══ TEXT / BILD 50:50 ═══════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__body, .split__media { min-width: 0; }
.split__media { min-height: 0; }
/* Breite gewinnt: ohne width:100% erzwingt aspect-ratio zusammen mit min-height
   eine Box, die breiter ist als ihre Rasterspalte. */
.split__media .media { width: 100%; min-height: clamp(320px, 38vw, 560px); }
.split__body > * + * { margin-top: var(--sp-5); }
.split__body { min-width: 0; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: var(--sp-8); }
  .split--reverse .split__media { order: 0; }
  .split__media .media { min-height: 0; aspect-ratio: 4 / 3; }
}

/* ═══ USP-GRID ════════════════════════════════════════════════════ */
.usps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-5);
}
.usp { min-width: 0; }
.usp {
  padding: var(--sp-6) 0 var(--sp-6) var(--sp-6);
  border-left: 2px solid var(--co-gold);
}
.usp h3 { font-size: 1.125rem; margin-bottom: var(--sp-2); }
.usp p { font-size: 1rem; }
@media (max-width: 900px) { .usps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-4); } }
@media (max-width: 559px) { .usps { grid-template-columns: 1fr; } }

/* ═══ NUMMERIERTE LEISTUNGSBLÖCKE ═════════════════════════════════ */
.blocks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-8) var(--sp-9); }
.block { min-width: 0; }
.block__num {
  display: block;
  font-size: 13px;
  letter-spacing: var(--ls-eyebrow);
  font-weight: var(--fw-bold);
  color: var(--co-gold-text);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--sp-3);
}
.block h3 { margin-bottom: var(--sp-3); }
@media (max-width: 900px) { .blocks { grid-template-columns: 1fr; gap: var(--sp-7); } }

/* ═══ STANDORT-KACHELN ════════════════════════════════════════════ */
.loc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-5); }
.loc-card {
  display: block;
  position: relative;
  overflow: clip;
  background: var(--co-charcoal);
  color: var(--co-white);
  min-height: 380px;
}
.loc-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-card) var(--ease-out);
}
.loc-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,25,24,.05) 30%, rgba(23,25,24,.82) 100%);
}
.loc-card:hover img, .loc-card:focus-visible img { transform: scale(1.03); }
.loc-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 380px;
  padding: var(--sp-6);
}
.loc-card h3 { color: var(--co-white); font-size: 1.5rem; transition: transform var(--dur-fast) var(--ease-out); }
.loc-card:hover h3 { transform: translateY(-3px); }
.loc-card__meta { font-size: var(--fs-small); color: rgba(255,255,255,.78); margin-top: var(--sp-2); }
.loc-card__go {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-4);
  font-size: 13px; font-weight: var(--fw-semi);
  letter-spacing: var(--ls-btn); text-transform: uppercase;
  color: var(--co-gold);
}
.loc-card--soon { pointer-events: none; }
.loc-card--soon .loc-card__go { color: rgba(255,255,255,.6); }
@media (max-width: 900px) { .loc-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 559px) { .loc-grid { grid-template-columns: 1fr; } .loc-card, .loc-card__body { min-height: 300px; } }

/* ═══ ÖFFNUNGSZEITEN ══════════════════════════════════════════════ */
.hours-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--sp-5); }
.hours-box {
  min-width: 0;
  padding: var(--sp-7);
  background: var(--co-white);
  border: 1px solid var(--co-line);
  border-top: 2px solid var(--co-gold);
}
.sec--dark .hours-box { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.14); }
.hours-box h3 { font-size: 1.125rem; margin-bottom: var(--sp-4); }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: var(--sp-2) 0; font-size: var(--fs-small); font-weight: var(--fw-regular); }
.hours th { color: var(--co-graphite); padding-right: var(--sp-5); white-space: nowrap; }
.hours td { color: var(--co-charcoal); font-weight: var(--fw-semi); }
.sec--dark .hours th { color: rgba(255,255,255,.7); }
.sec--dark .hours td { color: var(--co-white); }
@media (max-width: 767px) { .hours-grid { grid-template-columns: 1fr; } }
/* Unter 620 px reicht die Breite für zwei Tabellenspalten nicht mehr —
   Bezeichnung und Zeit stehen dann untereinander. */
@media (max-width: 620px) {
  .hours, .hours tbody, .hours tr, .hours th, .hours td { display: block; width: 100%; }
  .hours th { white-space: normal; padding: var(--sp-3) 0 0; }
  .hours td { padding: 2px 0 0; }
  .hours tr + tr th { border-top: 1px solid var(--co-line); }
  .sec--dark .hours tr + tr th { border-top-color: rgba(255,255,255,.14); }
}

/* ═══ KONTAKTKARTE ════════════════════════════════════════════════ */
.contact-card { padding: var(--sp-7); background: var(--co-paper); border-top: 2px solid var(--co-gold); }
.sec--dark .contact-card { background: rgba(255,255,255,.04); }
.sec--dark .block__num { color: var(--co-gold); }
.contact-card { min-width: 0; }
.contact-card dl { display: grid; gap: var(--sp-4); margin: 0; }
.contact-card dt {
  font-size: 11px; letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  font-weight: var(--fw-bold); color: var(--co-gold-text); margin-bottom: 2px;
}
.sec--dark .contact-card dt { color: var(--co-gold); }
.contact-card dd { margin: 0; font-size: 1.0625rem; overflow-wrap: anywhere; }
.contact-card a { text-decoration: underline; text-underline-offset: 3px; }

/* WhatsApp-Button je Standort */
.wa-btn {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  min-height: 52px; padding: 0 var(--sp-6);
  border-radius: var(--r-pill);
  background: var(--co-gold); color: var(--surface-0);
  border: 1px solid var(--co-gold);
  font-size: var(--fs-btn); font-weight: var(--fw-semi);
  letter-spacing: var(--ls-btn); text-transform: uppercase;
  transition: background var(--dur-ui) var(--ease-out), color var(--dur-ui) var(--ease-out);
}
.wa-btn:hover, .wa-btn:focus-visible { background: transparent; color: var(--co-gold); }
.wa-btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ═══ PREISKARTEN ═════════════════════════════════════════════════ */
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--sp-5); align-items: stretch; }
.price-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  padding: var(--sp-7);
  background: var(--co-white);
  border: 1px solid var(--co-line);
  border-top: 2px solid var(--co-line);
}
.price-card--feature { border-top-color: var(--co-gold); box-shadow: var(--shadow-soft); }
.price-card__tag {
  font-size: 11px; letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  font-weight: var(--fw-bold); color: var(--co-gold-text); margin-bottom: var(--sp-3);
}
.price-card h3 { font-size: 1.375rem; margin-bottom: var(--sp-3); }
.price {
  font-size: clamp(2rem, 1.5rem + 1.6vw, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--co-charcoal);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.price small { font-size: .9rem; font-weight: var(--fw-medium); color: var(--co-graphite); letter-spacing: 0; }
.price-card ul { margin-top: var(--sp-5); }
.price-card .btn { margin-top: var(--sp-6); }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

/* ═══ FAQ / LLMO ══════════════════════════════════════════════════ */
.faq { max-width: 880px; }
.faq__item { border-bottom: 1px solid var(--co-line); }
.sec--dark .faq__item { border-bottom-color: rgba(255,255,255,.14); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  width: 100%;
  min-height: 72px;
  padding: var(--sp-5) 0;
  background: none;
  border: 0;
  text-align: left;
  font-size: clamp(1.0625rem, 1rem + .3vw, 1.25rem);
  font-weight: var(--fw-semi);
  line-height: 1.34;
  color: var(--co-charcoal);
  cursor: pointer;
}
.sec--dark .faq__q { color: var(--co-white); }
.faq__q:hover { color: var(--co-gold-text); }
.sec--dark .faq__q:hover { color: var(--co-gold); }
.faq__chev {
  flex-shrink: 0;
  width: 12px; height: 12px;
  border-right: 2px solid var(--co-gold);
  border-bottom: 2px solid var(--co-gold);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform var(--dur-ui) var(--ease-in-out);
}
.faq__q[aria-expanded="true"] .faq__chev { transform: rotate(-135deg) translate(-3px, -3px); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-ui) var(--ease-in-out);
}
.faq__item[data-open="true"] .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding-bottom: var(--sp-5); max-width: 72ch; }
.faq__a p + p { padding-top: 0; margin-top: calc(var(--sp-4) * -1 + var(--sp-4)); }

/* ═══ FORMULARE ═══════════════════════════════════════════════════ */
.form-shell {
  padding: clamp(20px, 3vw, 48px);
  background: var(--co-white);
  border: 1px solid var(--co-line);
  border-top: 2px solid var(--co-gold);
}
.sec--dark .form-shell { background: var(--co-white); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--sp-5); }
.field--full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

.field label, .field .label {
  display: block;
  font-size: 12.5px;
  font-weight: var(--fw-semi);
  color: var(--co-graphite);
  margin-bottom: 8px;
  letter-spacing: .01em;
}
.field label .req { color: var(--co-error); }
.field-control {
  min-height: var(--field-h);
  width: 100%;
  padding: 0 var(--sp-4);
  border: 1px solid var(--co-line);
  border-radius: var(--field-r);
  background: var(--co-white);
  color: var(--co-charcoal);
  font-size: 1rem;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
textarea.field-control { min-height: 140px; padding: var(--sp-4); resize: vertical; }
select.field-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555856' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  padding-right: var(--sp-9);
}
.field-control:focus-visible {
  outline: none;
  border-color: var(--co-gold-dark);
  box-shadow: 0 0 0 3px rgba(200, 167, 117, .25);
}
.field[aria-invalid="true"] .field-control { border-color: var(--co-error); }
.field__error {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--co-error);
}
.field__error::before { content: "!"; display: inline-grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; background: var(--co-error); color: #fff; font-size: 11px; font-weight: 700; }
.field[aria-invalid="true"] .field__error { display: flex; }

.check { display: flex; gap: var(--sp-3); align-items: flex-start; }
.check input { width: 24px; height: 24px; margin-top: 1px; flex-shrink: 0; accent-color: var(--co-gold-text); }
.check label { font-size: 13.5px; font-weight: var(--fw-regular); line-height: 1.5; margin: 0; }

.form-shell .btn[type="submit"] { min-height: 54px; margin-top: var(--sp-5); }
.form-status { margin-top: var(--sp-4); font-size: var(--fs-small); }
.form-status[data-state="success"] { color: var(--co-success); font-weight: var(--fw-semi); }
.form-status[data-state="error"]   { color: var(--co-error); font-weight: var(--fw-semi); }

/* ═══ IMPACT-RAIL SLIDER ══════════════════════════════════════════ */
.impact-rail { display: flex; gap: 12px; min-height: 600px; }
.impact-slide {
  position: relative;
  flex: 0 1 15%;
  min-width: 0;
  overflow: clip;
  background: var(--co-charcoal);
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  color: var(--co-white);
  transition: flex-basis var(--dur-layout) var(--ease-soft), opacity var(--dur-ui) var(--ease-out);
  opacity: .82;
}
.impact-slide[aria-selected="true"] { flex-basis: 55%; opacity: 1; }
.impact-slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform var(--dur-layout) var(--ease-soft);
}
.impact-slide[aria-selected="true"] img { transform: scale(1); }
.impact-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,25,24,.12) 40%, rgba(23,25,24,.86) 100%);
}
.impact-slide__body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  height: 100%; min-height: 600px;
  padding: var(--sp-7);
}
.impact-slide__num { font-size: 12px; letter-spacing: var(--ls-eyebrow); color: var(--co-gold); font-weight: var(--fw-bold); font-variant-numeric: tabular-nums; }
.impact-slide__title {
  margin-top: var(--sp-3);
  font-size: clamp(1.25rem, 1.05rem + .8vw, 2rem);
  font-weight: var(--fw-bold);
  color: var(--co-white);
  line-height: 1.14;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: writing-mode 0s;
}
.impact-slide[aria-selected="true"] .impact-slide__title { writing-mode: horizontal-tb; transform: none; }
.impact-slide__text, .impact-slide .link-gold {
  opacity: 0; max-height: 0; overflow: hidden;
  transition: opacity var(--dur-ui) var(--ease-out) 220ms;
}
.impact-slide[aria-selected="true"] .impact-slide__text,
.impact-slide[aria-selected="true"] .link-gold { opacity: 1; max-height: 260px; }
.impact-slide__text { margin-top: var(--sp-4); max-width: 46ch; color: rgba(255,255,255,.86); }
.impact-slide[aria-selected="true"] .link-gold { margin-top: var(--sp-5); }

.rail-controls { display: flex; align-items: center; gap: var(--sp-4); margin-top: var(--sp-6); }
.rail-btn {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--co-line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background var(--dur-ui) var(--ease-out), border-color var(--dur-ui) var(--ease-out), color var(--dur-ui) var(--ease-out);
}
.sec--dark .rail-btn { border-color: rgba(255,255,255,.3); color: var(--co-white); }
.rail-btn:hover { background: var(--co-gold); border-color: var(--co-gold); color: var(--co-charcoal); }
.rail-count { font-size: var(--fs-small); font-variant-numeric: tabular-nums; letter-spacing: .04em; }

@media (max-width: 900px) {
  .impact-rail { overflow-x: auto; scroll-snap-type: x mandatory; min-height: 0; -webkit-overflow-scrolling: touch; }
  .impact-slide, .impact-slide[aria-selected="true"] { flex: 0 0 86vw; scroll-snap-align: center; opacity: 1; }
  .impact-slide__body { min-height: 460px; }
  .impact-slide__title { writing-mode: horizontal-tb; transform: none; }
  .impact-slide__text, .impact-slide .link-gold { opacity: 1; max-height: 260px; }
}

/* ═══ GALERIE ═════════════════════════════════════════════════════ */
.gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 32%);
  gap: var(--sp-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--sp-4);
  scrollbar-width: thin;
}
.gallery > * { scroll-snap-align: start; }
.gallery img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
@media (max-width: 767px) { .gallery { grid-auto-columns: 82vw; } }

/* ═══ APP-MODUL ═══════════════════════════════════════════════════ */
.app-mod { display: grid; grid-template-columns: 44% 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.app-mod > * { min-width: 0; }
.app-stores { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-top: var(--sp-6); }
.app-stores img { height: 46px; width: auto; }
@media (max-width: 900px) { .app-mod { grid-template-columns: 1fr; } }

/* ═══ PRESSE / MEDIA-GRID ═════════════════════════════════════════ */
.media-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--sp-6); }
.media-item { background: var(--co-white); border: 1px solid var(--co-line); padding: var(--sp-6); }
.media-item__meta { display: flex; gap: var(--sp-4); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--co-gold-text); font-weight: var(--fw-bold); margin-bottom: var(--sp-3); }
@media (max-width: 900px) { .media-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 559px) { .media-grid { grid-template-columns: 1fr; } }

/* ═══ BLOG ════════════════════════════════════════════════════════ */
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--sp-6); }
.post-card { display: grid; grid-template-rows: auto auto 1fr auto; background: var(--co-white); border: 1px solid var(--co-line); }
.post-card .media { aspect-ratio: 3 / 2; }
.post-card__body { padding: var(--sp-6); display: grid; grid-template-rows: auto auto 1fr auto; }
.post-card time { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--co-gold-text); font-weight: var(--fw-bold); }
.post-card h3 { margin: var(--sp-3) 0; font-size: 1.25rem; }
/* Die ganze Karte ist klickbar — der Titel-Link spannt sich darüber auf. */
.post-card { position: relative; }
.post-card h3 a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.post-card .link-gold { position: relative; z-index: 2; pointer-events: none; }
.post-card:hover h3 { color: var(--co-gold-text); }
.post-card:has(a:focus-visible) { outline: 2px solid var(--co-gold-dark); outline-offset: 3px; }
.post-card p { font-size: 1rem; }
.post-card .link-gold { margin-top: var(--sp-5); }
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 559px) { .post-grid { grid-template-columns: 1fr; } }

.article { max-width: 72ch; margin-inline: auto; }
.article > * + * { margin-top: var(--sp-5); }
.article h2 { margin-top: var(--sp-9); font-size: clamp(1.5rem,1.25rem+1vw,2rem); }
.article h3 { margin-top: var(--sp-7); }

/* ═══ PAGINIERUNG ═════════════════════════════════════════════════ */
.pager { display: flex; gap: var(--sp-3); justify-content: center; margin-top: var(--sp-9); }
.pager a, .pager span {
  min-width: 48px; min-height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--co-line);
  border-radius: var(--r-sm);
  font-size: var(--fs-small); font-weight: var(--fw-semi);
}
.pager [aria-current="page"] { background: var(--co-charcoal); color: var(--co-white); border-color: var(--co-charcoal); }

/* ═══ BREADCRUMB ══════════════════════════════════════════════════ */
.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 0 var(--sp-2);
        font-size: 13px; line-height: 1; color: var(--co-graphite); padding-block: var(--sp-5) 0; }
.crumb li { display: inline-flex; align-items: center; min-height: 32px; }
.crumb li + li::before { content: "›"; margin-right: var(--sp-2); color: var(--co-gold);
        display: inline-flex; align-items: center; }
.crumb a:hover { color: var(--co-charcoal); text-decoration: underline; }

/* ═══ ABSCHLUSS-CTA ═══════════════════════════════════════════════ */
.cta-final { display: grid; grid-template-columns: 1fr auto; gap: var(--sp-8); align-items: center; }
.cta-final > * { min-width: 0; }
.cta-final h2 { max-width: 18ch; }
@media (max-width: 900px) { .cta-final { grid-template-columns: 1fr; } }

/* ═══ FOOTER ══════════════════════════════════════════════════════ */
.site-footer { background: var(--co-charcoal); color: rgba(255,255,255,.78); }
.footer-cta { padding-block: var(--space-lg) var(--space-lg); border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-cta h2 { color: var(--co-white); }

.footer-boutiques {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: var(--sp-6);
  padding-block: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-boutique h3 { font-size: 1rem; color: var(--co-white); margin-bottom: var(--sp-3); }
.footer-boutique p, .footer-boutique a { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.72); overflow-wrap: anywhere; }
.footer-boutique a:hover { color: var(--co-gold); }
.footer-boutique .link-gold { margin-top: var(--sp-3); font-size: 12px; }
@media (max-width: 1100px) { .footer-boutiques { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 767px)  { .footer-boutiques { grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--sp-5); } }
@media (max-width: 400px)  { .footer-boutiques { grid-template-columns: 1fr; } }

.footer-main { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--sp-8); padding-block: var(--space-lg); }
.footer-brand img { width: 190px; margin-bottom: var(--sp-5); }
.footer-brand p { font-size: 14px; max-width: 30ch; }
.footer-brand b { color: var(--co-gold); font-weight: var(--fw-bold); display: block; margin-top: var(--sp-3); }
.footer-col h3 {
  font-size: 11px; letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: var(--co-gold); font-weight: var(--fw-bold); margin-bottom: var(--sp-4);
}
.footer-col a, .footer-col span {
  display: flex; align-items: center;
  min-height: 44px;
  font-size: 14.5px;
  color: rgba(255,255,255,.76);
  transition: color var(--dur-fast) var(--ease-out), padding-left var(--dur-fast) var(--ease-out);
}
.footer-col a:hover { color: var(--co-gold); padding-left: 4px; }
.footer-col span { color: rgba(255,255,255,.45); }
@media (max-width: 900px) { .footer-main { grid-template-columns: repeat(2, 1fr); gap: var(--sp-7); } }
@media (max-width: 480px) { .footer-main { grid-template-columns: 1fr; } }

.footer-social { display: flex; gap: var(--sp-3); margin-top: var(--sp-6); }
.footer-social a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  transition: background var(--dur-ui) var(--ease-out), border-color var(--dur-ui) var(--ease-out);
}
.footer-social a:hover { background: var(--co-gold); border-color: var(--co-gold); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-social a:hover svg { fill: var(--co-charcoal); }

.footer-legal {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-5);
  padding-block: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13.5px;
}
.footer-legal a, .footer-legal button {
  display: inline-flex; align-items: center; min-height: 44px;
}
.footer-legal a:hover { color: var(--co-gold); }
.footer-legal button {
  background: none; border: 0; cursor: pointer;
  color: inherit; font-size: inherit; padding: 0;
  text-decoration: underline; text-underline-offset: 3px;
}

/* ═══ STICKY MOBILE CTA ═══════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: none;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4) calc(var(--sp-3) + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-top: 1px solid var(--co-line);
}
.sticky-cta .btn { flex: 1; min-height: 52px; padding-inline: var(--sp-4); font-size: 12.5px; }
@media (max-width: 767px) {
  body[data-sticky-cta="true"] .sticky-cta { display: flex; }
  body[data-sticky-cta="true"] .site-footer { padding-bottom: 76px; }
}

/* ═══ HINWEISBOX ══════════════════════════════════════════════════ */
.notice {
  padding: var(--sp-6);
  background: var(--co-paper);
  border-left: 3px solid var(--co-gold);
}
.notice h3 { font-size: 1.0625rem; margin-bottom: var(--sp-3); }
.notice p { font-size: 1rem; }
.sec--dark .notice { background: rgba(255,255,255,.05); }

/* ═══ ZITAT / SOCIAL PROOF ════════════════════════════════════════ */
.quotes { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--sp-5); }
.quote { padding: var(--sp-7); background: var(--co-white); border-top: 2px solid var(--co-gold); box-shadow: var(--shadow-soft); }
.quote blockquote { font-size: 1.0625rem; line-height: 1.6; color: var(--co-charcoal); }
.quote figcaption { margin-top: var(--sp-4); font-size: 13.5px; color: var(--co-gold-text); font-weight: var(--fw-semi); }
.stars { display: flex; gap: 3px; margin-bottom: var(--sp-4); color: var(--co-gold); }
.stars svg { width: 16px; height: 16px; fill: currentColor; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }

/* ═══ TABELLE ═════════════════════════════════════════════════════ */
.table-wrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; font-size: var(--fs-small); min-width: 520px; }
table.data th, table.data td { text-align: left; padding: var(--sp-4); border-bottom: 1px solid var(--co-line); }
table.data th { font-weight: var(--fw-semi); color: var(--co-charcoal); background: var(--co-paper); }


/* ═══ BLOCKSATZ-GALERIE (Kundenwunsch 08/2026) ════════════════════ */
/* Verschachtelter Galerie-Block (09.08.): verschieden große Bilder,
   dicht gesetzt, außen rundum eine gerade Blockkante — das Muster
   big/tall/wide füllt das 4-Spalten-Raster exakt auf. */
.mgal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 16px;
}
.mgal__item {
  position: relative;
  padding: 0;
  border: 0;
  background: var(--surface-3);
  cursor: zoom-in;
  overflow: clip;
  display: block;
  border-radius: var(--r-lg);
}
.mgal__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-card) var(--ease-out), opacity var(--dur-card) var(--ease-out);
}
.mgal__item:hover img, .mgal__item:focus-visible img { transform: scale(1.04); }
.mgal__item--big  { grid-column: span 2; grid-row: span 2; }
.mgal__item--wide { grid-column: span 2; }
.mgal__item--tall { grid-row: span 2; }
.mgal__zoom {
  position: absolute; right: 12px; bottom: 12px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(16, 18, 17, .72);
  color: var(--co-gold);
  font-size: 22px; font-weight: 300; line-height: 1;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.mgal__item:hover .mgal__zoom, .mgal__item:focus-visible .mgal__zoom { opacity: 1; }
@media (max-width: 900px) {
  .mgal { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 165px; gap: 12px; }
}
@media (max-width: 560px) {
  .mgal { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .mgal__item, .mgal__item--big, .mgal__item--wide, .mgal__item--tall {
    grid-column: auto; grid-row: auto; aspect-ratio: 4 / 3; }
}

/* ═══ LIGHTBOX ═════════════════════════════════════════════════════ */
.lb {
  position: fixed; inset: 0;
  z-index: 300;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(10, 11, 10, .94);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.lb[data-open="true"] { display: flex; }
.lb__img {
  max-width: min(92vw, 1400px);
  max-height: 84vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.lb__close {
  position: absolute; top: max(16px, env(safe-area-inset-top)); right: 20px;
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: none; border: 0; cursor: pointer;
  color: var(--co-gold);
  font-size: 44px; font-weight: 300; line-height: 1;
  transition: transform var(--dur-fast) var(--ease-out);
}
.lb__close:hover { transform: rotate(90deg); }
.lb__nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 76px; height: 76px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  cursor: pointer;
  color: var(--co-white);
  transition: background var(--dur-ui) var(--ease-out), color var(--dur-ui) var(--ease-out),
              border-color var(--dur-ui) var(--ease-out);
}
.lb__nav svg { width: 30px; height: 30px; }
.lb__nav:hover { background: var(--co-gold); border-color: var(--co-gold); color: var(--surface-0); }
.lb__prev { left: max(20px, 3vw); }
.lb__next { right: max(20px, 3vw); }
.lb__count {
  position: absolute; bottom: max(18px, env(safe-area-inset-bottom));
  left: 50%; transform: translateX(-50%);
  font-size: 14px; letter-spacing: .14em;
  color: var(--co-gold);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 700px) {
  .lb__nav { width: 56px; height: 56px; }
  .lb__prev { left: 8px; } .lb__next { right: 8px; }
  .lb__img { max-width: 96vw; }
}

/* ═══ WHATSAPP-FLOAT mit Standort-Badge ════════════════════════════ */
.wa-float-wrap { position: fixed; right: 20px; bottom: 20px; z-index: 210; }
a.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 210; }
.wa-float {
  display: grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--co-gold);
  color: var(--surface-0);
  border: 1.5px solid var(--co-gold); cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
  background: var(--surface-0); color: var(--co-gold); }
.wa-float .ico { width: 30px; height: 30px; stroke-width: 1.6; }
.wa-float__badge {
  position: absolute; top: -6px; left: -6px;
  min-width: 26px; height: 26px;
  padding: 0 4px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--surface-0);
  border: 1.5px solid var(--co-gold);
  color: var(--co-gold);
  font-size: 10.5px; font-weight: 800; letter-spacing: .04em;
}
.wa-float__menu {
  position: absolute; right: 0; bottom: 76px;
  width: 260px;
  padding: var(--sp-4);
  background: var(--surface-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}
.wa-float__menu p {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 800; color: var(--co-gold);
  margin: 0 0 var(--sp-2);
}
.wa-float__menu a {
  display: flex; align-items: center; gap: var(--sp-3);
  min-height: 46px;
  font-size: 15px; color: var(--text-mid);
  border-bottom: 1px solid var(--line-dark);
}
.wa-float__menu a:last-child { border-bottom: 0; }
.wa-float__menu a:hover { color: var(--co-gold); }
.wa-float__badge--inline {
  position: static;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .wa-float-wrap, a.wa-float { right: 14px; bottom: 14px; }
  body[data-sticky-cta="true"] .wa-float-wrap,
  body[data-sticky-cta="true"] a.wa-float {
    bottom: calc(86px + env(safe-area-inset-bottom));
  }
}

/* ═══ ICONS ════════════════════════════════════════════════════════ */
.ico { display: inline-block; vertical-align: middle; }
.ico--eyebrow { margin-right: 8px; margin-top: -2px; color: var(--co-gold); }
.block__ico { display: block; color: var(--co-gold); margin-bottom: var(--sp-3); }
.block__ico .ico { width: 30px; height: 30px; }


/* ═══ GOOGLE-MAPS-EINBETTUNG (Zwei-Klick) ═════════════════════════ */
.map-embed {
  position: relative;
  min-height: 380px;
  background: var(--surface-3);
  border: 1px solid var(--line-dark);
  border-top: 2px solid var(--co-gold);
  overflow: clip;
}
.map-embed iframe {
  display: block;
  width: 100%; height: 380px;
  border: 0;
  filter: grayscale(.15) contrast(1.02);
}
.map-embed__ph {
  display: grid;
  place-content: center;
  gap: var(--sp-4);
  min-height: 380px;
  padding: var(--sp-7);
  text-align: center;
}
.map-embed__ph .ico { width: 34px; height: 34px; color: var(--co-gold); margin-inline: auto; }
.map-embed__ph p { max-width: 44ch; font-size: 14px; color: var(--text-low); }
.map-embed__ph .btn { margin-inline: auto; }

/* ═══ „Dein Start“-Funnel — Modal im Liquid-Look ═══════════════════ */
.fnl { position: fixed; inset: 0; z-index: 260; display: flex; align-items: center; justify-content: center; padding: 20px; }
.fnl[hidden] { display: none; }
.fnl__backdrop { position: absolute; inset: 0; background: rgba(8, 9, 8, .62);
  -webkit-backdrop-filter: blur(10px) saturate(120%); backdrop-filter: blur(10px) saturate(120%); }
.fnl__panel { position: relative; width: min(720px, 100%); max-height: min(88vh, 860px);
  display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden;
  background: rgba(22, 24, 23, .88);
  -webkit-backdrop-filter: blur(26px) saturate(140%); backdrop-filter: blur(26px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .6), 0 4px 18px rgba(0, 0, 0, .4),
              inset 0 1px 0 rgba(255, 255, 255, .07); }
.fnl__panel:focus { outline: none; }
.fnl__x { position: absolute; top: 14px; right: 14px; z-index: 2; width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .06);
  color: var(--co-gold); font-size: 19px; line-height: 1; cursor: pointer;
  transition: background .2s ease, transform .2s ease; }
.fnl__x:hover { background: var(--co-gold); color: #101211; transform: rotate(90deg); }
.fnl__head { padding: 34px 40px 10px; }
.fnl__head h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem); color: #fff; margin: 6px 0 8px; }
.fnl__sub { color: rgba(255, 255, 255, .68); max-width: 46ch; }
.fnl__dots { display: flex; align-items: center; gap: 10px; list-style: none; margin: 20px 0 0; padding: 0; }
.fnl__dots li { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  font-size: .8rem; font-weight: 600; color: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .04);
  position: relative; transition: all .25s ease; }
.fnl__dots li + li::before { content: ""; position: absolute; right: 100%; top: 50%; width: 10px;
  height: 1px; background: rgba(255, 255, 255, .2); }
.fnl__dots li[data-state="now"] { background: #fff; color: #101211; border-color: #fff;
  box-shadow: 0 6px 20px rgba(255, 255, 255, .25); }
.fnl__dots li[data-state="done"] { background: var(--co-gold); color: #101211; border-color: var(--co-gold); }
.fnl__body { padding: 18px 40px 8px; overflow-y: auto; flex: 1; }
.fnl__q { color: #fff; font-size: clamp(1.25rem, 1.05rem + 1vw, 1.7rem); margin: 8px 0 18px; }
.fnl__opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-bottom: 12px; }
.fnl__opts--loc { grid-template-columns: 1fr 1fr; }
.fnl__opt { display: flex; align-items: center; gap: 12px; text-align: left; cursor: pointer;
  padding: 15px 18px; border-radius: var(--r-lg); font-size: .98rem; color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: border-color .2s ease, background .2s ease, transform .15s ease, box-shadow .2s ease; }
.fnl__opt:hover { border-color: rgba(200, 167, 117, .65); transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .35); }
.fnl__opt[aria-checked="true"] { border-color: var(--co-gold); background: rgba(200, 167, 117, .16);
  color: #fff; box-shadow: 0 12px 30px rgba(200, 167, 117, .18), inset 0 0 0 1px var(--co-gold); }
.fnl__opt span:first-of-type { flex: 1; }
.fnl__tick { width: 22px; height: 22px; flex: 0 0 22px; border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .35); position: relative; transition: all .2s ease; }
.fnl__opt[aria-checked="true"] .fnl__tick { background: var(--co-gold); border-color: var(--co-gold); }
.fnl__opt[aria-checked="true"] .fnl__tick::after { content: ""; position: absolute; left: 7px; top: 3.5px;
  width: 5px; height: 10px; border: solid #101211; border-width: 0 2px 2px 0; transform: rotate(42deg); }
.fnl__code { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; display: grid;
  place-items: center; font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  background: #101211; color: var(--co-gold); border: 1px solid rgba(200, 167, 117, .5); }
.fnl__fields { display: grid; gap: 14px; padding-bottom: 12px; }
.fnl__field { display: grid; gap: 6px; }
.fnl__field span { font-size: .85rem; color: rgba(255, 255, 255, .66); }
.fnl__field input { padding: 13px 16px; border-radius: var(--r-lg); font-size: 1rem; color: #fff;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .16); }
.fnl__field input:focus-visible { outline: none; border-color: var(--co-gold);
  box-shadow: 0 0 0 3px rgba(200, 167, 117, .28); }
.fnl__check { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem;
  color: rgba(255, 255, 255, .66); }
.fnl__check input { margin-top: 3px; accent-color: var(--co-gold); width: 17px; height: 17px; }
.fnl__check a { color: var(--co-gold); }
.fnl__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 40px 26px; border-top: 1px solid rgba(255, 255, 255, .08); }
.fnl__hint { flex: 1; text-align: center; font-size: .85rem; color: #E8B4A0; margin: 0; }
.fnl__done { text-align: center; padding: 18px 0 26px; }
.fnl__done p { color: rgba(255, 255, 255, .78); max-width: 44ch; margin: 0 auto 22px; }
.fnl__done-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.fnl__alt { margin-top: 18px; font-size: .85rem; color: rgba(255, 255, 255, .55); }
.fnl__alt a { color: var(--co-gold); }
@media (max-width: 640px) {
  .fnl { padding: 0; align-items: flex-end; }
  .fnl__panel { width: 100%; max-height: 94dvh; border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .fnl__head, .fnl__body, .fnl__foot { padding-left: 22px; padding-right: 22px; }
  .fnl__opts, .fnl__opts--loc { grid-template-columns: 1fr; }
  .fnl__dots li { width: 29px; height: 29px; }
}

/* ═══ Presse im Blog — Zeitungsscans & Tags ════════════════════════ */
.media--press { aspect-ratio: 4 / 3; overflow: hidden; }
.media--press img { object-fit: cover; object-position: top center; }
.media--press-full { max-width: 480px; margin: 0 auto; }
.media--press-full img { width: 100%; height: auto; display: block; }
.press-tag { display: inline-block; padding: 5px 13px; border-radius: 999px;
  font-size: .74rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  background: rgba(200, 167, 117, .16); color: var(--co-gold);
  border: 1px solid rgba(200, 167, 117, .45); margin-bottom: 10px; }
.sec--paper .press-tag { background: rgba(143, 107, 50, .1); color: #8F6B32;
  border-color: rgba(143, 107, 50, .4); }

/* ═══ Eigenes Kontaktformular ══════════════════════════════════════ */
.co-form { display: grid; gap: 16px; padding: clamp(22px, 3vw, 34px); }
.co-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.co-form .field { display: grid; gap: 6px; }
.co-form .label { font-size: .85rem; }
.co-form textarea.field-control { resize: vertical; min-height: 120px; }
.co-form__btns { margin-top: 4px; }
.co-form .form-status { min-height: 1.2em; margin: 0; font-size: .88rem; color: #E8B4A0; }
.co-form .form-status[data-state="success"] { color: #7FC79B; }
@media (max-width: 640px) { .co-grid { grid-template-columns: 1fr; } }

/* ═══ Buch-Mockups Natural Reset ═══════════════════════════════════ */
.book-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.5vw, 28px); }
@media (max-width: 760px) { .book-duo { grid-template-columns: 1fr; } }

/* ═══ Aktions-Grafik im Story-Format (1080×1920) ═══════════════════ */
.media--story { aspect-ratio: 9 / 16; max-width: 430px; margin-inline: auto;
  border-radius: var(--r-lg); overflow: hidden; }
.media--story img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ═══ Barrierefreiheits-Widget ═════════════════════════════════════ */
.a11y { position: fixed; left: 18px; bottom: 18px; z-index: 265; }
.a11y__btn { width: 54px; height: 54px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; color: var(--co-gold);
  background: rgba(22, 24, 23, .92); border: 1px solid rgba(200, 167, 117, .5);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .45);
  transition: transform .2s ease, box-shadow .25s ease; }
.a11y__btn:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(0, 0, 0, .55); }
.a11y__panel { position: absolute; left: 0; bottom: 66px; width: min(330px, calc(100vw - 36px));
  max-height: min(70vh, 620px); display: flex; flex-direction: column;
  border-radius: var(--r-lg); overflow: hidden;
  background: rgba(22, 24, 23, .94);
  -webkit-backdrop-filter: blur(24px) saturate(140%); backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .6); }
.a11y__head { display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid rgba(255, 255, 255, .09); }
.a11y__head strong { color: #fff; font-size: 1rem; }
.a11y__head > div { display: flex; align-items: center; gap: 8px; }
.a11y__reset { background: none; border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .75); border-radius: 999px; padding: 6px 12px;
  font-size: .74rem; cursor: pointer; }
.a11y__reset:hover { border-color: var(--co-gold); color: var(--co-gold); }
.a11y__x { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16);
  background: rgba(255, 255, 255, .06); color: var(--co-gold); cursor: pointer; font-size: 14px; }
.a11y__body { padding: 12px 14px 16px; overflow-y: auto; }
.a11y__group { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--co-gold); margin: 12px 4px 8px; font-weight: 600; }
.a11y__opt { display: flex; align-items: center; gap: 11px; width: 100%; text-align: left;
  padding: 11px 13px; margin-bottom: 7px; border-radius: var(--r-lg); cursor: pointer;
  font-size: .92rem; color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  transition: border-color .2s ease, background .2s ease; }
.a11y__opt:hover { border-color: rgba(200, 167, 117, .6); }
.a11y__opt[aria-pressed="true"] { border-color: var(--co-gold);
  background: rgba(200, 167, 117, .16); color: #fff; }
.a11y__dot { width: 34px; height: 20px; flex: 0 0 34px; border-radius: 999px; position: relative;
  background: rgba(255, 255, 255, .14); transition: background .2s ease; }
.a11y__dot::after { content: ""; position: absolute; top: 3px; left: 3px; width: 14px; height: 14px;
  border-radius: 50%; background: #fff; transition: transform .2s ease; }
.a11y__opt[aria-pressed="true"] .a11y__dot { background: var(--co-gold); }
.a11y__opt[aria-pressed="true"] .a11y__dot::after { transform: translateX(14px); background: #101211; }
.a11y__note { font-size: .72rem; color: rgba(255, 255, 255, .45); margin: 10px 4px 0; }
.a11y-fx { position: fixed; inset: 0; pointer-events: none; z-index: 240; }
.a11y-mask { position: fixed; inset: 0; pointer-events: none; z-index: 250; }
.a11y-mask__top, .a11y-mask__bot { position: absolute; left: 0; right: 0;
  background: rgba(8, 9, 8, .82); }
.a11y-mask__top { top: 0; height: 0; }
.a11y-mask__bot { bottom: 0; top: 160px; }
@media (max-width: 640px) { .a11y { left: 12px; bottom: 12px; } .a11y__btn { width: 48px; height: 48px; } }

/* Wirkungen der Schalter */
html.a11y-text { font-size: 118%; }
html.a11y-line p, html.a11y-line li, html.a11y-line dd, html.a11y-line .lead
  { line-height: 2 !important; }
html.a11y-font body, html.a11y-font h1, html.a11y-font h2, html.a11y-font h3,
html.a11y-font h4, html.a11y-font p, html.a11y-font a, html.a11y-font li,
html.a11y-font button, html.a11y-font input, html.a11y-font select, html.a11y-font textarea
  { font-family: Verdana, Arial, sans-serif !important; letter-spacing: .01em; }
html.a11y-links main a:not(.btn) { text-decoration: underline !important;
  text-underline-offset: 3px; text-decoration-color: var(--co-gold);
  text-decoration-thickness: 2px; font-weight: 600; }
html.a11y-focus a:focus, html.a11y-focus button:focus, html.a11y-focus input:focus,
html.a11y-focus select:focus, html.a11y-focus textarea:focus, html.a11y-focus [tabindex]:focus
  { outline: 3px solid var(--co-gold) !important; outline-offset: 3px !important; }
html.a11y-noimg main img, html.a11y-noimg .hero__bg img, html.a11y-noimg main video
  { opacity: 0 !important; }
html.a11y-noimg main .media, html.a11y-noimg .hero__bg { background: #202221 !important; }
html.a11y-noanim *, html.a11y-noanim *::before, html.a11y-noanim *::after
  { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
html.a11y-noanim [data-reveal] { opacity: 1 !important; transform: none !important; }

/* A11y-X: größere Klickfläche, innere Elemente klick-transparent */
.a11y__x { width: 40px; height: 40px; }
.a11y__x *, .a11y__opt *, .a11y__btn * { pointer-events: none; }

/* WICHTIG: hidden-Attribut muss display:flex des Panels schlagen */
.a11y__panel[hidden] { display: none !important; }
.a11y-mask[hidden] { display: none !important; }
.fnl[hidden] { display: none !important; }

/* ═══ Rechtstexte: ruhiges, mittiges Lese-Layout ═══════════════════ */
.legal { max-width: 720px; margin-inline: auto; padding-inline: clamp(20px, 6vw, 48px); }
.legal .legal__title { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem);
  font-weight: var(--fw-semi); margin-bottom: var(--sp-3); }
.legal .legal__sub { font-size: .9rem; margin-bottom: var(--sp-8); }
.legal h2 { font-size: 1.02rem; font-weight: var(--fw-semi); letter-spacing: .01em;
  margin: var(--sp-8) 0 var(--sp-3); }
.legal h3 { font-size: .93rem; font-weight: var(--fw-semi); margin: var(--sp-6) 0 var(--sp-2); }
.legal p, .legal li, .legal dd { font-size: .88rem; line-height: 1.75; }
.legal p { margin-bottom: var(--sp-4); }
.legal ul, .legal ol { padding-left: 1.2em; margin-bottom: var(--sp-4); }
.legal a { text-decoration: underline; text-underline-offset: 2px; }
.legal .legal-contacts { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5);
  margin-top: var(--sp-5); }
.legal .legal-contacts h3 { margin: 0 0 4px; }
.legal .legal-contacts p { font-size: .84rem; margin: 0; }
@media (max-width: 620px) { .legal .legal-contacts { grid-template-columns: 1fr; } }


/* ═══ Einheitliche Objektsprache: EIN Flächenradius überall ════════ */
.step-card, .price-card, .quote, .post-card, .media-item, .hours-box,
.contact-card, .notice, .form-shell, .media, .mgal__item, .map-embed,
.map-embed iframe, .faq, .usps .usp, .book-duo .media, .legal-contacts > div,
.hero__bg img, .sp-embed, table.data, .pager a, .pager span,
.field-control, input.field-control, select.field-control, textarea.field-control {
  border-radius: var(--r-lg);
}
.usp, .sec--paper .usp { border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.hero__bg img { border-radius: 0; }
.media, .mgal__item, .map-embed, .sp-embed { overflow: hidden; }

/* Slider & Standortkarten in die Rundungssprache aufnehmen */
.impact-slide { border-radius: var(--r-lg); }
.impact-rail { gap: 14px; }
.loc-card { border-radius: var(--r-lg); overflow: hidden; }

/* ═══ Goldener Cursor mit nachziehendem Ring (nur Desktop-Maus) ════ */
html.co-cursor, html.co-cursor * { cursor: none !important; }
.cur { display: none; }
html.co-cursor .cur { display: block; }
.cur__dot, .cur__ring {
  position: fixed; top: 0; left: 0; border-radius: 50%;
  pointer-events: none; opacity: 0; will-change: transform;
}
.cur__dot { z-index: 402; width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px;
  background: var(--co-gold); }
.cur__ring { z-index: 401; width: 40px; height: 40px; margin: -20px 0 0 -20px;
  border: 1.5px solid rgba(200, 167, 117, .6);
  transition: width .25s ease, height .25s ease, margin .25s ease,
              border-color .25s ease, background .25s ease; }
.cur__ring[data-link="true"] { width: 60px; height: 60px; margin: -30px 0 0 -30px;
  border-color: var(--co-gold); background: rgba(200, 167, 117, .1); }

/* Instagram-Icon je Studio im Footer */
.footer-boutique__links { display: flex; align-items: center; gap: 12px; }
.footer-ig { display: inline-grid; place-items: center; width: 34px; height: 34px;
  border-radius: 50%; color: var(--co-gold); border: 1px solid rgba(200, 167, 117, .45);
  transition: background .2s ease, color .2s ease, transform .2s ease; }
.footer-ig:hover { background: var(--co-gold); color: #101211; transform: translateY(-2px); }

/* Agentur-Credit im Footer */
.footer-credit { margin-left: auto; font-size: 12.5px; color: rgba(255, 255, 255, .45); }
.footer-credit a { color: rgba(255, 255, 255, .6); text-decoration: underline; text-underline-offset: 2px; }
.footer-credit a:hover { color: var(--co-gold); }
@media (max-width: 700px) { .footer-credit { margin-left: 0; width: 100%; } }
