
/* ══════════════════════════════════════════════
   DESIGN-SYSTEM / CSS-VARIABLEN
══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gruen:        #2E5A44;
  --gruen-hell:   #3D7A5C;
  --gruen-bg:     #EEF4F1;
  --creme:        #F7F3ED;
  --sand:         #EAE4DB;
  --sand-dunkel:  #D6CEBF;
  --gold:         #C8A97A;
  --gold-dunkel:  #A8885A;
  --rot:          #C0392B;
  --text-dunkel:  #1A1A1A;
  --text-mittel:  #4A4A4A;
  --text-hell:    #767676;
  --weiss:        #ffffff;
  --font-serif:   Georgia, 'Times New Roman', serif;
  --font-sans:    system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --radius:       6px;
  --radius-lg:    10px;
  --shadow-nav:   0 2px 12px rgba(0,0,0,0.10);
  --transition:   0.22s ease;
  --max-w:        1060px;
}

html { scroll-behavior: smooth; }

/* Keine automatische Silbentrennung */
* { hyphens: none; -webkit-hyphens: none; -ms-hyphens: none; }

body {
  font-family: var(--font-sans);
  background: var(--creme);
  color: var(--text-dunkel);
  line-height: 1.6;
}

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

/* ══════════════════════════════════════════════
   BARRIEREFREIHEIT
══════════════════════════════════════════════ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--gruen); color: var(--weiss);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none; z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

*:focus-visible {
  outline: 2px solid var(--gruen);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ══════════════════════════════════════════════
   HEADER / NAVIGATION
══════════════════════════════════════════════ */
#site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,243,237,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
#site-header.scrolled {
  border-bottom-color: var(--sand);
  box-shadow: var(--shadow-nav);
  background: var(--creme);
}

.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 1.25rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}

.logo { display: flex; flex-direction: column; text-decoration: none; gap: 1px; line-height: 1.1; }
.logo-name { font-family: var(--font-serif); font-size: 1.2rem; color: var(--gruen); font-weight: normal; letter-spacing: 0.01em; }
.logo-ort  { font-size: 0.72rem; color: var(--gold-dunkel); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }

nav[aria-label="Hauptnavigation"] { display: flex; align-items: center; gap: 0.25rem; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 0.1rem; }
.nav-links a {
  display: inline-block; padding: 0.45rem 0.6rem;
  font-size: 0.825rem; white-space: nowrap; font-weight: 500; color: var(--text-mittel);
  text-decoration: none; border-radius: var(--radius); position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 3px;
  left: 0.75rem; right: 0.75rem; height: 1.5px;
  background: var(--gruen); transform: scaleX(0);
  transform-origin: left center; transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gruen); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 0.75rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: var(--gruen); color: var(--weiss);
  font-size: 0.85rem; font-weight: 600;
  text-decoration: none; border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--gruen-hell); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; width: 40px; height: 40px;
  background: none; border: 1.5px solid var(--sand);
  border-radius: var(--radius); cursor: pointer; padding: 0;
  transition: border-color var(--transition);
}
.hamburger:hover { border-color: var(--gruen); }
.hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text-mittel); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gruen); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gruen); }

.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--creme); border-bottom: 1px solid var(--sand);
  box-shadow: var(--shadow-nav); padding: 1rem 1.25rem 1.5rem;
  animation: slideDown 0.2s ease;
}
@keyframes slideDown { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.mobile-menu.open { display: block; }
.mobile-nav-list { list-style: none; margin: 0 0 1rem; }
.mobile-nav-list li { border-bottom: 1px solid var(--sand); }
.mobile-nav-list a {
  display: block; padding: 0.85rem 0.25rem;
  font-size: 1rem; font-weight: 500; color: var(--text-mittel);
  text-decoration: none; transition: color var(--transition), padding-left var(--transition);
}
.mobile-nav-list a:hover, .mobile-nav-list a[aria-current="page"] { color: var(--gruen); padding-left: 0.5rem; }
.mobile-cta {
  display: block; text-align: center; padding: 0.75rem;
  background: var(--gruen); color: var(--weiss);
  font-weight: 600; font-size: 0.9rem;
  border-radius: var(--radius); text-decoration: none; margin-top: 0.75rem;
  transition: background var(--transition);
}
.mobile-cta:hover { background: var(--gruen-hell); }

/* ══════════════════════════════════════════════
   GEMEINSAME LAYOUT-HELFER
══════════════════════════════════════════════ */
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dunkel); font-weight: 700; margin-bottom: 0.75rem; display: block;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: normal; color: var(--gruen); margin-bottom: 0.5rem;
}
.section-sub { font-size: 0.88rem; color: var(--text-hell); line-height: 1.7; margin-bottom: 2.75rem; }

/* Vollbreiten-Sektionen: Wrapper zentrieren, Tabellen/Cards/Listen davon ausnehmen */
.preise-section .section-inner,
.extras-section .section-inner,
.ausflug-section .section-inner,
.anfahrt-section .section-inner,
.kurort-section .section-inner { text-align: center; }

/* Inhalte in diesen Sektionen wieder linksbündig */
.preise-section .preise-table,
.preise-section .kurtaxe-box,
.preise-section .preise-hinweis,
.preise-section .preise-table-wrap,
.extras-section .extras-grid,
.extras-section .extra-card,
.extras-section .extra-card h3,
.extras-section .extra-card p,
.ausflug-section .ausflug-grid,
.ausflug-section .ausflug-card,
.anfahrt-section .anfahrt-grid,
.anfahrt-section .anfahrt-card,
.anfahrt-section .map-placeholder,
.kurort-section .kurort-grid,
.kurort-section .kurort-card { text-align: left; }

/* Kurtaxe-Box selbst: zentriert ausrichten */
.kurtaxe-box { text-align: center; }
.kurtaxe-box h4 { text-align: center; }
.kurtaxe-item { text-align: center; }

/* Preishinweis: zentriert mit max-width */
.preise-hinweis { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; margin-top: 1.25rem; font-size: 0.78rem; color: var(--text-hell); line-height: 1.8; }
.preise-hinweis strong { color: var(--text-mittel); }

/* Preistabelle selbst: zentriert platzieren, Inhalt links */
.preise-table-wrap { overflow-x: auto; margin-top: 2.5rem; }
.btn-primary {
  display: inline-block; padding: 0.8rem 1.8rem;
  background: var(--gruen); color: var(--weiss);
  font-size: 0.88rem; font-weight: 600; border-radius: var(--radius);
  text-decoration: none; letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gruen-hell); transform: translateY(-1px); }

.btn-outline {
  display: inline-block; padding: 0.8rem 1.8rem;
  border: 1.5px solid var(--gruen); color: var(--gruen);
  font-size: 0.88rem; font-weight: 600; border-radius: var(--radius);
  text-decoration: none; letter-spacing: 0.02em;
  transition: background var(--transition);
}
.btn-outline:hover { background: rgba(46,90,68,0.07); }

.btn-gold {
  display: inline-block; padding: 0.85rem 2rem;
  background: var(--gold); color: #2A1A00;
  font-size: 0.9rem; font-weight: 700; border-radius: var(--radius);
  text-decoration: none; transition: background var(--transition), transform var(--transition);
}
.btn-gold:hover { background: #dbbe8e; transform: translateY(-1px); }

/* ══════════════════════════════════════════════
   STARTSEITE – HERO
══════════════════════════════════════════════ */
.hero {
  background: var(--gruen-bg);
  min-height: 520px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 5rem 1.5rem 4rem;
  position: relative; overflow: hidden;
}
/* hero-bg desktop override */
@media (min-width: 769px) {
  .hero-bg {
    background-size: 100% 100%;
    background-position: center center;
  }
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/haus1.jpg');
  background-size: cover; background-position: center 72%;
  filter: brightness(0.38);
}
.hero-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(20,45,32,0.55) 0%, rgba(20,45,32,0.35) 60%, rgba(20,45,32,0.65) 100%);
}
.hero-eyebrow { color: var(--gold) !important; background: rgba(200,169,122,0.18) !important; }
.hero h1 { color: var(--weiss) !important; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.hero-sub { color: rgba(255,255,255,0.85) !important; }
.hero-eyebrow {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-dunkel); font-weight: 700;
  background: rgba(200,169,122,0.14); padding: 0.35rem 1rem;
  border-radius: 99px; margin-bottom: 1.25rem; position: relative;
}
.hero h1 {
  font-family: var(--font-serif); font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: normal; color: var(--gruen); line-height: 1.18;
  max-width: 660px; margin: 0 auto 1.1rem; position: relative;
}
.hero-sub {
  font-size: 1.05rem; color: var(--text-mittel);
  max-width: 500px; margin: 0 auto 2.25rem; line-height: 1.75; position: relative;
}
.hero-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* PILLARS */
.pillars {
  background: var(--gruen);
  display: flex; justify-content: center; flex-wrap: wrap;
}
.pillar {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.8rem;
  color: rgba(255,255,255,0.88); font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.06em;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.pillar:last-child { border-right: none; }
.pillar svg { opacity: 0.7; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   STARTSEITE – WILLKOMMEN
══════════════════════════════════════════════ */
.willkommen-section { padding: 5rem 1.5rem; }
.willkommen-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.willkommen-grid h2 {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: normal; color: var(--gruen); line-height: 1.25; margin-bottom: 1.25rem;
}
.willkommen-grid p { font-size: 0.95rem; color: var(--text-mittel); line-height: 1.8; margin-bottom: 1rem; }
.signature-line { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.5rem; }
.sig-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gruen); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.sig-name { font-size: 0.875rem; font-weight: 600; color: var(--text-dunkel); }
.sig-role { font-size: 0.78rem; color: var(--text-hell); }

.visual-block { display: flex; flex-direction: column; gap: 1rem; }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: var(--weiss); border: 1px solid var(--sand);
  border-radius: var(--radius-lg); padding: 1.4rem 1.2rem; text-align: center;
}
.stat-num {
  font-family: var(--font-serif); font-size: 2.2rem;
  color: var(--gruen); line-height: 1; display: block; margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.75rem; color: var(--text-hell); letter-spacing: 0.06em; text-transform: uppercase; }
.quote-card {
  background: var(--gruen); border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem; position: relative;
}
.quote-mark {
  font-family: var(--font-serif); font-size: 4rem; line-height: 0.5;
  color: rgba(255,255,255,0.2); position: absolute; top: 1.2rem; left: 1.4rem;
}
.quote-card .quote-text {
  font-family: var(--font-serif); font-size: 1rem;
  color: var(--weiss); line-height: 1.65;
  font-style: italic; position: relative; z-index: 1; padding-left: 1rem;
}
.quote-author {
  font-size: 0.75rem; color: var(--gold);
  margin-top: 0.75rem; display: block; position: relative; z-index: 1; padding-left: 1rem;
}

/* HAUS-GALERIE */
.haus-galerie { display: flex; flex-direction: column; gap: 0.6rem; }
.haus-galerie-main {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--sand);
}
.haus-galerie-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.3s ease;
  display: block;
}
.haus-galerie-thumbs { display: flex; gap: 0.6rem; }
.galerie-thumb {
  flex: 1; aspect-ratio: 4/3; border-radius: var(--radius);
  overflow: hidden; border: 2px solid transparent;
  padding: 0; background: none; cursor: pointer;
  transition: border-color var(--transition), opacity var(--transition);
  opacity: 0.65;
}
.galerie-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.galerie-thumb:hover { opacity: 0.9; }
.galerie-thumb.active { border-color: var(--gruen); opacity: 1; }
.galerie-thumb:focus-visible { outline: 2px solid var(--gruen); outline-offset: 2px; }


══════════════════════════════════════════════ */
.vorteile-section { background: var(--sand); padding: 5rem 1.5rem; }
.vorteile-header { text-align: center; max-width: 560px; margin: 0 auto 3.5rem; }
.vorteile-header h2 {
  font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: normal; color: var(--gruen); margin-bottom: 0.75rem;
}
.vorteile-header p { font-size: 0.9rem; color: var(--text-mittel); line-height: 1.75; }
.vorteile-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem;
}
.vorteil-card {
  background: var(--weiss); border-radius: var(--radius-lg);
  padding: 1.75rem 1.4rem; border: 1px solid var(--sand-dunkel);
  flex: 0 0 calc(25% - 0.95rem); min-width: 220px;
}
.vorteil-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gruen-bg);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.vorteil-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-dunkel); margin-bottom: 0.45rem; }
.vorteil-card p { font-size: 0.85rem; color: var(--text-hell); line-height: 1.7; }

/* ══════════════════════════════════════════════
   STARTSEITE – BEWERTUNGEN
══════════════════════════════════════════════ */
.bewertungen-section { padding: 5rem 1.5rem; }
.bew-header { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.bew-header h2 {
  font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: normal; color: var(--gruen); margin-bottom: 0.75rem;
}
.bew-header p { font-size: 0.88rem; color: var(--text-hell); line-height: 1.7; }
.google-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--weiss); border: 1px solid var(--sand-dunkel);
  border-radius: var(--radius-lg); padding: 0.8rem 1.25rem;
  text-decoration: none; transition: border-color var(--transition);
}
.google-badge:hover { border-color: var(--gruen); }
.google-logo { display: flex; align-items: center; gap: 3px; font-size: 1.05rem; font-weight: 700; }
.g-blue{color:#4285F4} .g-red{color:#EA4335} .g-yellow{color:#FBBC05} .g-green{color:#34A853}
.badge-text { font-size: 0.82rem; color: var(--text-mittel); line-height: 1.3; }
.badge-text strong { display: block; color: var(--text-dunkel); font-size: 0.88rem; }

/* ══════════════════════════════════════════════
   STARTSEITE – CTA BANNER
══════════════════════════════════════════════ */
.cta-banner { background: var(--gruen); padding: 4rem 1.5rem; text-align: center; }
.cta-banner h2 {
  font-family: var(--font-serif); font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: normal; color: var(--weiss); margin-bottom: 0.75rem;
}
.cta-banner p { font-size: 0.9rem; color: rgba(255,255,255,0.75); max-width: 440px; margin: 0 auto 2rem; line-height: 1.7; }
.cta-tel { display: block; margin-top: 1rem; color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.cta-tel a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 600; }
.cta-tel a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════
   ZIMMER & PREISE
══════════════════════════════════════════════ */
.page-header {
  padding: 4rem 1.5rem 3.5rem; text-align: center;
  border-bottom: 1px solid var(--sand);
}
.page-header.gruen-bg { background: var(--gruen-bg); }
.page-header.gruen    { background: var(--gruen); }
.page-header h1 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: normal; line-height: 1.2; margin-bottom: 0.75rem;
}
.page-header.gruen-bg h1 { color: var(--gruen); }
.page-header.gruen h1    { color: var(--weiss); }
.page-header.gruen-bg p  { color: var(--text-mittel); }
.page-header.gruen p     { color: rgba(255,255,255,0.75); }
.page-header p { font-size: 0.95rem; max-width: 560px; margin: 0 auto; line-height: 1.75; }

.hinweis-strip {
  background: var(--gruen);
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; padding: 0.75rem 1.5rem; flex-wrap: wrap;
}
.hinweis-item {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.88); letter-spacing: 0.03em;
}
.hinweis-item svg { opacity: 0.7; flex-shrink: 0; }

/* KURORTFÜHRER-BOX */
.kurortfuehrer-box {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--weiss); border: 1px solid var(--sand);
  border-left: 3px solid var(--gruen);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  margin-bottom: 0.5rem;
}
.kurortfuehrer-box svg { flex-shrink: 0; margin-top: 2px; }
.kf-title { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dunkel); font-weight: 700; margin-bottom: 0.5rem; }
.kurortfuehrer-box p { font-size: 0.84rem; color: var(--text-mittel); line-height: 1.75; margin: 0; }

.zimmer-section { padding: 4.5rem 1.5rem; }
.zimmer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem; margin-bottom: 3rem;
}
.zimmer-card {
  background: var(--weiss); border: 1px solid var(--sand);
  border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
}
.zimmer-card.featured { border: 2px solid var(--gruen); }
.zimmer-card-top { background: var(--gruen-bg); padding: 2rem 1.75rem 1.5rem; position: relative; }
.zimmer-card.featured .zimmer-card-top { background: var(--gruen); }
.zimmer-badge {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; padding: 0.3rem 0.7rem; border-radius: 99px;
  background: var(--gold); color: #3A2A10;
}
.zimmer-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(46,90,68,0.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.zimmer-card.featured .zimmer-icon-wrap { background: rgba(255,255,255,0.15); }
.zimmer-card-top h2 {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: normal;
  color: var(--gruen); margin-bottom: 0.25rem;
}
.zimmer-card.featured .zimmer-card-top h2 { color: var(--weiss); }
.zimmer-belegs { font-size: 0.78rem; color: var(--text-hell); }
.zimmer-card.featured .zimmer-belegs { color: rgba(255,255,255,0.6); }
.zimmer-preis-row { display: flex; align-items: flex-end; gap: 0.4rem; margin-top: 1rem; }
.zimmer-preis { font-family: var(--font-serif); font-size: 1.9rem; color: var(--gruen); line-height: 1; }
.zimmer-card.featured .zimmer-preis { color: var(--gold); }
.zimmer-preis-unit { font-size: 0.75rem; color: var(--text-hell); padding-bottom: 3px; }
.zimmer-card.featured .zimmer-preis-unit { color: rgba(255,255,255,0.55); }
.zimmer-card-body { padding: 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.ausstattung-label {
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-dunkel); font-weight: 700; margin-bottom: 0.85rem;
}
.ausstattung-list { list-style: none; margin: 0 0 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.ausstattung-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.84rem; color: var(--text-mittel); }
.ausstattung-list li svg { flex-shrink: 0; color: var(--gruen); }
.zimmer-hinweis {
  font-size: 0.8rem; color: var(--text-hell); line-height: 1.65;
  background: var(--gruen-bg); border-radius: var(--radius);
  padding: 0.75rem 0.9rem; margin-bottom: 1.25rem;
}
.zimmer-hinweis strong { color: var(--gruen); font-size: 0.78rem; }
.btn-zimmer {
  display: block; text-align: center; padding: 0.7rem 1rem;
  background: var(--gruen); color: var(--weiss);
  font-size: 0.83rem; font-weight: 600; border-radius: var(--radius);
  text-decoration: none; margin-top: auto;
  transition: background var(--transition), transform var(--transition);
}
.btn-zimmer:hover { background: var(--gruen-hell); transform: translateY(-1px); }
.btn-zimmer.outline { background: transparent; border: 1.5px solid var(--gruen); color: var(--gruen); }
.btn-zimmer.outline:hover { background: var(--gruen-bg); }

/* PREISTABELLE */
.preise-section { background: var(--sand); padding: 4.5rem 1.5rem; }
.preise-table-wrap { overflow-x: auto; margin-top: 2.5rem; }
.preise-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; min-width: 560px; }
.preise-table th {
  background: var(--gruen); color: rgba(255,255,255,0.92);
  padding: 0.85rem 1.1rem; text-align: left;
  font-weight: 600; font-size: 0.78rem; letter-spacing: 0.04em;
}
.preise-table td {
  padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--sand-dunkel);
  color: var(--text-mittel); background: var(--weiss);
}
.preise-table tr:last-child td { border-bottom: none; }
.preise-table td:first-child { font-weight: 600; color: var(--text-dunkel); }
.preis-highlight { color: var(--gruen); font-weight: 700; }
.preise-hinweis { margin-top: 1.25rem; font-size: 0.78rem; color: var(--text-hell); line-height: 1.8; }
.preise-hinweis strong { color: var(--text-mittel); }
.kurtaxe-box {
  margin-top: 1.5rem; background: var(--weiss);
  border: 1px solid var(--sand-dunkel); border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem; display: flex; gap: 2rem; flex-wrap: wrap; align-items: flex-start; justify-content: center;
}
.kurtaxe-box h4 {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dunkel); font-weight: 700; margin-bottom: 0.6rem; width: 100%;
}
.kurtaxe-item { font-size: 0.83rem; color: var(--text-mittel); }
.kurtaxe-item span { display: block; font-size: 1rem; font-weight: 700; color: var(--gruen); margin-top: 2px; }

/* EXTRAS */
.extras-section { padding: 4.5rem 1.5rem; }
.extras-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.extra-card {
  background: var(--weiss); border: 1px solid var(--sand);
  border-radius: var(--radius-lg); padding: 1.5rem 1.4rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.extra-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gruen-bg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.extra-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--text-dunkel); margin-bottom: 0.3rem; }
.extra-card p { font-size: 0.8rem; color: var(--text-hell); line-height: 1.65; }

/* GESCHICHTE TEASER */
.geschichte-teaser { background: var(--gruen); padding: 4.5rem 1.5rem; }
.geschichte-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
}
.geschichte-teaser h2 {
  font-family: var(--font-serif); font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: normal; color: var(--weiss); margin-bottom: 1rem;
}
.geschichte-teaser p { font-size: 0.88rem; color: rgba(255,255,255,0.78); line-height: 1.8; margin-bottom: 0.75rem; }
.btn-ghost {
  display: inline-block; margin-top: 0.5rem;
  padding: 0.7rem 1.4rem; border: 1.5px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.88); font-size: 0.83rem; font-weight: 600;
  border-radius: var(--radius); text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); }
.geschichte-facts { display: flex; flex-direction: column; gap: 1rem; }
.fact-item {
  background: rgba(255,255,255,0.08); border-radius: var(--radius-lg);
  padding: 1.1rem 1.3rem; border-left: 3px solid var(--gold);
}
.fact-year { font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold); display: block; margin-bottom: 0.2rem; }
.fact-text { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* GESCHICHTE BILDER */
.geschichte-bilder { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.gesch-bild { flex: 1; margin: 0; }
.gesch-bild img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius); display: block;
  border: 1px solid rgba(255,255,255,0.12);
}
.gesch-bild figcaption {
  font-size: 0.68rem; color: rgba(255,255,255,0.5);
  margin-top: 0.4rem; line-height: 1.4;
}


══════════════════════════════════════════════ */
.umgebung-header { background: var(--gruen); padding: 4.5rem 1.5rem 4rem; text-align: center; }
.umgebung-header h1 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: normal; color: var(--weiss); margin-bottom: 0.85rem; line-height: 1.2;
}
.umgebung-header p { font-size: 0.95rem; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; line-height: 1.8; }

.intro-2col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
  max-width: var(--max-w); margin: 0 auto; padding: 4.5rem 1.5rem;
}
.intro-2col h2 {
  font-family: var(--font-serif); font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: normal; color: var(--gruen); margin-bottom: 1rem;
}
.intro-2col p { font-size: 0.9rem; color: var(--text-mittel); line-height: 1.8; margin-bottom: 0.9rem; }
.entf-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dunkel); font-weight: 700; margin-bottom: 0.5rem; display: block; margin-top: 1.5rem; }
.entf-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 0; border-bottom: 1px solid var(--sand); font-size: 0.84rem;
}
.entf-item:last-child { border-bottom: none; }
.entf-km { font-size: 0.78rem; font-weight: 700; color: var(--gruen); background: var(--gruen-bg); padding: 0.2rem 0.55rem; border-radius: 99px; }
.staedte-box { background: var(--weiss); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 1.5rem; }
.staedte-box h3 { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dunkel); font-weight: 700; margin-bottom: 1rem; }
.stadt-item { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0; border-bottom: 1px solid var(--sand); font-size: 0.85rem; }
.stadt-item:last-child { border-bottom: none; }
.stadt-name { font-weight: 600; color: var(--text-dunkel); }
.stadt-info { font-size: 0.75rem; color: var(--text-hell); }
.stadt-dist { font-size: 0.78rem; color: var(--gruen); font-weight: 700; }

.ausflug-section { background: var(--sand); padding: 4.5rem 1.5rem; }
.ausflug-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.ausflug-card {
  background: var(--weiss); border-radius: var(--radius-lg);
  border: 1px solid var(--sand-dunkel); overflow: hidden; display: flex; flex-direction: column;
}
.ausflug-card-top { padding: 1.5rem 1.5rem 0.5rem; display: flex; align-items: flex-start; gap: 1rem; }
.ausflug-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--gruen-bg); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.ausflug-cat { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dunkel); font-weight: 700; margin-bottom: 0.2rem; display: block; }
.ausflug-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--text-dunkel); line-height: 1.3; }
.ausflug-body { padding: 0.75rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.ausflug-body p { font-size: 0.83rem; color: var(--text-mittel); line-height: 1.7; margin-bottom: 1rem; flex: 1; }
.ausflug-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ausflug-tag { font-size: 0.7rem; padding: 0.25rem 0.6rem; border-radius: 99px; background: var(--gruen-bg); color: var(--gruen); font-weight: 600; }
.ausflug-link { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.78rem; color: var(--gruen); font-weight: 600; text-decoration: none; margin-top: 0.75rem; }
.ausflug-link:hover { text-decoration: underline; }

/* GESCHICHTE TIMELINE */
.gesch-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 0 1.5rem; position: relative; padding-bottom: 2rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute;
  left: 44px; top: 2rem; bottom: 0;
  width: 2px; background: rgba(255,255,255,0.15);
}
.timeline-item:last-child::before { display: none; }
.timeline-year {
  font-family: var(--font-serif); font-size: 1.5rem;
  color: var(--gold); line-height: 1.2; padding-top: 0.1rem;
  text-align: right; flex-shrink: 0;
  position: relative; z-index: 1;
}
.timeline-content {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 1.1rem 1.4rem;
  border-left: 3px solid var(--gold);
}
.timeline-content h3 {
  font-size: 0.92rem; font-weight: 700;
  color: var(--weiss); margin-bottom: 0.4rem;
}
.timeline-content p {
  font-size: 0.82rem; color: rgba(255,255,255,0.72); line-height: 1.7;
}

@media(max-width:768px){
  .timeline-item { grid-template-columns: 70px 1fr; gap: 0 1rem; }
  .timeline-item::before { left: 34px; }
  .timeline-year { font-size: 1.15rem; }
}

/* GESCHICHTE SEITE: 2-Spalten responsive */
#page-geschichte [style*="grid-template-columns:1fr 1fr"] {
  display: grid;
}
@media(max-width:768px){
  #page-geschichte [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important; gap: 2rem !important;
  }
  #page-geschichte [style*="grid-template-columns:repeat(auto-fit"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media(max-width:480px){
  #page-geschichte [style*="grid-template-columns:repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
  }
}


.ort-bilder { display: flex; gap: 0.75rem; margin: 1.25rem 0 0.25rem; }
.ort-bild { flex: 1; margin: 0; }
.ort-bild img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); display: block; border: 1px solid var(--sand); }
.ort-bild figcaption { font-size: 0.7rem; color: var(--text-hell); margin-top: 0.4rem; line-height: 1.4; }

 { padding: 4.5rem 1.5rem; }
.nw-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; max-width: var(--max-w); margin: 0 auto; }
.nw-inner h2 { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: normal; color: var(--gruen); margin-bottom: 1rem; }
.nw-inner p { font-size: 0.88rem; color: var(--text-mittel); line-height: 1.8; margin-bottom: 0.75rem; }
.nw-strecken { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.25rem; }
.nw-item { display: flex; align-items: center; gap: 0.75rem; background: var(--weiss); border: 1px solid var(--sand); border-radius: var(--radius); padding: 0.65rem 0.9rem; }
.nw-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.nw-text { font-size: 0.82rem; color: var(--text-mittel); }
.nw-km { font-size: 0.75rem; color: var(--text-hell); margin-left: auto; white-space: nowrap; }

.kurort-section { background: var(--gruen-bg); padding: 4.5rem 1.5rem; border-top: 1px solid var(--sand); }
.kurort-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.kurort-card { background: var(--weiss); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; align-items: flex-start; gap: 0.9rem; }
.kurort-icon { width: 38px; height: 38px; flex-shrink: 0; background: var(--gruen-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.kurort-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--text-dunkel); margin-bottom: 0.3rem; }
.kurort-card p { font-size: 0.8rem; color: var(--text-hell); line-height: 1.65; }

/* ══════════════════════════════════════════════
   KONTAKT & ANFAHRT
══════════════════════════════════════════════ */
.kontakt-layout {
  max-width: var(--max-w); margin: 0 auto; padding: 4.5rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 3.5rem; align-items: start;
}
.kontakt-info h2 { font-family: var(--font-serif); font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: normal; color: var(--gruen); margin-bottom: 1.25rem; }
.kd-item { display: flex; align-items: flex-start; gap: 0.85rem; padding: 1rem 0; border-bottom: 1px solid var(--sand); }
.kd-item:first-child { padding-top: 0; }
.kd-item:last-child { border-bottom: none; }
.kd-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--gruen-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.kd-label { font-size: 0.7rem; color: var(--text-hell); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.kd-value { font-size: 0.9rem; color: var(--text-dunkel); font-weight: 500; }
.kd-value a { color: var(--gruen); text-decoration: none; font-weight: 600; }
.kd-value a:hover { text-decoration: underline; }
.kd-note { font-size: 0.75rem; color: var(--text-hell); margin-top: 2px; }
.osm-btn { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; padding: 0.7rem 1.2rem; border: 1.5px solid var(--gruen); color: var(--gruen); font-size: 0.82rem; font-weight: 600; border-radius: var(--radius); text-decoration: none; transition: background var(--transition); }
.osm-btn:hover { background: var(--gruen-bg); }

/* KONTAKT HAUSBILD */
.kontakt-hausbild { margin-bottom: 1.5rem; border-radius: var(--radius-lg); overflow: hidden; }
.kontakt-hausbild img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

 background: var(--weiss); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 2rem; }
.form-card h2 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: normal; color: var(--gruen); margin-bottom: 0.4rem; }
.form-intro { font-size: 0.83rem; color: var(--text-hell); margin-bottom: 1.75rem; line-height: 1.6; }
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.1rem; }
label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-mittel); margin-bottom: 0.35rem; letter-spacing: 0.02em; }
label .req { color: var(--rot); margin-left: 2px; }
input[type=text], input[type=email], input[type=tel], input[type=date], select, textarea {
  width: 100%; padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--sand-dunkel); border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 0.875rem; color: var(--text-dunkel);
  background: var(--weiss); transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none; -webkit-appearance: none;
}
input:hover, select:hover, textarea:hover { border-color: #BFBAB2; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gruen); box-shadow: 0 0 0 3px rgba(46,90,68,0.12); }
input[aria-invalid=true], textarea[aria-invalid=true] { border-color: var(--rot); }
textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23767676' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.85rem center; padding-right: 2.2rem; cursor: pointer; }
.field-error { font-size: 0.72rem; color: var(--rot); margin-top: 0.3rem; display: none; align-items: center; gap: 0.3rem; }
.field-error.visible { display: flex; }
.datenschutz-wrap { display: flex; align-items: flex-start; gap: 0.75rem; background: var(--gruen-bg); border: 1px solid rgba(46,90,68,0.2); border-radius: var(--radius); padding: 0.85rem 1rem; margin-bottom: 1.25rem; }
.datenschutz-wrap input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gruen); cursor: pointer; }
.datenschutz-text { font-size: 0.78rem; color: var(--text-mittel); line-height: 1.6; }
.datenschutz-text a { color: var(--gruen); font-weight: 600; text-decoration: none; }
.datenschutz-text a:hover { text-decoration: underline; }
.ds-error { font-size: 0.72rem; color: var(--rot); display: none; margin-top: 0.4rem; align-items: center; gap: 0.3rem; }
.ds-error.visible { display: flex; }
.btn-submit { width: 100%; padding: 0.85rem; background: var(--gruen); color: var(--weiss); font-size: 0.9rem; font-weight: 700; border: none; border-radius: var(--radius); cursor: pointer; transition: background var(--transition), transform var(--transition); letter-spacing: 0.02em; font-family: var(--font-sans); }
.btn-submit:hover { background: var(--gruen-hell); transform: translateY(-1px); }
.btn-submit:disabled { background: var(--sand-dunkel); cursor: not-allowed; transform: none; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.visible { display: block; }
.success-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--gruen-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.form-success h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--gruen); margin-bottom: 0.5rem; font-weight: normal; }
.form-success p { font-size: 0.85rem; color: var(--text-hell); line-height: 1.7; }

/* ANFAHRT */
.anfahrt-section { background: var(--sand); padding: 4.5rem 1.5rem; }
.anfahrt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.anfahrt-card { background: var(--weiss); border-radius: var(--radius-lg); border: 1px solid var(--sand-dunkel); padding: 1.75rem; }
.anfahrt-card-head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--sand); }
.anfahrt-mode-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--gruen-bg); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.anfahrt-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dunkel); }
.anfahrt-card h3 span { display: block; font-size: 0.75rem; font-weight: 400; color: var(--text-hell); margin-top: 1px; }
.route-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.route-step { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.83rem; color: var(--text-mittel); line-height: 1.6; }
.step-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gruen); flex-shrink: 0; margin-top: 6px; }
.map-placeholder { margin-top: 2.5rem; background: var(--weiss); border: 1px solid var(--sand-dunkel); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; }
.map-address { font-size: 0.95rem; font-weight: 600; color: var(--text-dunkel); margin-bottom: 1.25rem; line-height: 1.6; }
.map-placeholder p { font-size: 0.85rem; color: var(--text-hell); margin-bottom: 1.25rem; line-height: 1.7; }
.map-buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.map-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.65rem 1.25rem; border-radius: var(--radius); font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: background var(--transition), transform var(--transition); }
.map-btn:hover { transform: translateY(-1px); }
.map-btn.osm { background: var(--gruen); color: var(--weiss); }
.map-btn.osm:hover { background: var(--gruen-hell); }
.map-btn.gmaps { background: var(--weiss); border: 1.5px solid var(--sand-dunkel); color: var(--text-mittel); }
.map-btn.gmaps:hover { background: var(--gruen-bg); }

/* ══════════════════════════════════════════════
   IMPRESSUM & DATENSCHUTZ
══════════════════════════════════════════════ */
.legal-wrap { max-width: 860px; margin: 0 auto; padding: 4rem 1.5rem 5rem; }
.toc { background: var(--weiss); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; margin-bottom: 3rem; }
.toc h2 { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dunkel); font-weight: 700; margin-bottom: 1rem; }
.toc ol { padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.toc li { font-size: 0.85rem; }
.toc a { color: var(--gruen); text-decoration: none; font-weight: 500; }
.toc a:hover { text-decoration: underline; }
.legal-section { margin-bottom: 3.5rem; scroll-margin-top: 80px; }
.legal-section h2 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: normal; color: var(--gruen); margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--sand); }
.legal-section h3 { font-size: 0.9rem; font-weight: 700; color: var(--text-dunkel); margin: 1.5rem 0 0.5rem; }
.legal-section p { font-size: 0.875rem; color: var(--text-mittel); line-height: 1.85; margin-bottom: 0.75rem; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--gruen); font-weight: 500; text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }
.legal-section ul { padding-left: 1.3rem; margin: 0.5rem 0 0.75rem; display: flex; flex-direction: column; gap: 0.35rem; }
.legal-section ul li { font-size: 0.875rem; color: var(--text-mittel); line-height: 1.75; }
.section-divider { border: none; border-top: 2px solid var(--sand); margin: 4rem 0; }
.angabe-box { background: var(--weiss); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; margin: 1.25rem 0; }
.angabe-box p { font-size: 0.875rem; color: var(--text-mittel); line-height: 1.9; margin: 0; }
.angabe-box strong { color: var(--text-dunkel); }
.hinweis-box { background: var(--gruen-bg); border: 1px solid rgba(46,90,68,0.2); border-radius: var(--radius); padding: 1rem 1.25rem; margin: 1rem 0; font-size: 0.82rem; color: var(--text-mittel); line-height: 1.7; }
.hinweis-box strong { color: var(--gruen); }
.last-updated { font-size: 0.75rem; color: var(--text-hell); margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--sand); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  background: var(--text-dunkel); color: rgba(255,255,255,0.6);
  padding: 3rem 1.5rem 2rem;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-name { color: rgba(255,255,255,0.9); font-size: 1.1rem; }
.footer-brand .logo-ort  { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; margin-top: 0.75rem; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color var(--transition); }
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
.footer-col ul li a:focus-visible { outline-color: var(--gold); }
.footer-col address { font-style: normal; font-size: 0.83rem; line-height: 1.9; }
.footer-col address a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-col address a:hover { color: white; }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.75rem; }
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* ══════════════════════════════════════════════
   SEITENNAVIGATION / TABS
══════════════════════════════════════════════ */



/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  nav[aria-label="Hauptnavigation"] .nav-links,
  nav[aria-label="Hauptnavigation"] .nav-cta { display: none; }
  .hamburger { display: flex; }
  .pillar { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.14); }
  .pillar:last-child { border-bottom: none; }
  .willkommen-grid,
  .intro-2col,
  .geschichte-inner,
  .nw-inner,
  .kontakt-layout,
  .anfahrt-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .kurtaxe-box { flex-direction: column; gap: 1rem; }
  section, .ausflug-section, .preise-section,
  .extras-section, .kurort-section, .anfahrt-section,
  .zimmer-section, .willkommen-section, .vorteile-section,
  .bewertungen-section, .nw-section { padding-left: 1.25rem; padding-right: 1.25rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
/* ══════════════════════════════════════════════
   LINKS & PARTNER
══════════════════════════════════════════════ */
.links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.link-card {
  background: var(--weiss); border: 1px solid var(--sand);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.link-card:hover { border-color: var(--gruen); box-shadow: 0 4px 16px rgba(46,90,68,0.1); }
.link-card-head { display: flex; align-items: center; gap: 0.85rem; }
.link-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gruen-bg); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.link-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dunkel); line-height: 1.3; }
.link-card .link-cat { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dunkel); font-weight: 700; }
.link-card p { font-size: 0.84rem; color: var(--text-mittel); line-height: 1.75; flex: 1; }
.link-card a.link-extern {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 600; color: var(--gruen);
  text-decoration: none; margin-top: auto;
}
.link-card a.link-extern:hover { text-decoration: underline; }
.bkl-banner {
  background: var(--gruen); border-radius: var(--radius-lg);
  padding: 2rem 2.5rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.bkl-banner-text h3 {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: normal;
  color: var(--weiss); margin-bottom: 0.3rem;
}
.bkl-banner-text p { font-size: 0.85rem; color: rgba(255,255,255,0.72); margin: 0; }
/* Statische Karte */
.anfahrt-map-img { width: 100%; border-radius: var(--radius-lg); display: block; border: 1px solid var(--sand-dunkel); margin-top: 2rem; }

