/* ==========================================================
   float Regensburg — Entwurf 2 „Goldene Tiefe"
   Dunkel, edel, gold. Gleiches Klassen-API wie Entwurf 1.
   Fonts: lokal (assets/fonts/fonts.css) — kein Google-CDN.
   ========================================================== */

:root {
  --night:   #0e1519;    /* Grundfläche: tiefe Nacht */
  --pane:    #151f24;    /* Karten */
  --pane2:   #1a252b;    /* hellere Fläche */
  --gold:    #c9a962;    /* Gold */
  --gold-l:  #e6cf9a;    /* helles Gold */
  --gold-dim: rgba(201,169,98,.28);
  --ivory:   #f3eee3;    /* Überschriften */
  --body-c:  #b7c1c3;    /* Fließtext */
  --muted:   #7e8d90;    /* Nebentexte */
  --shadow:   0 30px 70px -35px rgba(0,0,0,.85);
  --shadow-s: 0 16px 40px -24px rgba(0,0,0,.7);
  --fd: 'Playfair Display', Georgia, serif;
  --fb: 'Outfit', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(.22, .8, .3, 1);
  /* Kompatibilitäts-Aliase für übernommene Seiten (Entwurf 1) */
  --water:   #c9a962;
  --water-d: #e6cf9a;
  --sand:    #8fa1a5;
  --deep:    #f3eee3;
  --slate:   #b7c1c3;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--fb);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--body-c);
  background: var(--night);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--night); }

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

h1, h2, h3, h4 { font-family: var(--fd); font-weight: 400; color: var(--ivory); line-height: 1.2; }

a { color: var(--gold-l); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  background: rgba(14,21,25,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .4s ease, background .4s ease;
}
.site-header.scrolled {
  background: rgba(14,21,25,.94);
  box-shadow: 0 1px 0 var(--gold-dim), 0 18px 40px -30px rgba(0,0,0,.8);
}
.header-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: .9rem clamp(1.2rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.logo svg { width: 34px; height: 34px; }
.logo .word {
  font-family: var(--fd);
  font-size: 1.26rem;
  color: var(--ivory);
  letter-spacing: .05em;
  white-space: nowrap;
}
.logo .word span { color: var(--gold); }

.nav { display: flex; align-items: center; gap: clamp(.75rem, 1.4vw, 1.4rem); }
.nav a.nl {
  position: relative;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--body-c);
  padding: .55rem 0;
  transition: color .3s ease;
}
.nav a.nl::after {
  content: '';
  position: absolute;
  left: 0; bottom: .2rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.nav a.nl:hover, .nav a.nl.active { color: var(--gold-l); }
.nav a.nl:hover::after, .nav a.nl.active::after { transform: scaleX(1); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .8rem 2rem;
  border-radius: 2px;
  font-family: var(--fb);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .35s var(--ease), box-shadow .35s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-water {
  background: linear-gradient(135deg, var(--gold-l) 0%, var(--gold) 55%, #a8863f 100%);
  color: #131311;
  box-shadow: 0 16px 34px -18px rgba(201,169,98,.55);
}
.btn-water:hover { background: linear-gradient(135deg, #f0dcae 0%, var(--gold-l) 60%, var(--gold) 100%); }
.btn-line { border-color: var(--gold-dim); color: var(--gold-l); background: transparent; }
.btn-line:hover { border-color: var(--gold); color: var(--gold-l); background: rgba(201,169,98,.07); }
.btn-white { background: var(--pane2); color: var(--ivory); box-shadow: var(--shadow-s); }
.btn-white:hover { color: var(--gold-l); }

.nav .btn { min-height: 42px; padding: .55rem 1.2rem; font-size: .72rem; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px; height: 48px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 12px;
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--gold-l);
  transition: transform .4s var(--ease), opacity .3s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1140px) {
  .burger { display: flex; }
  .nav {
    position: fixed;
    top: 66px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #10181d;
    padding: .8rem 1.4rem 1.6rem;
    box-shadow: 0 40px 60px -30px rgba(0,0,0,.9);
    border-bottom: 1px solid var(--gold-dim);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .45s var(--ease), opacity .35s ease, visibility 0s .45s;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform .45s var(--ease), opacity .35s ease;
  }
  .nav a.nl { padding: .9rem .2rem; border-bottom: 1px solid rgba(201,169,98,.12); }
  .nav .btn { margin-top: 1rem; }
}

/* ---------- Hero (Startseite) ---------- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 7rem 1.5rem 7rem;
  background:
    radial-gradient(90% 70% at 50% 115%, #1c2a31 0%, transparent 60%),
    radial-gradient(120% 100% at 50% -20%, #101b21 0%, var(--night) 55%);
}
.glint {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  pointer-events: none;
  animation: glide 20s ease-in-out infinite alternate;
}
.glint.g1 { width: 42vw; height: 26vw; background: rgba(201,169,98,.12); top: 12%; left: -6%; }
.glint.g2 { width: 38vw; height: 24vw; background: rgba(90,140,150,.10); bottom: 10%; right: -6%; animation-delay: -7s; animation-duration: 24s; }
.glint.g3 { width: 24vw; height: 18vw; background: rgba(230,207,154,.08); top: 44%; right: 22%; animation-delay: -13s; animation-duration: 28s; }
@keyframes glide {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(4vw, -3vh, 0) scale(1.08); }
}

.hero-inner { position: relative; max-width: 880px; }
.hero .eyebrow { animation: rise .9s var(--ease) both .15s; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: .01em;
  animation: rise 1s var(--ease) both .3s;
}
.hero h1 em { font-style: italic; color: var(--gold-l); }
.hero .lead {
  max-width: 600px;
  margin: 1.8rem auto 0;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--body-c);
  animation: rise 1s var(--ease) both .5s;
}
.hero-actions {
  margin-top: 2.7rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: rise 1s var(--ease) both .68s;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Goldene Wasserlinie am Hero-Ende */
.goldline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dim) 20%, var(--gold) 50%, var(--gold-dim) 80%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 9s linear infinite;
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ---------- Unterseiten-Hero ---------- */
.page-hero {
  position: relative;
  padding: 10rem 1.5rem 5rem;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(110% 90% at 50% -20%, #131e24 0%, var(--night) 60%);
}
.page-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.5rem); }
.page-hero h1 em { font-style: italic; color: var(--gold-l); }
.page-hero .lead { max-width: 660px; margin: 1.4rem auto 0; }
.page-hero .glint { opacity: .4; }
.page-hero::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: min(520px, 60vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- Layout ---------- */
main { position: relative; }
section { padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 5vw, 3rem); }
.wrap { max-width: 1160px; margin: 0 auto; }
.wrap-slim { max-width: 820px; margin: 0 auto; }
.alt { background: #121b20; }

.eyebrow {
  display: block;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h2 em { font-style: italic; color: var(--gold-l); }
.section-head { max-width: 700px; margin-bottom: clamp(2.4rem, 5vw, 3.8rem); }
.section-head p { margin-top: 1.2rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Karten & Raster ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2.4rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.1rem, 2vw, 1.8rem); }

.card {
  background: linear-gradient(160deg, var(--pane2) 0%, var(--pane) 70%);
  border: 1px solid rgba(201,169,98,.16);
  border-radius: 6px;
  padding: 2.4rem 2.1rem;
  box-shadow: var(--shadow-s);
  transition: transform .45s var(--ease), box-shadow .45s ease, border-color .45s ease;
  display: flex;
  flex-direction: column;
}
a.card { text-decoration: none; }
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(201,169,98,.4); }
.card h3 { font-size: 1.5rem; }
.card .k-eyebrow {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.card p { margin-top: .8rem; font-size: .95rem; color: var(--body-c); flex: 1; }
.card .more {
  margin-top: 1.5rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-l);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.card .more::after { content: '→'; transition: transform .35s var(--ease); }
.card:hover .more::after { transform: translateX(5px); }

/* Icon-Kachel */
.tile { text-align: left; }
.tile .ic {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: rgba(201,169,98,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}
.tile .ic svg { width: 26px; height: 26px; stroke: var(--gold); }
.tile h3 { font-size: 1.25rem; }
.tile p { font-size: .93rem; }

/* ---------- Preis-Karten ---------- */
.price-card { position: relative; }
.price-card .duration { font-size: .88rem; color: var(--muted); margin-top: .3rem; }
.price-card .price {
  font-family: var(--fd);
  font-size: 2.5rem;
  color: var(--gold-l);
  margin-top: 1.4rem;
  line-height: 1;
}
.price-card .price small { font-family: var(--fb); font-size: .8rem; font-weight: 300; color: var(--muted); margin-left: .35rem; }
.price-card .btn { margin-top: 1.6rem; width: 100%; }
.price-card.highlight { border-color: var(--gold); }
.price-card .flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  color: #131311;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .32rem 1rem;
  border-radius: 2px;
  white-space: nowrap;
}

/* ---------- Preislisten ---------- */
.pricelist {
  background: linear-gradient(160deg, var(--pane2) 0%, var(--pane) 70%);
  border: 1px solid rgba(201,169,98,.16);
  border-radius: 6px;
  padding: 2.3rem 2.1rem;
  box-shadow: var(--shadow-s);
}
.pricelist h3 { font-size: 1.5rem; margin-bottom: .3rem; }
.pricelist .sub { font-size: .92rem; color: var(--muted); margin-bottom: 1.2rem; }
.pl-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.2rem;
  padding: .95rem 0;
  border-bottom: 1px solid rgba(201,169,98,.12);
}
.pl-row:last-child { border-bottom: 0; }
.pl-row .n { color: var(--ivory); font-weight: 300; }
.pl-row .n small { display: block; font-size: .85rem; color: var(--muted); }
.pl-row .p { font-family: var(--fd); font-size: 1.4rem; color: var(--gold-l); white-space: nowrap; }

.note { font-size: .88rem; color: var(--muted); margin-top: 1.6rem; }

/* ---------- Band ---------- */
.band {
  position: relative;
  background: linear-gradient(135deg, #17232a 0%, #131d22 100%);
  border: 1px solid rgba(201,169,98,.2);
  border-radius: 8px;
  padding: clamp(2.6rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  overflow: hidden;
}
.band::before {
  content: '';
  position: absolute;
  right: -12%; top: -55%;
  width: 55%; aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(201,169,98,.22);
}
.band::after {
  content: '';
  position: absolute;
  right: -6%; bottom: -65%;
  width: 48%; aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(201,169,98,.12);
}
.band h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.band p { margin-top: 1rem; }
.band-side { position: relative; text-align: center; z-index: 1; }
.band-side .big {
  font-family: var(--fd);
  font-size: clamp(3rem, 6vw, 4.6rem);
  color: var(--gold-l);
  line-height: 1;
}
.band-side .lbl {
  margin-top: .5rem;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}
.band-actions { margin-top: 1.9rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Listen ---------- */
.check-list { list-style: none; }
.check-list li {
  position: relative;
  padding: .6rem 0 .6rem 2rem;
  border-bottom: 1px solid rgba(201,169,98,.1);
  font-size: .96rem;
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.05rem;
  width: 14px; height: 8px;
  border-left: 1.4px solid var(--gold);
  border-bottom: 1.4px solid var(--gold);
  transform: rotate(-45deg);
}
.check-list strong { color: var(--ivory); font-weight: 400; }

.x-list { list-style: none; }
.x-list li {
  position: relative;
  padding: .6rem 0 .6rem 2rem;
  border-bottom: 1px solid rgba(201,169,98,.1);
  font-size: .96rem;
}
.x-list li:last-child { border-bottom: 0; }
.x-list li::before {
  content: '';
  position: absolute;
  left: .3rem; top: 1.25rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--muted);
}

/* ---------- Tabellen ---------- */
.tbl-wrap { overflow-x: auto; }
table.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: .96rem;
  background: var(--pane);
  border: 1px solid rgba(201,169,98,.18);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-s);
}
.tbl th {
  text-align: left;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-l);
  background: rgba(201,169,98,.1);
  padding: .95rem 1.2rem;
  border-bottom: 1px solid var(--gold-dim);
}
.tbl td { padding: 1rem 1.2rem; border-bottom: 1px solid rgba(201,169,98,.08); color: var(--body-c); }
.tbl tr:last-child td { border-bottom: 0; }
.tbl td.p { font-family: var(--fd); font-size: 1.3rem; color: var(--gold-l); white-space: nowrap; }

/* ---------- FAQ ---------- */
details.faq {
  background: linear-gradient(160deg, var(--pane2) 0%, var(--pane) 70%);
  border: 1px solid rgba(201,169,98,.14);
  border-radius: 6px;
  margin-bottom: .85rem;
  box-shadow: var(--shadow-s);
  overflow: hidden;
  transition: border-color .3s ease;
}
details.faq[open] { border-color: rgba(201,169,98,.4); }
details.faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  min-height: 52px;
  padding: 1.1rem 1.5rem;
  font-family: var(--fd);
  font-size: 1.12rem;
  color: var(--ivory);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  flex: none;
  transition: transform .4s var(--ease);
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq .a { padding: 0 1.5rem 1.4rem; font-size: .95rem; }
details.faq .a ul { margin: .5rem 0 0 1.2rem; }
details.faq .a li { margin-bottom: .35rem; }
details.faq summary:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

/* ---------- Kontakt ---------- */
.contact-card {
  background: linear-gradient(160deg, var(--pane2) 0%, var(--pane) 70%);
  border: 1px solid rgba(201,169,98,.16);
  border-radius: 6px;
  padding: 2.3rem 2.1rem;
  box-shadow: var(--shadow-s);
}
.contact-card h3 { font-size: 1.45rem; margin-bottom: 1rem; }
.contact-card p { font-size: .96rem; margin-bottom: .9rem; }
.contact-card strong { color: var(--ivory); font-weight: 400; }
.tel-big {
  display: inline-block;
  font-family: var(--fd);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--gold-l);
  text-decoration: none;
  margin-bottom: .8rem;
}
.tel-big:hover { color: var(--ivory); }
ul.hours { list-style: none; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(201,169,98,.1);
  font-size: .95rem;
}
.hours li:last-child { border-bottom: 0; }
.hours .d { color: var(--ivory); }
.hours .t { text-align: right; color: var(--muted); }
.hours li.closed .t { color: var(--gold); }

/* ---------- Formulare ---------- */
.form { display: grid; gap: 1.1rem; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form label {
  display: block;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .45rem;
}
.form input, .form select, .form textarea {
  width: 100%;
  background: rgba(14,21,25,.6);
  border: 1px solid rgba(201,169,98,.25);
  border-radius: 3px;
  color: var(--ivory);
  font-family: var(--fb);
  font-size: .98rem;
  font-weight: 300;
  padding: .85rem 1rem;
  min-height: 48px;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.form textarea { min-height: 130px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,98,.15);
}
.form select { appearance: none; -webkit-appearance: none; }
.form .hint { font-size: .82rem; color: var(--muted); }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ---------- Erlebnis: Phasen-Reise ---------- */
.journey { position: relative; max-width: 760px; margin: 0 auto; }
.journey::before {
  content: '';
  position: absolute;
  left: 27px; top: 10px; bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
  opacity: .5;
}
.step {
  position: relative;
  padding: 0 0 clamp(2.4rem, 5vw, 3.6rem) 4.6rem;
}
.step:last-child { padding-bottom: 0; }
.step .num {
  position: absolute;
  left: 0; top: 0;
  width: 55px; height: 55px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--night);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 1.3rem;
  color: var(--gold-l);
}
.step h3 { font-size: 1.55rem; margin-bottom: .5rem; }
.step h3 em { font-style: italic; color: var(--gold-l); }
.step p { font-size: .98rem; }
.step .science {
  margin-top: .8rem;
  padding: .9rem 1.1rem;
  border-left: 1px solid var(--gold-dim);
  background: rgba(201,169,98,.05);
  font-size: .88rem;
  color: var(--muted);
}
.step .science strong { color: var(--gold-l); font-weight: 400; }

/* Zitat */
.quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--fd);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-l);
  line-height: 1.5;
}
.quote::before, .quote::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.6rem auto;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0a0f12;
  color: var(--muted);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.2rem, 5vw, 3rem) 2rem;
  margin-top: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid var(--gold-dim);
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
}
.site-footer .logo .word { color: var(--ivory); }
.site-footer .logo .word span { color: var(--gold); }
.site-footer p { font-size: .9rem; margin-top: 1rem; }
.site-footer h4 {
  color: var(--gold-l);
  font-size: 1rem;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: var(--muted); text-decoration: none; font-size: .9rem; transition: color .3s ease; }
.site-footer a:hover { color: var(--gold-l); }
.footer-base {
  max-width: 1160px;
  margin: 2.5rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(201,169,98,.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: #5b686c;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }

/* ---------- Fokus & reduzierte Bewegung ---------- */
a:focus-visible, .btn:focus-visible, .burger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .glint, .goldline { animation: none; }
  .hero .eyebrow, .hero h1, .hero .lead, .hero-actions { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .band { grid-template-columns: 1fr; }
  .band-side { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form .row2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .journey::before { left: 22px; }
  .step { padding-left: 3.8rem; }
  .step .num { width: 45px; height: 45px; font-size: 1.1rem; }
}


/* ---------- Nachtrag: Fotos, Logo, Karte, Bewertungen ---------- */
.logo-mark { width: 40px; height: 40px; object-fit: contain; display: block; }

.thumb {
  margin: 0 0 1.3rem;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.card:hover .thumb img { transform: scale(1.045); }

.photo { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-s); }
.photo img { width: 100%; display: block; }
.band-side .photo { max-width: 420px; margin: 0 auto; }

.rating { display: flex; align-items: center; gap: 1rem; margin-top: 1.2rem; }
.rating-num { font-family: var(--fd); font-size: 2.8rem; line-height: 1; color: var(--deep); }
.rating-txt { font-size: .85rem; color: var(--slate); }
.stars { color: var(--gold-l); font-size: 1.05rem; letter-spacing: .18em; }

blockquote.review {
  font-family: var(--fd);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--deep);
  line-height: 1.55;
  margin: 1.2rem 0;
  padding-left: 1.1rem;
  border-left: 2px solid var(--gold-l);
}
blockquote.review footer {
  font-family: var(--fb);
  font-style: normal;
  font-size: .78rem;
  color: var(--slate);
  margin-top: .5rem;
}

.map-load {
  height: 100%;
  min-height: 340px;
  border: 1px dashed var(--gold-dim);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  text-align: center;
  padding: 2rem 1.5rem;
}
.map-load p { font-size: .95rem; color: var(--slate); }
.map-load p strong { color: var(--deep); }
.map-load .map-hint { font-size: .8rem; }
.map-load .btn { margin-top: .6rem; }
.map-load.loaded { padding: 0; border: 0; display: block; overflow: hidden; }
.map-load iframe { width: 100%; height: 100%; min-height: 380px; border: 0; border-radius: 6px; display: block; }
