/* ==========================================================================
   Die Gnauckmühle – Onepager
   Tokens zuerst, dann Bausteine. Nur transform/opacity werden animiert.
   ========================================================================== */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-wght-normal.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-wght-italic.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url('../fonts/sora-latin-wght-normal.woff2') format('woff2-variations');
}

:root {
  /* 60 % neutral */
  --creme: #f5efe4;
  --creme-2: #ece2d0;
  --weiss: #fffdf9;
  --braun: #2a211b;
  --braun-2: #5a4a3e;
  --braun-3: #8c7a6b;
  /* 30 % Marke */
  --marke: #6e3b2a;
  --marke-dunkel: #4d2819;
  --moos: #4a5d3f;
  --moos-dunkel: #2f3f2a;
  --moos-hell: #dfe6d6;
  /* 10 % Akzent – nur CTA und Störer */
  --honig: #d89a3c;
  --honig-dunkel: #b77a22;
  --honig-hell: #f6e3c2;
  /* Hinweis */
  --rot: #b3261e;
  --rot-hell: #fbe9e7;

  --display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --text: 'Sora', 'Segoe UI', Helvetica, Arial, sans-serif;

  --wrap: 1280px;
  --gutter: 24px;
  --radius: 14px;
  --radius-s: 8px;
  --schatten: 0 10px 30px rgba(42, 33, 27, .12);
  --schatten-hart: 0 2px 8px rgba(42, 33, 27, .18);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 72px;
}
@media (min-width: 768px) {
  :root { --gutter: 32px; --header-h: 84px; }
}

/* --- Basis ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--creme);
  color: var(--braun);
  font-family: var(--text);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: clip;
}
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--marke); text-underline-offset: .15em; }
a:hover { color: var(--marke-dunkel); }
:focus-visible { outline: 3px solid var(--honig); outline-offset: 3px; border-radius: 4px; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.08; margin: 0 0 .5em; letter-spacing: 0; }
h1 { font-size: clamp(3.2rem, 9vw, 7rem); font-weight: 500; line-height: .95; }
h2 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.55rem, 2.4vw, 1.95rem); }
p { margin: 0 0 1.1em; }
strong { font-weight: 600; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.lese { max-width: 68ch; }
.mitte { margin-inline: auto; text-align: center; }

.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); position: relative; content-visibility: auto; contain-intrinsic-size: auto 900px; }
.section--weiss { background: var(--weiss); }
.section--creme2 { background: var(--creme-2); }
.section--dunkel { background: var(--moos-dunkel); color: var(--creme); }
.section--dunkel a { color: var(--honig-hell); }
.section--braun { background: var(--marke-dunkel); color: var(--creme); }
.section--braun a { color: var(--honig-hell); }

.ober {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--text); font-weight: 600; font-size: .85rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--moos); margin-bottom: 1rem;
}
.ober::before { content: ''; width: 28px; height: 2px; background: var(--honig); }
.section--dunkel .ober, .section--braun .ober { color: var(--honig-hell); }
.lead { font-size: clamp(1.25rem, 1.6vw, 1.45rem); line-height: 1.5; color: var(--braun-2); font-weight: 400; }
.section--dunkel .lead, .section--braun .lead { color: var(--creme-2); }

.ico { width: 1.25em; height: 1.25em; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; flex: none; }

/* --- Knöpfe ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  font-weight: 600; font-size: 1.05rem; text-decoration: none; line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--akzent { background: var(--honig); color: var(--braun); box-shadow: 0 6px 20px rgba(216, 154, 60, .35); }
.btn--akzent:hover { background: var(--honig-dunkel); color: var(--braun); }
.btn--hell { background: transparent; color: var(--weiss); border-color: rgba(255, 253, 249, .6); }
.btn--hell:hover { background: rgba(255, 253, 249, .12); color: var(--weiss); }
.btn--rahmen { background: transparent; color: var(--marke); border-color: var(--marke); }
.btn--rahmen:hover { background: var(--marke); color: var(--weiss); }
.btn--klein { padding: .65rem 1.1rem; font-size: .95rem; }

/* --- Reveal ------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal[data-delay="4"] { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- Header ------------------------------------------------------------ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--header-h);
  color: var(--weiss);
  transition: background-color .35s, color .35s, box-shadow .35s;
}
.header .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.header.ist-fest { background: rgba(245, 239, 228, .92); color: var(--braun); box-shadow: 0 1px 0 rgba(42, 33, 27, .08); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.logo { white-space: nowrap; display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: inherit; font-family: var(--display); font-size: 1.55rem; font-weight: 600; letter-spacing: .01em; }
.logo svg { width: 38px; height: 38px; transition: transform .6s var(--ease); }
.logo:hover svg { transform: rotate(45deg); }
.nav { display: none; align-items: center; gap: 1.8rem; }
.nav a { color: inherit; text-decoration: none; font-weight: 600; font-size: 1rem; opacity: .9; }
.nav a:hover { opacity: 1; text-decoration: underline; }
.nav .btn { margin-left: .5rem; }
.header.ist-fest .nav .btn--hell { color: var(--marke); border-color: var(--marke); }
.burger { display: inline-flex; background: none; border: 0; padding: .5rem; color: inherit; }
.burger .ico { width: 30px; height: 30px; }
@media (min-width: 1150px) {
  .nav { display: flex; }
  .burger { display: none; }
}
@media (min-width: 1150px) and (max-width: 1300px) {
  .nav { gap: 1.2rem; }
  .nav a { font-size: .95rem; }
}
.menue {
  position: fixed; inset: 0; z-index: 60; background: var(--creme); color: var(--braun);
  display: flex; flex-direction: column; padding: var(--gutter);
  transform: translateX(100%); transition: transform .4s var(--ease); visibility: hidden;
}
.menue.offen { transform: none; visibility: visible; }
.menue__kopf { display: flex; justify-content: space-between; align-items: center; height: calc(var(--header-h) - 2 * var(--gutter) + 2 * var(--gutter)); }
.menue nav { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }
.menue nav a { font-family: var(--display); font-size: 2.3rem; font-weight: 600; color: var(--braun); text-decoration: none; }
.menue nav .btn { font-family: var(--text); font-size: 1.1rem; align-self: flex-start; margin-top: 1rem; }

/* --- Hero -------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--weiss); overflow: hidden; background: var(--braun); }
.hero__medien { position: absolute; inset: 0; }
.hero__medien img, .hero__medien video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__medien img { transform: scale(1.06); animation: kenburns 24s var(--ease) both; }
.hero__medien video { opacity: 0; transition: opacity 1.2s; }
.hero__medien video.laeuft { opacity: 1; }
@keyframes kenburns { from { transform: scale(1.14) translateY(1.5%); } to { transform: scale(1.04) translateY(0); } }
@media (prefers-reduced-motion: reduce) { .hero__medien img { animation: none; transform: none; } }
.hero__ton {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 33, 27, .45) 0%, rgba(42, 33, 27, .05) 30%, rgba(42, 33, 27, .15) 55%, rgba(42, 33, 27, .82) 100%);
}
.hero .wrap { position: relative; padding-bottom: clamp(3rem, 8vh, 6rem); padding-top: calc(var(--header-h) + 2rem); }
.hero__ober { font-weight: 600; letter-spacing: .18em; text-transform: uppercase; font-size: .85rem; color: var(--honig-hell); margin-bottom: 1rem; text-shadow: 0 1px 10px rgba(0, 0, 0, .5); }
.hero h1 { margin-bottom: .35em; text-shadow: 0 4px 30px rgba(0, 0, 0, .45), 0 1px 3px rgba(0, 0, 0, .5); max-width: 12ch; }
.hero h1 em { font-style: italic; font-weight: 400; }
.hero__claim { font-family: var(--display); font-style: italic; font-weight: 500; font-size: clamp(1.6rem, 2.9vw, 2.4rem); margin-bottom: 1.8rem; text-shadow: 0 2px 16px rgba(0, 0, 0, .55); }
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin: 0 0 2rem; padding: 0; list-style: none; }
.chips li { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .95rem; border-radius: 999px; background: rgba(255, 253, 249, .14); border: 1px solid rgba(255, 253, 249, .35); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); font-weight: 600; font-size: .95rem; }
.hero__aktionen { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__hinweis { position: absolute; right: var(--gutter); bottom: 1.4rem; display: none; align-items: center; gap: .5rem; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }
.hero__hinweis .ico { animation: nicken 1.8s ease-in-out infinite; }
@keyframes nicken { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (min-width: 900px) { .hero__hinweis { display: flex; } }

/* --- Auf einen Blick --------------------------------------------------- */
.blick { background: var(--weiss); border-block: 1px solid rgba(42, 33, 27, .08); }
.blick dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; margin: 0; padding-block: 2rem; }
@media (min-width: 720px) { .blick dl { grid-template-columns: repeat(4, 1fr); padding-block: 2.5rem; } }
.blick dt { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--braun-3); font-weight: 600; margin-bottom: .2rem; }
.blick dd { margin: 0; font-family: var(--display); font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--marke); line-height: 1.15; }
.blick dd small { display: block; font-family: var(--text); font-size: .95rem; color: var(--braun-2); margin-top: .25rem; }

/* --- Zwei Spalten ------------------------------------------------------ */
.zwei { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .zwei { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); } .zwei--rechts > :first-child { order: 2; } }
.bild { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--schatten); background: var(--creme-2); position: relative; }
.bild img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.bild:hover img { transform: scale(1.03); }
.bild--hoch { aspect-ratio: 4 / 5; }
.bild--quer { aspect-ratio: 4 / 3; }
.bild--breit { aspect-ratio: 16 / 9; }
.bild figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.2rem .9rem; color: var(--weiss); font-size: .9rem; background: linear-gradient(0deg, rgba(42, 33, 27, .75), transparent); }
.stapel { position: relative; }
.stapel .bild--klein { position: absolute; width: 42%; right: -6%; bottom: -8%; aspect-ratio: 1; border: 6px solid var(--creme); box-shadow: var(--schatten); }
.section--weiss .stapel .bild--klein { border-color: var(--weiss); }
@media (max-width: 899px) { .stapel { margin-bottom: 2.5rem; } .stapel .bild--klein { right: 4%; } }
.zitat { font-family: var(--display); font-style: italic; font-weight: 500; font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.35; color: var(--marke); border-left: 3px solid var(--honig); padding-left: 1.2rem; margin: 1.5rem 0; }

/* --- Geschichte / Zeitstrahl ------------------------------------------ */
.geschichte { overflow: hidden; }
.rad {
  position: absolute; left: -14vw; top: 50%; width: clamp(360px, 42vw, 640px); aspect-ratio: 1; opacity: .09; pointer-events: none;
  transform: translateY(-50%) rotate(var(--rot, 0deg)); will-change: transform; color: var(--marke);
}
.rad--rechts { left: auto; right: -14vw; }
.zeit { list-style: none; margin: 3rem 0 0; padding: 0; display: grid; gap: 2.5rem; position: relative; }
.zeit::before { content: ''; position: absolute; left: 13px; top: 12px; bottom: 12px; width: 2px; background: var(--creme-2); }
.zeit li { position: relative; padding-left: 3rem; }
.zeit li::before { content: ''; position: absolute; left: 4px; top: .35rem; width: 20px; height: 20px; border-radius: 50%; background: var(--honig); border: 4px solid var(--creme); box-shadow: 0 0 0 2px var(--honig); }
.zeit__jahr { font-family: var(--display); font-weight: 600; font-size: clamp(2.3rem, 4.4vw, 3.4rem); color: var(--marke); line-height: 1; margin-bottom: .3rem; }
.zeit h3 { margin-bottom: .3rem; }
.zeit p { color: var(--braun-2); margin: 0; }
@media (min-width: 900px) {
  .zeit { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .zeit::before { left: 12px; right: 12px; top: 13px; bottom: auto; height: 2px; width: auto; transform-origin: left; transform: scaleX(0); transition: transform 1.6s var(--ease) .3s; }
  .zeit.in::before { transform: scaleX(1); }
  .zeit li { padding-left: 0; padding-top: 3rem; }
  .zeit li::before { left: 4px; top: 4px; }
}
.geschichte__bilder { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3.5rem; }
@media (min-width: 900px) { .geschichte__bilder { grid-template-columns: 3fr 2fr; gap: 1.5rem; } }

/* --- Ensemble / Hotspots ---------------------------------------------- */
.karte { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--schatten); background: var(--braun); margin-top: 2.5rem; }
.karte img { width: 100%; height: auto; display: block; }
.hotspot {
  position: absolute; transform: translate(-50%, -50%);
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--weiss);
  background: var(--honig); color: var(--braun); padding: 0; display: grid; place-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .4);
  transition: transform .3s var(--ease);
}
.hotspot::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--honig); opacity: .7; animation: puls 2.2s ease-out infinite; }
@keyframes puls { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(1.7); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hotspot::before { animation: none; opacity: .5; } }
.hotspot:hover, .hotspot:focus-visible { transform: translate(-50%, -50%) scale(1.15); z-index: 2; }
.hotspot span {
  position: absolute; left: 50%; bottom: calc(100% + 12px); transform: translateX(-50%) translateY(6px);
  background: var(--braun); color: var(--weiss); font-size: .9rem; font-weight: 600; white-space: nowrap;
  padding: .45rem .8rem; border-radius: 6px; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s var(--ease);
}
.hotspot span::after { content: ''; position: absolute; top: 100%; left: 50%; margin-left: -6px; border: 6px solid transparent; border-top-color: var(--braun); }
.hotspot:hover span, .hotspot:focus-visible span { opacity: 1; transform: translateX(-50%) translateY(0); }
.hotspot .ico { width: 16px; height: 16px; stroke-width: 2.5; }
.hotspot[data-links] span { left: 0; transform: translateX(0) translateY(6px); }
.hotspot[data-links]:hover span, .hotspot[data-links]:focus-visible span { transform: translateX(0) translateY(0); }
.hotspot[data-links] span::after { left: 17px; }
@media (max-width: 599px) { .hotspot { width: 26px; height: 26px; } .hotspot .ico { width: 13px; height: 13px; } .hotspot span { display: none; } }
.karte__legende { display: flex; flex-wrap: wrap; gap: .5rem .9rem; margin: 1rem 0 0; padding: 0; list-style: none; font-size: .95rem; color: var(--braun-2); }
.karte__legende li { display: inline-flex; align-items: center; gap: .4rem; }
.karte__legende i { width: 10px; height: 10px; border-radius: 50%; background: var(--honig); display: inline-block; }

/* --- Galerie ----------------------------------------------------------- */
.tabs { display: flex; gap: .5rem; overflow-x: auto; padding: .25rem .25rem 1rem; margin: 2rem calc(-1 * var(--gutter)) 1rem; padding-inline: var(--gutter); scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { flex: none; padding: .55rem 1rem; border-radius: 999px; border: 1.5px solid rgba(42, 33, 27, .18); background: var(--weiss); font-weight: 600; font-size: .95rem; transition: background-color .2s, color .2s, border-color .2s; }
.tab[aria-selected="true"] { background: var(--marke); border-color: var(--marke); color: var(--weiss); }
.tab:hover:not([aria-selected="true"]) { border-color: var(--marke); color: var(--marke); }
.tab small { opacity: .7; font-weight: 500; margin-left: .3rem; }
.raster { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
@media (min-width: 600px) { .raster { grid-template-columns: repeat(3, 1fr); gap: .8rem; } }
@media (min-width: 900px) { .raster { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.kachel { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-s); overflow: hidden; background: var(--creme-2); border: 0; padding: 0; display: block; width: 100%; }
.kachel img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .6s; opacity: 0; }
.kachel img.geladen, .kachel img[data-sofort] { opacity: 1; }
.kachel:hover img { transform: scale(1.06); }
.kachel::after { content: ''; position: absolute; inset: 0; background: rgba(42, 33, 27, 0); transition: background-color .3s; }
.kachel:hover::after { background: rgba(42, 33, 27, .15); }
.kachel .ico { position: absolute; right: .6rem; bottom: .6rem; color: var(--weiss); opacity: 0; transition: opacity .3s; filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .6)); z-index: 1; }
.kachel:hover .ico { opacity: 1; }
.galerie__mehr { display: flex; justify-content: center; margin-top: 2rem; }

/* --- Lightbox ---------------------------------------------------------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(20, 15, 12, .96); color: var(--weiss); display: none; align-items: center; justify-content: center; }
.lightbox.offen { display: flex; }
.lightbox img { max-width: min(96vw, 1600px); max-height: 86vh; width: auto; height: auto; object-fit: contain; box-shadow: 0 20px 60px rgba(0, 0, 0, .6); border-radius: 4px; }
.lightbox__leiste { position: absolute; top: 0; left: 0; right: 0; display: flex; justify-content: space-between; align-items: center; padding: 1rem var(--gutter); font-size: .95rem; }
.lightbox__knopf { background: rgba(255, 253, 249, .1); border: 0; color: var(--weiss); width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; transition: background-color .2s; }
.lightbox__knopf:hover { background: rgba(255, 253, 249, .25); }
.lightbox__knopf .ico { width: 26px; height: 26px; }
.lightbox__pfeil { position: absolute; top: 50%; transform: translateY(-50%); }
.lightbox__pfeil--l { left: max(8px, calc(var(--gutter) - 8px)); }
.lightbox__pfeil--r { right: max(8px, calc(var(--gutter) - 8px)); }
.lightbox__text { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem var(--gutter); text-align: center; font-size: .95rem; color: var(--creme-2); }

/* --- Slider (Impressionen) -------------------------------------------- */
.slider { position: relative; margin-top: 2.5rem; }
.slider__spur { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); padding-inline: var(--gutter); margin-inline: calc(-1 * var(--gutter)); scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.slider__spur::-webkit-scrollbar { display: none; }
.slider__spur figure { flex: 0 0 82%; scroll-snap-align: start; margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4 / 3; background: var(--creme-2); }
@media (min-width: 700px) { .slider__spur figure { flex-basis: 48%; } }
@media (min-width: 1100px) { .slider__spur figure { flex-basis: calc((100% - 2rem) / 3); } }
.slider__spur img { width: 100%; height: 100%; object-fit: cover; }
.slider__spur figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1.1rem .9rem; color: var(--weiss); font-size: .95rem; background: linear-gradient(0deg, rgba(42, 33, 27, .8), transparent); }
.slider__pfeile { display: flex; gap: .6rem; justify-content: flex-end; margin-top: 1rem; }
.slider__pfeile button { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--marke); background: transparent; color: var(--marke); display: grid; place-items: center; transition: background-color .2s, color .2s; }
.slider__pfeile button:hover { background: var(--marke); color: var(--weiss); }

/* --- Zustand & Erträge ------------------------------------------------- */
.mosaik { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.mosaik .bild:nth-child(1) { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.mosaik .bild { aspect-ratio: 4 / 3; }
.liste { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: .9rem; }
.liste li { display: flex; gap: .8rem; align-items: flex-start; }
.liste .ico { color: var(--moos); margin-top: .25rem; }
.tabelle { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 1rem; }
.tabelle th, .tabelle td { text-align: left; padding: .8rem .6rem; border-bottom: 1px solid rgba(42, 33, 27, .12); }
.tabelle th { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--braun-3); font-weight: 600; }
.tabelle td:last-child, .tabelle th:last-child { text-align: right; white-space: nowrap; }
.tabelle tfoot td { font-weight: 600; color: var(--marke); border-bottom: 0; }
.zaehler { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--marke); line-height: 1; }
.kennzahlen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0; }
.kennzahlen span { display: block; font-size: .85rem; color: var(--braun-2); margin-top: .3rem; }

/* --- Perspektiven ------------------------------------------------------ */
.karten { display: grid; gap: 1.2rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .karten { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .karten { grid-template-columns: repeat(4, 1fr); } }
.karte-p { background: var(--weiss); border-radius: var(--radius); padding: 2rem 1.6rem; box-shadow: var(--schatten-hart); transition: transform .35s var(--ease), box-shadow .35s var(--ease); position: relative; overflow: hidden; }
.karte-p:hover { transform: translateY(-6px); box-shadow: var(--schatten); }
.karte-p::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--honig); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.karte-p:hover::before { transform: scaleX(1); }
.karte-p .ico { width: 42px; height: 42px; color: var(--moos); stroke-width: 1.6; margin-bottom: 1.2rem; }
.karte-p h3 { font-size: 1.65rem; }
.karte-p p { color: var(--braun-2); font-size: 1.02rem; margin: 0; }
.hinweis-box { margin-top: 2.5rem; padding: 1.4rem 1.6rem; border-radius: var(--radius); background: var(--honig-hell); border-left: 4px solid var(--honig); display: flex; gap: 1rem; align-items: flex-start; }
.hinweis-box .ico { color: var(--honig-dunkel); margin-top: .2rem; }
.hinweis-box p { margin: 0; }

/* --- Lage -------------------------------------------------------------- */
.ringe { width: 100%; max-width: 520px; justify-self: center; margin-inline: auto; }
.ringe svg { width: 100%; height: auto; font-family: var(--text); }
.ringe .ring { fill: none; stroke: var(--moos); stroke-opacity: .35; stroke-width: 1.5; stroke-dasharray: 4 6; }
.ringe .punkt { fill: var(--honig); stroke: var(--weiss); stroke-width: 2; }
.ringe .ort { font-size: 13px; font-weight: 600; fill: var(--braun); }
.ringe .zeit-l { font-size: 11px; fill: var(--braun-3); }
.ringe .zentrum { fill: var(--marke); }
.ringe .zentrum-t { font-family: var(--display); font-size: 18px; fill: var(--marke); font-weight: 700; }
.lage__liste { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; }
.lage__liste li { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; padding: .9rem 1.1rem; background: var(--weiss); border-radius: var(--radius-s); box-shadow: var(--schatten-hart); }
.lage__liste .ico { color: var(--moos); width: 26px; height: 26px; }
.lage__liste b { font-family: var(--display); font-size: 1.5rem; color: var(--marke); font-weight: 600; white-space: nowrap; }
@media (max-width: 599px) { .lage__liste li { grid-template-columns: auto 1fr; } .lage__liste b { grid-column: 2; font-size: 1.15rem; } }

/* --- Eckdaten ---------------------------------------------------------- */
.eck { display: grid; gap: 1rem; margin: 2rem 0 0; }
@media (min-width: 700px) { .eck { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .eck { grid-template-columns: repeat(3, 1fr); } }
.eck > div { background: var(--weiss); border-radius: var(--radius); padding: 1.5rem 1.6rem; box-shadow: var(--schatten-hart); }
.eck dt { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--braun-3); font-weight: 600; margin-bottom: .35rem; display: flex; align-items: center; gap: .5rem; }
.eck dd { margin: 0; font-family: var(--display); font-weight: 600; font-size: 1.8rem; color: var(--marke); line-height: 1.2; }
.eck dd small { display: block; font-family: var(--text); font-size: .95rem; color: var(--braun-2); margin-top: .35rem; line-height: 1.4; }
.platzhalter { background: var(--rot-hell) !important; border: 2px dashed var(--rot); }
.platzhalter dt { color: var(--rot); }
.platzhalter dd { color: var(--rot); font-family: var(--text); font-size: 1.05rem; font-weight: 600; }
.platzhalter dd small { color: var(--rot); font-weight: 500; }
.ph { color: var(--rot); background: var(--rot-hell); padding: .05em .35em; border-radius: 4px; border: 1px dashed var(--rot); font-weight: 600; white-space: nowrap; }

/* --- Service / Haltung -------------------------------------------------- */
.service { display: grid; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 800px) { .service { grid-template-columns: 1fr 1fr; } }
.service > div { display: flex; gap: 1.2rem; align-items: flex-start; }
.service .ico { width: 40px; height: 40px; stroke-width: 1.6; color: var(--honig); flex: none; }
.service h3 { margin-bottom: .3rem; }
.service p { margin: 0; color: var(--creme-2); }
.haltung { margin-top: 3.5rem; padding: 2rem; border-radius: var(--radius); background: rgba(255, 253, 249, .07); border: 1px solid rgba(255, 253, 249, .15); }
.haltung p:last-child { margin: 0; }

/* --- FAQ --------------------------------------------------------------- */
.faq { max-width: 820px; margin: 2rem auto 0; }
.faq details { border-bottom: 1px solid rgba(42, 33, 27, .12); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 0; font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--braun); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--text); font-size: 1.6rem; color: var(--honig-dunkel); line-height: 1; transition: transform .3s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 0 1.4rem; color: var(--braun-2); max-width: 70ch; }
.faq details > div p:last-child { margin: 0; }

/* --- Kontakt ----------------------------------------------------------- */
.kontakt { position: relative; overflow: hidden; }
.kontakt .rad { opacity: .06; color: var(--honig-hell); }
.kontakt .wrap { position: relative; }
.kontakt__raster { display: grid; gap: 3rem; }
@media (min-width: 900px) { .kontakt__raster { grid-template-columns: 5fr 6fr; gap: 5rem; } }
.kontakt__wege { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.2rem; }
.kontakt__wege li { display: flex; gap: 1rem; align-items: center; }
.kontakt__wege .ico { width: 44px; height: 44px; padding: 10px; border-radius: 50%; background: rgba(255, 253, 249, .1); color: var(--honig); stroke-width: 1.8; }
.kontakt__wege a { color: var(--weiss); font-weight: 600; text-decoration: none; font-size: 1.15rem; }
.kontakt__wege a:hover { text-decoration: underline; }
.kontakt__wege small { display: block; color: var(--creme-2); opacity: .8; font-size: .9rem; }
.formular { background: var(--weiss); color: var(--braun); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--schatten); }
.feld { display: grid; gap: .35rem; margin-bottom: 1.1rem; }
.feld label { font-weight: 600; font-size: .95rem; }
.feld input, .feld textarea {
  font: inherit; color: var(--braun); background: var(--creme); border: 1.5px solid rgba(42, 33, 27, .18); border-radius: var(--radius-s);
  padding: .8rem .95rem; width: 100%; transition: border-color .2s, box-shadow .2s;
}
.feld input:focus, .feld textarea:focus { outline: 0; border-color: var(--marke); box-shadow: 0 0 0 3px rgba(110, 59, 42, .15); }
.feld textarea { min-height: 150px; resize: vertical; }
.feld--zeile { grid-template-columns: 1fr; }
@media (min-width: 600px) { .feld--zeile { grid-template-columns: 1fr 1fr; gap: 1rem; } .feld--zeile .feld { margin: 0; } .feld--zeile { margin-bottom: 1.1rem; } }
.einwilligung { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; color: var(--braun-2); margin-bottom: 1.4rem; }
.einwilligung input { width: 20px; height: 20px; margin-top: .2rem; accent-color: var(--marke); flex: none; }
.honig { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.status { margin-top: 1rem; padding: .9rem 1rem; border-radius: var(--radius-s); font-weight: 600; display: none; }
.status.ok { display: block; background: var(--moos-hell); color: var(--moos-dunkel); }
.status.fehler { display: block; background: var(--rot-hell); color: var(--rot); }

/* --- Footer ------------------------------------------------------------ */
.footer { background: var(--braun); color: var(--creme-2); padding-block: 2.5rem; font-size: .95rem; }
.footer .wrap { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; align-items: center; }
.footer a { color: var(--creme); }
.footer nav { display: flex; gap: 1.5rem; }
.footer .logo { font-size: 1.15rem; }
.footer .logo svg { width: 30px; height: 30px; }

/* --- Mobile CTA -------------------------------------------------------- */
.mobil-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; padding: .7rem var(--gutter); background: rgba(245, 239, 228, .95); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: 0 -1px 0 rgba(42, 33, 27, .08); transform: translateY(110%); transition: transform .4s var(--ease); }
.mobil-cta.sichtbar { transform: none; }
.mobil-cta .btn { width: 100%; justify-content: center; }
@media (min-width: 900px) { .mobil-cta { display: none; } }
@media (max-width: 899px) { body.mit-cta { padding-bottom: 76px; } }

/* --- Unterseiten (Impressum, Datenschutz) ------------------------------ */
.unterseite { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 5rem; min-height: 70vh; }
.unterseite h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--marke); }
.unterseite h2 { font-size: 1.6rem; margin-top: 2.5rem; }
.unterseite .header { color: var(--braun); }

/* --- Rundflug (YouTube, Zwei-Klick) ------------------------------------ */
.film { margin-top: 2.5rem; position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: var(--braun); box-shadow: var(--schatten); margin-top: 2.5rem; }
.film img, .film iframe { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; }
.film img { filter: brightness(.75); transition: transform 1.2s var(--ease); }
.film:hover img { transform: scale(1.03); }
.film__play { position: absolute; inset: 0; width: 100%; background: none; border: 0; color: var(--weiss); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; font-weight: 600; font-size: 1.1rem; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.film__play .ico { width: 88px; height: 88px; padding: 26px; border-radius: 50%; background: var(--honig); color: var(--braun); fill: currentColor; stroke: none; box-shadow: 0 10px 30px rgba(0,0,0,.35); transition: transform .3s var(--ease); }
.film__play:hover .ico { transform: scale(1.08); }
.film__hinweis { position: absolute; left: .8rem; top: .8rem; margin: 0; font-size: .85rem; max-width: 90%; }


/* --- Schmale Breiten: Grid-Kinder dürfen schrumpfen, Tabelle kompakt --- */
.zwei > * { min-width: 0; }
@media (max-width: 599px) {
  .tabelle { font-size: .9rem; }
  .tabelle th, .tabelle td { padding: .65rem .4rem; }
}
.tabelle-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.5rem 0; }
.tabelle-wrap .tabelle { margin: 0; min-width: 100%; }
@media (max-width: 599px) { .tabelle { font-size: .85rem; } .tabelle th, .tabelle td { padding: .6rem .35rem; } .tabelle th { letter-spacing: .06em; } }

/* --- Mobil-Feinschliff -------------------------------------------------- */
@media (max-width: 767px) {
  .rad { display: none; }                                  /* Mühlrad läuft sonst in den Text */
  .chips { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1.6rem; }
  .chips li { font-size: .82rem; padding: .45rem .7rem; gap: .4rem; line-height: 1.2; }
  .chips .ico { width: 1.1em; height: 1.1em; }
  .hero__claim { margin-bottom: 1.4rem; }
  .hero .wrap { padding-bottom: 2.2rem; }
  .hotspot { width: 32px; height: 32px; border-width: 2.5px; }
  .hotspot .ico { width: 15px; height: 15px; }
  .karte { border-radius: var(--radius-s); }
  .geschichte__bilder { grid-template-columns: 1fr; }
  .geschichte__bilder .bild--breit { aspect-ratio: 4 / 3; }
  .mosaik { gap: .6rem; }
  .karten { gap: .9rem; }
  .karte-p { padding: 1.5rem 1.3rem; }
  .karte-p .ico { width: 36px; height: 36px; margin-bottom: .9rem; }
  .eck > div { padding: 1.2rem 1.3rem; }
  .eck dd { font-size: 1.6rem; }
  .faq summary { font-size: 1.3rem; padding: 1rem 0; }
  .slider__spur figure { flex-basis: 86%; }
  .lightbox img { max-height: 78vh; }
  .lightbox__pfeil { top: auto; bottom: 3.2rem; transform: none; }
  .lightbox__text { bottom: auto; top: 3.6rem; }
}
@media (max-width: 400px) {
  h1 { font-size: 3rem; }
  .btn { padding: .85rem 1.3rem; font-size: 1rem; }
  .hero__aktionen { gap: .6rem; }
}
.ph { white-space: normal; overflow-wrap: anywhere; }
.kontakt__wege a, .kontakt__wege div { overflow-wrap: anywhere; min-width: 0; }
.chips li { min-width: 0; overflow-wrap: anywhere; }

/* --- Ertragsrechnung ---------------------------------------------------- */
.rechnung { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: .8rem; align-items: start; margin: 1.5rem 0; padding: 1.3rem 1.4rem; border-radius: var(--radius); background: var(--honig-hell); border-left: 4px solid var(--honig); }
.rechnung > div { display: grid; gap: .1rem; min-width: 0; }
.rechnung__label { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--braun-3); }
.rechnung__zahl { font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem, 2.6vw, 2.4rem); color: var(--marke); line-height: 1; white-space: nowrap; }
.rechnung__sub { font-size: .9rem; color: var(--braun-2); line-height: 1.35; }
.rechnung__pfeil { color: var(--honig-dunkel); font-family: var(--display); font-size: 1.8rem; display: grid; place-items: center; padding-top: 1.5rem; }
.rechnung__pfeil .ico { width: 26px; height: 26px; }
@media (max-width: 599px) {
  .rechnung { grid-template-columns: 1fr; gap: .6rem; }
  .rechnung__pfeil { justify-self: start; transform: rotate(90deg); }
  .rechnung__pfeil span { display: inline-block; transform: rotate(-90deg); }
}
/* --- Jedes Bild öffnet die Lightbox ------------------------------------- */
.bild, .karte > img { cursor: zoom-in; }
.bild:focus-visible { outline: 3px solid var(--honig); outline-offset: 3px; }

/* --- Strenger Hinweis (kein Verkauf an Makler) --------------------------- */
.hinweis-box--streng { background: var(--rot-hell); border-left-color: var(--rot); }
.hinweis-box--streng .ico { color: var(--rot); }
.hinweis-box--streng strong { color: var(--rot); }
.formular__hinweis { display: flex; gap: .6rem; align-items: flex-start; margin: 0 0 1.3rem; padding: .8rem 1rem; border-radius: var(--radius-s); background: var(--rot-hell); color: var(--rot); font-weight: 600; font-size: .95rem; line-height: 1.4; }
.formular__hinweis .ico { margin-top: .15rem; }
