/* =========================================================
   Arkadenhaus — Hotel Freiherr von Schwarzenberg, Papenburg
   Entwurf. Warmes Creme, Backstein-Terrakotta, Messing.
   Im Zentrum: Direktbuchung (spart die Portal-Provision).
   Vanilla CSS, keine Abhängigkeiten, kein Build.
   ========================================================= */

:root {
  --creme:      #f6f2ea;
  --creme-2:    #efe7d9;
  --ink:        #241f19;
  --ink-soft:   #5b5245;
  --brick:      #9e4728;
  --brick-deep: #7c3720;
  --brass:      #b0904c;
  --brass-hell: #c7a869;
  --canal:      #47646f;
  --line:       #e4dbc9;
  --white:      #ffffff;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --max: 1240px;
  --pad: clamp(1.1rem, 4vw, 2.75rem);
  --radius: 6px;
  --radius-l: 14px;

  --schatten: 0 24px 60px -28px rgba(40, 28, 18, 0.5);
  --schatten-s: 0 10px 30px -14px rgba(40, 28, 18, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--creme);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.005em;
  margin: 0;
}

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

.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--pad); }

.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 1rem;
}
.kicker.hell { color: var(--brass-hell); }

/* ---------- Demo-Banner ---------- */
.demo-banner {
  background: var(--ink);
  color: #e9dfce;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  padding: 0.5rem 1rem;
  position: relative;
  z-index: 60;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 234, 0);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s;
}
.site-header.scrolled {
  background: rgba(246, 242, 234, 0.94);
  backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -20px rgba(40, 28, 18, 0.5);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem var(--pad);
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; flex-shrink: 0; }
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 3px;
}

.main-nav { margin-left: auto; display: flex; gap: 1.7rem; align-items: center; }
.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.3rem 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--brick);
  transition: width 0.28s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-tel {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.72rem 1.5rem;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s, color 0.2s;
  white-space: nowrap;
}
.btn-brick {
  background: var(--brick);
  color: #fff;
  box-shadow: 0 10px 24px -12px rgba(158, 71, 40, 0.9);
}
.btn-brick:hover { background: var(--brick-deep); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(158, 71, 40, 0.9); }
.btn-linie {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-linie:hover { background: var(--ink); color: var(--creme); }
.btn-linie-hell {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.btn-linie-hell:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-gross { padding: 0.95rem 2rem; font-size: 0.95rem; }
.btn-block { width: 100%; }

.nav-toggle { display: none; background: none; border: 0; color: var(--ink); padding: 0.4rem; cursor: pointer; margin-left: auto; }
.nav-toggle svg { width: 26px; height: 26px; }

.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(36, 31, 25, 0.98);
  z-index: 55;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 0.3rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 500;
  color: var(--creme); text-decoration: none; padding: 0.5rem 1rem;
}
.mobile-menu a:active { color: var(--brass-hell); }
.mobile-close { position: absolute; top: 1.2rem; right: 1.3rem; background: none; border: 0; color: var(--creme); font-size: 2.2rem; line-height: 1; cursor: pointer; }
body.menu-open { overflow: hidden; }

/* =========================================================
   Hero — Vollbild, das historische Haus am Kanal
   ========================================================= */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
/* Bilder-Show: langsames Überblenden, jede Folie mit Ken-Burns-Zoom.
   Bewusst schlicht (nur opacity + transform) — läuft flüssig auf dem Handy. */
.hero-slide {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0% { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.15) translate(-1.8%, -1.8%); }
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(28,20,12,0.5) 0%, rgba(28,20,12,0.12) 32%, rgba(28,20,12,0.55) 100%),
    linear-gradient(90deg, rgba(28,20,12,0.7) 0%, rgba(28,20,12,0.25) 42%, transparent 64%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide img { animation: none; }
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(3rem, 8vw, 5rem); }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: #f0e4d0; margin-bottom: 1.1rem;
}
.hero-kicker::before { content: ""; width: 32px; height: 1px; background: var(--brass-hell); }
.hero h1 {
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  font-weight: 600;
  max-width: 15ch;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero h1 em { font-style: italic; color: var(--brass-hell); }
.hero-text {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  max-width: 44ch;
  color: #f2ebdf;
  margin-bottom: 2rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* Sterne-Zeile im Hero */
.hero-rating { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.6rem; font-size: 0.9rem; color: #f2ebdf; }
.hero-rating .sterne { color: var(--brass-hell); letter-spacing: 0.08em; }

/* =========================================================
   Buchungsleiste — das Herzstück (Direktbuchung)
   ========================================================= */
.buchung {
  position: relative;
  z-index: 20;
  margin-top: -46px;
}
.buchung-karte {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--schatten);
  padding: 1.1rem 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0.9rem;
  align-items: end;
}
.buchung-feld { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.buchung-feld label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft);
}
.buchung-feld input, .buchung-feld select {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--creme);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 0.62rem 0.7rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.buchung-feld input:focus, .buchung-feld select:focus {
  outline: none; border-color: var(--brick); box-shadow: 0 0 0 3px rgba(158,71,40,0.14);
}
.buchung-feld select { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b5245' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.6rem center; background-size: 16px; padding-right: 2rem;
}
.buchung .btn { height: fit-content; }
.buchung-hinweis {
  max-width: var(--max);
  margin: 0.7rem auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.buchung-hinweis b { color: var(--brick); }

/* =========================================================
   Direktbuchung-Vorteile
   ========================================================= */
.vorteile { padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(1rem, 3vw, 2rem); }
.vorteile-kopf { text-align: center; max-width: 60ch; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.vorteile-kopf h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 0.8rem; }
.vorteile-kopf p { color: var(--ink-soft); margin: 0; }
.vorteile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.vorteil {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 1.6rem 1.4rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.vorteil:hover { transform: translateY(-4px); box-shadow: var(--schatten-s); }
.vorteil-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(140deg, #fbeee0, #f3ddc4);
  color: var(--brick);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.vorteil-icon svg { width: 24px; height: 24px; }
.vorteil h3 { font-family: var(--font-body); font-size: 1.02rem; font-weight: 700; margin-bottom: 0.4rem; }
.vorteil p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* ---------- Abschnitte ---------- */
.abschnitt { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.abschnitt.alt { background: var(--creme-2); }
.abschnitt.dunkel { background: var(--ink); color: #efe6d8; }
.abschnitt-kopf { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.abschnitt-kopf.zentriert { margin-inline: auto; text-align: center; }
.abschnitt-kopf h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); margin-bottom: 0.9rem; }
.abschnitt-kopf p { color: var(--ink-soft); margin: 0; font-size: 1.05rem; }
.dunkel .abschnitt-kopf p { color: #c9beac; }

/* =========================================================
   Zimmer & Suiten
   ========================================================= */
.zimmer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.zimmer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.zimmer:hover { transform: translateY(-5px); box-shadow: var(--schatten); }
.zimmer-bild { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.zimmer-bild img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(0.2,0.8,0.2,1); }
.zimmer:hover .zimmer-bild img { transform: scale(1.06); }
.zimmer-tag {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
  color: var(--brick); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.32rem 0.7rem; border-radius: 100px;
}
.zimmer-inhalt { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.zimmer h3 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.zimmer-desc { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1rem; flex: 1; }
.zimmer-merkmale { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.2rem; }
.zimmer-merkmale span { font-size: 0.76rem; color: var(--ink-soft); background: var(--creme-2); border-radius: 100px; padding: 0.28rem 0.7rem; }
.zimmer-fuss { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.zimmer-preis { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.zimmer-preis b { font-size: 1.7rem; font-weight: 600; color: var(--brick); }
.zimmer-preis small { display: block; font-family: var(--font-body); font-size: 0.72rem; color: var(--ink-soft); }

/* =========================================================
   Genuss / Die Anlage — Bildbänder
   ========================================================= */
.band { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.band + .band { margin-top: clamp(2.5rem, 5vw, 4rem); }
.band.gedreht .band-media { order: 2; }
.band-media { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--schatten); aspect-ratio: 4/3; }
.band-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(0.2,0.8,0.2,1); }
.band-media:hover img { transform: scale(1.05); }
.band h3 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 1rem; }
.band p { color: var(--ink-soft); }
.dunkel .band p { color: #c9beac; }
.band-highlights { list-style: none; padding: 0; margin: 1.3rem 0 0; display: grid; gap: 0.6rem; }
.band-highlights li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.95rem; }
.band-highlights svg { width: 19px; height: 19px; color: var(--brass); flex-shrink: 0; margin-top: 0.2rem; }

/* Genuss-Kacheln (klein) */
.genuss-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: clamp(2rem,4vw,3rem); }
.genuss-kachel { position: relative; border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 3/2; box-shadow: var(--schatten-s); }
.genuss-kachel img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.2,0.8,0.2,1); }
.genuss-kachel:hover img { transform: scale(1.07); }
.genuss-kachel figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2rem 1.1rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(20,14,8,0.85));
  color: #fff; font-family: var(--font-display); font-size: 1.4rem;
}

/* =========================================================
   Ausstattung
   ========================================================= */
.ausstattung-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.9rem; }
.austattung { text-align: center; padding: 1.3rem 0.6rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.austattung svg { width: 26px; height: 26px; color: var(--brick); margin-bottom: 0.55rem; }
.austattung span { display: block; font-size: 0.82rem; font-weight: 500; color: var(--ink); }

/* =========================================================
   Lage
   ========================================================= */
.lage { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.lage-media { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--schatten); aspect-ratio: 3/4; max-height: 560px; }
.lage-media img { width: 100%; height: 100%; object-fit: cover; }
.lage h2 { font-size: clamp(2rem,4.4vw,3.3rem); margin-bottom: 1rem; }
.lage p { color: var(--ink-soft); }
.lage-punkte { list-style: none; padding: 0; margin: 1.4rem 0; display: grid; gap: 0.7rem; }
.lage-punkte li { display: flex; gap: 0.7rem; align-items: flex-start; }
.lage-punkte svg { width: 20px; height: 20px; color: var(--brick); flex-shrink: 0; margin-top: 0.2rem; }
.lage-punkte b { color: var(--ink); }

/* =========================================================
   Bewertungen
   ========================================================= */
.bewertung-kopf { text-align: center; margin-bottom: clamp(2rem,4vw,3rem); }
.bewertung-score { display: inline-flex; align-items: center; gap: 1rem; margin-bottom: 0.6rem; }
.bewertung-score .zahl { font-family: var(--font-display); font-size: 3.6rem; font-weight: 600; color: var(--brick); line-height: 1; }
.bewertung-score .sterne { color: var(--brass); font-size: 1.3rem; letter-spacing: 0.1em; }
.bewertung-score .meta { text-align: left; font-size: 0.85rem; color: var(--ink-soft); }
.zitate { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.zitat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.6rem; }
.zitat .sterne { color: var(--brass); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 0.7rem; }
.zitat p { font-size: 0.96rem; margin: 0 0 1rem; font-style: italic; color: var(--ink); }
.zitat cite { font-style: normal; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }

/* Zahlenband */
.zahlen-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: clamp(2rem,4vw,3rem); }
.zahl { text-align: center; }
.zahl b { display: block; font-family: var(--font-display); font-size: clamp(2rem,4vw,2.9rem); font-weight: 600; color: var(--brick); line-height: 1; }
.dunkel .zahl b { color: var(--brass-hell); }
.zahl span { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--ink-soft); text-transform: uppercase; }
.dunkel .zahl span { color: #c9beac; }

/* =========================================================
   Buchen (Formular)
   ========================================================= */
.buchen-form-karte {
  max-width: 860px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-l); box-shadow: var(--schatten);
  padding: clamp(1.5rem, 4vw, 2.8rem);
}
.feld-reihe { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 1rem; margin-bottom: 1rem; }
.feld { display: flex; flex-direction: column; gap: 0.35rem; }
.feld label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.feld input, .feld select, .feld textarea {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--creme);
  color: var(--ink); font-family: var(--font-body); font-size: 1rem; padding: 0.72rem 0.85rem; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feld textarea { resize: vertical; min-height: 84px; line-height: 1.6; }
.feld input:focus, .feld select:focus, .feld textarea:focus { outline: none; border-color: var(--brick); box-shadow: 0 0 0 3px rgba(158,71,40,0.14); }
.feld select { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b5245' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.7rem center; background-size: 16px; padding-right: 2.1rem; }
.naechte-info { text-align: center; font-size: 0.9rem; color: var(--ink-soft); margin: 0.4rem 0 1.2rem; }
.naechte-info b { color: var(--brick); }
.form-status { margin-top: 1.1rem; padding: 0.9rem 1.05rem; border-radius: var(--radius); font-size: 0.94rem; display: none; }
.form-status.ok { display: block; background: #eaf6ee; border: 1px solid #b6ddc4; color: #256b45; }
.form-status.err { display: block; background: #fbecea; border: 1px solid #edc3bd; color: #a4402f; }
.pflicht { color: var(--brick); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cfc4b2; padding: clamp(2.5rem,5vw,4rem) 0 1.5rem; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.4rem; margin-bottom: 2.4rem; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.7rem; color: var(--creme); margin-bottom: 0.3rem; }
.footer-brand-sub { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass-hell); margin-bottom: 1rem; }
.footer-grid h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-hell); margin-bottom: 0.9rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.4rem; }
.footer-grid a { color: #cfc4b2; text-decoration: none; transition: color 0.2s; }
.footer-grid a:hover { color: var(--brass-hell); }
.footer-unten { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.3rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: #8b8071; font-size: 0.82rem; }

/* ---------- Nach oben ---------- */
.nach-oben {
  position: fixed; right: 1.2rem; bottom: 1.2rem; width: 46px; height: 46px; border-radius: 50%;
  background: var(--brick); color: #fff; border: 0; cursor: pointer; display: grid; place-items: center;
  opacity: 0; pointer-events: none; transform: translateY(10px); transition: all 0.3s; z-index: 40;
  box-shadow: 0 10px 26px -10px rgba(158,71,40,0.9);
}
.nach-oben.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nach-oben svg { width: 20px; height: 20px; }

/* ---------- Reveal ----------
   Der versteckte Zustand gilt NUR, wenn JS läuft (.js am <html>).
   Ohne JS bleibt alles sichtbar — kein unsichtbarer Inhalt. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(0.2,0.8,0.2,1), transform 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Umbrüche
   ========================================================= */
@media (max-width: 1000px) {
  .vorteile-grid { grid-template-columns: repeat(2, 1fr); }
  .zimmer-grid { grid-template-columns: repeat(2, 1fr); }
  .ausstattung-grid { grid-template-columns: repeat(3, 1fr); }
  .genuss-grid { grid-template-columns: 1fr 1fr; }
  .band { grid-template-columns: 1fr; }
  .band.gedreht .band-media { order: -1; }
  .band-media { order: -1; }
  .lage { grid-template-columns: 1fr; }
  .lage-media { max-height: 420px; aspect-ratio: 16/10; }
  .zitate { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .main-nav, .header-tel { display: none; }
  .nav-toggle { display: block; }
  .header-inner .btn { display: none; }
  .buchung-karte { grid-template-columns: 1fr 1fr; }
  .buchung .btn { grid-column: 1 / -1; }
  .buchung { margin-top: -30px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .vorteile-grid, .zimmer-grid, .genuss-grid { grid-template-columns: 1fr; }
  .ausstattung-grid { grid-template-columns: repeat(2, 1fr); }
  .zahlen-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .buchung-karte { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
}

@media print {
  .site-header, .demo-banner, .hero, .buchung, .nach-oben, .buchen-form-karte { display: none !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
