/* =========================================================
   ENTERTAIN NOW - Stylesheet
   Aufbau:
     1  Tokens & Basis
     2  Layout-Bausteine
     3  Buttons & CTAs            (Element 2)
     4  Header / Navigation       (Element 2)
     5  Hero & Preis              (Element 1)
     6  Vertrauenssignale         (Element 6)
     7  Personenmarke Romeo       (Element 3)
     8  Anlaesse                  (Element 7)
     9  Staedte                   (Element 4)
    10  Preistabelle              (Element 1)
    11  FAQ-Accordion             (Element 5)
    12  Buchung, Formular, Addons (Element 8)
    13  Footer & Sticky-CTA       (Element 2)
    14  Text-/Rechtsseiten
    15  Responsive
   ========================================================= */

/* ============================== 1  TOKENS & BASIS ======================= */
:root {
  --c-accent:        #6ec6d9;
  --c-accent-dark:   #3fa8be;
  --c-accent-soft:   rgba(110, 198, 217, .12);
  --c-wa:            #25d366;
  --c-wa-dark:       #1da851;

  --c-bg:            #000000;
  --c-bg-alt:        #0b0d0f;
  --c-surface:       #121517;
  --c-surface-2:     #191d20;
  --c-line:          #23282c;

  --c-text:          #c9d1d5;
  --c-text-strong:   #ffffff;
  --c-text-mute:     #8b969c;
  --c-ink:           #00010a;

  --f-body:  'Roboto', Helvetica, Arial, sans-serif;
  --f-head:  'Rufina', Georgia, 'Times New Roman', serif;
  --f-script:'Cookie', 'Segoe Script', cursive;

  --pad:     clamp(16px, 3vw, 24px);
  --gap:     clamp(18px, 2.4vw, 30px);
  --sec-pad: clamp(48px, 6.5vw, 96px);
  --radius:  10px;
  --radius-lg: 16px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .45);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  /* Nichts darf breiter sein als der Bildschirm - sonst laesst sich die
     Seite auf dem Handy seitlich verschieben. */
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(110, 198, 217, .2);
}
body.nav-open { overflow: hidden; }

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--c-accent); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--c-accent-dark); }
p { margin: 0 0 16px; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--f-head);
  color: var(--c-text-strong);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
  overflow-wrap: break-word;
}

:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; border-radius: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--c-accent); color: #04222a; padding: 12px 20px; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

.icon { flex: 0 0 auto; }
.hl { color: var(--c-accent); }

/* ============================== 2  LAYOUT ============================== */
.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 var(--pad); }
.container--narrow { max-width: 860px; }

.section { padding: var(--sec-pad) 0; }
.section--alt { background: var(--c-bg-alt); }

.section-head { max-width: 720px; margin: 0 auto clamp(28px, 4vw, 48px); text-align: center; }
.section-kicker {
  font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--c-accent); margin: 0 0 10px; font-weight: 500;
}
.section-title { font-size: clamp(26px, 3.6vw, 42px); margin: 0 0 14px; -webkit-hyphens: auto; hyphens: auto; }
.section-title--sm { font-size: clamp(21px, 2.4vw, 28px); }
.section-lead { color: var(--c-text-mute); margin: 0; font-size: clamp(15px, 1.6vw, 17px); }
.section-foot { text-align: center; margin: clamp(26px, 3vw, 38px) 0 0; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; border-bottom: 1px solid rgba(110, 198, 217, .35); padding-bottom: 3px;
}

.stars { display: inline-flex; gap: 2px; color: #f5b544; vertical-align: -2px; }

/* ============================== 3  BUTTONS ============================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 26px;
  font-family: var(--f-body); font-size: 15px; font-weight: 500; line-height: 1.2;
  border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; text-align: center;
  transition: transform .18s ease, background-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn:active { transform: translateY(1px); }
.btn--sm { min-height: 42px; padding: 9px 16px; font-size: 14px; gap: 8px; }
.btn--lg { min-height: 58px; padding: 17px 34px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--wa { background: var(--c-wa); color: #04240f; font-weight: 700; }
.btn--wa:hover { background: var(--c-wa-dark); color: #fff; box-shadow: 0 10px 28px rgba(37, 211, 102, .28); }

.btn--phone {
  background: transparent; color: var(--c-text-strong);
  border-color: rgba(255, 255, 255, .25); font-weight: 500;
}
.btn--phone:hover { border-color: var(--c-accent); color: var(--c-accent); }

.btn--primary { background: var(--c-accent); color: #04222a; font-weight: 700; }
.btn--primary:hover { background: #fff; color: var(--c-ink); box-shadow: 0 10px 28px rgba(110, 198, 217, .25); }

.btn--ghost { background: transparent; color: var(--c-text); border-color: var(--c-line); }
.btn--ghost:hover { border-color: var(--c-accent); color: var(--c-accent); }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-row--lg .btn { min-height: 58px; padding: 17px 30px; font-size: 16px; }
.cta-hours {
  display: flex; align-items: center; gap: 8px;
  margin: 12px 0 0; font-size: 14px; color: var(--c-text-mute);
}
.cta-hours .icon { color: var(--c-accent); }

/* ============================== 4  HEADER ============================= */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background-color .3s ease;
}
.site-header.is-stuck { border-bottom-color: var(--c-line); background: rgba(0, 0, 0, .96); }
.site-header__inner {
  display: flex; align-items: center; gap: clamp(12px, 2vw, 28px);
  min-height: 72px; padding-top: 10px; padding-bottom: 10px;
}

/* --- Logo-Komponente: Groesse zentral hier steuern --------------------- */
.site-logo-link { flex: 0 0 auto; display: block; }
.site-logo--header { width: clamp(150px, 16vw, 205px); height: auto; }
.site-logo--footer { width: 200px; height: auto; margin-bottom: 18px; }
.site-logo--text {
  display: flex; flex-direction: column; line-height: 1.05; color: var(--c-accent);
}
.site-logo__name {
  font-family: var(--f-body); font-weight: 300; letter-spacing: .16em;
  font-size: clamp(19px, 2.4vw, 26px);
}
.site-logo__tagline {
  font-family: var(--f-body); font-weight: 300; letter-spacing: .38em;
  font-size: 9px; opacity: .85; margin-top: 3px;
}

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: clamp(14px, 1.8vw, 26px); }
.site-nav a {
  color: var(--c-text); font-size: 15px; font-weight: 400;
  padding: 6px 0; border-bottom: 2px solid transparent; display: block;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--c-accent); border-bottom-color: var(--c-accent); }

.site-header__cta { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.header-phone {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--c-text-strong); font-weight: 500; font-size: 15px; white-space: nowrap;
}
.header-phone .icon { color: var(--c-accent); }
.header-phone:hover { color: var(--c-accent); }

.nav-toggle {
  display: none; width: 46px; height: 46px; padding: 11px 10px;
  background: transparent; border: 1px solid var(--c-line); border-radius: 8px; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--c-text-strong); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span + span { margin-top: 5px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================== 5  HERO / PREIS ======================= */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 120px) 0 clamp(48px, 7vw, 96px);
  text-align: center;
  isolation: isolate;
}
/* Bildebene als eigenes Element: entsaettigt und abgedunkelt, damit
   Farbstiche des Fotos die Markenfarbe nicht stoeren.
   Bewusst KEINE CSS-Variable mit url() - relative Pfade darin wuerden
   gegen die CSS-Datei statt gegen das Dokument aufgeloest. */
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center top; background-repeat: no-repeat;
  /* Nur so weit abgedunkelt, dass der Text sicher lesbar bleibt - das Foto
     selbst soll erkennbar bleiben, es zeigt Romeo. */
  filter: grayscale(.18) brightness(.62) contrast(1.04);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .42) 45%, var(--c-bg) 100%),
    linear-gradient(100deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .3) 55%, rgba(0, 0, 0, .12) 100%);
}
.hero--compact { padding: clamp(44px, 6.5vw, 82px) 0 clamp(36px, 5vw, 64px); }
.hero__inner { max-width: 840px; }
.hero__kicker {
  font-size: 12.5px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--c-accent); margin: 0 0 14px; font-weight: 500;
}
.hero__title { font-size: clamp(30px, 5.6vw, 60px); margin: 0 0 16px; letter-spacing: -.5px; -webkit-hyphens: auto; hyphens: auto; }
.hero__sub {
  font-size: clamp(16px, 1.9vw, 19px); color: var(--c-text);
  margin: 0 auto 26px; max-width: 640px;
}

/* Element 1: Preis direkt unter der Headline */
.hero__price {
  display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
  background: rgba(110, 198, 217, .1);
  border: 1px solid rgba(110, 198, 217, .35);
  border-radius: var(--radius); padding: 12px 26px; margin: 0 0 26px;
}
.hero__price-main { font-size: clamp(19px, 2.6vw, 25px); color: var(--c-text-strong); }
.hero__price-main strong { color: var(--c-accent); font-size: 1.25em; font-weight: 700; }
.hero__price-note { font-size: 13.5px; color: var(--c-text-mute); }

.hero .cta-row { justify-content: center; }
.hero .cta-hours { justify-content: center; }
.hero__rating {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  flex-wrap: wrap; margin-top: 20px; font-size: 14.5px; color: var(--c-text-mute);
}
.hero__rating strong { color: var(--c-text-strong); }

/* Banner (Unterseiten ohne Hero) */
.banner {
  position: relative;
  padding: clamp(46px, 6vw, 84px) 0; text-align: center; isolation: isolate;
}
.banner .hero__bg { filter: grayscale(.25) brightness(.5) contrast(1.03); }
.banner::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .78));
}
.banner__title { font-size: clamp(28px, 4.6vw, 48px); margin: 0 0 8px; }
.banner__sub { font-family: var(--f-script); font-size: clamp(24px, 3.2vw, 36px); color: var(--c-accent); margin: 0; }

/* Breadcrumb */
.breadcrumb { border-bottom: 1px solid var(--c-line); background: var(--c-bg-alt); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 0; font-size: 13.5px; }
.breadcrumb li { color: var(--c-text-mute); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #3a4247; }
.breadcrumb a { color: var(--c-text-mute); }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb li[aria-current] { color: var(--c-accent); }

/* ============================== 6  VERTRAUEN ========================== */
.trust-bar { background: var(--c-surface); border-block: 1px solid var(--c-line); }
.trust-bar ul {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(16px, 2vw, 28px); padding: clamp(20px, 2.6vw, 30px) 0;
}
.trust-bar li { display: flex; gap: 13px; align-items: flex-start; }
.trust-bar__ico {
  flex: 0 0 auto; width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; background: var(--c-accent-soft); color: var(--c-accent);
}
.trust-bar strong { display: block; color: var(--c-text-strong); font-size: 15px; margin-bottom: 2px; }
.trust-bar span span, .trust-bar li > span > span { font-size: 13.5px; color: var(--c-text-mute); line-height: 1.5; }
.trust-bar li > span:last-child { display: block; font-size: 13.5px; color: var(--c-text-mute); line-height: 1.5; }

.stats-section { padding: clamp(36px, 4.5vw, 60px) 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--gap); text-align: center;
}
.stats-grid li {
  padding: clamp(18px, 2.4vw, 28px) 14px;
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius);
}
.stats-grid strong {
  display: block; font-family: var(--f-head); font-size: clamp(26px, 3.4vw, 38px);
  color: var(--c-accent); line-height: 1.1; margin-bottom: 6px;
}
.stats-grid span { font-size: 14px; color: var(--c-text-mute); }

.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap); }
.review-card {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: clamp(20px, 2.6vw, 28px);
}
.review-card__stars { display: flex; gap: 2px; color: #f5b544; margin-bottom: 12px; }
.review-card__text { color: var(--c-text); font-size: 15px; margin-bottom: 16px; }
.review-card__meta { margin: 0; font-size: 14px; }
.review-card__meta strong { color: var(--c-text-strong); display: block; }
.review-card__meta span { color: var(--c-text-mute); font-size: 13px; }

/* ====================== 7  PERSONENMARKE (ELEMENT 3) =================== */
/* Kein Auswahlraster: die Seite zeigt genau eine Person.                   */

/* --- "Das ist Romeo": Galerie links, Vorstellung rechts ----------------- */
.intro-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(26px, 3.4vw, 48px); align-items: center;
}
.intro-grid__title { font-size: clamp(28px, 3.8vw, 42px); margin: 0 0 14px; }
.intro-grid__lead {
  font-size: clamp(17px, 2vw, 20px); color: var(--c-text-strong);
  line-height: 1.5; margin: 0 0 16px;
}
.intro-grid__text { color: var(--c-text-mute); margin: 0 0 4px; }
.intro-grid__price {
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(110, 198, 217, .1); border: 1px solid rgba(110, 198, 217, .32);
  border-radius: var(--radius); padding: 13px 20px; margin: 0 0 18px;
}
.intro-grid__price-main { font-size: 20px; color: var(--c-text-strong); }
.intro-grid__price-main strong { color: var(--c-accent); font-size: 1.3em; }
.intro-grid__price-note { font-size: 13.5px; color: var(--c-text-mute); }
.section-foot--left { text-align: left; margin-top: 20px; }

/* --- Persoenlichkeit & Arbeitsweise ------------------------------------- */
.trait-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--gap); }
.trait-card {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); padding: clamp(22px, 2.6vw, 30px);
}
.trait-card__icon {
  width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 16px;
  border-radius: 50%; background: var(--c-accent-soft); color: var(--c-accent);
}
.trait-card__title { font-size: 19px; margin: 0 0 8px; -webkit-hyphens: auto; hyphens: auto; }
.trait-card__text { font-size: 14.5px; color: var(--c-text-mute); margin: 0; }

/* --- Show-Formate ------------------------------------------------------- */
.skill-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--gap); }
.skill-card {
  position: relative;
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s ease, transform .25s ease;
}
.skill-card:hover { border-color: rgba(110, 198, 217, .4); transform: translateY(-3px); }
.skill-card__body { padding: clamp(20px, 2.4vw, 26px); position: static; flex: 1; }
.skill-card--media { position: relative; }
.skill-card--media .skill-card__media { position: relative; }
.skill-card:not(.skill-card--media) .skill-card__body { padding-top: clamp(22px, 2.6vw, 30px); }
.skill-card__media { aspect-ratio: 3 / 2; background: #0a0a0a; overflow: hidden; }
.skill-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.skill-card:hover .skill-card__media img { transform: scale(1.04); }
.skill-card__num {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(4, 20, 26, .88); border: 1px solid var(--c-accent);
  font-family: var(--f-body); font-size: 14px; font-weight: 700; line-height: 1;
  letter-spacing: .5px; color: var(--c-accent); pointer-events: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}
/* Karten ohne Bild: Nummer als kleines Label ueber dem Titel */
.skill-card:not(.skill-card--media) .skill-card__num {
  position: static; width: auto; height: auto; margin-bottom: 10px;
  background: none; border: none; backdrop-filter: none;
  justify-self: start; place-items: start;
}
.skill-card__title { font-size: 19px; margin: 0 0 8px; position: relative; }
.skill-card__text { font-size: 14.5px; color: var(--c-text-mute); margin: 0; position: relative; }

/* --- Biografie ---------------------------------------------------------- */
.bio-text { position: relative; }
.bio-text p { font-size: clamp(15.5px, 1.7vw, 17px); color: var(--c-text); }
.bio-sign {
  font-family: var(--f-script); font-size: 30px; color: var(--c-accent);
  margin-top: 10px !important;
}

/* --- Profilseite: Galerie + Eckdaten ------------------------------------ */
.act-detail__grid { display: grid; grid-template-columns: 1fr; gap: clamp(26px, 3.4vw, 46px); align-items: start; }
.act-detail__name { font-size: clamp(30px, 4.4vw, 46px); margin: 0 0 16px; }
.act-detail__price {
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(110, 198, 217, .1); border: 1px solid rgba(110, 198, 217, .32);
  border-radius: var(--radius); padding: 13px 20px; margin-bottom: 20px;
}
.act-detail__price-main { font-size: 20px; color: var(--c-text-strong); }
.act-detail__price-main strong { color: var(--c-accent); font-size: 1.3em; }
.act-detail__price-note { font-size: 13.5px; color: var(--c-text-mute); }

.act-specs { margin: 26px 0 20px; border-top: 1px solid var(--c-line); }
.act-specs > div {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 12px 0; border-bottom: 1px solid var(--c-line);
}
.act-specs dt { color: var(--c-text-mute); margin: 0; }
.act-specs dd { color: var(--c-text-strong); margin: 0; font-weight: 500; text-align: right; }

.act-detail__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 26px; }
.act-detail__tags li {
  font-size: 12px; letter-spacing: .5px; text-transform: uppercase;
  background: var(--c-accent-soft); color: var(--c-accent);
  border-radius: 4px; padding: 5px 11px;
}
.quote-mark { display: block; color: var(--c-accent); margin-bottom: 14px; }

/* --- Galerie ------------------------------------------------------------ */
.gallery { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: #0a0a0a; }
.gallery__track { display: flex; transition: transform .5s cubic-bezier(.4, 0, .2, 1); will-change: transform; }
.gallery__slide { flex: 0 0 100%; }
.gallery__slide img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.gallery__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; display: grid; place-items: center;
  background: rgba(0, 0, 0, .55); border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%; color: #fff; cursor: pointer; backdrop-filter: blur(4px);
  transition: background-color .25s ease;
}
.gallery__arrow:hover { background: var(--c-accent); color: #04222a; }
.gallery__arrow--prev { left: 12px; }
.gallery__arrow--prev .icon { transform: rotate(90deg); }
.gallery__arrow--next { right: 12px; }
.gallery__arrow--next .icon { transform: rotate(-90deg); }
.gallery__dots { position: absolute; left: 0; right: 0; bottom: 14px; display: flex; justify-content: center; }
.gallery__dot {
  width: 34px; height: 34px; padding: 0; border: none; background: none; cursor: pointer;
  display: grid; place-items: center;
}
.gallery__dot::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid #fff; transition: background-color .25s ease, border-color .25s ease;
}
.gallery__dot.is-active::before, .gallery__dot:hover::before {
  background: var(--c-accent); border-color: var(--c-accent);
}

/* ============================== 8  ANLAESSE =========================== */
.occ-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--gap); }
.occ-card {
  display: flex; flex-direction: column;
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); overflow: hidden;
  color: var(--c-text);
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}
.occ-card__media { display: block; aspect-ratio: 16 / 9; background: #0a0a0a; overflow: hidden; }
.occ-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.occ-card:hover .occ-card__media img { transform: scale(1.05); }
.occ-card > :not(.occ-card__media) { margin-left: clamp(20px, 2.4vw, 26px); margin-right: clamp(20px, 2.4vw, 26px); }
.occ-card__icon { margin-top: clamp(18px, 2vw, 22px); }
.occ-card__more { margin-bottom: clamp(20px, 2.4vw, 26px); }
.occ-card:hover, .occ-card--active {
  transform: translateY(-3px); border-color: rgba(110, 198, 217, .45);
  background: var(--c-surface-2); color: var(--c-text);
}
.occ-card__icon {
  width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 14px;
  border-radius: 50%; background: var(--c-accent-soft); color: var(--c-accent);
}
.occ-card__title {
  font-size: 19px; margin: 0 0 8px;
  -webkit-hyphens: auto; hyphens: auto; overflow-wrap: break-word; word-break: normal;
}
.occ-card__text { font-size: 14.5px; color: var(--c-text-mute); margin: 0 0 16px; flex: 1; }
.occ-card__more {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--c-accent); font-size: 14px; font-weight: 500;
}

.check-list { display: grid; gap: 12px; margin: 24px 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list .icon { color: var(--c-accent); margin-top: 6px; }

.prose-lead { font-size: clamp(16px, 1.8vw, 18px); color: var(--c-text); }
.prose-note { color: var(--c-text-mute); font-size: 15px; }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.pill {
  display: inline-flex; align-items: center; min-height: 42px; padding: 8px 18px;
  border: 1px solid var(--c-line); border-radius: 40px;
  color: var(--c-text); font-size: 14.5px; background: var(--c-surface);
}
.pill:hover { border-color: var(--c-accent); color: var(--c-accent); }

.info-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--gap); margin: 30px 0; }
.info-col {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 20px;
}
.info-col h3 { font-size: 17px; margin: 0 0 10px; color: var(--c-accent); font-family: var(--f-body); font-weight: 500; }
.info-col p { font-size: 14.5px; color: var(--c-text-mute); margin: 0; }
.plain-list li { font-size: 14.5px; color: var(--c-text-mute); padding: 3px 0; }

/* ============================== 9  STAEDTE ============================ */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
.city-chip {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 16px 18px; color: var(--c-text);
  transition: border-color .25s ease, transform .2s ease, background-color .25s ease;
  position: relative; padding-left: 44px;
}
.city-chip .icon { position: absolute; left: 18px; top: 20px; color: var(--c-accent); }
.city-chip:hover, .city-chip--active {
  border-color: rgba(110, 198, 217, .5); transform: translateY(-2px);
  background: var(--c-surface-2); color: var(--c-text);
}
.city-chip__name { font-size: 16px; font-weight: 500; color: var(--c-text-strong); }
.city-chip__note { font-size: 12.5px; color: var(--c-text-mute); }

/* ============================== 10  PREISE ============================ */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--gap); }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); padding: clamp(24px, 2.8vw, 32px);
}
.price-card--highlight { border-color: var(--c-accent); box-shadow: 0 0 0 1px rgba(110, 198, 217, .35), var(--shadow); }
.price-card__flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--c-accent); color: #04222a; font-size: 12px; font-weight: 700;
  letter-spacing: .5px; padding: 4px 14px; border-radius: 40px; white-space: nowrap;
}
.price-card__name { font-size: 21px; margin: 0 0 6px; }
.price-card__price {
  font-family: var(--f-head); font-size: clamp(32px, 4vw, 42px); color: var(--c-accent);
  line-height: 1; margin: 0 0 4px;
}
.price-card__price span { font-size: .42em; color: var(--c-text-mute); font-family: var(--f-body); }
.price-card__dur { font-size: 14px; color: var(--c-text-mute); margin: 0 0 18px; }
.price-card__list { display: grid; gap: 9px; margin: 0 0 22px; flex: 1; }
.price-card__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.price-card__list .icon { color: var(--c-accent); margin-top: 6px; }
.price-guarantee {
  display: flex; gap: 12px; align-items: flex-start; justify-content: center;
  max-width: 720px; margin: clamp(26px, 3vw, 38px) auto 0; padding: 16px 20px;
  background: var(--c-accent-soft); border: 1px solid rgba(110, 198, 217, .3);
  border-radius: var(--radius); font-size: 14.5px; text-align: left;
}
.price-guarantee .icon { color: var(--c-accent); margin-top: 4px; }

/* ============================== 11  FAQ =============================== */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius); overflow: hidden;
}
.faq-item[open] { border-color: rgba(110, 198, 217, .4); }
.faq-item__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 17px 20px; cursor: pointer; list-style: none;
  font-size: clamp(15px, 1.7vw, 17px); font-weight: 500; color: var(--c-text-strong);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--c-accent); }
.faq-item__ico {
  flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center;
  border-radius: 50%; background: var(--c-accent-soft); color: var(--c-accent);
  transition: transform .25s ease;
}
.faq-item[open] .faq-item__ico { transform: rotate(180deg); }
.faq-item__a { padding: 0 20px 18px; }
.faq-item__a p { margin: 0; color: var(--c-text-mute); font-size: 15px; }

/* ============================== 12  BUCHUNG =========================== */
.booking__direct { max-width: 720px; margin: 0 auto clamp(24px, 3vw, 34px); text-align: center; }
.booking__direct .cta-row { justify-content: center; }
.booking__direct .cta-hours { justify-content: center; }
.booking__or {
  position: relative; text-align: center; margin: 26px 0 0;
  color: var(--c-text-mute); font-size: 14px;
}
.booking__or::before {
  content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--c-line);
}
.booking__or span { position: relative; background: var(--c-bg); padding: 0 16px; }
.section--alt .booking__or span { background: var(--c-bg-alt); }

.booking-form {
  max-width: 860px; margin: 0 auto;
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); padding: clamp(20px, 3.2vw, 40px);
}
.form-row { display: grid; grid-template-columns: 1fr; column-gap: 16px; }
.form-col--full { grid-column: 1 / -1; }
.input-group { position: relative; margin: 8px 0; }
.input-group__ico {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--c-text-mute); pointer-events: none; display: grid; place-items: center;
}
.form-control {
  width: 100%; min-height: 54px; padding: 14px 16px 14px 46px;
  font-family: var(--f-body); font-size: 16px; /* 16px verhindert iOS-Auto-Zoom */
  color: var(--c-text-strong); background: var(--c-bg-alt);
  border: 1px solid var(--c-line); border-radius: var(--radius);
  outline: none; appearance: none;
  transition: border-color .25s ease, background-color .25s ease;
}
select.form-control {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%238b969c'><path d='M233 407 12 186c-9-9-9-25 0-34l22-22c9-9 25-9 34 0l183 183L433 129c9-9 25-9 34 0l22 22c9 9 9 25 0 34L267 407c-9 9-25 9-34 0z'/></svg>");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 12px;
  padding-right: 40px;
}
textarea.form-control { padding: 14px 16px; min-height: 120px; resize: vertical; line-height: 1.6; }
.form-control::placeholder { color: #6b767c; }
.form-control:focus { border-color: var(--c-accent); background: var(--c-surface-2); }
.form-group { margin: 8px 0 0; }

/* Element 8: Cross-Selling */
.addons { margin: 26px 0 8px; }
.addons--inline {
  background: var(--c-bg-alt); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: clamp(16px, 2.2vw, 24px); margin: 20px 0 8px;
}
.addons__title { font-size: 17px; margin: 0 0 4px; font-family: var(--f-body); font-weight: 600; }
.addons__lead { font-size: 13.5px; color: var(--c-text-mute); margin: 0 0 16px; }
.addons__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px; }
.addon {
  display: flex; gap: 12px; align-items: flex-start; cursor: pointer;
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 13px 15px;
  transition: border-color .2s ease, background-color .2s ease;
}
.addon:hover { border-color: rgba(110, 198, 217, .4); }
.addon input { position: absolute; opacity: 0; width: 0; height: 0; }
.addon__box {
  flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px;
  display: grid; place-items: center;
  border: 1px solid var(--c-line); border-radius: 5px;
  background: var(--c-bg-alt); color: transparent; transition: all .2s ease;
}
.addon input:checked ~ .addon__box,
.consent input:checked ~ .addon__box {
  background: var(--c-accent); border-color: var(--c-accent); color: #04222a;
}
.addon input:focus-visible ~ .addon__box,
.consent input:focus-visible ~ .addon__box { outline: 2px solid var(--c-accent); outline-offset: 2px; }
.addon:has(input:checked) { border-color: var(--c-accent); background: var(--c-surface-2); }
.addon__body { display: flex; flex-direction: column; gap: 3px; }
.addon__name {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline;
  font-size: 14.5px; font-weight: 500; color: var(--c-text-strong);
}
.addon__price { color: var(--c-accent); font-size: 13px; font-weight: 700; white-space: nowrap; }
.addon__text { font-size: 13px; color: var(--c-text-mute); line-height: 1.45; }

.consent {
  display: flex; gap: 12px; align-items: flex-start; cursor: pointer;
  margin: 20px 0 0; font-size: 13.5px; color: var(--c-text-mute);
}
.consent input { position: absolute; opacity: 0; width: 0; height: 0; }

.form-actions {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  margin-top: 22px;
}
.form-actions .btn { flex: 0 1 auto; }
.form-actions__note {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--c-text-mute);
}
.form-actions__note .icon { color: var(--c-accent); }
.form-messages { margin: 16px 0 0; font-weight: 500; font-size: 14.5px; }
.form-messages.is-success { color: #4ad07f; }
.form-messages.is-error { color: #ff7a72; }

.booking__alt {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: center;
  margin: 22px 0 0; font-size: 14.5px; color: var(--c-text-mute);
}
.booking__alt .icon { color: var(--c-accent); vertical-align: -2px; }

/* CTA-Band */
.cta-band {
  background: linear-gradient(135deg, rgba(110, 198, 217, .14), rgba(110, 198, 217, .04));
  border-block: 1px solid rgba(110, 198, 217, .25);
  padding: clamp(38px, 5vw, 68px) 0; text-align: center;
}
.cta-band__title { font-size: clamp(24px, 3.2vw, 36px); margin: 0 0 10px; }
.cta-band__text { max-width: 620px; margin: 0 auto 18px; color: var(--c-text); }
.cta-band__price { font-size: 19px; color: var(--c-text-strong); margin: 0 0 22px; }
.cta-band__price strong { color: var(--c-accent); font-size: 1.25em; }
.cta-band__price span { display: block; font-size: 13.5px; color: var(--c-text-mute); }
.cta-band .cta-row { justify-content: center; }
.cta-band .cta-hours { justify-content: center; }

/* ============================== 13  FOOTER / STICKY =================== */
.site-footer { background: var(--c-bg-alt); border-top: 1px solid var(--c-line); padding-top: clamp(38px, 5vw, 62px); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: clamp(26px, 3vw, 40px); }
.footer-claim { font-family: var(--f-script); font-size: 26px; color: var(--c-accent); margin: 0 0 16px; }
.footer-line { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; margin: 0 0 10px; color: var(--c-text-mute); }
.footer-line .icon { color: var(--c-accent); margin-top: 5px; }
.footer-line a { color: var(--c-text-mute); }
.footer-line a:hover { color: var(--c-accent); }
.footer-wa { margin-top: 14px; }
.footer-title {
  font-family: var(--f-body); font-size: 14px; font-weight: 600; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--c-text-strong); margin: 0 0 14px;
}
.footer-title--gap { margin-top: 24px; }
.footer-list li { margin-bottom: 8px; }
.footer-list a { color: var(--c-text-mute); font-size: 14.5px; }
.footer-list a:hover { color: var(--c-accent); }
.footer-bottom {
  border-top: 1px solid var(--c-line); margin-top: clamp(30px, 4vw, 44px);
  padding: 18px 0 calc(18px + env(safe-area-inset-bottom));
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: 13.5px; color: var(--c-text-mute); }
.footer-bottom a { color: var(--c-text-mute); }
.footer-bottom a:hover { color: var(--c-accent); }

/* Element 2: Sticky-Kontaktleiste (Mobile) */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 190;
  display: none; gap: 1px;
  background: var(--c-line);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(0); transition: transform .3s ease;
}
.sticky-cta.is-hidden { transform: translateY(110%); }
.sticky-cta__btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 58px; font-size: 15px; font-weight: 700;
}
.sticky-cta__btn--wa { background: var(--c-wa); color: #04240f; }
.sticky-cta__btn--call { background: var(--c-surface); color: var(--c-text-strong); }

.to-top {
  position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: 84px; z-index: 180;
  width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: 50%;
  color: var(--c-text-strong); opacity: 0; visibility: hidden; transition: all .3s ease;
}
.to-top .icon { transform: rotate(180deg); }
.to-top.is-visible { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--c-accent); color: #04222a; border-color: var(--c-accent); }

/* ============================== 14  TEXTSEITEN ======================== */
.prose h2 { font-size: clamp(24px, 3vw, 32px); margin: 0 0 20px; }
.prose h3 { font-size: clamp(18px, 2vw, 21px); margin: 32px 0 10px; color: var(--c-text-strong); }
.prose p, .prose li { color: var(--c-text-mute); font-size: 15.5px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose li { list-style: disc; margin-bottom: 7px; }
.prose a { overflow-wrap: anywhere; }
.note-box {
  border-left: 3px solid var(--c-accent); background: var(--c-surface);
  padding: 16px 20px; margin: 0 0 28px; border-radius: 0 var(--radius) var(--radius) 0;
}
.note-box p { margin: 0; font-size: 14.5px; }
.note-box strong { color: var(--c-accent); }

/* ============================== 15  RESPONSIVE ======================== */

/* --- ab 576px: Formular zweispaltig ------------------------------------ */
@media (min-width: 576px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* --- ab 768px: Footer zweispaltig, Act-Detail bleibt einspaltig -------- */
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }

  /* Tablet: Bild und Text nebeneinander - sonst bleibt die halbe
     Bildschirmbreite ungenutzt. */
  .intro-grid { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr); align-items: center; }
  .act-detail__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

/* --- ab 992px: volles Desktop-Layout ---------------------------------- */
@media (min-width: 992px) {
  .act-detail__grid { grid-template-columns: 1fr 1fr; }
  .intro-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; }
  .footer-col--brand { grid-column: auto; }
}

@media (min-width: 1400px) { .container { max-width: 1320px; } }

/* --- bis 1100px: Header-Navigation wird zum Burger-Menue -------------- */
@media (max-width: 1100px) {
  .nav-toggle { display: block; order: 3; margin-left: 8px; }
  .site-header__cta { margin-left: auto; order: 2; }
  .site-nav {
    position: fixed; inset: 72px 0 0; z-index: 199;
    background: rgba(0, 0, 0, .97); backdrop-filter: blur(10px);
    padding: 24px var(--pad) 40px;
    overflow-y: auto; margin-left: 0;
    /* Geschlossen: unsichtbar, nicht klickbar, nicht im Tab-Fokus.
       transform allein reicht nicht - je nach Browser bleibt das Panel
       sonst am rechten Rand sichtbar oder erreichbar. */
    transform: translateX(100%);
    visibility: hidden; opacity: 0; pointer-events: none;
    transition: transform .3s ease, opacity .25s ease, visibility 0s linear .3s;
  }
  body.nav-open .site-nav {
    transform: translateX(0);
    visibility: visible; opacity: 1; pointer-events: auto;
    transition: transform .3s ease, opacity .25s ease, visibility 0s;
  }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav a {
    font-size: 18px; padding: 16px 0; border-bottom: 1px solid var(--c-line);
    border-bottom-width: 1px;
  }
  .site-nav a.is-active { border-bottom-color: var(--c-accent); }
}

/* --- bis 860px: Telefonnummer im Header nur noch als Icon ------------- */
@media (max-width: 860px) {
  .header-phone span { display: none; }
  .header-phone {
    width: 42px; height: 42px; justify-content: center;
    border: 1px solid var(--c-line); border-radius: 8px;
  }
  .site-header__cta .btn--wa span { display: none; }
  .site-header__cta .btn--wa { width: 42px; padding: 0; }
}

/* --- bis 767px: Mobile ------------------------------------------------ */
@media (max-width: 767px) {
  /* Sticky-CTA einblenden, Platz am Seitenende freihalten */
  .sticky-cta { display: flex; }
  body { padding-bottom: 58px; }
  .to-top { bottom: 74px; }

  /* Hero: Ausschnitt so, dass Romeo im Bild bleibt, weniger Leerraum */
  .hero { padding: 34px 0 40px; }
  .hero .hero__bg { background-position: 62% top; }
  .hero__title { line-height: 1.1; margin-bottom: 12px; }
  .hero__sub { font-size: 15.5px; margin-bottom: 20px; }
  .hero__price { padding: 11px 18px; margin-bottom: 20px; }
  .hero__kicker { font-size: 11.5px; letter-spacing: 2px; margin-bottom: 10px; }

  /* Abschnitte enger, damit weniger gescrollt werden muss */
  .section { padding: 40px 0; }
  .section-head { margin-bottom: 24px; }

  /* Eckdaten duerfen umbrechen statt zu quetschen */
  .act-specs > div { flex-wrap: wrap; gap: 2px 16px; }
  .act-specs dd { text-align: left; }

  .price-card .btn, .booking__direct .btn { width: 100%; }

  .site-header__inner { min-height: 64px; }
  .site-nav { inset: 64px 0 0; }

  .hero .cta-row .btn,
  .cta-band .cta-row .btn,
  .booking__direct .cta-row .btn { flex: 1 1 100%; }

  .act-detail__price, .hero__price { width: 100%; }
  .hero__price { align-items: flex-start; text-align: left; }
  .hero { text-align: left; }
  .hero .cta-row, .hero .cta-hours, .hero__rating { justify-content: flex-start; }

  .intro-grid__price { width: 100%; }
  .section-foot--left { text-align: center; }
  .form-actions .btn { width: 100%; }
  .form-actions__note { justify-content: center; width: 100%; text-align: center; }
}

/* --- bis 479px: kleine Smartphones ------------------------------------ */
@media (max-width: 479px) {
  .city-grid { grid-template-columns: 1fr 1fr; }
  .city-chip { padding: 13px 12px 13px 38px; }
  .city-chip .icon { left: 14px; top: 17px; }
  .gallery__arrow { width: 38px; height: 38px; }
  .trust-bar ul { grid-template-columns: 1fr; }

  /* Kleine Displays: kompaktere Karten, weniger Scrollweg */
  .section { padding: 34px 0; }
  .hero__title { font-size: 27px; }
  .trait-card, .occ-card, .price-card { padding: 18px; }
  .skill-card__body { padding: 16px 18px 18px; }
  .booking-form { padding: 16px; }
  .act-detail__tags li { font-size: 11px; padding: 4px 8px; }
  .intro-grid__price { width: 100%; }
}

/* --- Querformat: Hero flacher ---------------------------------------- */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { padding: 40px 0 32px; }
  .banner { padding: 34px 0; }
}

/* --- Touch-Geraete: keine Hover-Effekte haengen lassen ---------------- */
@media (hover: none) {
  .occ-card:hover, .city-chip:hover { transform: none; }
}

/* --- Reduzierte Bewegung --------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* --- Druck ----------------------------------------------------------- */
@media print {
  body { background: #fff; color: #000; padding: 0; }
  .site-header, .sticky-cta, .to-top, .cta-band, .gallery__arrow, .gallery__dots,
  .booking-form, .site-nav, .nav-toggle { display: none !important; }
  .hero::before, .banner::before { display: none; }
  .hero, .banner { background: none; color: #000; }
  h1, h2, h3, .section-title, .hero__title { color: #000; }
  p, li { color: #222; }
}


/* =========================================================
   16  NACHTRAG: Hero-Layout ab Desktop
   Steht bewusst am Dateiende, damit es die zentrierten
   Basisregeln aus Abschnitt 5 ueberschreibt.
   ========================================================= */
@media (min-width: 992px) {
  .hero { text-align: left; }
  .hero .hero__inner { max-width: 640px; margin-left: 0; margin-right: auto; }
  .hero .hero__sub { margin-left: 0; }
  .hero .cta-row,
  .hero .cta-hours,
  .hero .hero__rating { justify-content: flex-start; }
  .hero .hero__price { align-items: flex-start; }
  /* Bildausschnitt nach rechts schieben, damit Romeo neben dem Text steht */
  .hero .hero__bg { background-position: 72% top; }
}

/* Spam-Falle: vollstaendig aus dem Layout und aus dem Screenreader-Baum */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}
