/* ===========================================================
   Hotel National Bad Düben — Élysée-inspiriertes Design-System
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --bg-dark: #14110d;
  --bg-dark-2: #1c1813;
  --bg-dark-3: #221d16;
  --gold: #c9a84c;
  --gold-light: #e3c97a;
  --gold-deep: #a8862f;
  --green: #1f5132;
  --green-deep: #143a25;
  --green-darker: #11291b;
  --green-light: #2f6b43;
  --cream: #f3efe7;
  --cream-2: #ebe5d9;
  --line-cream: #ddd4c2;
  --text-light: #f6f2ea;
  --text-muted: rgba(246, 242, 234, 0.66);
  --text-faint: rgba(246, 242, 234, 0.4);
  --text-dark: #2a241b;
  --text-dark-muted: #6c6253;
  --line-dark: rgba(201, 168, 76, 0.22);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--sans);
  background: var(--bg-dark);
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 22px;
}
.eyebrow.center { display: block; text-align: center; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: 0.01em; }
.section-title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: var(--text-light);
  margin-bottom: 26px;
}
.section-title em { font-style: italic; color: var(--gold); }
.on-cream .section-title { color: var(--text-dark); }
.on-cream .section-title em { color: var(--gold-deep); }

.lead { font-size: 1.08rem; color: var(--text-muted); max-width: 56ch; }
.on-cream .lead { color: var(--text-dark-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 17px 34px; border: 1px solid transparent; cursor: pointer;
  transition: all 0.4s var(--ease);
}
.btn-gold { background: var(--gold); color: #1a1509; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text-light); border-color: rgba(246,242,234,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.on-cream .btn-outline { color: var(--text-dark); border-color: rgba(42,36,27,0.3); }
.on-cream .btn-outline:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 0;
  background: linear-gradient(180deg, rgba(15,12,8,0.85) 0%, rgba(15,12,8,0) 100%);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(17, 14, 10, 0.94);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
}
.site-header .wrap { max-width: 1340px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.brand-logo { height: 48px; width: auto; display: block; flex: none; }
.footer-brand .brand-logo { height: 64px; }
.monogram {
  width: 46px; height: 46px; flex: none;
  border: 1px solid var(--gold); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: 17px; color: var(--gold);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--text-light); }
.brand-sub { font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 17px; flex: 1; justify-content: center; }
.nav a {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.3s; position: relative; padding: 4px 0; white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--text-light); }
.nav a.active::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: var(--gold);
}
.header-cta { display: flex; align-items: center; gap: 14px; flex: none; }
.header-cta .btn { padding: 12px 20px; font-size: 11px; letter-spacing: 0.12em; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 30px; height: 22px; position: relative; }
.nav-toggle span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--text-light); transition: all 0.3s var(--ease); }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
body.menu-open .nav-toggle span:nth-child(1) { top: 10px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero.hero-sub { min-height: 76vh; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,12,8,0.7) 0%, rgba(15,12,8,0.45) 40%, rgba(15,12,8,0.8) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 150px 28px 96px; max-width: 1040px; }
/* Startseite: extra Luft unten wegen überlappender Buchungsleiste */
.hero:not(.hero-sub) .hero-content { padding-bottom: 150px; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem); color: #fff; line-height: 1.05; margin: 18px 0 26px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero h1 em { font-style: italic; display: block; color: var(--cream); }
.hero-sub-title { font-size: clamp(2.2rem, 6vw, 4rem); }
.hero-divider { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 26px; }
.hero p.tagline { font-size: 1.15rem; color: rgba(255,255,255,0.85); font-weight: 300; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding: 110px 0; }
.on-dark { background: var(--bg-dark); color: var(--text-light); }
.on-dark-2 { background: var(--bg-dark-2); }
.on-cream { background: var(--cream); color: var(--text-dark); }
.section-head { max-width: 680px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head.center .lead { margin: 0 auto; }

/* ---------- Services cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 60px; }
.card {
  position: relative; overflow: hidden; border-radius: 4px;
  background: var(--bg-dark-3); min-height: 460px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--line-dark);
}
.card-img { position: absolute; inset: 0; z-index: 0; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card:hover .card-img img { transform: scale(1.06); }
.card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,12,8,0.1) 0%, rgba(15,12,8,0.85) 100%); }
.card-body { position: relative; z-index: 2; padding: 34px 30px; }
.card-tag { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.card-body h3 { font-size: 1.85rem; color: #fff; margin-bottom: 16px; }
.card-link { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); font-weight: 500; display: inline-flex; gap: 8px; align-items: center; transition: gap 0.3s, color 0.3s; }
.card-link:hover { color: var(--gold); gap: 14px; }

/* ---------- Feature grid (Auf einen Blick) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; border-top: 1px solid var(--line-cream); }
.feature {
  padding: 40px 28px; border-bottom: 1px solid var(--line-cream); border-right: 1px solid var(--line-cream);
}
.feature:nth-child(4n) { border-right: none; }
.feature .num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold-deep); line-height: 1; }
.feature .f-icon { font-family: var(--serif); font-size: 2rem; color: var(--gold-deep); line-height: 1; }
.feature .f-label { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dark-muted); margin: 14px 0 14px; }
.feature h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 12px; }
.feature p { font-size: 0.92rem; color: var(--text-dark-muted); line-height: 1.6; }

/* ---------- Split (text + image) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split.reverse .split-text { order: 2; }
.split-img { position: relative; }
.split-img img { width: 100%; height: 100%; max-height: 560px; object-fit: cover; border-radius: 4px; }
.split-img .img-tag {
  position: absolute; bottom: 22px; left: 22px; background: rgba(15,12,8,0.7); backdrop-filter: blur(6px);
  color: var(--cream); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; padding: 8px 16px; border: 1px solid var(--line-dark);
}
.split-text p { margin-bottom: 18px; }
.split-text .btn { margin-top: 14px; }

blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.7rem; line-height: 1.4;
  color: var(--gold); border-left: 2px solid var(--gold); padding-left: 26px; margin: 30px 0;
}
.on-cream blockquote { color: var(--gold-deep); }

/* ---------- Info / location ---------- */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin-top: 56px; }
.info-block h4 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 600; }
.info-block p, .info-block a { font-size: 0.98rem; color: var(--text-muted); line-height: 1.7; }
.info-block a:hover { color: var(--gold); }

/* ---------- Stacked content rows (subpages) ---------- */
.content-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 70px 0; border-bottom: 1px solid var(--line-cream); }
.content-row:last-child { border-bottom: none; }
.content-row.reverse .cr-text { order: 2; }
.content-row .cr-img img { width: 100%; height: 100%; max-height: 480px; object-fit: cover; border-radius: 4px; }
.content-row h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--text-dark); margin-bottom: 20px; }
.content-row p { color: var(--text-dark-muted); margin-bottom: 16px; }

/* ---------- Event list ---------- */
.event-list { margin-top: 56px; display: flex; flex-direction: column; gap: 0; }
.event-item { padding: 40px 0; border-top: 1px solid var(--line-dark); display: grid; grid-template-columns: 200px 1fr; gap: 40px; }
.event-item:last-child { border-bottom: 1px solid var(--line-dark); }
.event-date { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); font-style: italic; }
.event-body h3 { font-size: 1.7rem; color: var(--text-light); margin-bottom: 14px; }
.event-body p { color: var(--text-muted); font-size: 0.98rem; }
.event-tag { display: inline-block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }

/* ---------- CTA band ---------- */
.cta-band { padding: 96px 0; text-align: center; background: var(--bg-dark-2); border-top: 1px solid var(--line-dark); }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 18px; }
.cta-band p { color: var(--text-muted); max-width: 52ch; margin: 0 auto 34px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 56px; }
.contact-cards { display: grid; gap: 26px; }
.contact-card { padding: 28px 30px; border: 1px solid var(--line-dark); border-radius: 4px; background: var(--bg-dark-2); }
.contact-card h4 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; font-weight: 600; }
.contact-card p, .contact-card a { color: var(--text-muted); font-size: 1rem; }
.contact-card a:hover { color: var(--gold); }
.map-frame { border: 1px solid var(--line-dark); border-radius: 4px; overflow: hidden; min-height: 360px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(0.3) contrast(1.05); }
form .field { margin-bottom: 18px; }
form label { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
form input, form textarea {
  width: 100%; background: var(--bg-dark); border: 1px solid var(--line-dark); color: var(--text-light);
  padding: 14px 16px; font-family: var(--sans); font-size: 0.95rem; border-radius: 3px; transition: border-color 0.3s;
}
form input:focus, form textarea:focus { outline: none; border-color: var(--gold); }
form textarea { min-height: 130px; resize: vertical; }

/* ---------- Footer ---------- */
.site-footer { background: #100d09; padding: 76px 0 30px; border-top: 1px solid var(--line-dark); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line-dark); }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { color: var(--text-muted); font-size: 0.92rem; max-width: 34ch; }
.footer-col h5 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a, .footer-col p { color: var(--text-muted); font-size: 0.92rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-bottom p, .footer-bottom a { font-size: 0.82rem; color: var(--text-faint); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Green section variant ---------- */
.on-green { background: var(--green-deep); color: var(--text-light); }
.on-green .section-title { color: #fff; }
.on-green .section-title em { color: var(--gold-light); }
.on-green .lead { color: rgba(246,242,234,0.75); }
.on-green .eyebrow { color: var(--gold-light); }

/* Footer & CTA in heraldic green */
.site-footer { background: var(--green-darker); border-top-color: rgba(201,168,76,0.28); }
.cta-band { background: var(--green-deep); border-top-color: rgba(201,168,76,0.28); }

/* ---------- Gästemappe ---------- */
.toc {
  position: sticky; top: 86px; z-index: 5; margin-top: 50px;
  background: rgba(20,16,12,0.6); border: 1px solid var(--line-dark); border-radius: 4px;
  padding: 16px 20px; display: flex; flex-wrap: wrap; gap: 10px 20px; backdrop-filter: blur(8px);
}
.toc a { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); transition: color 0.3s; }
.toc a:hover { color: var(--gold); }

.gm-section { scroll-margin-top: 90px; }
.gm-intro { max-width: 70ch; }
.gm-intro p { margin-bottom: 16px; }

.icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.icon-card {
  padding: 30px 26px; border: 1px solid var(--line-dark); border-radius: 4px; background: var(--bg-dark-2);
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.on-cream .icon-card { background: #fff; border-color: var(--line-cream); }
.on-green .icon-card { background: rgba(255,255,255,0.04); border-color: rgba(201,168,76,0.25); }
.icon-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.icon-card .ic { font-size: 1.9rem; line-height: 1; display: block; margin-bottom: 16px; }
.icon-card h3 { font-size: 1.4rem; margin-bottom: 10px; color: inherit; }
.icon-card p { font-size: 0.92rem; opacity: 0.78; line-height: 1.6; }
.icon-card .meta { display: block; margin-top: 12px; font-size: 0.82rem; color: var(--gold); letter-spacing: 0.04em; }
.on-cream .icon-card h3 { color: var(--text-dark); }
.on-cream .icon-card .meta { color: var(--gold-deep); }

.gm-table { width: 100%; border-collapse: collapse; margin-top: 30px; max-width: 640px; }
.gm-table td { padding: 14px 18px; border-bottom: 1px solid var(--line-dark); font-size: 0.96rem; }
.on-cream .gm-table td { border-color: var(--line-cream); }
.gm-table td:first-child { color: var(--gold); font-weight: 500; }
.on-cream .gm-table td:first-child { color: var(--gold-deep); }
.gm-table td:last-child { text-align: right; opacity: 0.85; }

.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 50px; margin-top: 40px; }
.menu-item { padding: 22px 0; border-bottom: 1px solid var(--line-cream); }
.menu-item .cat { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); }
.menu-item h4 { font-family: var(--serif); font-size: 1.35rem; color: var(--text-dark); margin: 6px 0 6px; }
.menu-item p { font-size: 0.9rem; color: var(--text-dark-muted); }

.abc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 50px; margin-top: 40px; }
.abc-item { padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.abc-item h4 { font-family: var(--sans); font-weight: 600; font-size: 0.98rem; color: var(--gold-light); margin-bottom: 6px; letter-spacing: 0.02em; }
.abc-item p { font-size: 0.92rem; color: var(--text-muted); }

.gm-note { margin-top: 26px; font-size: 0.85rem; color: var(--text-faint); font-style: italic; font-family: var(--serif); }

@media (max-width: 760px) {
  .icon-grid { grid-template-columns: 1fr; }
  .menu-grid, .abc-grid { grid-template-columns: 1fr; gap: 0; }
  .toc { position: static; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
  transition-delay: var(--d, 0s); will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal-left { transform: translateX(-42px); }
.reveal-right { transform: translateX(42px); }
.reveal-scale { transform: scale(0.94); }
.reveal-blur { filter: blur(10px); }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 54px; }
.gallery a, .gallery .g-item { display: block; overflow: hidden; border-radius: 4px; position: relative; aspect-ratio: 4/3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery .g-item:hover img { transform: scale(1.07); }
.gallery .g-tall { aspect-ratio: 3/4; grid-row: span 2; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } .gallery .g-tall { grid-row: span 1; aspect-ratio: 4/3; } }
@media (max-width: 460px) { .gallery { grid-template-columns: 1fr; } }

/* ---------- Raumaufteilung ---------- */
.room-layout { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 46px; margin-top: 44px; }
.room-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line-cream); }
.on-dark .room-row, .on-green .room-row { border-color: var(--line-dark); }
.room-row .r-name { font-family: var(--serif); font-size: 1.2rem; color: var(--text-dark); }
.on-dark .room-row .r-name, .on-green .room-row .r-name { color: var(--text-light); }
.room-row .r-size { font-size: 0.9rem; letter-spacing: 0.06em; color: var(--gold-deep); font-weight: 500; white-space: nowrap; }
.on-dark .room-row .r-size, .on-green .room-row .r-size { color: var(--gold-light); }
@media (max-width: 640px) { .room-layout { grid-template-columns: 1fr; gap: 0; } }

/* ---------- Highlights-Liste (Was uns besonders macht) ---------- */
.highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 48px; margin-top: 52px; }
.hl-item {
  display: flex; gap: 18px; align-items: flex-start; padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}
.on-cream .hl-item { border-color: var(--line-cream); }
.hl-item .hl-ic { font-size: 1.5rem; line-height: 1.2; flex: none; width: 34px; text-align: center; transition: transform 0.4s var(--ease); }
.hl-item:hover .hl-ic { transform: scale(1.2) rotate(-5deg); }
.hl-item .hl-txt strong { display: block; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--text-light); margin-bottom: 3px; }
.on-cream .hl-item .hl-txt strong { color: var(--text-dark); }
.hl-item .hl-txt span { font-size: 0.92rem; color: var(--text-muted); }
.on-cream .hl-item .hl-txt span { color: var(--text-dark-muted); }

/* ---------- Restaurant-Emblem (Wappen) ---------- */
.emblem-block { text-align: center; margin-bottom: 46px; }
.emblem-block img { height: 130px; width: auto; margin: 0 auto 8px; display: block; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35)); animation: emblemFloat 5s ease-in-out infinite; }
@keyframes emblemFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 760px) {
  .highlights { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Direkt-Buchen-Widget ---------- */
.booking-float { position: relative; z-index: 8; margin-top: -52px; }
.booking-wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.booking-bar {
  background: rgba(20,16,12,0.92); backdrop-filter: blur(14px);
  border: 1px solid var(--line-dark); border-radius: 6px;
  box-shadow: 0 26px 60px -24px rgba(0,0,0,0.7);
  display: grid; grid-template-columns: 1.1fr 1.1fr 1fr auto; gap: 0;
  overflow: hidden;
}
.booking-bar.inline { position: static; }
.bk-field { display: flex; flex-direction: column; justify-content: center; padding: 22px 30px; border-right: 1px solid var(--line-dark); position: relative; }
.bk-field label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 600; }
.bk-field input, .bk-field select {
  background: transparent; border: none; color: var(--text-light);
  font-family: var(--sans); font-size: 1.02rem; padding: 3px 0; width: 100%; cursor: pointer;
}
.bk-field input:focus, .bk-field select:focus { outline: none; }
.bk-field input::-webkit-calendar-picker-indicator { filter: invert(0.8) sepia(1) saturate(3) hue-rotate(5deg); cursor: pointer; }
.bk-field select option { background: var(--bg-dark-2); color: var(--text-light); }
.booking-bar .btn { border-radius: 0; height: 100%; padding: 22px 40px; white-space: nowrap; }
.booking-note { text-align: center; font-size: 0.8rem; color: var(--text-faint); margin-top: 14px; }
.booking-note::before { content: '🔒 '; }

/* On-cream / on-green variant of the booking bar (used on Kontakt page section) */
.on-cream .booking-bar { background: #fff; border-color: var(--line-cream); box-shadow: 0 20px 50px -26px rgba(0,0,0,0.25); }
.on-cream .booking-bar .bk-field { border-color: var(--line-cream); }
.on-cream .booking-bar .bk-field input, .on-cream .booking-bar .bk-field select { color: var(--text-dark); }
.on-cream .booking-bar .bk-field input::-webkit-calendar-picker-indicator { filter: none; }

@media (max-width: 820px) {
  .booking-float { margin-top: -30px; }
  .booking-bar { grid-template-columns: 1fr 1fr; }
  .bk-field:nth-child(2) { border-right: none; }
  .bk-field:nth-child(3) { border-right: none; }
  .booking-bar .btn { grid-column: 1 / -1; border-top: 1px solid var(--line-dark); }
  .on-cream .booking-bar .btn { border-top: 1px solid var(--line-cream); }
}
@media (max-width: 480px) {
  .booking-bar { grid-template-columns: 1fr; }
  .bk-field { border-right: none; border-bottom: 1px solid var(--line-dark); }
}

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  z-index: 200; transition: width 0.1s linear; box-shadow: 0 0 12px rgba(201,168,76,0.6);
}

/* ---------- Hero Ken-Burns + staggered entrance ---------- */
.hero-bg img { animation: kenburns 24s ease-in-out infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.1) translateY(-1.5%); }
}
.hero-content > * { opacity: 0; animation: heroUp 1s var(--ease) forwards; }
.hero-content > *:nth-child(1) { animation-delay: 0.15s; }
.hero-content > *:nth-child(2) { animation-delay: 0.32s; }
.hero-content > *:nth-child(3) { animation-delay: 0.5s; }
.hero-content > *:nth-child(4) { animation-delay: 0.66s; }
.hero-content > *:nth-child(5) { animation-delay: 0.82s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.hero-divider { transform-origin: center; animation: heroLine 1s var(--ease) 0.5s forwards; }
@keyframes heroLine { from { opacity: 0; width: 0; } to { opacity: 1; width: 60px; } }

/* Floating scroll cue in hero */
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 1px solid rgba(246,242,234,0.5); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 8px; opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}
.scroll-cue::before { content: ''; width: 3px; height: 8px; border-radius: 2px; background: var(--gold-light); animation: cueMove 1.8s ease-in-out infinite; }
@keyframes cueMove { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0.3; } }
@keyframes fadeIn { to { opacity: 1; } }

/* ---------- Button gloss sweep ---------- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left 0.6s var(--ease);
}
.btn:hover::after { left: 130%; }
.btn-gold:hover { box-shadow: 0 10px 30px -8px rgba(201,168,76,0.6); }

/* ---------- Nav underline grow ---------- */
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav a.active::after { transform: scaleX(1); }

/* ---------- Micro-interactions ---------- */
.brand-logo { transition: transform 0.5s var(--ease); }
.brand:hover .brand-logo { transform: scale(1.06) rotate(-1deg); }
.icon-card .ic { transition: transform 0.45s var(--ease); display: inline-block; }
.icon-card:hover .ic { transform: translateY(-4px) scale(1.12); }
.contact-card { transition: transform 0.4s var(--ease), border-color 0.4s; }
.contact-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.event-item { transition: background 0.4s var(--ease); }
.event-item:hover { background: rgba(201,168,76,0.05); }
.split-img img, .cr-img img { transition: transform 0.9s var(--ease); }
.split-img:hover img, .cr-img:hover img { transform: scale(1.04); }
.feature { transition: background 0.4s var(--ease); }
.feature:hover { background: rgba(201,168,76,0.06); }

/* ---------- Section title underline draw ---------- */
.section-title { position: relative; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.01s !important; }
  .hero-bg img { animation: none; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .nav, .header-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(80vw, 340px);
    background: var(--bg-dark-2); flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 0 40px; gap: 26px; transform: translateX(100%); transition: transform 0.5s var(--ease);
    border-left: 1px solid var(--line-dark); z-index: 110;
  }
  body.menu-open .nav { display: flex; transform: translateX(0); }
  .nav a { font-size: 15px; }
  .cards-3 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(4n) { border-right: 1px solid var(--line-cream); }
  .feature:nth-child(2n) { border-right: none; }
  .split, .content-row, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-text, .content-row.reverse .cr-text { order: 0; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .event-item { grid-template-columns: 1fr; gap: 14px; }
  .section-pad { padding: 80px 0; }
}
@media (max-width: 560px) {
  .feature-grid, .info-grid, .footer-top { grid-template-columns: 1fr; }
  .feature:nth-child(2n) { border-right: 1px solid var(--line-cream); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .wrap { padding: 0 20px; }
}

/* ===================================================================
   MOBILE-FEINSCHLIFF
   =================================================================== */

/* Tablet & darunter: kompakterer Header */
@media (max-width: 780px) {
  .site-header { padding: 14px 0; }
  .site-header.scrolled { padding: 10px 0; }
  .brand-logo { height: 42px; }
  .footer-brand .brand-logo { height: 54px; }
  .brand-name { font-size: 1.1rem; }
  .header-cta .btn { padding: 11px 18px; font-size: 11px; letter-spacing: 0.12em; }
  .section-pad { padding: 66px 0; }
  .cta-band { padding: 72px 0; }
}

/* Smartphone */
@media (max-width: 560px) {
  html { font-size: 15.5px; }
  /* Hero: sichere Höhe trotz Browserleisten, kein Abschneiden */
  .hero { min-height: 88vh; min-height: 88svh; }
  .hero.hero-sub { min-height: 60vh; min-height: 60svh; }
  .hero-content { padding: 104px 22px 64px; }
  .hero p.tagline { font-size: 1.02rem; }
  .hero-actions .btn { width: 100%; }
  .eyebrow { font-size: 11px; letter-spacing: 0.22em; margin-bottom: 16px; }
  .section-title { margin-bottom: 20px; }
  .lead { font-size: 1rem; }

  /* Direkt-Buchen ragt weniger ins Bild */
  .booking-float { margin-top: -18px; }
  .booking-wrap { padding: 0 16px; }

  /* Karten & Bilder */
  .card { min-height: 400px; }
  .cards-3 { margin-top: 40px; }
  .split-img img, .cr-img img { max-height: 420px; }
  .emblem-block img { height: 104px; }

  /* Buttons überall gut tappbar */
  .btn { padding: 15px 26px; min-height: 48px; }

  /* Tabellen & Listen */
  .gm-table { max-width: 100%; }
  .gm-table td { padding: 12px 12px; font-size: 0.92rem; }
  .toc { gap: 8px 14px; padding: 14px 16px; }
  .toc a { font-size: 10.5px; }

  /* Kontakt / Formular */
  .map-frame, .map-frame iframe { min-height: 300px; }
  .contact-cards { gap: 16px; }

  /* Footer sauber gestapelt */
  .footer-top { gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: left; }
}

/* Sehr kleine Geräte */
@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  .brand-sub { font-size: 8.5px; letter-spacing: 0.2em; }
  .brand-name { font-size: 1rem; }
  .header-cta .btn { padding: 10px 14px; }
  .hero h1 { margin: 14px 0 22px; }
  .feature { padding: 30px 20px; }
  .icon-card { padding: 24px 20px; }
}

/* Touch-Geräte: Hover-Zoom neutralisieren (kein „Hängenbleiben") */
@media (hover: none) {
  .card:hover .card-img img,
  .split-img:hover img, .cr-img:hover img,
  .gallery .g-item:hover img { transform: none; }
  .btn:hover::after { left: -120%; }
}

/* ========== Rechtstexte ========== */
.legal-text { max-width: 780px; }
.legal-text h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--green-deep); margin: 38px 0 12px; }
.legal-text h3:first-child { margin-top: 0; }
.legal-text p { color: #4a453c; line-height: 1.75; margin-bottom: 14px; }
.legal-text a { color: var(--gold-deep); }

/* ========== Google-Maps-Consent ========== */
.map-consent { display: flex; align-items: center; justify-content: center; background: #1b1712; border: 1px solid rgba(201,168,76,0.25); min-height: 340px; }
.map-consent-inner { text-align: center; padding: 40px 28px; }
.mc-pin { font-size: 2rem; display: block; margin-bottom: 14px; }
.map-consent-inner p { color: rgba(243,239,231,0.75); line-height: 1.7; margin-bottom: 22px; font-size: 0.95rem; }
.map-consent-inner a { color: var(--gold); }

/* ========== FAQ ========== */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid rgba(201,168,76,0.22); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px 4px; font-family: var(--serif); font-size: 1.25rem; color: var(--cream); transition: color 0.25s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--sans); font-size: 1.3rem; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq details[open] summary { color: var(--gold); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: rgba(243,239,231,0.72); line-height: 1.75; padding: 0 4px 24px; max-width: 700px; }
.faq summary:hover { color: var(--gold); }

/* ========== Bewertungen ========== */
.rating-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
.rating-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; background: #fff; border: 1px solid rgba(20,58,37,0.12); padding: 38px 26px; text-decoration: none; transition: transform 0.3s, box-shadow 0.3s; }
.rating-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -24px rgba(20,17,13,0.35); }
.rc-score { font-family: var(--serif); font-size: 2.6rem; color: var(--green-deep); line-height: 1; }
.rc-score small { font-size: 1.1rem; color: rgba(20,58,37,0.55); }
.rc-label { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-top: 8px; }
.rc-sub { font-size: 0.88rem; color: #6b6558; }

/* ========== Button-Reihe ========== */
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 760px) {
  .rating-cards { grid-template-columns: 1fr; gap: 16px; }
  .faq summary { font-size: 1.1rem; }
  .map-consent { min-height: 280px; }
}
