:root{
  --bg:#080a0c;
  --surface:#101419;
  --text:#f5f7f8;
  --muted:#aeb7bf;
  --cyan:#00a7e6;
  --cyan-2:#22c7f2;
  --line:rgba(255,255,255,.12);
  --max:1320px;
  --radius:8px;
  --font:"Open Sans","Segoe UI",Arial,sans-serif;

  /* Design-Tokens fuer wiederkehrende Komponentenwerte. */
  --text-soft:#dbe0e4;
  --text-soft-strong:#d7dde2;
  --text-hover:#7ee8ff;
  --panel-border:rgba(255,255,255,.18);
  --panel-border-accent:rgba(34,199,242,.72);
  --panel-radius:12px;
  --panel-bg:
    radial-gradient(circle at 12% 45%,rgba(0,167,230,.11),transparent 34%),
    linear-gradient(180deg,#121820,#0b0f14);
  --panel-bg-hover:linear-gradient(180deg,rgba(0,167,230,.055),rgba(0,167,230,.015));
  --panel-shadow-hover:
    0 18px 44px rgba(0,0,0,.45),
    0 0 0 1px rgba(34,199,242,.18),
    0 0 28px rgba(0,167,230,.18);
  --field-bg:#0b1016;
  --field-placeholder:#7f8a95;

  /* Interaktions-Tokens: nur Werte, die aktuell an mehreren Karten/Controls identisch sind.
     Absichtlich abweichende Glows, Schatten und Timings bleiben komponentenlokal. */
  --lift-card:-7px;
  --duration-card:.28s;
  --ease-standard:ease;
  --focus-ring:0 0 0 3px rgba(0,167,230,.13);
  --text-glow:0 0 8px rgba(34,199,242,.65);

  /* Wiederverwendbare vertikale Abstände für Abschnittskomponenten. */
  --section-heading-gap:46px;
  --section-heading-cards-gap:92px;
  --price-cta-gap:3em;
  --section-pad-y:96px;
}

/* ===== Basis ===== */
*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  max-width:100%;
  overflow-x:clip;
}

[id]{scroll-margin-top:110px}


body{
  margin:0;
  max-width:100%;
  overflow-x:clip;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{color:inherit}

.container{
  width:min(var(--max),calc(100% - 48px));
  margin-inline:auto;
  min-width:0;
}

.centered{text-align:center}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.eyebrow{
  margin:0 0 12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.78rem;
  font-weight:700;
  color:var(--cyan-2);
}

h1,h2,h3{
  line-height:1.1;
  margin:0;
}

h1{
  font-size:clamp(3rem,6vw,6.2rem);
  letter-spacing:-.04em;
}

h1 span{color:var(--cyan-2)}

h2{
  font-size:clamp(2rem,4vw,3.8rem);
  letter-spacing:-.03em;
}

h3{font-size:1.45rem}

p{color:var(--muted)}

.large-copy{
  font-size:1.3rem;
  color:var(--text);
}

.accent-copy{
  color:var(--cyan-2);
  font-weight:700;
}

/* ===== Header / Navigation ===== */
.site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:50;
  background:linear-gradient(to bottom,rgba(3,5,7,.96),rgba(3,5,7,.7));
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(12px);
}

.header-inner{
  height:82px;
  display:flex;
  align-items:center;
  gap:28px;
}

.brand{
  display:flex;
  align-items:center;
  max-width:220px;
}

.brand img{
  max-height:56px;
  width:auto;
}

.main-nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:22px;
}

.main-nav a{
  position:relative;
  display:inline-block;
  text-decoration:none;
  color:#dbe1e6;
  font-size:.88rem;
  font-weight:600;
  white-space:nowrap;
  transition:color .2s ease,transform .2s ease;
  transform-origin:center;
}

@media (hover:hover) and (pointer:fine){
  .main-nav a:hover{z-index:1;color:var(--cyan-2);transform:scale(1.12)}
}
.main-nav a[aria-current="page"]{color:var(--cyan-2)}
.main-nav .nav-request-link{display:none}

.nav-toggle{
  display:none;
  background:none;
  border:0;
  padding:10px;
}

.nav-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:#fff;
  margin:5px;
}

/* ===== Buttons / Links ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  background:var(--cyan);
  color:#031015;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.04em;
  font-weight:800;
  font-size:.85rem;
  border:1px solid var(--cyan);
  border-radius:var(--radius);
  transition:.2s ease;
}

.btn:hover{
  transform:translateY(-2px);
  background:var(--cyan-2);
}

.btn:focus-visible,
.nav-toggle:focus-visible{
  outline:2px solid var(--cyan-2);
  outline-offset:3px;
}

.btn-small{
  min-height:42px;
  padding:0 18px;
}

.btn-outline{
  background:transparent;
  color:var(--text);
}

.text-link{
  color:var(--cyan-2);
  text-decoration:none;
  transition:color .2s ease,text-shadow .2s ease;
}

.text-link:hover,
.text-link:focus-visible{
  color:var(--text-hover);
  text-shadow:0 0 8px rgba(34,199,242,.65),0 0 18px rgba(0,167,230,.34);
  outline:none;
}

.text-link--white{
  color:var(--text);
}

.link-arrow{
  display:inline-block;
  transition:transform .2s ease;
}

.text-link:hover .link-arrow,
.text-link:focus-visible .link-arrow{
  transform:translateX(4px);
}

.text-link:hover .link-arrow--down,
.text-link:focus-visible .link-arrow--down{
  transform:translateY(3px);
}

/* ===== Hero ===== */
.hero{
  --hero-dark-1:.58;
  --hero-dark-2:.46;
  --hero-dark-3:.23;
  --hero-dark-4:.06;

  min-height:760px;
  display:flex;
  align-items:center;
  padding:150px 0 72px;
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}

.hero-bg{
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:min(100%,1680px);
  transform:translateX(-50%);
  background:
    url("../img/hero-bsonic.png") right center / cover no-repeat;
  background-image:image-set(
    url("../img/hero-bsonic-1683.avif") type("image/avif"),
    url("../img/hero-bsonic-1683.webp") type("image/webp")
  );
  background-color:var(--bg);
  filter:saturate(1.02) contrast(1.03);
  opacity:1;
}

/* Die Abdunklung wird per JS stufenlos aus der tatsächlichen Hero-Breite
   berechnet. Damit gibt es keine sichtbaren Sprünge zwischen Devices. */
.hero-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,
      rgb(8 10 12 / var(--hero-dark-1)) 0%,
      rgb(8 10 12 / var(--hero-dark-2)) 30%,
      rgb(8 10 12 / var(--hero-dark-3)) 52%,
      rgb(8 10 12 / var(--hero-dark-4)) 74%,
      transparent 100%);
  pointer-events:none;
}

.hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:180px;
  background:linear-gradient(to bottom,transparent,var(--bg));
}

.hero-grid{
  position:relative;
  z-index:2;
}

.hero-copy{
  max-width:720px;
  text-shadow:0 2px 18px rgba(0,0,0,.36);
}

.hero-lead{
  font-size:1.22rem;
  max-width:700px;
  color:var(--text-soft-strong);
}

.hero-tags{
  --separator-half-gap:6px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:24px 0;
}

.hero-tags span{
  color:var(--cyan-2);
  font-weight:700;
  text-transform:uppercase;
  font-size:.9rem;
}


.hero-actions{
  display:flex;
  gap:26px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:30px;
}

.hero-facts{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px 44px;
  max-width:480px;
  margin-top:54px;
}

.hero-facts div{
  display:grid;
  gap:2px;
}

.hero-facts strong{font-size:1.05rem}

.hero-facts span{
  font-size:.85rem;
  color:var(--muted);
}

/* ===== Sections ===== */
.section{
  width:100%;
  padding:var(--section-pad-y) 0;
  border-bottom:1px solid var(--line);
}

.section-alt{
  width:100%;
  background:var(--surface);
}

.section-heading{
  max-width:850px;
  margin-bottom:var(--section-heading-gap);
}

/* Kachelbereiche erhalten bewusst mehr Luft als normale Inhaltsabschnitte. */
.section-heading--cards{
  margin-bottom:var(--section-heading-cards-gap);
}

.section-heading.centered{
  margin-inline:auto;
  text-align:center;
}

.section-action{
  margin-top:32px;
}

/* ===== Leistungskarten ===== */
.cards{
  display:grid;
  gap:22px;
  min-width:0;
}

.cards.three{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.cards.four{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.card{
  position:relative;
  display:grid;
  grid-template-columns:120px minmax(0,1fr);
  gap:24px;
  align-items:center;
  min-width:0;
  overflow:hidden;
  min-height:220px;
  padding:26px 28px;
  border:1px solid var(--panel-border);
  border-radius:var(--panel-radius);
  background:var(--panel-bg);
  transition:
    transform var(--duration-card) var(--ease-standard),
    border-color var(--duration-card) var(--ease-standard),
    box-shadow var(--duration-card) var(--ease-standard),
    background var(--duration-card) var(--ease-standard);
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:0;
  background:linear-gradient(110deg,rgba(0,167,230,.12),transparent 42%);
  transition:opacity var(--duration-card) var(--ease-standard);
}

.card:hover,
.card:focus-within{
  transform:translateY(var(--lift-card));
  border-color:var(--cyan-2);
  box-shadow:var(--panel-shadow-hover);
}

.card:hover::before,
.card:focus-within::before{
  opacity:1;
}

.cards--text-only .card{
  display:block;
  min-height:0;
}

.card-content{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-self:stretch;
  min-width:0;
}

.card h3{
  margin-bottom:10px;
  font-size:1.25rem;
  text-transform:uppercase;
}

.card p{
  margin-top:0;
  font-size:.98rem;
  line-height:1.55;
}

.cards > a.card{
  color:inherit;
  text-decoration:none;
  cursor:pointer;
}

.card-more{
  display:block;
  margin-top:auto;
  padding-top:14px;
  justify-self:end;
  align-self:end;
  color:var(--cyan-2);
  font-weight:700;
  text-align:right;
  text-decoration:none;
  transition:color .2s ease,text-shadow .2s ease;
}

.card:hover .card-more,
.card:focus-visible .card-more,
.atmo-box:hover .card-more,
.atmo-box:focus-visible .card-more{
  color:var(--text-hover);
  text-shadow:0 0 8px rgba(34,199,242,.68),0 0 18px rgba(0,167,230,.38);
}

.card:hover .card-more .link-arrow,
.card:focus-visible .card-more .link-arrow,
.atmo-box:hover .card-more .link-arrow,
.atmo-box:focus-visible .card-more .link-arrow{
  transform:translateX(4px);
}

.card-icon-img{
  position:relative;
  z-index:2;
  width:104px;
  max-height:120px;
  object-fit:contain;
  justify-self:center;
  background:transparent;
  transition:transform var(--duration-card) var(--ease-standard);
}

.card:hover .card-icon-img,
.card:focus-within .card-icon-img{
  transform:scale(1.055);
}



/* Kompakte Darstellung der Leistungskarten */
.cards.four .card{
  grid-template-columns:96px minmax(0,1fr);
  gap:18px;
  padding:24px 22px;
}

.cards.four .card-icon-img{
  width:88px;
  max-height:104px;
}

/* ===== Arbeitsweise ===== */
.values{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.value{
  padding:30px 28px;
  border-right:1px solid var(--line);
}

.value:last-child{border-right:0}

.value strong{
  display:block;
  font-size:1.15rem;
  margin-bottom:8px;
  transition:color .2s ease,text-shadow .2s ease;
}

.value p{margin:0}

.value.touch-highlight strong{
  color:var(--text-hover);
  text-shadow:0 0 8px rgba(34,199,242,.42);
}

@media (hover:hover) and (pointer:fine){
  .value:hover strong{
    color:var(--text-hover);
    text-shadow:0 0 8px rgba(34,199,242,.42);
  }
}

/* ===== Wiederverwendbare Zweispalten-Sections ===== */
/*
   Eine einzige CSS-Struktur für alle Inhalts-Splits unterhalb des Startseiten-Heros.
   Headline und erster Inhalt stehen in derselben Grid-Zeile und werden vom Browser
   typografisch an ihrer ersten Grundlinie ausgerichtet. JavaScript ist dafür nicht nötig.
*/
.section-split{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  grid-template-areas:
    "eyebrow ."
    "heading content"
    "below content";
  column-gap:76px;
  row-gap:0;
  align-items:start;
  min-width:0;
}

.section-split--reverse{
  grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
  grid-template-areas:
    ". eyebrow"
    "content heading"
    "content below";
}

.section-split__eyebrow{grid-area:eyebrow}
.section-split__heading{
  grid-area:heading;
  /* Fallback-Reihenfolge: baseline bleibt fuer Browser ohne first-baseline-Support stehen. */
  align-self:baseline;
  align-self:first baseline;
  min-width:0;
}
.section-split__content{
  grid-area:content;
  /* Gleicher typografischer Fallback wie bei der gegenueberliegenden Headline. */
  align-self:baseline;
  align-self:first baseline;
  min-width:0;
}
.section-split__content > :first-child{margin-top:0}
.section-split__below{
  grid-area:below;
  min-width:0;
}

.headline-line{display:block}

.copy{max-width:680px}

/* ===== Technik ===== */
.tech-grid > a.atmo-box{
  color:inherit;
  text-decoration:none;
  cursor:pointer;
}

.tech-grid > a.atmo-box:focus-visible{
  outline:none;
}
.atmo-box:hover .tech-icon-img{
  transform:scale(1.045);
}

/* Optionales Ambiente-Paket als eigene volle Zeile */
.tech-grid > .atmo-box{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:150px minmax(0,1fr) auto;
  grid-template-areas:
    "icon eyebrow link"
    "icon title   link"
    "icon text    link";
  column-gap:28px;
  row-gap:4px;
  align-items:center;
  min-width:0;
  min-height:190px;
  padding:28px 34px;
  overflow:hidden;
  border:1px solid var(--panel-border-accent);
  border-radius:var(--panel-radius);
  background:
    radial-gradient(circle at 80% 40%,rgba(0,167,230,.12),transparent 38%),
    linear-gradient(180deg,#0d151c,#091016);
  transition:
    transform var(--duration-card) var(--ease-standard),
    border-color var(--duration-card) var(--ease-standard),
    box-shadow var(--duration-card) var(--ease-standard),
    background var(--duration-card) var(--ease-standard);
}

.tech-grid > .atmo-box:hover,
.tech-grid > .atmo-box:focus-visible{
  transform:translateY(var(--lift-card));
  border-color:var(--cyan-2);
  background:
    radial-gradient(circle at 80% 40%,rgba(0,167,230,.15),transparent 38%),
    linear-gradient(180deg,#0d151c,#091016);
  box-shadow:var(--panel-shadow-hover);
}

.atmo-icon-img{
  grid-area:icon;
  width:138px;
  height:138px;
  margin:0;
  object-fit:contain;
  object-position:center;
  background:transparent;
  transition:transform .25s ease;
}

.atmo-box .eyebrow{
  grid-area:eyebrow;
  margin:0 0 2px;
  align-self:end;
}

.atmo-box h3{
  grid-area:title;
  margin:0;
  align-self:center;
  color:var(--text);
  transition:color .2s ease,text-shadow .2s ease;
}

.atmo-box:hover h3,
.atmo-box:focus-visible h3{
  color:var(--cyan-2);
  text-shadow:var(--text-glow);
}

.atmo-box > p:not(.eyebrow){
  grid-area:text;
  margin:4px 0 0;
  max-width:700px;
  align-self:start;
}

.atmo-box > .card-more{
  grid-area:link;
  justify-self:end;
  align-self:center;
  white-space:nowrap;
}

/* ===== Über mich ===== */
.about-grid{
  display:grid;
  grid-template-columns:minmax(320px,.75fr) 1fr;
  gap:70px;
  align-items:center;
}

.portrait-wrap{
  max-width:520px;
  background:linear-gradient(135deg,#14181d,#07090b);
  overflow:hidden;
}

.portrait-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}

.about-wordmark{
  display:block;
  width:min(520px,82%);
  height:auto;
  margin:0 0 14px;
}

.about-name{
  margin:0 0 26px;
  color:var(--text);
  font-size:clamp(1.65rem,2.6vw,2.35rem);
  font-weight:700;
  line-height:1.1;
}

/* ===== Referenzen ===== */
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  max-width:1000px;
  margin:0 auto 35px;
  border:1px solid var(--line);
}

.stats div{
  text-align:center;
  padding:36px;
  border-right:1px solid var(--line);
}

.stats div:last-child{border-right:0}

.stats strong{
  display:block;
  color:var(--cyan-2);
  font-size:3rem;
  line-height:1;
}

.stat-value{
  display:inline-block;
  transition:color .2s ease,text-shadow .2s ease,transform .2s ease;
}

.stat-value:hover{
  color:var(--text-hover);
  text-shadow:0 0 10px rgba(34,199,242,.75),0 0 24px rgba(0,167,230,.45);
  transform:scale(1.03);
}

.stats span{
  display:block;
  margin-top:10px;
  color:var(--muted);
}

.reference-line{
  --separator-half-gap:10px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  column-gap:20px;
  row-gap:8px;
  text-align:center;
  max-width:960px;
  margin-inline:auto;
}

.reference-summary{margin-inline:auto}

/* ===== Preise ===== */
.price-copy{
  max-width:none;
}

.price-copy > p:first-child{
  margin-top:0;
}

.price{
  font-size:1.1rem;
  color:var(--muted);
  margin-top:24px;
}

.price-value{
  display:inline-flex;
  flex-direction:column;
  align-items:flex-end;
}

.price strong{
  display:block;
  font-size:clamp(3rem,6vw,5.5rem);
  color:var(--cyan-2);
  line-height:1;
}

.price-tax{
  display:block;
  margin-top:10px;
  color:var(--muted);
  font-size:.78rem;
  font-weight:600;
  line-height:1.3;
}

.price-details{
  display:flex;
  flex-wrap:wrap;
  gap:10px 28px;
  margin:26px 0;
}

.price-details span{
  color:var(--text-soft);
  font-size:.92rem;
}

.price-offer-copy{
  margin-bottom:0;
}

/* Ausschließlich der CTA-Abstand innerhalb der rechten Event-Preis-Spalte.
   Er beeinflusst weder die linke Preis-Spalte noch die Split-Ausrichtung. */
.price-copy .price-cta{
  margin-top:var(--price-cta-gap);
}

.season-note{
  margin:0 0 28px;
  padding:18px 20px;
  border-left:2px solid var(--cyan);
  background:rgba(0,167,230,.055);
}

.season-note strong{color:var(--cyan-2)}

.season-note p{
  margin:5px 0 0;
  font-size:.92rem;
}

.price-page-hero{min-height:540px}
.price-page-hero .subhero-copy{max-width:1120px}

.price-package-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.price-package{
  display:flex;
  flex-direction:column;
  align-self:stretch;
  height:100%;
  min-width:0;
  padding:34px 30px 30px;
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(145deg,rgba(18,25,34,.94),rgba(11,16,22,.96));
  box-shadow:0 18px 42px rgba(0,0,0,.2);
  transition:border-color .2s ease,transform .2s ease,box-shadow .2s ease;
}

.price-package--featured{border-color:rgba(34,199,242,.58)}

.price-package h3{
  margin-bottom:22px;
  transition:color .2s ease;
}

.price-package > p:not(.eyebrow){margin:24px 0 28px}

.price-package .text-link{
  align-self:flex-start;
  margin-top:auto;
}

.price-package-value{
  color:var(--muted);
  font-size:.95rem;
}

.price-package-value strong{
  display:block;
  margin-top:5px;
  color:var(--cyan-2);
  font-size:clamp(2.45rem,4vw,4.2rem);
  line-height:1;
}

.price-package-value small{
  display:block;
  margin-top:9px;
  color:var(--muted);
  font-size:.76rem;
  font-weight:600;
}

@media (hover:hover) and (pointer:fine){
  .price-package:hover{
    border-color:rgba(34,199,242,.72);
    box-shadow:0 22px 52px rgba(0,0,0,.3);
    transform:translateY(-4px);
  }

  .price-package:hover h3{color:var(--cyan-2)}
}

.price-included-copy .event-included{margin:26px 0}

.price-fact-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.price-fact-grid > div{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-height:110px;
  padding:22px;
  border-left:2px solid var(--cyan);
  background:rgba(0,167,230,.055);
}

.price-fact-grid strong{color:var(--text)}
.price-fact-grid span{color:var(--text-soft)}
.price-page-notes{margin-top:24px}
.price-page-notes .season-note{margin-bottom:0}

.price-factor-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-start;
  gap:8px 20px;
  margin:28px 0;
}

.carnival-price-callout{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(270px,.75fr);
  align-items:center;
  gap:70px;
}

.carnival-price-callout h2{margin-bottom:22px}
.carnival-price-callout p:last-child{margin-bottom:0}

.carnival-price-action{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:28px;
  padding-left:34px;
  border-left:1px solid var(--line);
}


/* ===== Region ===== */
.region-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.region-grid > div{
  border-left:2px solid var(--cyan);
  padding-left:22px;
}

.region-grid strong{font-size:1.1rem}

/* ===== CTA ===== */
.cta{
  width:100%;
  padding:var(--section-pad-y) 0;
  background:
    radial-gradient(circle at 50% 120%,rgba(0,167,230,.18),transparent 42%),
    #080a0c;
}

.cta p{font-size:1.1rem}

/* ===== Footer ===== */
.site-footer{
  width:100%;
  border-top:1px solid var(--line);
  padding:40px 0;
  background:#050607;
}

.footer-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.footer-logo{
  width:210px;
  height:auto;
  margin-bottom:12px;
}

.footer-grid p{
  font-size:.85rem;
  margin:0;
}

.footer-copyright{
  margin-top:10px;
  color:#8f99a3;
  font-size:.78rem;
}

.footer-links{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
}

.footer-links a,
.footer-link-button{
  font:inherit;
  color:#c6cdd3;
  background:none;
  border:0;
  padding:0;
  cursor:pointer;
  text-decoration:none;
  font-size:.85rem;
  text-align:left;
  transition:color .2s ease;
}

.inline-consent-button{
  font:inherit;
  color:inherit;
  background:none;
  border:0;
  padding:0;
  cursor:pointer;
  text-decoration:underline;
}

.footer-links a:hover,
.footer-link-button:hover{
  color:var(--cyan-2);
}

.footer-links a:focus-visible,
.footer-link-button:focus-visible{
  color:var(--cyan-2);
  outline:2px solid var(--cyan-2);
  outline-offset:4px;
  border-radius:2px;
}

.inline-consent-button:hover{
  color:var(--cyan-2);
}

.inline-consent-button:focus-visible{
  color:var(--cyan-2);
  outline:2px solid var(--cyan-2);
  outline-offset:3px;
  border-radius:2px;
}

/* ===== Einfache Inhalts- und Ergebnisseiten ===== */
.placeholder-page,
.form-result,
.legal-page{
  padding-top:150px;
  min-height:70vh;
}

.placeholder-page h1,
.form-result h1,
.legal-copy h1{
  font-size:clamp(2.6rem,6vw,5rem);
}

/* ===== Kontaktformular ===== */
.cta #kontakt-heading{
  text-align:center;
  margin-bottom:34px;
}

.contact-grid{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(280px,.75fr);
  gap:28px;
  align-items:start;
}

.contact-box,
.contact-alt{
  align-self:start;
  min-width:0;
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(145deg,rgba(18,25,34,.96),rgba(11,16,22,.96));
  padding:30px;
}

.contact-box form{
  display:grid;
  min-width:0;
  gap:18px;
}

.contact-input{
  width:100%;
  border:1px solid var(--panel-border);
  border-radius:var(--panel-radius);
  background:var(--field-bg);
  color:var(--text);
  font:inherit;
  padding:15px 16px;
  outline:none;
  transition:border-color .18s ease,box-shadow .18s ease;
}

textarea.contact-input{
  resize:vertical;
  min-height:180px;
}

.contact-input:focus,
.date-control:focus-within{
  border-color:var(--cyan);
  box-shadow:var(--focus-ring);
}

.contact-input::placeholder,
.date-text-input::placeholder{
  color:var(--field-placeholder);
}

.contact-select{
  appearance:none;
  padding-right:48px;
  background-image:
    linear-gradient(45deg,transparent 50%,var(--cyan-2) 50%),
    linear-gradient(135deg,var(--cyan-2) 50%,transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size:6px 6px,6px 6px;
  background-repeat:no-repeat;
}

.date-field{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  min-width:0;
  gap:12px 18px;
  width:100%;
  max-width:100%;
}

.date-control{
  position:relative;
  display:flex;
  align-items:center;
  min-height:58px;
  flex:0 1 400px;
  width:100%;
  max-width:400px;
  min-width:0;
  padding:15px 50px 15px 16px;
  border:1px solid var(--panel-border);
  border-radius:var(--panel-radius);
  background:var(--field-bg);
  color:var(--field-placeholder);
  transition:border-color .18s ease,box-shadow .18s ease;
}

.contact-box input.date-text-input{
  width:100%;
  min-width:0;
  margin:0;
  padding:0;
  border:0;
  outline:0;
  background:transparent;
  box-shadow:none;
  color:var(--text);
  font:inherit;
}

.date-calendar-button{
  position:absolute;
  right:8px;
  top:50%;
  z-index:3;
  width:42px;
  height:42px;
  padding:0;
  border:0;
  border-radius:9px;
  background:transparent;
  color:#aeb7bf;
  transform:translateY(-50%);
  cursor:pointer;
}

.date-calendar-button:hover,
.date-calendar-button:focus-visible{
  color:var(--cyan-2);
  background:rgba(255,255,255,.06);
  outline:0;
}

.date-calendar-icon{
  width:24px;
  height:24px;
  display:block;
  margin:auto;
}

.date-control input[type="hidden"]{
  display:none;
}

.date-picker{
  position:absolute;
  left:0;
  top:calc(100% + 8px);
  z-index:20;
  width:min(320px,calc(100vw - 40px));
  padding:12px;
  border:1px solid var(--panel-border);
  border-radius:var(--panel-radius);
  background:var(--field-bg);
  box-shadow:0 16px 36px rgba(0,0,0,.45);
}

.date-picker[hidden]{
  display:none;
}

.date-picker-head{
  display:grid;
  grid-template-columns:40px 1fr 40px;
  align-items:center;
  margin-bottom:8px;
  text-align:center;
}

.date-picker-head button,
.date-picker-grid button{
  border:0;
  background:transparent;
  color:var(--text);
  font:inherit;
  cursor:pointer;
}

.date-picker-head button{
  height:36px;
  border-radius:8px;
  font-size:1.6rem;
  line-height:1;
}

.date-picker-head button:hover,
.date-picker-head button:focus-visible,
.date-picker-grid button:hover,
.date-picker-grid button:focus-visible{
  background:rgba(255,255,255,.08);
  outline:0;
}

.date-picker-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:3px;
  text-align:center;
}

.date-picker-grid > span{
  padding:5px 0;
  color:var(--muted);
  font-size:.75rem;
  font-weight:700;
}

.date-picker-grid > i{
  display:block;
}

.date-picker-grid button{
  aspect-ratio:1;
  border-radius:8px;
}

.date-picker-grid button.is-selected{
  background:var(--cyan);
  color:#fff;
  font-weight:700;
}

.date-picker-grid button:disabled{
  opacity:.25;
  cursor:not-allowed;
  background:transparent;
}


.date-weekday{
  min-width:0;
  color:var(--cyan-2);
  font-size:.9rem;
  font-weight:700;
  line-height:1.35;
}

.privacy-check{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:10px;
  align-items:start;
  color:var(--muted);
  font-weight:400;
}

.privacy-check input{
  margin-top:5px;
}

.privacy-check a{
  color:var(--cyan-2);
  text-decoration:underline;
}

.privacy-check a:hover,
.privacy-check a:focus-visible{
  color:var(--text-hover);
  outline:none;
}

.form-honeypot{
  position:absolute;
  left:-10000px;
  width:1px;
  height:1px;
  overflow:hidden;
}

.contact-alt h3{
  margin-bottom:16px;
}

.contact-alt p{
  margin-top:0;
}

.contact-detail{
  display:flex;
  gap:10px;
  align-items:center;
  color:var(--cyan-2);
  font-weight:700;
}

.contact-detail span:last-child,
.contact-detail a{
  white-space:nowrap;
}

.form-result h1{
  margin-bottom:20px;
}

.form-result h2{
  margin-top:36px;
  margin-bottom:14px;
}

.form-result-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
  margin-top:22px;
}

.form-result-actions .btn{
  margin-top:0;
}

@media (max-width:1120px){
  .contact-grid{
    grid-template-columns:1fr;
  }
  .date-weekday{margin-top:0;padding-left:4px}
}

/* ===== Ergänzende Komponenten ===== */
.price-notes{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:28px;
}

.price-notes .season-note{
  margin:0;
}
/* ===== Rechtliche Seiten ===== */
.legal-copy{
  max-width:980px;
}

.legal-copy h1{
  margin-bottom:50px;
}

.legal-copy h2{
  font-size:1.45rem;
  margin:38px 0 10px;
}

.legal-copy a{
  color:var(--cyan-2);
}
/* ===== Consent / Google Analytics ===== */
.consent-banner{
  position:fixed;
  inset:auto 0 0;
  z-index:100;
  background:rgba(8,10,12,.98);
  border-top:1px solid var(--cyan);
  box-shadow:0 -16px 40px rgba(0,0,0,.45);
}

.consent-inner{
  width:min(var(--max),calc(100% - 48px));
  margin:auto;
  padding:22px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.consent-inner p{
  margin:4px 0 0;
  max-width:800px;
}

.consent-actions{
  display:flex;
  gap:12px;
  flex-shrink:0;
}

/* ==================================================================
   Responsive
   ==================================================================
   Breakpoint-Rollen:
   - 400px Container Query: nur interne Anordnung schmaler Technik-Karten.
   - 720px: globale Mobile-Grenze fuer Hauptlayouts.
   - 760px: projektbezogene Event-Technik.
   - 1050px: Navigation, allgemeine Splits und Tablet-Layout.
   - 1120px: Kontaktbereich.
   - 1180px: mittlere Kartenlayouts zwischen Tablet und Desktop.
   Das Ablaufband entscheidet anhand realer Komponentenbreite und Schrittanzahl statt
   anhand eines weiteren Viewport-Breakpoints.
 */

/* ===== Wiederverwendbare Event-Unterseiten ===== */
.subhero{
  position:relative;
  min-height:620px;
  display:flex;
  align-items:center;
  padding:150px 0 86px;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(circle at 80% 34%,rgba(0,167,230,.16),transparent 30%),
    linear-gradient(115deg,#080a0c 0%,#0b1117 54%,#101a22 100%);
}

.subhero::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:150px;
  pointer-events:none;
  background:linear-gradient(to bottom,transparent,var(--bg));
}

.subhero-inner{
  --subhero-heading-line-height:clamp(3.3rem,6.6vw,6.38rem);
  --subhero-heading-line-middle:clamp(1.65rem,3.3vw,3.19rem);
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(300px,.9fr);
  gap:70px;
  align-items:start;
}

.subhero-copy{max-width:760px}
.subhero h1{
  font-size:clamp(3rem,6vw,5.8rem);
  line-height:var(--subhero-heading-line-height);
}

.subhero-lead{
  max-width:700px;
  margin:24px 0 0;
  color:var(--text-soft-strong);
  font-size:1.22rem;
}

.subhero-visual,
.event-photo-placeholder{
  display:grid;
  place-items:end start;
  min-height:360px;
  border:1px solid rgba(34,199,242,.3);
  border-radius:16px;
  overflow:hidden;
  background:
    linear-gradient(135deg,rgba(34,199,242,.12),transparent 48%),
    radial-gradient(circle at 70% 30%,rgba(0,167,230,.22),transparent 30%),
    #0d1319;
  box-shadow:0 22px 60px rgba(0,0,0,.34);
}

.subhero-visual{
  margin-top:calc(1.248rem + 12px + var(--subhero-heading-line-middle));
  padding:28px;
}

.subhero-visual--photo,
.event-photo-placeholder--photo{
  padding:0;
  border-width:2px;
  border-color:rgba(34,199,242,.55);
}

.subhero-visual--photo picture,
.event-photo-placeholder--photo picture{
  display:block;
  width:100%;
  height:100%;
}

.subhero-visual--photo img,
.event-photo-placeholder--photo img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.subhero-visual--photo img{
  object-position:center top;
}

.event-photo-placeholder--photo img{
  object-position:center center;
}

@media (hover:hover) and (pointer:fine){
  .subhero-visual--photo:hover,
  .event-photo-placeholder--photo:hover{
    animation:image-frame-pulse 1.8s ease-in-out infinite;
  }
}

@keyframes image-frame-pulse{
  0%,100%{
    border-color:rgba(34,199,242,.55);
    box-shadow:0 22px 60px rgba(0,0,0,.34),0 0 0 rgba(34,199,242,0);
  }
  50%{
    border-color:rgba(34,199,242,.95);
    box-shadow:0 22px 60px rgba(0,0,0,.34),0 0 12px rgba(34,199,242,.20),0 0 28px rgba(34,199,242,.10);
  }
}

.subhero-visual--icon img{
  display:block;
  width:min(360px,100%);
  height:auto;
  margin:auto;
}

.event-steps-wrap{
  --event-step-min-width:255px;
  position:relative;
  margin-top:44px;
}

.event-steps-wrap--wedding{--event-step-min-width:300px}

.event-step-nav{
  display:none;
  position:absolute;
  inset:0 8px 24px;
  z-index:5;
  align-items:center;
  justify-content:space-between;
  pointer-events:none;
}

.event-step-nav-button{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  padding:0 0 3px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:50%;
  background:rgba(8,10,12,.9);
  color:var(--text);
  box-shadow:0 8px 24px rgba(0,0,0,.38);
  backdrop-filter:blur(8px);
  font:inherit;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
  pointer-events:auto;
  transition:transform .2s ease,border-color .2s ease,color .2s ease,box-shadow .2s ease,opacity .2s ease;
}

.event-step-nav-button:not(:disabled){
  animation:event-step-pulse 2.4s ease-in-out infinite;
}

.event-step-nav-button:hover,
.event-step-nav-button:focus-visible{
  color:var(--text-hover);
  border-color:rgba(34,199,242,.85);
  box-shadow:0 0 18px rgba(34,199,242,.28),0 8px 24px rgba(0,0,0,.4);
  transform:scale(1.06);
  outline:none;
}

.event-step-nav-button:disabled{
  opacity:0;
  visibility:hidden;
  cursor:default;
  animation:none;
  transform:none;
  box-shadow:none;
  pointer-events:none;
}

@keyframes event-step-pulse{
  0%,100%{box-shadow:0 8px 24px rgba(0,0,0,.38),0 0 0 rgba(34,199,242,0);transform:scale(1)}
  50%{box-shadow:0 8px 24px rgba(0,0,0,.38),0 0 22px rgba(34,199,242,.34);transform:scale(1.055)}
}

.event-step-progress{
  display:none;
  position:relative;
  width:min(360px,46%);
  height:4px;
  margin:16px auto 0;
  overflow:hidden;
  border-radius:999px;
  background:rgba(255,255,255,.12);
}

.event-step-progress span{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  width:30%;
  border-radius:inherit;
  background:var(--cyan-2);
  box-shadow:0 0 10px rgba(34,199,242,.32);
  transition:left .12s linear;
}

.event-steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,var(--event-step-min-width)),1fr));
  gap:0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.event-steps.is-all{grid-template-columns:repeat(var(--event-step-count),minmax(0,1fr))}

.event-step{
  position:relative;
  min-width:0;
  padding:28px 22px 30px;
  border-right:1px solid var(--line);
}

.event-step:last-child{border-right:0}

.event-step small{
  display:block;
  margin-bottom:14px;
  color:var(--cyan-2);
  font-weight:800;
  letter-spacing:.08em;
}

.event-step strong{
  display:block;
  margin-bottom:7px;
  font-size:1.05rem;
  transition:color .2s ease,text-shadow .2s ease;
}

.event-step.touch-highlight strong{
  color:var(--text-hover);
  text-shadow:0 0 8px rgba(34,199,242,.42);
}

@media (hover:hover) and (pointer:fine){
  .event-step:hover strong{
    color:var(--text-hover);
    text-shadow:0 0 8px rgba(34,199,242,.42);
  }
}

.event-step p{
  margin:0;
  font-size:.9rem;
  line-height:1.5;
}

/* Fester Raum: Genre-Wechsel dürfen weder Textspalte noch Folgeabschnitte verschieben. */
.event-genre-cloud{
  --genre-row-gap:12px;
  --genre-column-gap:20px;
  --genre-large-size:2.5rem;
  --genre-row-height:calc(var(--genre-large-size) * 1.08);
  margin-top:30px;
  display:flex;
  flex-wrap:wrap;
  align-content:flex-start;
  align-items:center;
  gap:var(--genre-row-gap) var(--genre-column-gap);
  height:calc((4 * var(--genre-row-height)) + (3 * var(--genre-row-gap)));
  overflow:hidden;
  text-transform:uppercase;
}

.event-genre-cloud .event-genre{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
  height:var(--genre-row-height);
  line-height:1.08;
  white-space:nowrap;
  transition:
    opacity var(--genre-transition-duration, 220ms) ease,
    transform var(--genre-transition-duration, 220ms) ease;
  transform-origin:center;
}

.event-genre-cloud .event-genre.genre-swap-out{
  opacity:0;
  transform:scale(.94);
}

.event-genre-cloud .event-genre.genre-swap-in{
  opacity:0;
  transform:scale(.96);
}

.event-genre-cloud .genre-size-small{font-size:1.55rem}
.event-genre-cloud .genre-size-medium{font-size:2rem}
.event-genre-cloud .genre-size-large{font-size:2.5rem}
.event-genre-cloud .genre-accent{color:var(--cyan-2)}

.event-service-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

/* Fastelovend: bewusst reduziertes Standard-Setup aus zwei Event-Karten. */
.event-service-grid--fastelovend{
  grid-template-columns:repeat(2,minmax(0,1fr));
  max-width:920px;
  margin-inline:auto;
}


/* Event-Service bleibt bewusst eigenstaendig: Basisrahmen/-hintergrund weichen leicht von
   den allgemeinen Panel-Tokens ab. Erst nach visueller Entscheidung vereinheitlichen. */
.event-service{
  position:relative;
  display:block;
  padding:34px 28px 28px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:var(--panel-radius);
  background:linear-gradient(180deg,#121820,#0b0f14);
  color:inherit;
  text-decoration:none;
  cursor:pointer;
  transition:
    transform var(--duration-card) var(--ease-standard),
    border-color var(--duration-card) var(--ease-standard),
    box-shadow var(--duration-card) var(--ease-standard),
    background var(--duration-card) var(--ease-standard);
}

.event-service:hover,
.event-service:focus-visible{
  transform:translateY(var(--lift-card));
  border-color:var(--cyan-2);
  background:var(--panel-bg-hover);
  box-shadow:0 18px 44px rgba(0,0,0,.45),0 0 0 1px rgba(34,199,242,.18),0 0 28px rgba(0,167,230,.18);
  outline:none;
}

.event-service-icon{
  position:absolute;
  top:-22px;
  left:18px;
  width:46px;
  height:46px;
  padding:3px;
  object-fit:contain;
  background:transparent;
  border-radius:8px;
  transition:transform var(--duration-card) var(--ease-standard);
}

.event-service:hover .event-service-icon,
.event-service:focus-visible .event-service-icon{transform:scale(1.08)}

.event-service strong{
  display:block;
  margin-bottom:10px;
  color:var(--text);
  font-size:1.12rem;
  transition:color var(--duration-card) var(--ease-standard);
}

.event-service p{margin:0}

.event-service--ambiente{
  grid-column:1 / -1;
  width:58%;
  justify-self:center;
  margin-top:8px;
  border-color:rgba(34,199,242,.38);
  background:
    radial-gradient(circle at 82% 42%,rgba(0,167,230,.1),transparent 40%),
    linear-gradient(180deg,#101820,#0b1015);
}

.event-service--ambiente:hover strong,
.event-service--ambiente:focus-visible strong{color:var(--cyan-2)}

.event-personal{
  --event-personal-heading-line-height:clamp(2.2rem,4.4vw,4.18rem);
  --event-personal-heading-line-middle:clamp(1.1rem,2.2vw,2.09rem);
  display:grid;
  grid-template-columns:minmax(300px,.8fr) minmax(0,1.2fr);
  gap:72px;
  align-items:start;
}

.event-personal > .copy h2{
  line-height:var(--event-personal-heading-line-height);
}

.event-personal > .event-photo-placeholder{
  margin-top:calc(
    1.248rem + 12px + var(--event-personal-heading-line-middle)
  );
}

.event-personal--reverse{
  grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr);
}

.event-personal--reverse > .event-photo-placeholder{order:2}
.event-personal--reverse > .copy{order:1}

.event-included{
  --separator-half-gap:15px;
  display:flex;
  flex-wrap:wrap;
  column-gap:30px;
  row-gap:10px;
  margin:26px 0 30px;
}

.event-included span{
  display:inline-flex;
  align-items:center;
  color:var(--text-soft);
  font-size:.94rem;
  transition:color .2s ease,text-shadow .2s ease,transform .2s ease;
}

/* Generische Trennpunkt-Logik. JS setzt .has-separator nur dann,
   wenn der folgende Begriff tatsächlich in derselben sichtbaren Zeile liegt. */
.line-separated > span{position:relative}
.line-separated > span.has-separator::after{
  content:"·";
  position:absolute;
  left:calc(100% + var(--separator-half-gap,6px));
  top:50%;
  color:var(--muted);
  text-shadow:none;
  transform:translate(-50%,-50%);
  pointer-events:none;
}

.event-format-list{
  --separator-half-gap:10px;
  display:flex;
  flex-wrap:wrap;
  column-gap:20px;
  row-gap:6px;
  margin-top:18px;
}
.event-format-list span{
  display:inline-flex;
  align-items:center;
}

.event-included span.touch-highlight{
  color:var(--text-hover);
  text-shadow:0 0 8px rgba(34,199,242,.58),0 0 16px rgba(0,167,230,.3);
  transform:scale(1.015);
}

@media (hover:hover) and (pointer:fine){
  .event-included span:hover{
    color:var(--text-hover);
    text-shadow:0 0 8px rgba(34,199,242,.58),0 0 16px rgba(0,167,230,.3);
    transform:scale(1.015);
  }
}

.event-faq{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:start;
  max-width:1050px;
  margin-inline:auto;
}

.event-faq details{
  width:100%;
  align-self:start;
  border:1px solid var(--line);
  border-radius:10px;
  background:#0d1217;
  padding:18px 20px;
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease,background .2s ease;
}

.event-faq details:hover,
.event-faq details:focus-within{
  transform:translateY(-2px);
  border-color:rgba(34,199,242,.62);
  background:#0e151b;
  box-shadow:0 10px 26px rgba(0,0,0,.25),0 0 18px rgba(0,167,230,.08);
}

.event-faq details:last-child:nth-child(odd){
  grid-column:1 / -1;
  width:calc((100% - 18px) / 2);
  justify-self:center;
}

.event-faq summary{
  cursor:pointer;
  color:var(--text);
  font-weight:700;
  list-style:none;
}

.event-faq summary::-webkit-details-marker{display:none}

.event-faq summary::after{
  content:"▾";
  display:inline-block;
  margin-left:9px;
  color:var(--cyan-2);
  transition:transform .2s ease,color .2s ease,text-shadow .2s ease;
}

.event-faq details[open] summary::after{content:"▴"}

.event-faq summary:hover::after,
.event-faq summary:focus-visible::after{
  transform:translateY(3px);
  color:var(--text-hover);
  text-shadow:var(--text-glow);
}

.event-faq details[open] summary:hover::after,
.event-faq details[open] summary:focus-visible::after{transform:translateY(-3px)}

.event-faq p{
  margin:12px 0 0;
  font-size:.94rem;
}

/* Scrollband, sobald mindestens drei Karten Platz haben, aber nicht alle in eine Reihe passen. */
.event-steps-wrap.is-scroll .event-step-nav{display:flex}
.event-steps-wrap.is-scroll .event-step-progress{display:block}

.event-steps.is-scroll{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:min(380px,calc((100% - 36px) / 2.5));
  grid-template-columns:none;
  gap:18px;
  overflow-x:auto;
  overscroll-behavior-inline:contain;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding:1px 0 2px;
  border-top:0;
  border-bottom:0;
}

.event-steps.is-scroll .event-step{
  width:auto;
  min-width:0;
  scroll-snap-align:start;
  border:1px solid var(--line);
  border-radius:10px;
  background:#0d1217;
}

.event-steps.is-scroll .event-step:last-child{border-right:1px solid var(--line)}
.event-steps.is-scroll::-webkit-scrollbar{display:none}

.event-steps.is-three{grid-template-columns:repeat(3,minmax(0,1fr))}
.event-steps.is-three .event-step{border-bottom:1px solid var(--line)}
.event-steps.is-three .event-step:nth-child(3n){border-right:0}
.event-steps.is-three .event-step:nth-last-child(-n+3){border-bottom:0}

.event-steps.is-two{grid-template-columns:repeat(2,minmax(0,1fr))}
.event-steps.is-two .event-step{border-bottom:1px solid var(--line)}
.event-steps.is-two .event-step:nth-child(2n){border-right:0}
.event-steps.is-two .event-step:nth-last-child(-n+2){border-bottom:0}

.event-steps.is-single{grid-template-columns:1fr}
.event-steps.is-single .event-step{
  border-right:0;
  border-bottom:1px solid var(--line);
}
.event-steps.is-single .event-step:last-child{border-bottom:0}

@media (max-width:1050px){
  .main-nav{display:none}
  .header-inner > .btn{margin-left:auto}
  .nav-toggle{display:block}
  .values{grid-template-columns:1fr 1fr}

  .about-grid{
    grid-template-columns:1fr;
    gap:46px;
  }

  .portrait-wrap{
    width:100%;
    justify-self:center;
  }

  .section-split{
    grid-template-columns:1fr;
    grid-template-areas:
      "eyebrow"
      "heading"
      "below"
      "content";
    column-gap:0;
  }

  .section-split__content{
    margin-top:32px;
    align-self:start;
  }

  .main-nav.is-open{
    display:flex;
    position:fixed;
    top:82px;
    left:0;
    right:0;
    z-index:60;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:10px 24px 28px;
    background:rgba(8,10,12,.985);
    border-bottom:1px solid var(--line);
    box-shadow:0 18px 40px rgba(0,0,0,.45);
    max-height:calc(100vh - 82px);
    overflow:auto;
  }

  .main-nav.is-open a{
    padding:18px 4px;
    font-size:1rem;
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .main-nav.is-open a:last-child{border-bottom:0}
  .main-nav.is-open .nav-request-link{display:block}

  .subhero-inner,
  .event-personal{
    grid-template-columns:1fr;
    gap:42px;
  }

  .event-personal--reverse > .event-photo-placeholder{order:1}
  .event-personal--reverse > .copy{order:2}
  .event-personal > .event-photo-placeholder{margin-top:0}

  .subhero-visual{
    min-height:300px;
    margin-top:0;
  }
  .price-package-grid{grid-template-columns:1fr}
  .carnival-price-callout{
    grid-template-columns:1fr;
    gap:36px;
  }
  .carnival-price-action{
    padding:0;
    border-left:0;
  }
  .event-service--ambiente{width:72%}
}

@media (max-width:720px){
  :root{--section-pad-y:70px}

  .container{width:min(100% - 30px,var(--max))}
  .placeholder-page,
  .form-result,
  .legal-page{padding-top:var(--section-pad-y)}

  .site-header{position:sticky}
  .header-inner{height:70px}
  .brand{max-width:190px}
  .header-inner > .btn{display:none}
  .nav-toggle{margin-left:auto}
  [id]{scroll-margin-top:82px}

  .main-nav.is-open{
    top:70px;
    max-height:calc(100vh - 70px);
  }

  .hero{
    min-height:auto;
    padding:22px 0 42px;
  }

  .hero-copy{padding-top:34px}

  .hero-bg{
    background-image:image-set(
      url("../img/hero-bsonic-1200.avif") type("image/avif"),
      url("../img/hero-bsonic-1200.webp") type("image/webp")
    );
    background-position:right 12%;
    background-size:cover;
  }

  .hero-bg::before{
    background:
      linear-gradient(90deg,
        rgb(8 10 12 / var(--hero-dark-1)) 0%,
        rgb(8 10 12 / var(--hero-dark-2)) 38%,
        rgb(8 10 12 / var(--hero-dark-3)) 66%,
        rgb(8 10 12 / var(--hero-dark-4)) 86%,
        transparent 100%);
  }

  .hero-facts{
    grid-template-columns:1fr 1fr;
    gap:24px;
  }

  .hero-actions{
    align-items:flex-start;
    flex-direction:column;
  }

  .cards.three,
  .cards.four,
  .values,
  .stats,
  .region-grid{
    grid-template-columns:1fr;
  }

  .cards--text-only .card{
    display:block;
    min-height:0;
    padding:26px 24px;
  }

  .card{
    grid-template-columns:96px minmax(0,1fr);
    gap:18px;
    min-height:190px;
    padding:22px 20px;
  }

  .card-icon-img{
    width:86px;
    max-height:96px;
  }

  .value,
  .stats div{
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .stats div:last-child{border-bottom:0}

  .tech-grid > .atmo-box{
    grid-column:1 / -1;
    grid-template-columns:96px minmax(0,1fr);
    grid-template-areas:
      "icon eyebrow"
      "icon title"
      "icon text"
      "icon link";
    column-gap:18px;
    row-gap:5px;
    min-height:210px;
    padding:22px 20px;
  }

  .tech-grid > .atmo-box .atmo-icon-img{
    width:90px;
    height:104px;
    align-self:start;
  }

  .tech-grid > .atmo-box > .card-more{
    justify-self:end;
    align-self:end;
    white-space:normal;
    margin-top:6px;
  }

  .about-wordmark{
    width:min(420px,86%);
    margin-bottom:12px;
  }

  .price-notes{grid-template-columns:1fr}

  .consent-inner{
    width:calc(100% - 30px);
    align-items:stretch;
    flex-direction:column;
  }

  .consent-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  .footer-grid{
    flex-direction:column;
    align-items:flex-start;
  }

  .contact-box,
  .contact-alt{
    padding:22px 20px;
  }

  .contact-box .btn{width:100%}
  .date-field{gap:10px}

  .date-weekday{
    width:100%;
    padding-left:4px;
  }

  .event-genre-cloud{
    --genre-row-gap:10px;
    --genre-column-gap:14px;
    --genre-large-size:2rem;
  }

  .subhero{
    min-height:auto;
    padding:62px 0 56px;
  }

  .subhero-inner{gap:30px}
  .subhero-visual{min-height:220px;padding:20px}
  .subhero-visual--photo{padding:0}

  .price-page-hero{min-height:auto}
  .price-package{padding:30px 22px 26px}
  .price-fact-grid{grid-template-columns:1fr}
  .price-fact-grid > div{min-height:0}
  .carnival-price-action .btn{width:100%}

  .event-service-grid,
  .event-faq{grid-template-columns:1fr}
  .event-service{padding:34px 22px 24px}
  .event-service--ambiente{grid-column:auto;width:auto;margin-top:0}
  .event-photo-placeholder{min-height:270px}
  .event-genre-cloud .genre-size-small{font-size:1.35rem}
  .event-genre-cloud .genre-size-medium{font-size:1.7rem}
  .event-genre-cloud .genre-size-large{font-size:2rem}

  .event-faq details:last-child:nth-child(odd){
    grid-column:auto;
    width:auto;
    justify-self:stretch;
  }

  .tech-dj-cards{
    --tech-dj-gap:16px;
    --tech-expand-trigger-min-height:0px;
    --tech-expand-narrow-min-height:0px;
  }
}

/* ===== Event-Technik: projektbezogene Erweiterungen ===== */
.event-service--extension{
  grid-column:auto;
  width:auto;
  justify-self:stretch;
  margin-top:8px;
  border-color:rgba(34,199,242,.3);
}
.event-service-grid > .event-service--extension:nth-last-child(2){grid-column:1 / 2}
.event-service-grid > .event-service--extension:last-child{grid-column:2 / 4}
.event-service-meta{
  display:block;
  margin-top:14px;
  color:var(--cyan-2);
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

@media (max-width:760px){
  .event-service-grid > .event-service--extension:nth-last-child(2),
  .event-service-grid > .event-service--extension:last-child{grid-column:auto}
}

/* ===== Technik-Detailseite ===== */
.tech-detail-note{
  max-width:900px;
  margin:28px auto 0;
  padding:18px 22px;
  border-left:3px solid var(--cyan-2);
  background:rgba(0,167,230,.055);
  line-height:1.65;
}
.tech-setup-disclaimer{
  max-width:880px;
  margin:30px auto 0;
  line-height:1.65;
}
.tech-presentation-link{
  max-width:920px;
  margin-inline:auto;
  grid-template-columns:1fr;
}
.tech-presentation-link > .event-service--extension:last-child{
  grid-column:1 / -1;
}


/* ===== Aufklappbare Technik-Karten =====
   Seit V28.9.11 als eigenständige Ein-Box-Komponente aufgebaut.
   Stand V28.9.13a: gemeinsame Interaktions-Tokens und dokumentierte
   responsive Schwellen.
   Eine Karte bleibt immer genau EIN Grid-Item und besitzt genau EINEN Außenrahmen.
   Der Detailbereich liegt innerhalb derselben Karte und animiert ausschließlich seine
   eigene Höhe. Kein display:contents, kein subgrid, keine getrennten Außenrahmen,
   keine Höhenmessung und keine gerätespezifischen Offsets.
*/

.tech-dj-cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:var(--tech-dj-gap,22px);
  align-items:start;
}

.tech-expand-card{
  --equipment-expand-duration:1s;
  container-type:inline-size;
  display:block;
  min-width:0;
  min-height:0;
  padding:0;
  overflow:hidden;
  border:1px solid var(--panel-border);
  border-radius:var(--panel-radius);
  background:var(--panel-bg);
  transition:
    transform var(--duration-card) var(--ease-standard),
    border-color var(--duration-card) var(--ease-standard),
    box-shadow var(--duration-card) var(--ease-standard),
    background var(--duration-card) var(--ease-standard);
}

.tech-expand-card:hover,
.tech-expand-card:focus-within{
  transform:translateY(var(--lift-card));
  border-color:var(--cyan-2);
  background:var(--panel-bg-hover);
  box-shadow:var(--panel-shadow-hover);
}

/* Der Kopf ist vollständig innerhalb des einzigen Kartenrahmens. */
.tech-expand-trigger{
  appearance:none;
  -webkit-appearance:none;
  width:100%;
  min-height:var(--tech-expand-trigger-min-height,330px);
  margin:0;
  padding:26px 28px 18px;
  border:0;
  background:transparent;
  color:inherit;
  font:inherit;
  text-align:left;
  cursor:pointer;
  display:grid;
  grid-template-columns:minmax(0,1fr) 138px;
  grid-template-rows:auto minmax(44px,auto);
  column-gap:16px;
  row-gap:10px;
  align-items:start;
}

.tech-expand-trigger:focus-visible{
  outline:2px solid var(--cyan-2);
  outline-offset:-4px;
  border-radius:10px;
}

.tech-expand-copy{
  grid-column:1;
  grid-row:1;
  min-width:0;
}
.tech-expand-copy h3{margin-top:0}
.tech-expand-copy p{margin-bottom:0}

.tech-expand-hint{
  grid-column:1;
  grid-row:2;
  align-self:end;
  justify-self:start;
  display:inline-flex;
  align-items:center;
  min-height:44px;
  margin:0;
  padding:0;
  color:var(--cyan-2);
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.04em;
}

.tech-expand-hint::after{
  content:"▾";
  display:inline-block;
  margin-left:9px;
  color:var(--cyan-2);
  transition:
    transform var(--equipment-expand-duration) ease,
    color .2s ease,
    text-shadow .2s ease;
}
.tech-expand-card.is-open .tech-expand-hint::after{content:"▴"}
.tech-expand-trigger:hover .tech-expand-hint::after,
.tech-expand-trigger:focus-visible .tech-expand-hint::after{
  transform:translateY(3px);
  color:var(--text-hover);
  text-shadow:var(--text-glow);
}
.tech-expand-card.is-open .tech-expand-trigger:hover .tech-expand-hint::after,
.tech-expand-card.is-open .tech-expand-trigger:focus-visible .tech-expand-hint::after{
  transform:translateY(-3px);
}

.tech-card-neon{
  grid-column:2;
  grid-row:1 / 3;
  align-self:end;
  justify-self:end;
  width:138px;
  height:138px;
  object-fit:contain;
  pointer-events:none;
  filter:drop-shadow(0 0 12px rgba(34,199,242,.18));
  transition:
    transform var(--equipment-expand-duration) ease,
    filter var(--equipment-expand-duration) ease;
}
.tech-expand-card:hover .tech-card-neon,
.tech-expand-card.is-open .tech-card-neon{
  transform:scale(1.045);
  filter:drop-shadow(0 0 18px rgba(34,199,242,.3));
}

/* Detailbereich innerhalb derselben Karte: 0fr <-> 1fr ist die einzige
   geometrische Animation. Der Außenrahmen der Karte wird dabei nie aufgeteilt. */
.tech-expand-media{
  display:grid;
  grid-template-rows:0fr;
  opacity:1;
  transition:grid-template-rows var(--equipment-expand-duration) cubic-bezier(.22,1,.36,1);
}
.tech-expand-card.is-open .tech-expand-media{grid-template-rows:1fr}

.tech-expand-media-clip{
  min-height:0;
  overflow:hidden;
}

.tech-expand-media-inner{
  padding:0 18px 18px;
  opacity:0;
  transform:translateY(-5px);
  transition:
    opacity var(--equipment-expand-duration) cubic-bezier(.22,1,.36,1),
    transform var(--equipment-expand-duration) cubic-bezier(.22,1,.36,1);
}
.tech-expand-card.is-open .tech-expand-media-inner{
  opacity:1;
  transform:translateY(0);
}

.tech-expand-media img{
  display:block;
  width:100%;
  height:auto;
  border:1px solid rgba(255,255,255,.14);
  border-radius:10px;
  background:#0b0f14;
}

/* Schmale Karten: Text nutzt die volle Breite; Ansicht und Neonmotiv bilden
   anschließend gemeinsam die Abschlusszeile. Container-Query ist hier sicher,
   weil .tech-expand-card immer eine echte Box bleibt. */
/* Komponenteninterne Schwelle: unabhaengig vom Viewport, nur nach realer Kartenbreite. */
@container (max-width:400px){
  .tech-expand-trigger{
    min-height:var(--tech-expand-narrow-min-height,410px);
    padding:26px 28px 18px;
    grid-template-columns:minmax(0,1fr) 132px;
    grid-template-rows:auto auto;
    column-gap:12px;
    row-gap:14px;
  }
  .tech-expand-copy{grid-column:1 / -1;grid-row:1}
  .tech-expand-hint{grid-column:1;grid-row:2;align-self:end}
  .tech-card-neon{grid-column:2;grid-row:2;width:132px;height:132px}
}

/* Mittlere Breiten: zwei normale Karten nebeneinander; die dritte behält
   dieselbe Kartenbreite und wird darunter zentriert. */
@media (min-width:721px) and (max-width:1180px){
  .cards.three,
  .cards.four{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
  }

  .cards.three > .card,
  .cards.four > .card{
    grid-template-columns:88px minmax(0,1fr);
    gap:16px;
    min-height:230px;
    padding:24px 22px;
  }

  .cards.three > .card .card-icon-img,
  .cards.four > .card .card-icon-img{
    width:82px;
    max-height:96px;
  }

  .cards.three > .card:nth-child(3),
  .tech-dj-cards > .tech-expand-card:nth-child(3){
    grid-column:1 / -1;
    width:calc((100% - 18px) / 2);
    justify-self:center;
  }

  .tech-grid > .atmo-box{
    grid-column:1 / -1;
    width:100%;
    grid-template-columns:118px minmax(0,1fr);
    grid-template-areas:
      "icon eyebrow"
      "icon title"
      "icon text"
      "icon link";
    column-gap:22px;
    padding:26px 28px;
  }

  .tech-grid > .atmo-box .atmo-icon-img{
    width:108px;
    height:118px;
  }

  .tech-grid > .atmo-box > .card-more{
    justify-self:end;
    align-self:end;
    white-space:normal;
    margin-top:8px;
  }

  .tech-expand-trigger{min-height:350px}
}

@media (prefers-reduced-motion:reduce){
  html,
  .event-steps{scroll-behavior:auto}

  .subhero-visual--photo,
  .event-photo-placeholder--photo{
    animation:none !important;
  }

  .event-step-nav-button:not(:disabled){animation:none}

  .event-genre-cloud > *,
  .event-service,
  .event-service-icon,
  .event-faq details,
  .event-faq summary::after,
  .event-included span,
  .value strong,
  .event-step strong,
  .event-step-nav-button,
  .tech-expand-card,
  .tech-card-neon,
  .tech-expand-hint::after,
  .tech-expand-media,
  .tech-expand-media-inner{
    transition:none;
  }
}
