/* ===========================================================
   RIZ Radolfzell — Webseite FB
   Premium Brand Style · Hermes Orange · Berliner Blau · Weiss
   =========================================================== */

:root {
  --orange: #FF7900;          /* Hermes Orange */
  --orange-hover: #FF9333;
  --blue: #003153;            /* Berliner Blau (Prussian Blue) */
  --blue-deep: #00243C;
  --blue-soft: #0A2540;
  --white: #FFFFFF;
  --paper: #F5F5F7;
  --ink: #0A0A0A;
  --ink-soft: #1d1d1f;
  --grey: #6e6e73;
  --grey-line: #e6e6e6;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --maxw: 1400px;
  --pad: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink-soft);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--orange); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -.025em; line-height: 1.05; color: inherit; }
h1 { font-size: clamp(2.6rem, 7vw, 7.5rem); letter-spacing: -.035em; line-height: 1.0; }
h2 { font-size: clamp(2rem, 4.5vw, 4.6rem); }
h3 { font-size: clamp(1.4rem, 2vw, 2.1rem); font-weight: 600; letter-spacing: -.015em; }
h4 { font-size: clamp(1.05rem, 1.3vw, 1.25rem); font-weight: 600; letter-spacing: 0; }

.subline { font-size: clamp(1rem, 1.4vw, 1.3rem); font-weight: 400; opacity: .8; max-width: 620px; }
/* Einheitlicher Abstand zwischen Headline und direkt folgender Subline.
   Inline-/Hero-/Section-Head-Werte (die margin-top explizit setzen) gewinnen per Spezifitaet. */
h1 + .subline, h2 + .subline { margin-top: 1.4rem; }
.eyebrow {
  display: inline-block;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
}
.section-eyebrow { color: var(--orange); }

/* ---------- Header / Navigation ---------- */
header.site {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px var(--pad);
  /* 1fr | auto | 1fr: die Navigation sitzt in der Mitte der Seite, nicht rechts.
     Die dritte Spalte bleibt leer und haelt die Nav damit optisch zentriert. */
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  background: transparent;
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease;
}
header.site .logo { grid-column: 1; justify-self: start; }
header.site nav   { grid-column: 2; }
header.site.scrolled {
  background: rgba(0, 36, 60, .82);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  padding: 12px var(--pad);
}
header.site .logo img { height: clamp(26px, 2vw, 38px); width: auto; }
header.site nav ul {
  display: flex; gap: clamp(14px, 1.7vw, 34px); list-style: none;
  align-items: center;
}
header.site nav a {
  font-size: clamp(.86rem, .98vw, 1.08rem); font-weight: 500; color: #fff;
  padding: 8px 2px; position: relative;
}
header.site nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
header.site nav a:hover { color: #fff; }
header.site nav a:hover::after,
header.site nav a.active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--orange); color: #fff !important;
  padding: 0 clamp(14px, 1.1vw, 22px); height: clamp(32px, 2.4vw, 40px); border-radius: 100px;
  font-weight: 500; font-size: clamp(.78rem, .86vw, .96rem);
  letter-spacing: .02em;
  white-space: nowrap;
  min-width: clamp(88px, 6.2vw, 116px); text-align: center;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--orange-hover); color: #fff !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  width: 32px; height: 32px;
  background: none; border: 0; color: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.menu-toggle svg { width: 26px; height: 26px; }

/* Neun Menuepunkte plus CTA brauchen mehr Platz als 980px hergeben –
   darunter verdraengt die Nav das Logo, deshalb frueher auf Burger umschalten. */
@media (max-width: 1200px) {
  header.site { display: flex; justify-content: space-between; }
  header.site nav ul { display: none; }
  header.site nav ul.open {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(0, 36, 60, .96);
    backdrop-filter: blur(20px);
    padding: 16px 0;
  }
  header.site nav ul.open li { width: 100%; }
  header.site nav ul.open a { display: block; padding: 14px var(--pad); }
  /* Der CTA darf im Klappmenue nicht die Zeilen-Formatierung der uebrigen
     Links erben: display:block killt die vertikale Zentrierung, die feste
     Hoehe kollidiert mit dem Zeilen-Padding und die Pille laeuft randlos
     ueber die volle Breite. Deshalb hier eigene Werte. */
  /* Der CTA schliesst das Klappmenue ab und ist kein weiterer Menuepunkt:
     eigene Trennlinie, volle Breite, groesseres Touch-Ziel. Ohne das liest er
     sich wie ein zehnter Eintrag, der zufaellig orange ist. */
  header.site nav ul.open li:last-child {
    margin-top: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.14);
  }
  header.site nav ul.open .nav-cta {
    display: flex;
    /* Nicht ueber die volle Breite: das wirkt wuchtig. Nicht nur textbreit:
       das wirkt beilaeufig. Rund zwei Drittel, nach oben begrenzt, damit der
       Button auf breiteren Handys nicht mitwaechst. */
    width: min(64%, 260px); min-width: 0;
    height: 52px;
    margin: 0 auto;          /* mittig statt bündig zu den Menuepunkten */
    padding: 0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .01em;
  }
  header.site nav ul.open { padding-bottom: 22px; }
  .menu-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-align: center;
  padding: 0 var(--pad);
}
.hero-bg, .hero-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-slideshow img { opacity: 0; transition: opacity 1.6s ease-in-out; }
.hero-slideshow img.active { opacity: 1; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,26,44,.55) 0%, rgba(0,26,44,.45) 50%, rgba(0,26,44,.85) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 980px; }
.hero .eyebrow { font-size: 1.05rem; font-weight: 900; letter-spacing: .2em; }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero .subline { margin: 0 auto 2rem; color: rgba(255,255,255,.92); }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-compact { min-height: 70vh; }
.hero-compact h1 { font-size: clamp(2.2rem, 5.5vw, 5.5rem); }
.hero-logo { display: block; width: clamp(190px, 26vw, 250px); height: auto; margin: 0 auto 1.6rem; filter: drop-shadow(0 2px 10px rgba(0,26,44,.55)); }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.7);
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: .3; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 100px;
  font-weight: 600; font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer; transition: all .25s ease;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-hover); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-dark { background: var(--blue); color: #fff; }
.btn-dark:hover { background: var(--blue-soft); color: #fff; }

/* ---------- Section base ---------- */
section { padding: clamp(80px, 12vh, 160px) var(--pad); }
.section-light { background: var(--white); color: var(--ink-soft); }
.section-paper { background: var(--paper); color: var(--ink-soft); }
.section-dark { background: var(--blue-deep); color: #fff; }
.section-blue { background: var(--blue); color: #fff; }
.section-dark .eyebrow, .section-blue .eyebrow { color: var(--orange); }

.container { max-width: var(--maxw); margin: 0 auto; }

.section-head {
  max-width: 820px; margin: 0 auto clamp(40px, 6vh, 80px);
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }

/* ---------- Showcase (image + text) ---------- */
.showcase {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: var(--maxw); margin: 0 auto;
}
.showcase .visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden; border-radius: 4px;
  background: var(--blue);
}
.showcase.wide .visual { aspect-ratio: 16/10; }
.showcase .visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.showcase .visual:hover img { transform: scale(1.04); }
.showcase.reverse { direction: rtl; }
.showcase.reverse > * { direction: ltr; }
@media (max-width: 880px) {
  .showcase, .showcase.reverse { grid-template-columns: 1fr; direction: ltr; }
  .showcase .visual { aspect-ratio: 4/3; }
}
/* Laengere Showcase-Headline: eine Stufe kleiner + ausgeglichener Umbruch,
   damit in der halbbreiten Spalte keine Einzelwort-Zeilen stehen bleiben. */
.showcase h2.long { font-size: clamp(1.8rem, 3.1vw, 2.9rem); line-height: 1.14; text-wrap: balance; }

/* Team-Raster (Ueber uns) */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.4vw, 36px); }
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; } }
.team-card { margin: 0; }
.team-photo { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 6px; background: var(--white); margin-bottom: 1.1rem; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-card h3 { font-size: 1.2rem; margin-bottom: .2rem; letter-spacing: -.01em; }
.team-role { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); margin-bottom: .55rem; }
.team-card p { font-size: .95rem; opacity: .82; line-height: 1.5; margin: 0; }

/* Zitat-Band (Ueber uns) */
.quote-block { max-width: 920px; margin: 0 auto; text-align: center; }
.quote-block blockquote { margin: 0; font-style: italic; font-weight: 500; font-size: clamp(1.5rem, 3.2vw, 2.6rem); line-height: 1.28; letter-spacing: -.015em; color: var(--ink); }
.quote-block figcaption { margin-top: 1.6rem; font-style: normal; font-weight: 600; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; color: var(--orange); }

/* Event-Setup (Events-Seite): Ausstattung / Ablauf */
.evsetup .visual { aspect-ratio: 4 / 5; }
.evsetup-block { padding-left: 1.4rem; border-left: 2px solid var(--orange); margin-top: 1.7rem; }
.evsetup-block h3 { color: var(--ink); font-size: 1.15rem; margin-bottom: .5rem; letter-spacing: -.01em; }
.evsetup-block p { font-size: .98rem; opacity: .82; line-height: 1.55; margin: 0; }

.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.feature-list li { position: relative; padding-left: 1.9rem; line-height: 1.45; }
.feature-list li::before {
  content: ""; position: absolute; left: .25rem; top: .15em;
  width: 7px; height: 12px;
  border-right: 2px solid var(--orange); border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
}

/* Tarif-Kacheln (Co-Active Space) */
.tariff-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
  max-width: 760px; margin: clamp(32px, 4vw, 48px) auto 0;
}
@media (max-width: 560px) { .tariff-grid { grid-template-columns: 1fr; } }
.tariff-card {
  position: relative;
  background: var(--white); border: 1px solid var(--grey-line);
  border-radius: 16px; padding: clamp(26px, 3vw, 38px);
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
  transition: transform .25s ease, box-shadow .25s ease;
}
.tariff-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.08); }
.tariff-card.featured { border-color: var(--orange); box-shadow: 0 10px 34px rgba(255,121,0,.14); }
.tariff-card .tariff-label {
  font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--orange);
}
.tariff-card .tariff-price {
  display: block; margin-top: .7rem;
  font-size: clamp(2rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -.02em;
  color: var(--ink); line-height: 1.1;
}
.tariff-card .tariff-unit {
  display: block; margin-top: .4rem;
  font-size: 1rem; font-weight: 600; color: var(--grey); letter-spacing: 0;
}
.tariff-card .tariff-desc { margin-top: .6rem; color: var(--grey); font-size: .95rem; }
.tariff-card .tariff-flag {
  position: absolute; top: 16px; right: 16px;
  background: var(--orange); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.tariff-note {
  max-width: 760px; margin: 1.2rem auto 0;
  font-size: .85rem; color: var(--grey); text-align: center;
}

/* ---------- Offer Lists (Inklusive / Extra) ---------- */
.offer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px);
  max-width: var(--maxw); margin: 0 auto;
}
@media (max-width: 880px) { .offer-grid { grid-template-columns: 1fr; } }

.offer-card {
  background: var(--white); color: var(--ink-soft);
  border: 1px solid var(--grey-line);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 6px;
  position: relative; overflow: hidden;
}
.section-dark .offer-card, .section-blue .offer-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
.offer-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 6px; height: 100%;
}
.offer-card.inclusive::before { background: var(--blue); }
.offer-card.extra::before     { background: var(--orange); }

.offer-card .badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
  margin-bottom: 1.2rem;
}
.offer-card.inclusive .badge { background: var(--blue); color: #fff; }
.offer-card.extra .badge     { background: var(--orange); color: #fff; }

.offer-card h3 { margin-bottom: .5rem; }
.offer-card > p { opacity: .72; margin-bottom: 1.8rem; font-size: .98rem; }

.offer-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.offer-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--grey-line);
  font-size: 1rem;
}
.section-dark .offer-list li, .section-blue .offer-list li { border-bottom-color: rgba(255,255,255,.1); }
.offer-list li:last-child { border-bottom: 0; }
.offer-list .dot {
  flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%;
  margin-top: 8px;
}
.offer-card.inclusive .dot { background: var(--blue); }
.offer-card.extra .dot     { background: var(--orange); }
.offer-list .sub { font-size: .88rem; opacity: .68; display: block; margin-top: 2px; }

/* ---------- Feature Grid (Hub Tiles) ---------- */
.tiles {
  display: grid; gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--maxw); margin: 0 auto;
}
@media (max-width: 1100px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .tiles { grid-template-columns: 1fr; } }

.tile {
  position: relative; overflow: hidden; aspect-ratio: 4/5;
  background: var(--blue);
  border-radius: 4px;
  color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  transition: transform .4s ease;
}
.tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transition: transform .8s ease;
  filter: brightness(.7);
}
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,26,44,.85) 100%);
  z-index: 1;
}
.tile > * { position: relative; z-index: 2; }
.tile h3 { font-weight: 600; }
.tile .arrow {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, transform .35s ease;
  z-index: 2;
}
.tile:hover img { transform: scale(1.06); }
.tile:hover .arrow { background: var(--orange); transform: translate(2px, -2px); }
.tile:hover { color: #fff; }
.tile p { font-size: .92rem; opacity: .85; margin-top: 6px; max-width: 28ch; }

/* ---------- Stats / Numbers ---------- */
.stats {
  display: grid; gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--maxw); margin: 0 auto;
  text-align: center;
}
.stats.stats-3 { grid-template-columns: repeat(3, 1fr); gap: clamp(40px, 6vw, 100px); max-width: var(--maxw); margin-left: auto; margin-right: auto; }
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 880px) { .stats.stats-3 { grid-template-columns: repeat(3, 1fr); } }
/* Unter 720px reicht die Spaltenbreite fuer lange Werte wie "+20 Jahre" nicht
   mehr aus – wegen white-space:nowrap liefe der Text sonst aus dem Raster. */
@media (max-width: 720px) { .stats.stats-3 { grid-template-columns: 1fr; max-width: 360px; } }
.stat .num {
  font-size: clamp(2rem, 4.6vw, 5rem);
  font-weight: 700; letter-spacing: -.04em;
  color: var(--orange); line-height: 1;
  white-space: nowrap;
}
/* Unendlich-Zeichen: die Glyphe ist deutlich kleiner gezeichnet als die Ziffern.
   Optisch hochskaliert per transform, damit die Zeilenhoehe und damit die
   Label-Ausrichtung der Nachbar-Stats unveraendert bleibt. */
/* Unendlich-Zeichen: die Glyphe ist deutlich kleiner gezeichnet als die Ziffern
   und muss vergroessert werden. Bewusst ueber font-size statt transform:scale –
   eine Skalierung vergroessert die Bounding-Box und liess die Startseite auf
   schmalen Geraeten horizontal scrollen. line-height gleicht die Zeilenhoehe
   wieder aus (1.75 x 0.57 = 1), damit die Labels aller drei Stats auf einer
   Linie bleiben. */
.stat .num.infinite {
  display: block;
  font-size: clamp(3.5rem, 8.05vw, 8.75rem);
  line-height: .5;
  padding-top: .1em;
  position: relative;
  top: calc(-.21em + 4.5mm);
}
/* Einspaltig (unter 720px) sitzt das Zeichen naeher am Label als im
   Dreispalter – deshalb dort 2mm hoeher. Muss nach der Basisregel stehen. */
@media (max-width: 720px) {
  .stat .num.infinite { top: calc(-.21em + 2.5mm); }
}

.stat .label {
  margin-top: .8rem; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase;
  opacity: .7;
}

/* ---------- Pricing ---------- */
.pricing {
  display: grid; gap: 18px;
  grid-template-columns: repeat(5, 1fr);
  max-width: var(--maxw); margin: 0 auto;
}
@media (max-width: 980px) { .pricing { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pricing { grid-template-columns: 1fr; } }
.price-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color .25s ease, transform .3s ease;
}
.section-light .price-card, .section-paper .price-card {
  background: var(--white); border-color: var(--grey-line);
}
.price-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.price-card .duration { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; opacity: .7; }
.price-card .price {
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -.02em;
  color: var(--orange); margin: .6rem 0 .2rem;
}
.price-card .unit { font-size: .82rem; opacity: .6; }

/* ---------- Price Tables (Konferenz) ---------- */
.price-cols {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 26px); align-items: start;
  max-width: var(--maxw); margin: 0 auto;
}
@media (max-width: 1080px) { .price-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .price-cols { grid-template-columns: 1fr; } }
.price-block {
  background: var(--white); border: 1px solid var(--grey-line);
  border-radius: 14px; padding: clamp(22px, 2.4vw, 30px);
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-block:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,.07); }
.price-block.featured {
  grid-column: 1 / -1;
  background: linear-gradient(180deg, #ffffff, #fafafb);
  border-color: #e2e2e6;
}
.price-block.featured .price-lines { column-width: 300px; column-gap: clamp(28px, 4vw, 64px); }
.price-block.featured .price-line { break-inside: avoid; }
.price-block h3 {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: 1.05rem; margin-bottom: 1.1rem; padding-bottom: .7rem;
  border-bottom: 2px solid var(--orange);
}
.price-block h3 svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--orange); }
.price-line {
  display: flex; align-items: baseline; gap: 0;
  padding: 8px 0; font-size: .95rem;
}
.price-line .pl-name { flex: 1; display: flex; align-items: baseline; min-width: 0; }
.price-line .pl-name::after {
  content: ""; flex: 1; height: 0;
  border-bottom: 1px dotted #cfcfd4;
  margin: 0 .55rem .18em; min-width: 1rem;
}
.price-line .pl-price { white-space: nowrap; font-weight: 600; color: var(--blue); text-align: right; }

/* Mobile-Akkordeon für Preis-Kategorien */
.price-block > summary { display: block; list-style: none; }
.price-block > summary::-webkit-details-marker { display: none; }
@media (min-width: 768px) {
  .price-block > summary { pointer-events: none; cursor: default; }
  .price-block > summary::after { display: none; }
  details.price-block > .price-line { display: flex; }
  details.price-block > .price-lines { display: block; }
}
@media (max-width: 767px) {
  .price-block > summary {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; cursor: pointer;
  }
  .price-block > summary h3 { margin-bottom: 0; }
  .price-block > summary::after {
    content: ""; flex-shrink: 0; width: 9px; height: 9px; margin-right: 2px;
    border-right: 2px solid var(--grey); border-bottom: 2px solid var(--grey);
    transform: rotate(45deg); transition: transform .2s ease;
  }
  .price-block[open] > summary { margin-bottom: 1rem; }
  .price-block[open] > summary::after { transform: rotate(-135deg); }
}

/* Verpflegungspauschalen – Vergleich */
.pauschal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto auto;
  gap: clamp(14px, 1.4vw, 20px);
  max-width: var(--maxw); margin: 0 auto;
}
@media (max-width: 980px) { .pauschal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pauschal-grid { grid-template-columns: 1fr; } }
.pauschal-card {
  grid-row: span 4;
  display: grid; grid-template-rows: subgrid; row-gap: 0;
  position: relative;
  background: var(--white); border: 1px solid var(--grey-line);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pauschal-card > * { padding-left: clamp(18px, 2vw, 26px); padding-right: clamp(18px, 2vw, 26px); }
.pauschal-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.08); }
.pauschal-card.popular { border-color: var(--orange); box-shadow: 0 10px 34px rgba(255,121,0,.14); }
.pauschal-card .ph-flag {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  background: var(--orange); color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.pauschal-card .ph-head {
  display: flex; flex-direction: column; gap: .15rem;
  padding-top: clamp(20px, 2.2vw, 28px); padding-bottom: 1rem;
  border-bottom: 2px solid var(--orange);
}
.pauschal-card .ph-name { font-size: .98rem; font-weight: 600; letter-spacing: -.01em; }
.pauschal-card .ph-price { margin-top: auto; padding-top: .5rem; font-weight: 700; color: var(--blue); font-size: clamp(1.1rem, 1.3vw, 1.3rem); line-height: 1.2; }
.pauschal-card .ph-row {
  display: block; padding-top: .85rem; padding-bottom: .85rem;
  font-size: .9rem; line-height: 1.45; border-top: 1px solid var(--grey-line);
}
.pauschal-card .ph-head + .ph-row { border-top: 0; }
.pauschal-card .ph-row:last-child { padding-bottom: clamp(20px, 2.2vw, 28px); }
.pauschal-card .ph-row .ph-when {
  display: block; margin-bottom: .25rem; width: auto;
  font-weight: 700; color: var(--orange);
  font-size: .68rem; text-transform: uppercase; letter-spacing: .05em;
}
.pauschal-card .ph-row .ph-what { display: block; opacity: .82; }
.price-note {
  max-width: var(--maxw); margin: clamp(24px, 3vw, 36px) auto 0;
  font-size: .9rem; opacity: .62; text-align: center;
}

/* ---------- Seating Layouts (Konferenz Bestuhlung) ---------- */
.seating-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: clamp(36px, 5vw, 90px);
  max-width: 1300px; margin: 0 auto;
}
@media (max-width: 600px) { .seating-grid { grid-template-columns: repeat(2, 1fr); } }
.seat {
  background: transparent; border-radius: 14px;
  padding: clamp(14px, 1.3vw, 22px) clamp(10px, 1vw, 18px);
  text-align: center;
}
.seat svg { width: 100%; max-width: clamp(140px, 13vw, 190px); height: auto; display: block; margin: 0 auto clamp(12px, 1.2vw, 18px); }
.seat .seat-label { font-size: clamp(1rem, 1.05vw, 1.2rem); font-weight: 600; color: var(--ink-soft); letter-spacing: -.01em; }
/* Auf dunklem Hintergrund: Icon-Punkte und Label hell statt weißer Box */
.section-dark .seat svg circle { fill: #fff; }
.section-dark .seat .seat-label { color: #fff; }

/* ---------- Info Cards ---------- */
.info-grid {
  display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr);
  max-width: var(--maxw); margin: 0 auto;
}
@media (max-width: 880px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
  background: var(--white); border: 1px solid var(--grey-line);
  padding: clamp(24px, 3vw, 36px); border-radius: 6px;
}
.section-dark .info-card, .section-blue .info-card {
  background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12);
}
.info-card h3 { color: var(--orange); margin-bottom: .8rem; }
.info-card p { font-size: .98rem; opacity: .82; }

/* ---------- Banner / Cinematic ---------- */
.banner {
  position: relative; min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 0 var(--pad);
  overflow: hidden;
}
.banner-bg { position: absolute; inset: 0; z-index: 0; }
.banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.banner-bg::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0, 26, 44, .6);
}
.banner > .container { position: relative; z-index: 2; }

/* ---------- Gallery / Fotos ---------- */
.filter-row {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin: 0 auto 40px; max-width: var(--maxw);
}
.filter-btn {
  background: transparent; border: 1.5px solid var(--grey-line);
  padding: 10px 22px; border-radius: 100px;
  font-size: .9rem; font-weight: 500; cursor: pointer;
  transition: all .25s ease; color: inherit;
  font-family: inherit;
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }

.gallery {
  display: grid; gap: 4px;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--maxw); margin: 0 auto;
}
@media (max-width: 980px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery .photo {
  aspect-ratio: 4/5;
  overflow: hidden; cursor: pointer; position: relative;
  background: var(--blue);
}
.gallery .photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease, opacity .3s ease;
}
.gallery .photo:hover img { transform: scale(1.05); }
.gallery .photo.hide { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.94); display: none;
  align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 95%; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 30px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  border: 0; cursor: pointer; font-size: 26px;
}

/* ---------- Contact / Form ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  max-width: var(--maxw); margin: 0 auto;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-row label { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.form-row input, .form-row textarea, .form-row select {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.15);
  color: #fff; padding: 14px 16px; border-radius: 4px; font: inherit;
  transition: border-color .25s ease;
}
.section-light .form-row input,
.section-paper .form-row input,
.section-light .form-row textarea,
.section-paper .form-row textarea {
  background: #fff; border-color: var(--grey-line); color: var(--ink-soft);
}
.form-row input:focus, .form-row textarea:focus {
  outline: 0; border-color: var(--orange);
}

.contact-card { font-size: .98rem; line-height: 1.7; }
.contact-card h4 { margin-top: 1.4rem; color: var(--orange); font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; }
.contact-card h4:first-of-type { margin-top: 0; }

/* Wegbeschreibung zur Verwaltung (Kontaktseite): Luftbild mit nummerierter
   Wegfolge darunter. Steht in der rechten Spalte unter "Anfahrt". */
.wegweiser { margin: 1.6rem 0 0; }
.wegweiser img { width: 100%; height: auto; border-radius: 6px; display: block; }
.wegweiser figcaption { margin-top: 1rem; font-size: .95rem; line-height: 1.6; }
.wegweiser figcaption strong { display: block; margin-bottom: .5rem; font-weight: 600; }
.wegweiser ol { margin: 0 0 .9rem; padding-left: 1.3rem; }
.wegweiser ol li { margin-bottom: .35rem; opacity: .85; }
.wegweiser .hinweis {
  margin: 0; padding: .8rem 1rem;
  border-left: 3px solid var(--orange);
  background: rgba(255,121,0,.07);
  font-size: .9rem; opacity: .85;
}

/* ---------- Rechtstexte (Impressum, AGB, Datenschutz) ----------
   Zentral hier statt dreimal inline, damit die drei Seiten nicht
   auseinanderlaufen. Abschnittstitel bewusst kleiner als die globale h2:
   ein Rechtstext hat viele Abschnitte, in voller Groesse wird die Seite
   zur Treppe. */
.legal { max-width: 820px; margin: 0 auto; }

.legal > p:first-child { font-size: 1.05rem; opacity: .8; margin-bottom: 2.4rem; }

.legal h2 {
  font-size: clamp(1.3rem, 2.1vw, 1.75rem);
  font-weight: 600; letter-spacing: -.01em; line-height: 1.3;
  margin: 3rem 0 1.1rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--grey-line);
}
.legal h2:first-of-type { margin-top: 0; }

.legal h3 {
  font-size: .82rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange);
  margin: 2rem 0 .5rem;
}

.legal p, .legal li { font-size: 1rem; line-height: 1.75; opacity: .85; }
.legal p { margin-bottom: 1.05rem; }
.legal p:last-child { margin-bottom: 0; }
.legal p strong { color: var(--ink); opacity: 1; }
.legal a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.legal ul { margin: .6rem 0 1.3rem 1.3rem; }
.legal li { margin-bottom: .35rem; }
.legal code {
  font-size: .92em; padding: .1em .4em; border-radius: 3px;
  background: rgba(0,0,0,.06); font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
/* Datumszeile am Ende */
.legal .legal-stand {
  margin-top: 3rem; padding-top: 1.2rem;
  border-top: 1px solid var(--grey-line);
  font-size: .82rem; opacity: .5;
}

/* ---------- Cookie-Einwilligung ---------- */
/* Abdunklung: macht sichtbar, dass zuerst eine Entscheidung ansteht. */
.consent-overlay {
  position: fixed; inset: 0; z-index: 1999;
  background: rgba(0, 12, 20, .62);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .3s ease;
}
.consent-overlay.open { opacity: 1; }
body.consent-offen { overflow: hidden; }

.consent {
  position: fixed; left: 50%; bottom: 0; z-index: 2000;
  width: min(940px, calc(100% - 2 * var(--pad)));
  transform: translate(-50%, 110%);
  background: var(--blue-deep); color: #fff;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -10px 60px rgba(0,0,0,.45);
  max-height: 88vh; overflow-y: auto;
  transition: transform .34s cubic-bezier(.22,.61,.36,1);
}
.consent.open { transform: translate(-50%, 0); }
.consent-inner { padding: clamp(24px, 3.2vw, 38px) clamp(22px, 3vw, 40px); }

.consent-kopf h2 { font-size: clamp(1.25rem, 1.9vw, 1.6rem); margin: 0 0 .7rem; }
.consent-kopf p { margin: 0; font-size: .95rem; line-height: 1.65; opacity: .85; }
.consent-links { margin-top: .8rem !important; display: flex; gap: 20px; }
.consent-links a { color: var(--orange); text-decoration: underline; font-size: .9rem; }

/* Kategorien */
.consent-kategorien {
  margin: 22px 0 24px; display: flex; flex-wrap: wrap; gap: 12px;
}
.consent-kat {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 20px 13px 16px; border-radius: 8px;
  background: rgba(255,255,255,.05);
  cursor: pointer; flex: 1 1 auto;
}
.consent-kat.fest { cursor: default; opacity: .72; }
.consent-kat input { position: absolute; opacity: 0; width: 0; height: 0; }
.consent-schalter {
  flex: 0 0 auto; width: 44px; height: 25px; border-radius: 100px;
  background: rgba(255,255,255,.22); position: relative;
  transition: background .2s ease;
}
.consent-schalter::after {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 19px; height: 19px; border-radius: 50%; background: #fff;
  transition: transform .2s ease;
}
.consent-kat input:checked + .consent-schalter { background: var(--orange); }
.consent-kat input:checked + .consent-schalter::after { transform: translateX(19px); }
.consent-kat input:focus-visible + .consent-schalter { outline: 2px solid #fff; outline-offset: 2px; }
.consent-kat-text strong { font-size: .95rem; font-weight: 600; white-space: nowrap; }

/* Alle drei Schaltflaechen gleich gross – eine versteckte Ablehnung
   waere nach DSGVO angreifbar. */
.consent-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.consent-btn {
  font: inherit; font-size: .92rem; font-weight: 600;
  padding: 0 24px; height: 48px; flex: 1 1 auto; min-width: 150px;
  border-radius: 8px; cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.consent-btn.primary { background: var(--orange); color: #fff; border: 2px solid var(--orange); }
.consent-btn.primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); }
.consent-btn.ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45); }
.consent-btn.ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

@media (max-width: 640px) {
  .consent { width: 100%; border-radius: 0; }
  .consent-kategorien { flex-direction: column; }
  .consent-actions { flex-direction: column; }
  .consent-btn { width: 100%; flex: 0 0 auto; }
}

/* ---------- Footer ---------- */
footer.site {
  background: var(--blue-deep); color: #fff;
  padding: 80px var(--pad) 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px; max-width: var(--maxw); margin: 0 auto 60px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
footer.site h5 {
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.4rem; font-weight: 600;
}
footer.site ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer.site a { opacity: .75; font-size: .95rem; }
footer.site a:hover { opacity: 1; color: var(--orange); }
footer.site .brand img { height: 44px; margin-bottom: 20px; }
footer.site .brand p { opacity: .7; font-size: .92rem; max-width: 30ch; }
.footer-bottom {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: .82rem; opacity: .55;
}

/* ---------- Scroll animations ---------- */
.fade-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: .08s; }
.fade-up.d2 { transition-delay: .16s; }
.fade-up.d3 { transition-delay: .24s; }
.fade-up.d4 { transition-delay: .32s; }

/* ---------- Color highlight chips (Legende für Drawio-Bezug) ---------- */
.legend {
  display: flex; gap: 18px; flex-wrap: wrap;
  margin: 30px auto 0; max-width: var(--maxw);
  justify-content: center;
}
.legend .chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(255,255,255,.05);
  font-size: .82rem; letter-spacing: .08em;
}
.section-light .legend .chip, .section-paper .legend .chip { background: rgba(0,26,44,.04); }
.legend .swatch { width: 12px; height: 12px; border-radius: 50%; }
.legend .swatch.blue   { background: var(--blue); }
.legend .swatch.orange { background: var(--orange); }

/* ──────────── Modal (Zertifikate-Download) ──────────── */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0, 26, 44, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, background .25s ease, backdrop-filter .25s ease;
  padding: 20px;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
  background: rgba(0, 26, 44, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal {
  background: #fff;
  border-radius: 18px;
  max-width: 440px;
  width: 100%;
  padding: 36px 32px 28px;
  box-shadow: 0 30px 80px rgba(0, 26, 44, .25);
  transform: translateY(12px) scale(.98);
  transition: transform .3s cubic-bezier(.2, .8, .25, 1);
  text-align: center;
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255, 121, 0, .12);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.modal-icon svg { width: 28px; height: 28px; }
.modal h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.modal p {
  margin: 0 0 24px;
  font-size: .95rem;
  opacity: .75;
  line-height: 1.5;
}
.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.modal-btn {
  flex: 1 1 140px;
  height: 42px;
  border-radius: 100px;
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  font-family: inherit;
}
.modal-btn.primary {
  background: var(--orange);
  color: #fff;
}
.modal-btn.primary:hover { background: var(--orange-hover); transform: translateY(-1px); }
.modal-btn.ghost {
  background: transparent;
  color: var(--blue);
  border-color: rgba(0, 49, 83, .18);
}
.modal-btn.ghost:hover { border-color: var(--blue); background: rgba(0, 49, 83, .04); }

/* ──────────── Banner Parallax (background-attachment: fixed) ──────────── */
.banner-parallax .banner-bg {
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.banner-parallax .banner-bg img { display: none; }
@media (max-width: 980px) {
  .banner-parallax .banner-bg {
    background-attachment: scroll;
    background-position: center 30%;
  }
}
