/* ==========================================================================
   PASCAL HORN — KEEP THE MOMENT
   Farbwelt und Typografie sind direkt aus der Bildmarke abgeleitet:
   Blattgold auf warmem Schwarz.
   ========================================================================== */

:root {
  /* --- Farben ------------------------------------------------------------ */
  --ink:        #0B0A09;   /* Grundton, minimal warmes Schwarz              */
  --ink-raise:  #14120E;   /* angehobene Fläche (Karten, Panels)            */
  --ink-deep:   #060505;   /* Footer, Overlay                               */
  --line:       #2C261B;   /* Haarlinie                                     */
  --gold:       #E9C46A;   /* Leitgold der Wortmarke                        */
  --gold-lift:  #F8E7B0;   /* Glanzlicht im Pinselstrich                    */
  --gold-deep:  #9C7420;   /* tiefes Gold der Schattenkante                 */
  --bone:       #EFE9DE;   /* Fließtext                                     */
  --bone-dim:   #A49B8C;   /* Sekundärtext                                  */

  /* Blattgold-Verlauf — das Signature-Material der Marke */
  --foil: linear-gradient(100deg,
            #C89A31  0%,  #EFCE7C 18%, #FCEFC0 33%,
            #DEB455 48%,  #C08F2A 62%, #EFCE7C 82%, #FBEAB2 100%);

  /* --- Typografie -------------------------------------------------------- */
  --display: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --sans:    'Jost', 'Avenir Next', 'Segoe UI', system-ui, sans-serif;

  /* --- Maße -------------------------------------------------------------- */
  --shell: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --lift: cubic-bezier(.2, .7, .3, 1);
}

/* --------------------------------------------------------------------------
   Basis
   -------------------------------------------------------------------------- */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, .96rem + .25vw, 1.0625rem);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-offen { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.005em;
  margin: 0;
}

h1 { font-size: clamp(3rem, 1.6rem + 6.4vw, 7.5rem); }
h2 { font-size: clamp(2.25rem, 1.4rem + 3.6vw, 4.5rem); }
h3 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

.nur-fuer-screenreader {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.zum-inhalt {
  position: fixed; top: 0; left: 50%; z-index: 400;
  transform: translate(-50%, -120%);
  background: var(--gold); color: var(--ink);
  padding: .75rem 1.5rem; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase;
}
.zum-inhalt:focus { transform: translate(-50%, 0); }

/* --------------------------------------------------------------------------
   Wiederkehrende Bausteine
   -------------------------------------------------------------------------- */

section[id], li[id] { scroll-margin-top: 7.5rem; }

.shell {
  width: min(var(--shell), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

/* Blattgold-Schrift */
.foil {
  background: var(--foil);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 16px rgba(6, 5, 5, .8)) drop-shadow(0 1px 2px rgba(6, 5, 5, .5));
  animation: foil-wandern 14s ease-in-out infinite alternate;
}
@keyframes foil-wandern {
  from { background-position:   0% 50%; }
  to   { background-position: 100% 50%; }
}

/* Das Linien-Motiv der Bildmarke: ——— KEEP THE MOMENT ——— */
.linie {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0 0 1.75rem;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
}
.linie::before,
.linie::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
  flex: 1 1 auto;
}
.linie--links::before { flex: 0 0 2.75rem; }
.linie--links::after  { display: none; }
.linie--mitte { justify-content: center; text-align: center; }

.blei {
  font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem);
  line-height: 1.6;
  color: var(--bone-dim);
  max-width: 54ch;
}

/* --------------------------------------------------------------------------
   Schweben — Hover-Verhalten für alles Anklickbare
   -------------------------------------------------------------------------- */

.schwebt {
  transition:
    transform .5s var(--lift),
    box-shadow .5s var(--lift),
    border-color .5s var(--lift),
    color .35s ease;
  will-change: transform;
}
.schwebt:hover,
.schwebt:focus-visible {
  transform: translateY(-8px);
  box-shadow:
    0 22px 45px -18px rgba(0, 0, 0, .95),
    0 0 0 1px rgba(233, 196, 106, .28),
    0 12px 60px -28px rgba(233, 196, 106, .55);
}
.schwebt:active { transform: translateY(-3px); }

/* dauerhaftes, sehr langsames Schweben der Karten */
@keyframes schweben {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
.schwebe-huelle { animation: schweben 9s ease-in-out infinite; }
.schwebe-huelle:nth-child(2) { animation-delay: -1.4s; }
.schwebe-huelle:nth-child(3) { animation-delay: -2.9s; }
.schwebe-huelle:nth-child(4) { animation-delay: -4.3s; }
.schwebe-huelle:nth-child(5) { animation-delay: -5.8s; }
.schwebe-huelle:nth-child(6) { animation-delay: -7.2s; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.knopf {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  padding: 1.05rem 2.1rem;
  border: 1px solid var(--gold-deep);
  background: transparent;
  color: var(--gold);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  cursor: pointer;
}
.knopf::after {
  content: "→";
  font-size: 1rem;
  letter-spacing: 0;
  transition: transform .5s var(--lift);
}
.knopf:hover::after { transform: translateX(6px); }
.knopf:hover { border-color: var(--gold); }

.knopf--voll {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 500;
}
.knopf--voll:hover { background: var(--gold-lift); border-color: var(--gold-lift); }
.knopf[disabled] { opacity: .35; cursor: not-allowed; }
.knopf[disabled]:hover { transform: none; box-shadow: none; }

/* --------------------------------------------------------------------------
   Kopfzeile + Seitennavigation
   -------------------------------------------------------------------------- */

.kopf {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem var(--gutter);
  transition: background .5s ease, padding .5s ease, border-color .5s ease;
  border-bottom: 1px solid transparent;
}
.kopf--gescrollt {
  background: rgba(11, 10, 9, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-block: .95rem;
}

.marke { display: block; }
.marke img {
  width: clamp(140px, 16vw, 200px);
  filter: drop-shadow(0 2px 14px rgba(6, 5, 5, .85));
}

.nav-schalter {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .7rem 1.1rem;
  background: rgba(11, 10, 9, .45);
  border: 1px solid var(--line);
  color: var(--bone);
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.nav-schalter:hover { color: var(--gold); border-color: var(--gold-deep); }

.balken { display: grid; gap: 5px; width: 22px; }
.balken span {
  height: 1px;
  background: currentColor;
  transition: transform .45s var(--lift), opacity .3s ease;
}
.balken span:nth-child(2) { width: 65%; margin-left: auto; }
.nav-schalter[aria-expanded="true"] .balken span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-schalter[aria-expanded="true"] .balken span:nth-child(2) { opacity: 0; }
.nav-schalter[aria-expanded="true"] .balken span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.schleier {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(6, 5, 5, .72);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, visibility .55s;
}
.schleier[data-offen="true"] { opacity: 1; visibility: visible; }

/* das ausfahrende Panel */
.seitennav {
  position: fixed;
  top: 0; right: 0;
  z-index: 300;
  width: min(430px, 100%);
  height: 100dvh;
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  background: var(--ink-raise);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .62s var(--lift);
  overflow-y: auto;
}
.seitennav[data-offen="true"] { transform: translateX(0); }
.seitennav::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-deep) 45%, transparent);
  opacity: .8;
}

.seitennav-kopf {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(2rem, 6vh, 3.5rem);
}
.seitennav-kopf img { width: 168px; }

.schliessen {
  background: none;
  border: 0;
  color: var(--bone-dim);
  font-size: 1.55rem;
  line-height: 1;
  padding: .35rem .5rem;
  cursor: pointer;
  transition: color .3s ease, transform .45s var(--lift);
}
.schliessen:hover { color: var(--gold); transform: rotate(90deg); }

.nav-liste { list-style: none; margin: 0; padding: 0; display: grid; }
.nav-liste li + li { border-top: 1px solid var(--line); }

.nav-link {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding: 1.05rem .35rem;
  font-family: var(--display);
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  line-height: 1.1;
  color: var(--bone);
}
.nav-link .ziffer {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .28em;
  color: var(--gold-deep);
  transform: translateY(-.35em);
}
.nav-link:hover, .nav-link:focus-visible { color: var(--gold); }
.nav-link[aria-current="page"] { color: var(--gold); }
.nav-link[aria-current="page"] .ziffer { color: var(--gold); }

.seitennav-fuss {
  margin-top: auto;
  padding-top: 2.25rem;
  font-size: .82rem;
  color: var(--bone-dim);
  letter-spacing: .04em;
}
.seitennav-fuss a { color: var(--gold); }
.seitennav-fuss a:hover { color: var(--gold-lift); }

/* --------------------------------------------------------------------------
   Hero mit Diaschau
   -------------------------------------------------------------------------- */

.buehne {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.diaschau { position: absolute; inset: 0; z-index: -2; background: var(--ink-deep); }

.dia {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.dia[data-aktiv="true"] { opacity: 1; }
.dia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}
.dia[data-aktiv="true"] img { animation: langsam-heran 9s ease-out forwards; }
@keyframes langsam-heran {
  from { transform: scale(1.02); }
  to   { transform: scale(1.13); }
}

.buehne::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,5,5,.78) 0%, rgba(6,5,5,.18) 32%, rgba(6,5,5,.62) 72%, var(--ink) 100%),
    radial-gradient(105% 72% at 8% 92%, rgba(6,5,5,.88), transparent 66%);
}

.buehne-inhalt {
  padding: 0 var(--gutter) clamp(4.5rem, 11vh, 8rem);
  width: min(var(--shell), 100%);
  margin-inline: auto;
}
.buehne-inhalt h1 { margin-bottom: 1.5rem; }
.buehne-inhalt .blei { color: rgba(239, 233, 222, .88); }
.buehne-knoepfe { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
@media (max-width: 34rem) {
  .buehne-knoepfe .knopf { flex: 1 1 100%; justify-content: center; }
}

/* Anzeige der Bilder, rechts als feine Goldstriche */
.dia-anzeige {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(4.5rem, 11vh, 8rem);
  z-index: 2;
  display: grid;
  gap: .8rem;
}
.dia-punkt {
  width: 2px;
  height: 34px;
  padding: 0;
  border: 0;
  background: rgba(239, 233, 222, .26);
  cursor: pointer;
  transition: background .5s ease, transform .5s var(--lift), height .5s var(--lift);
}
.dia-punkt:hover { background: var(--gold); transform: scaleX(2.4); }
.dia-punkt[aria-current="true"] { background: var(--gold); height: 48px; }

@media (max-width: 48rem) {
  .dia-anzeige { display: none; }
}

.blaettern {
  position: absolute;
  left: var(--gutter);
  bottom: 1.9rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.blaettern::after {
  content: "";
  width: 58px; height: 1px;
  background: linear-gradient(90deg, var(--gold-deep), transparent);
  animation: schieben 2.6s ease-in-out infinite;
}
@keyframes schieben {
  0%, 100% { transform: translateX(0);   opacity: .45; }
  50%      { transform: translateX(12px); opacity: 1; }
}

/* --------------------------------------------------------------------------
   Abschnitte
   -------------------------------------------------------------------------- */

.abschnitt { padding-block: clamp(5rem, 13vh, 9.5rem); }
.abschnitt--eng { padding-block: clamp(3.5rem, 8vh, 6rem); }
.abschnitt--gehoben { background: var(--ink-raise); border-block: 1px solid var(--line); }
.seitenkopf + .abschnitt { padding-top: clamp(3rem, 7vh, 5rem); }

.zwei-spalten {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 62rem) {
  .zwei-spalten { grid-template-columns: 1.05fr .95fr; }
}

/* Steckbrief */
.steckbrief { list-style: none; margin: 2.75rem 0 0; padding: 0; }
.steckbrief > div {
  display: grid;
  grid-template-columns: minmax(9rem, 12rem) 1fr;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  font-size: clamp(1.05rem, .98rem + .3vw, 1.2rem);
  line-height: 1.5;
}
.steckbrief > div:last-child { border-bottom: 1px solid var(--line); }
.steckbrief dt, .steckbrief .schlagwort {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-top: .25em;
}
.steckbrief dd { margin: 0; }
.steckbrief .wert { color: var(--bone); }

/* Auf schmalen Bildschirmen Bezeichnung über den Wert stellen */
@media (max-width: 34rem) {
  .steckbrief > div {
    grid-template-columns: 1fr;
    gap: .5rem;
    padding: 1.15rem 0;
  }
  .steckbrief dt, .steckbrief .schlagwort { padding-top: 0; }
}

.portraet-platte {
  position: relative;
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background:
    linear-gradient(160deg, rgba(233,196,106,.06), transparent 55%),
    var(--ink-deep);
}
.portraet-platte img { width: 100%; }
.zitat {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.3rem);
  line-height: 1.35;
  color: var(--bone);
  margin: 1.75rem 0 0;
}
.zitat-quelle {
  margin-top: 1.1rem;
  font-size: .66rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* --------------------------------------------------------------------------
   Karten (Leistungen / Pakete)
   -------------------------------------------------------------------------- */

.karten {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}

.karte {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--ink-raise);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -26px rgba(0, 0, 0, .9);
  overflow: hidden;
}

.karte-bild {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-deep);
}
.karte-bild img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.04) brightness(.78);
  transition: transform 1.1s var(--lift), filter .7s ease;
}
.karte:hover .karte-bild img { transform: scale(1.07); filter: saturate(.95) contrast(1.06) brightness(.92); }
.karte-bild::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,5,5,.15), rgba(20,18,14,.92));
}

.karte-text { padding: clamp(1.4rem, 3vw, 2rem); display: flex; flex-direction: column; flex: 1 1 auto; }
.karte-dauer {
  font-size: .64rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .75rem;
}
.karte h3 { margin-bottom: .7rem; }
.karte p { font-size: .95rem; color: var(--bone-dim); }

.karte-liste { list-style: none; margin: .35rem 0 1.5rem; padding: 0; font-size: .9rem; color: var(--bone-dim); }.karte-liste li { position: relative; padding-left: 1.4rem; margin-bottom: .4rem; }
.karte-liste li::before {
  content: "";
  position: absolute; left: 0; top: .72em;
  width: 8px; height: 1px; background: var(--gold-deep);
}

.karte-preis {
  margin-top: auto;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

/* Kurzer Hinweis, welches Paket sonst passen könnte */
.karte-abgrenzung {
  font-size: .82rem !important;
  line-height: 1.55;
  color: var(--bone-dim);
  margin: -.6rem 0 1.5rem;
  padding-left: 1.4rem;
  border-left: 1px solid var(--line);
}
.karte-abgrenzung a { color: var(--gold-deep); }
.preis-marke { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--bone-dim); }
.preis-wert {
  font-family: var(--display);
  font-size: 1.85rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: .02em;
}
.preis-wert[data-leer]:empty::after { content: attr(data-leer); color: #6E665A; }

/* --------------------------------------------------------------------------
   Zusatzleistungen
   -------------------------------------------------------------------------- */

.zusatz { list-style: none; margin: 2.5rem 0 0; padding: 0; display: grid; gap: 0; }
.zusatz li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.15rem .35rem;
  border-top: 1px solid var(--line);
}
.zusatz li:last-child { border-bottom: 1px solid var(--line); }
.zusatz .bezeichnung { color: var(--bone); }
.zusatz .beschreibung { display: block; font-size: .85rem; color: var(--bone-dim); margin-top: .2rem; }
.zusatz .preis-wert { font-size: 1.25rem; white-space: nowrap; }

/* Hinweise unter der Preisliste */
.preis-hinweis {
  margin: 1.6rem 0 0;
  font-size: .85rem;
  line-height: 1.65;
  color: var(--bone-dim);
  max-width: 46ch;
}
.preis-hinweis + .preis-hinweis { margin-top: 1rem; }

/* --------------------------------------------------------------------------
   Kalender
   -------------------------------------------------------------------------- */

.buchung {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 60rem) {
  .buchung { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

.platte {
  background: var(--ink-raise);
  border: 1px solid var(--line);
  padding: clamp(1.35rem, 3.2vw, 2.25rem);
}

.kalender-kopf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.kalender-monat {
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1.1;
  color: var(--bone);
}
.kalender-monat span { display: block; font-family: var(--sans); font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-deep); }

.pfeil {
  width: 2.7rem; height: 2.7rem;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--bone);
  font-size: 1rem;
  cursor: pointer;
}
.pfeil:hover:not([disabled]) { color: var(--gold); border-color: var(--gold-deep); }
.pfeil[disabled] { opacity: .25; cursor: not-allowed; }
.kalender-steuerung { display: flex; gap: .6rem; }

.wochentage, .tage { display: grid; grid-template-columns: repeat(7, 1fr); gap: .4rem; }
.wochentage {
  margin-bottom: .6rem;
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  text-align: center;
}

.tag {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid transparent;
  color: var(--bone);
  font-family: var(--sans);
  font-size: .95rem;
  cursor: pointer;
  position: relative;
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .45s var(--lift);
}
.tag:hover:not(:disabled) { border-color: var(--gold-deep); color: var(--gold); transform: translateY(-4px); }
.tag:disabled { color: #48423a; cursor: not-allowed; }
.tag--leer { visibility: hidden; }
.tag--heute::after {
  content: "";
  position: absolute; bottom: 18%;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold-deep);
}
.tag--gewaehlt {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 500;
}
.tag--gewaehlt:hover { background: var(--gold-lift); border-color: var(--gold-lift); color: var(--ink); }
.tag--gewaehlt.tag--heute::after { background: var(--ink); }

.hinweis-klein {
  margin-top: 1.4rem;
  font-size: .78rem;
  color: var(--bone-dim);
  line-height: 1.6;
}

/* Zeitfenster */
.feldgruppe { margin-bottom: 1.9rem; }
.feldgruppe > legend,
.feld-titel {
  padding: 0;
  margin-bottom: .9rem;
  font-size: .64rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.zeitfenster { display: grid; gap: .65rem; grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr)); }
.zeit {
  position: relative;
  display: block;
  padding: .95rem 1rem;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color .35s ease, background .35s ease, transform .45s var(--lift);
}
.zeit:hover { border-color: var(--gold-deep); transform: translateY(-5px); }
.zeit input { position: absolute; opacity: 0; pointer-events: none; }
.zeit .zeit-name { display: block; font-size: .95rem; color: var(--bone); }
.zeit .zeit-spanne { display: block; font-size: .75rem; color: var(--bone-dim); margin-top: .15rem; }
.zeit:has(input:checked) { border-color: var(--gold); background: rgba(233, 196, 106, .09); }
.zeit:has(input:checked) .zeit-name { color: var(--gold); }
.zeit:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Formular */
.feld { display: grid; gap: .45rem; margin-bottom: 1.15rem; }
.feld label { font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--bone-dim); }
.feld input, .feld select, .feld textarea {
  width: 100%;
  padding: .9rem 1rem;
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  transition: border-color .35s ease, background .35s ease;
}
.feld textarea { min-height: 8rem; resize: vertical; line-height: 1.6; }
.feld input:focus, .feld select:focus, .feld textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #100E0B;
}
.feld input::placeholder, .feld textarea::placeholder { color: #5C554A; }
.feld-paar { display: grid; gap: 0 1.15rem; grid-template-columns: 1fr; }
@media (min-width: 34rem) { .feld-paar { grid-template-columns: 1fr 1fr; } }

.zusammenfassung {
  margin-bottom: 1.6rem;
  padding: 1.1rem 1.25rem;
  border: 1px dashed var(--line);
  font-size: .92rem;
  color: var(--bone-dim);
}
.zusammenfassung strong { color: var(--gold); font-weight: 400; }

.formular-fuss { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; margin-top: 1.5rem; }
.meldung { margin-top: 1.1rem; font-size: .88rem; line-height: 1.6; }
.meldung--gut { color: var(--gold); }
.meldung--fehler { color: #E2977B; }
.meldung--neutral { color: var(--bone-dim); }
.meldung:empty { display: none; }

/* Spam-Falle: liegt außerhalb des sichtbaren Bereichs, bleibt aber für
   Roboter ein ganz normales Formularfeld. */
.honigtopf {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.einwilligung {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--bone-dim);
  line-height: 1.55;
  cursor: pointer;
}
.einwilligung input { margin-top: .3rem; accent-color: var(--gold); width: 1rem; height: 1rem; flex: none; }
.einwilligung a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* Kontaktdaten */
.kontakt-liste { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: .75rem; }
.kontakt-zeile {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--ink-raise);
}
.kontakt-zeile .schlagwort { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-deep); }
.kontakt-zeile .wert { color: var(--bone); }
.kontakt-zeile .wert[data-offen] { color: #6E665A; font-style: italic; }

/* --------------------------------------------------------------------------
   Galerie-Streifen
   -------------------------------------------------------------------------- */

.streifen {
  display: grid;
  gap: .55rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 48rem) { .streifen { grid-template-columns: repeat(4, 1fr); } }
.streifen figure { margin: 0; overflow: hidden; aspect-ratio: 4 / 5; background: var(--ink-deep); }
.streifen img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.8) brightness(.85);
  transition: transform 1.2s var(--lift), filter .7s ease;
}
.streifen figure:hover img { transform: scale(1.08); filter: saturate(1) brightness(1); }

/* --------------------------------------------------------------------------
   Aufruf-Band
   -------------------------------------------------------------------------- */

.band {
  position: relative;
  padding-block: clamp(4.5rem, 12vh, 8rem);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.band > img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.band::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(11,10,9,.72) 45%, var(--ink) 100%);
}
.band h2 { margin-bottom: 1.5rem; }

/* --------------------------------------------------------------------------
   Kopfbereich der Unterseiten
   -------------------------------------------------------------------------- */

.seitenkopf {
  position: relative;
  padding: clamp(11rem, 26vh, 16rem) 0 clamp(3rem, 8vh, 5.5rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.seitenkopf > img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.6) brightness(.5);
}
.seitenkopf::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6,5,5,.9) 0%, rgba(11,10,9,.72) 40%, var(--ink) 100%);
}
.seitenkopf h1 { font-size: clamp(2.75rem, 1.6rem + 5vw, 6rem); margin-bottom: 1.25rem; }

/* --------------------------------------------------------------------------
   Fußzeile
   -------------------------------------------------------------------------- */

.fuss {
  background: var(--ink-deep);
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 8vh, 5rem) 2rem;
}
.fuss-raster {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 48rem) { .fuss-raster { grid-template-columns: 1.4fr 1fr 1fr; } }
.fuss img { width: 190px; margin-bottom: 1.25rem; }
.fuss h4 {
  margin: 0 0 1.1rem;
  font-family: var(--sans);
  font-size: .64rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.fuss ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .92rem; }
.fuss a { color: var(--bone-dim); display: inline-block; }
.fuss a:hover { color: var(--gold); }
.fuss p { font-size: .92rem; color: var(--bone-dim); }
.fuss-schluss {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  font-size: .8rem;
  color: #6E665A;
}

/* --------------------------------------------------------------------------
   Rechtstexte
   -------------------------------------------------------------------------- */

.rechtstext { max-width: 68ch; }
.rechtstext h2 { font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.25rem); margin: 3rem 0 1rem; }
.rechtstext h3 { font-size: 1.2rem; margin: 2rem 0 .6rem; }
.rechtstext p, .rechtstext li { color: var(--bone-dim); font-size: .97rem; }
.rechtstext ul { padding-left: 1.2rem; }
.platzhalter {
  display: inline-block;
  padding: .1em .55em;
  background: rgba(233, 196, 106, .12);
  border: 1px dashed var(--gold-deep);
  color: var(--gold);
  font-size: .88em;
}
.kasten {
  margin: 2rem 0;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--gold-deep);
  background: rgba(233, 196, 106, .06);
}
.kasten p { color: var(--bone); }
.kasten p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Auftauchen beim Scrollen
   -------------------------------------------------------------------------- */

.auftauchen {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--lift), transform 1s var(--lift);
}
.auftauchen[data-sichtbar="true"] { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Rücksicht auf Bewegungsempfindlichkeit
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .auftauchen { opacity: 1; transform: none; }
  .dia[data-aktiv="true"] img { animation: none; transform: scale(1.04); }
  .schwebt:hover { transform: none; }
}
