/* ============================================================
   Hotel König Remscheid – Stylesheet
   Warm, familiär, bergisch
   ============================================================ */

@font-face {
  font-family: "Lora";
  src: url("/fonts/lora.woff2") format("woff2");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f8f4ec;
  --cream-2: #f1e9da;
  --paper: #fffdf8;
  --slate: #2c3138;
  --slate-2: #20242a;
  --green: #3a7d5d;
  --green-dark: #2f6b4f;
  --gold: #b58a3e;
  --gold-light: #c79a4f;
  --gold-text: #91691f; /* dunkleres Gold für kleinen Text auf hellem Grund (besserer Kontrast) */
  --text: #2b2823;
  --muted: #6b6459;
  --line: #e3dac9;
  --shadow: 0 18px 50px -20px rgba(44, 49, 56, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(44, 49, 56, 0.3);
  --radius: 14px;
  --maxw: 1180px;
  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--slate); }

a { color: var(--green-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

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

/* ---------- Sichtbarer Tastatur-Fokus (Accessibility) ---------- */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible { outline: 2px solid var(--slate); outline-offset: 3px; }
.hero :focus-visible, .gallery :focus-visible,
.site-footer :focus-visible, .lightbox :focus-visible { outline-color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 14px;
}

.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section--alt { background: var(--paper); }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }

.lede { font-size: 1.15rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .22s ease; letter-spacing: .2px;
  white-space: nowrap;
}
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 10px 24px -12px rgba(58,125,93,.8); }
.btn--primary:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #fff; box-shadow: 0 10px 24px -12px rgba(181,138,62,.85); }
.btn--gold:hover { background: var(--gold-light); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: #fff; color: var(--slate); border-color: #fff; }
.btn--outline { background: transparent; color: var(--green-dark); border-color: var(--green); }
.btn--outline:hover { background: var(--green); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.site-header.scrolled { background: rgba(248,244,236,.96); backdrop-filter: blur(10px); box-shadow: 0 2px 20px -10px rgba(0,0,0,.25); padding: 10px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { height: 72px; transition: height .3s ease; }
.site-header.scrolled .logo { height: 54px; }
/* logo color invert on transparent header over hero */
.logo-mark { display: block; }
.logo-mark .logo-light { display: block; }
.logo-mark .logo-dark { display: none; }
.site-header.scrolled .logo-mark .logo-light { display: none; }
.site-header.scrolled .logo-mark .logo-dark { display: block; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a.navlink {
  font-size: 15px; font-weight: 500; color: #fff; position: relative;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.site-header.scrolled .nav a.navlink { color: var(--slate); text-shadow: none; }
.nav a.navlink::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav a.navlink:hover { color: var(--gold); }
.nav a.navlink:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { color: #fff; font-weight: 600; font-size: 15px; text-shadow: 0 1px 8px rgba(0,0,0,.4); display: flex; align-items: center; gap: 7px; }
.site-header.scrolled .header-phone { color: var(--slate); text-shadow: none; }

.burger { display: none; background: none; border: 0; cursor: pointer; width: 40px; height: 40px; position: relative; }
.burger span { position: absolute; left: 8px; right: 8px; height: 2px; background: #fff; transition: all .3s ease; }
.site-header.scrolled .burger span { background: var(--slate); }
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 19px; }
.burger span:nth-child(3) { top: 25px; }
body.menu-open .burger span:nth-child(1) { top: 19px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; text-align: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
    background:
    radial-gradient(ellipse 80% 58% at 50% 45%, rgba(13,16,20,.72) 0%, rgba(13,16,20,.42) 46%, rgba(13,16,20,0) 72%),
    linear-gradient(180deg, rgba(20,24,28,.55) 0%, rgba(20,24,28,.28) 42%, rgba(20,24,28,.72) 100%),
    image-set(url("/images/hero.jpg?v=2") 1x);
  background-image:
    radial-gradient(ellipse 80% 58% at 50% 45%, rgba(13,16,20,.72) 0%, rgba(13,16,20,.42) 46%, rgba(13,16,20,0) 72%),
    linear-gradient(180deg, rgba(20,24,28,.55) 0%, rgba(20,24,28,.28) 42%, rgba(20,24,28,.72) 100%),
    url("/images/hero.jpg?v=2");
  background-size: cover; background-position: center; z-index: -1;
}
.hero-content { max-width: 860px; margin: 0 auto; padding: 120px 24px 40px; }
.hero .eyebrow { color: #f3e4c4; text-shadow: 0 1px 10px rgba(0,0,0,.5); }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,.55), 0 4px 28px rgba(0,0,0,.6); margin-bottom: 18px; font-weight: 600; }
.hero p.hero-sub { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 620px; margin: 0 auto 34px; text-shadow: 0 1px 3px rgba(0,0,0,.6), 0 2px 16px rgba(0,0,0,.65); color: #f4efe6; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* ---------- Booking bar ---------- */
.booking-bar { position: relative; z-index: 20; margin-top: -54px; }
.booking-card {
  background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 22px; display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr auto; gap: 16px; align-items: end;
  border: 1px solid var(--line);
}
.booking-field { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.booking-field label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.booking-field input, .booking-field select {
  font-family: var(--sans); font-size: 15px; color: var(--text);
  padding: 11px 12px; border: 1px solid var(--line); border-radius: 9px; background: #fff;
  width: 100%; min-width: 0; max-width: 100%;
}
/* iOS/Mobile: native Datumsfelder dürfen nicht über den Rand hinauslaufen */
.booking-field input[type="date"] { -webkit-appearance: none; appearance: none; }
.booking-field input[type="date"]::-webkit-date-and-time-value { text-align: left; margin: 0; }
.booking-field input[type="date"]::-webkit-calendar-picker-indicator { margin-left: 4px; }
.booking-field input:focus, .booking-field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(58,125,93,.15); }
.booking-card .btn { height: 46px; }

/* ---------- Intro / welcome ---------- */
.welcome { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.welcome-text h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 20px; }
.welcome-text p + p { margin-top: 16px; }
.signature { margin-top: 24px; font-family: var(--serif); font-size: 1.5rem; color: var(--green-dark); }
.signature small { display: block; font-family: var(--sans); font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.welcome-media { position: relative; }
.welcome-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.welcome-badge {
  position: absolute; bottom: -26px; left: -26px; background: var(--green); color: #fff;
  border-radius: var(--radius); padding: 20px 26px; box-shadow: var(--shadow-sm); text-align: center;
}
.welcome-badge strong { font-family: var(--serif); font-size: 2.4rem; display: block; line-height: 1; }
.welcome-badge span { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .9; }

/* ---------- Features strip ---------- */
.features { background: var(--cream-2); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; text-align: center; transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.feature .ico { width: 52px; height: 52px; margin: 0 auto 16px; color: var(--green); }
.feature h3 { font-size: 1.4rem; margin-bottom: 8px; }
.feature p { font-size: .95rem; color: var(--muted); }

/* ---------- Rooms ---------- */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.room-card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .28s ease, box-shadow .28s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room-card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.room-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-card:hover .thumb img { transform: scale(1.06); }
.room-card .tag {
  position: absolute; top: 14px; left: 14px; background: rgba(255,253,248,.95);
  color: var(--slate); font-size: 12px; font-weight: 600; padding: 6px 13px; border-radius: 999px;
}
.room-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.room-body h3 { font-size: 1.65rem; margin-bottom: 8px; }
.room-body p { font-size: .96rem; color: var(--muted); flex: 1; }
.room-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 18px; }
.room-meta span { font-size: 12.5px; color: var(--green-dark); background: #eef5f0; padding: 5px 11px; border-radius: 7px; font-weight: 500; }
.room-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price small { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.price strong { font-family: var(--serif); font-size: 1.6rem; color: var(--slate); }
.price strong span { font-family: var(--sans); font-size: .85rem; color: var(--muted); font-weight: 400; }

/* Hinweis-Karte im Zimmer-Raster ("Nicht sicher, welches Zimmer?") */
.room-card--cta { background: var(--green); color: #fff; align-items: center; justify-content: center; text-align: center; }
.room-card--cta .room-body { align-items: center; justify-content: center; }
.room-card--cta h3 { color: #fff; }
.room-card--cta p { color: rgba(255,255,255,.85); }
.room-card--cta .btn { margin-top: 14px; }

/* ---------- Split feature (Frühstück / Stube) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split.reverse .split-media { order: 2; }
.split-media { min-height: 380px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-text { background: var(--paper); padding: 56px 52px; display: flex; flex-direction: column; justify-content: center; }
.split-text h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 16px; }
.split-text p { color: var(--muted); }
.split-text p + p { margin-top: 14px; }
.split-list { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
.split-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .98rem; }
.split-list li::before { content: "✦"; color: var(--gold); font-size: .8rem; margin-top: 4px; }

/* ---------- Gallery ---------- */
.gallery { background: var(--slate); }
.gallery .section-head h2, .gallery .section-head { color: #fff; }
.gallery .section-head h2 { color: #fff; }
.gallery .section-head p { color: rgba(255,255,255,.7); }
.gallery .eyebrow { color: var(--gold-light); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-grid a { position: relative; overflow: hidden; border-radius: 10px; aspect-ratio: 1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s ease; }
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-grid a.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-grid a.wide { grid-column: span 2; aspect-ratio: 2/1; }

/* ---------- Sights ---------- */
.sights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.sight {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.sight:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.sight .thumb { aspect-ratio: 16/10; overflow: hidden; }
.sight .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.sight:hover .thumb img { transform: scale(1.06); }
.sight-body { padding: 22px 24px 26px; }
.sight-body h3 { font-size: 1.4rem; margin-bottom: 8px; }
.sight-body .dist { font-size: 12.5px; color: var(--gold-text); font-weight: 600; letter-spacing: .5px; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.sight-body p { font-size: .94rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; max-width: 1000px; margin: 0 auto; align-items: start; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: #d9cdb4; }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 20px; font-family: var(--sans); font-weight: 600; font-size: 1.01rem; color: var(--slate);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-ico { position: relative; flex: 0 0 18px; width: 18px; height: 18px; }
.faq-ico::before, .faq-ico::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.faq-ico::before { top: 8px; left: 1px; width: 16px; height: 2px; }
.faq-ico::after { left: 8px; top: 1px; width: 2px; height: 16px; }
.faq-item[open] .faq-ico::after { transform: scaleY(0); opacity: 0; }
.faq-a { padding: 0 20px 18px; }
.faq-a p { color: var(--muted); font-size: .96rem; }
.faq-a a { color: var(--green-dark); }
.faq-a a:hover { color: var(--gold); }

/* ---------- Contact ---------- */
.contact { background: var(--cream-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 28px; align-items: stretch; margin-bottom: 28px; }

.contact-info {
  background: var(--paper); color: var(--text); border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  padding: 44px 40px; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.contact-info-title { color: var(--slate); font-size: 1.9rem; margin-bottom: 10px; }
.contact-info-lead { color: var(--muted); margin-bottom: 30px; max-width: 40ch; }
.contact-list { list-style: none; display: grid; gap: 18px; position: relative; }
.contact-list li { display: flex; gap: 15px; align-items: flex-start; }
.contact-list .ci { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px; background: rgba(58,125,93,.1); display: flex; align-items: center; justify-content: center; color: var(--green-dark); }
.contact-list .ci svg { width: 20px; height: 20px; }
.contact-list strong { display: block; font-family: var(--sans); font-weight: 600; font-size: .95rem; color: var(--slate); margin-bottom: 2px; }
.contact-list a, .contact-list span { color: var(--muted); font-size: .95rem; }
.contact-list a { transition: color .2s ease; }
.contact-list a:hover { color: var(--green-dark); }
.contact-info-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; padding-top: 32px; }
.contact-info .btn--ghost { color: var(--slate); border-color: var(--line); }
.contact-info .btn--ghost:hover { background: var(--slate); color: #fff; border-color: var(--slate); }

.contact-form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 40px; display: flex; flex-direction: column;
}
.contact-form-card h3 { font-size: 1.7rem; margin-bottom: 6px; }
.contact-form-card .form-sub { color: var(--muted); font-size: .98rem; margin-bottom: 26px; }
.contact-form { display: grid; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 12.5px; font-weight: 600; letter-spacing: .3px; color: var(--muted); }
.contact-form input, .contact-form textarea {
  font-family: var(--sans); font-size: 15px; color: var(--text);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; width: 100%; transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #b3aa99; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(58,125,93,.14); }
.contact-form textarea { resize: vertical; min-height: 122px; }
.contact-form .btn { margin-top: 6px; justify-content: center; }

.contact-map { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 340px; border: 1px solid var(--line); }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: saturate(.96); }
.map-cta { position: absolute; right: 16px; bottom: 16px; box-shadow: var(--shadow); }

/* ---------- Footer ---------- */
.site-footer { background: var(--slate-2); color: rgba(255,255,255,.7); padding: 64px 0 28px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-grid h4 { color: #fff; font-family: var(--sans); font-size: .85rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer-grid p { margin-bottom: 8px; }
.footer-logo { height: 76px; margin-bottom: 18px; }
.footer-links { list-style: none; display: grid; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.7); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.6); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(15,18,21,.94); z-index: 200; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 20px 70px rgba(0,0,0,.6); }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff; cursor: pointer; border-radius: 999px; width: 50px; height: 50px; font-size: 24px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(255,255,255,.28); }
.lightbox .lb-close { top: 22px; right: 22px; }
.lightbox .lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- Legal pages ---------- */
.page-hero { padding: 150px 0 60px; background: var(--slate); color: #fff; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 5vw, 3.4rem); overflow-wrap: anywhere; hyphens: auto; }
.page-hero p { color: rgba(255,255,255,.7); margin-top: 8px; }
.legal { max-width: 820px; overflow-wrap: break-word; }
.legal h2 { font-size: 1.7rem; margin: 36px 0 12px; }
.legal h3 { font-size: 1.25rem; margin: 22px 0 8px; font-family: var(--sans); font-weight: 600; }
.legal p { color: var(--text); margin-bottom: 12px; }
.legal ul { margin: 0 0 14px 20px; color: var(--text); }
.legal li { overflow-wrap: break-word; }
.legal a { overflow-wrap: anywhere; word-break: break-word; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Availability / Live-Buchung ---------- */
.availability { margin-top: 16px; }
.availability:empty { margin-top: 0; }
.av-panel {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px 24px; animation: avIn .35s ease;
}
@keyframes avIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.av-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.av-head h3 { font-size: 1.5rem; }
.av-head .av-sub { font-size: .92rem; color: var(--muted); }
.av-loading { display: flex; align-items: center; gap: 14px; color: var(--muted); padding: 8px 0; }
.av-spinner { width: 26px; height: 26px; border: 3px solid var(--line); border-top-color: var(--green); border-radius: 50%; animation: spin .8s linear infinite; flex: 0 0 auto; }
@keyframes spin { to { transform: rotate(360deg); } }
.av-list { display: grid; gap: 14px; }
.av-room {
  display: grid; grid-template-columns: 130px 1fr auto; gap: 18px; align-items: center;
  border: 1px solid var(--line); border-radius: 12px; padding: 12px; background: #fff;
  transition: box-shadow .2s ease, transform .2s ease;
}
.av-room:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.av-room .av-thumb { width: 130px; height: 96px; border-radius: 9px; object-fit: cover; }
.av-room .av-info h4 { font-size: 1.25rem; margin-bottom: 3px; }
.av-room .av-info p { font-size: .88rem; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.av-room .av-meta { margin-top: 6px; display: flex; flex-wrap: wrap; gap: 6px; }
.av-room .av-meta span { font-size: 11.5px; color: var(--green-dark); background: #eef5f0; padding: 3px 9px; border-radius: 6px; }
.av-room .av-price { text-align: right; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.av-room .av-price .amount { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--slate); line-height: 1; }
.av-room .av-price .per { font-size: 11px; color: var(--muted); }
.av-room .av-price .total { font-size: 12px; color: var(--muted); }
.av-empty { text-align: center; padding: 14px 0; }
.av-empty p { color: var(--muted); margin-bottom: 14px; }
.av-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }
.av-note { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; }
.av-error { color: #a3432f; }

@media (max-width: 680px) {
  .av-room { grid-template-columns: 1fr; }
  .av-room .av-thumb { width: 100%; height: 150px; }
  .av-room .av-price { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--slate); color: #fff; padding: 14px 24px; border-radius: 999px; box-shadow: var(--shadow); z-index: 300; transition: transform .4s ease; font-size: .95rem; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- Mobile Sticky-CTA ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(248,244,236,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 24px -16px rgba(0,0,0,.4);
}
.mobile-cta .btn { flex: 1; justify-content: center; padding: 13px 18px; }

/* ---------- Body-Scroll-Lock bei offenem Menü ---------- */
body.menu-open { overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  /* leichteres Hero-Bild auf kleinen Geräten (LCP) */
  .hero::before {
    background-image:
      radial-gradient(ellipse 80% 58% at 50% 45%, rgba(13,16,20,.72) 0%, rgba(13,16,20,.42) 46%, rgba(13,16,20,0) 72%),
      linear-gradient(180deg, rgba(20,24,28,.55) 0%, rgba(20,24,28,.28) 42%, rgba(20,24,28,.72) 100%),
      url("/images/hero-small.jpg");
  }
  .mobile-cta { display: flex; }
  /* Platz, damit die fixe Leiste den Footer nicht dauerhaft verdeckt */
  body:has(.mobile-cta) { padding-bottom: 68px; }
}

@media (max-width: 1024px) {
  .booking-card { grid-template-columns: 1fr 1fr; }
  .booking-card .btn { grid-column: 1 / -1; justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid, .sights-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav, .header-phone { display: none; }
  .burger { display: block; }
  .site-header .nav.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: var(--paper); padding: 22px 24px; gap: 18px; box-shadow: var(--shadow); align-items: flex-start;
  }
  .site-header .nav.open a.navlink { color: var(--slate); text-shadow: none; }
  .welcome, .split, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media { min-height: 280px; }
  .split-text { padding: 40px 30px; }
  .welcome-media { order: -1; }
  .welcome-badge { left: auto; right: 16px; bottom: -20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .features-grid, .rooms-grid, .sights-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid a.wide { grid-column: span 2; }
  .booking-card { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-info, .contact-form-card, .split-text { padding: 30px 22px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-info-actions .btn { flex: 1; justify-content: center; }
  .map-cta { left: 16px; right: 16px; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Honeypot (Spam-Schutz, für Menschen unsichtbar) ---------- */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
