/* ================================================================
   Hotel Neptuns Ankerplatz & Zur Seerobbe – Cuxhaven
   Design adaptiert nach /love/ React-Version
   Primary: #1a1a8c | Light: #1CB5E0 | Red: hsl(0 78% 52%) | Orange: hsl(28 90% 48%)
   Fonts: Playfair Display (h) | Source Sans 3 (body)
   ================================================================ */

:root {
  --primary:      #1a1a8c;
  --primary-deep: #0f0f52;
  --primary-light:#1CB5E0;
  --gradient:     linear-gradient(90deg, #1a1a8c 0%, #1CB5E0 100%);
  --red:          hsl(0 78% 52%);
  --orange:       hsl(28 90% 48%);
  --text:         hsl(222 30% 16%);
  --muted:        hsl(215 18% 42%);
  --border:       hsl(220 18% 88%);
  --light:        hsl(210 30% 96%);
  --white:        #ffffff;
  --inner:        1200px;
  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  --shadow-soft:  0 2px 10px -2px hsl(240 30% 30% / .12);
  --shadow-card:  0 6px 24px -8px hsl(240 50% 20% / .18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-weight: 400;
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); font-weight: 700; line-height: 1.25; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── ACCESSIBILITY ───────────────────────────────────────────── */
/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 10000;
  background: var(--primary-deep);
  color: #fff;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* Visually hidden (screen-reader only) */
.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;
}

/* Global focus ring – visible for keyboard, suppressed for mouse */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
/* Remove default outline only when :focus-visible is supported */
:focus:not(:focus-visible) { outline: none; }

/* ── CONTAINER ───────────────────────────────────────────────── */
.container {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HEADER (Gradient wie /love/) ────────────────────────────── */
.hs-header {
  background: var(--gradient);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  max-width: var(--inner);
  margin: 0 auto;
  gap: 16px;
}
.hs-logo img { height: 60px; width: auto; }

/* ── NAV DESKTOP ─────────────────────────────────────────────── */
.main-nav > ul { display: flex; align-items: center; flex-wrap: nowrap; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 7px 10px;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.9);
  transition: color .2s;
  white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.aktiv {
  color: #fff;
  border-bottom: 2px solid rgba(255,255,255,.8);
}
/* Dropdown */
.main-nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-deep);
  min-width: 215px;
  z-index: 100;
  box-shadow: var(--shadow-card);
}
.main-nav ul ul li a {
  display: block;
  padding: 11px 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.85);
  transition: background .15s;
  white-space: nowrap;
}
.main-nav ul ul li a:hover { background: rgba(255,255,255,.1); color: #fff; }
.main-nav > ul > li:hover > ul,
.main-nav > ul > li:focus-within > ul { display: block; }

/* ── HAMBURGER ───────────────────────────────────────────────── */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-toggle span { display: block; width: 26px; height: 2px; background: #fff; }

/* ── MOBILE NAV ──────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,15,82,.97);
  z-index: 2000;
  overflow-y: auto;
  padding: 70px 30px 40px;
}
.mobile-nav.open { display: block; }
.mobile-nav-close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: none;
  color: #fff; font-size: 36px; cursor: pointer; line-height: 1;
}
.mobile-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-nav > ul > li > a {
  display: block; padding: 14px 0;
  color: #fff; font-family: var(--font-h); font-size: 22px; font-weight: 700;
}
.mobile-nav ul ul { padding-left: 18px; padding-bottom: 10px; }
.mobile-nav ul ul li a {
  display: block; padding: 7px 0;
  color: rgba(255,255,255,.65); font-size: 15px;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #111;
}
@media (max-width: 900px) { .hero { height: 480px; } }
@media (max-width: 600px) { .hero { height: 320px; } }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero-slide.active { opacity: 1; }
/* Dots */
.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}
.hero-dot {
  height: 8px;
  width: 8px;
  border-radius: 9999px;
  background: rgba(255,255,255,.6);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.hero-dot.active { width: 24px; background: #fff; }

/* ── HERO KLEIN ──────────────────────────────────────────────── */
.hero-small {
  position: relative;
  width: 100%;
  height: 340px;
  background-size: cover;
  background-position: center;
  background-color: var(--primary);
  overflow: hidden;
}
@media (max-width:600px) { .hero-small { height: 220px; } }
.hero-small .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.42); z-index: 1; }
.hero-small-title {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 20px;
}
.hero-small-title h1 { font-size: clamp(28px, 5vw, 54px); text-shadow: 0 2px 14px rgba(0,0,0,.45); }

/* ── BOOKING CTA ─────────────────────────────────────────────── */
.booking-cta-bar {
  margin: 32px auto;
  max-width: 820px;
  padding: 0 24px;
}
.booking-cta-link {
  display: block;
  background: var(--gradient);
  color: #fff;
  text-align: center;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: opacity .2s;
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
}
.booking-cta-link:hover { opacity: .9; }
.booking-cta-sub {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
}
.booking-cta-sub strong { color: var(--text); font-weight: 700; }
.booking-cta-sub .risk { color: hsl(0 78% 52%); font-weight: 600; }

/* ── ALLGEMEINE SEKTION ──────────────────────────────────────── */
.hs-section { padding: 48px 0; }

/* ── INTRO ───────────────────────────────────────────────────── */
.section-intro {
  text-align: center;
  padding: 40px 24px 0;
  max-width: 860px;
  margin: 0 auto;
}
.intro-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted);
  margin-bottom: 14px;
}
.intro-divider { height: 1px; background: var(--border); max-width: 600px; margin: 16px auto; }
.section-intro h2 {
  font-size: clamp(26px, 4vw, 44px);
  color: var(--text);
  margin-bottom: 22px;
}
.section-intro p { font-size: 15px; line-height: 1.85; color: hsl(222 30% 16% / .85); max-width: 740px; margin: 0 auto 14px; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.hs-button {
  display: inline-block;
  background: var(--gradient);
  color: #fff !important;
  border: none;
  cursor: pointer;
  padding: 11px 36px;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 2px;
  transition: opacity .2s;
}
.hs-button:hover { opacity: .85; }
.hs-button.orange { background: var(--orange) !important; }
.hs-button.orange:hover { opacity: .9; }

/* ── ZIMMERKARTEN ────────────────────────────────────────────── */
.section-rooms { padding: 40px 0; }
.room-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.room-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  transition: box-shadow .3s;
}
.room-card:hover { box-shadow: var(--shadow-card); }
.room-card-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
  overflow: hidden;
}
.room-card:hover .room-card-img { transform: scale(1.05); }
.room-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.room-card-title {
  font-family: var(--font-h);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
  line-height: 1.25;
}
.room-persons {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.room-persons .fas { font-size: 13px; }
.room-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}
.room-price-btn {
  display: block;
  width: 100%;
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 2px;
  transition: opacity .2s;
}
.room-price-btn:hover { opacity: .88; color: #fff; }
.price-note { font-size: 11px; color: var(--muted); font-style: italic; margin-top: 10px; }

/* ── TESTIMONIAL (volle Gradient-Band) ──────────────────────── */
.section-testimonial {
  background: var(--gradient);
  color: #fff;
  padding: 64px 24px;
  text-align: center;
  margin-top: 48px;
}
.testimonial { max-width: 780px; margin: 0 auto; }
.testimonial-icon {
  font-size: 32px;
  opacity: .7;
  margin-bottom: 16px;
  display: block;
}
.testimonial blockquote {
  font-family: var(--font-b);
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 1.85;
  color: rgba(255,255,255,.95);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial cite {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .12em;
}

/* ── TEASER-KACHELN (weißes Label links unten) ───────────────── */
.section-cards { padding: 48px 0; }
.info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.info-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-soft);
}
.info-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.info-card:hover .info-card-img { transform: scale(1.08); }
.info-card-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(255,255,255,.95);
  padding: 8px 16px;
  box-shadow: var(--shadow-soft);
}
.info-card-label span {
  font-family: var(--font-h);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
  color: var(--text);
}

/* ── VERSPRECHEN (Zweispaltig + Bild-Grid) ───────────────────── */
.section-versprechen { padding: 48px 0; }
.versprechen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.versprechen-text h2 {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--text);
  margin-bottom: 16px;
}
.versprechen-text p { font-size: 15px; line-height: 1.85; color: hsl(222 30% 16% / .85); }
.versprechen-images {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.versprechen-images img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: var(--shadow-card);
}

/* ── ZIMMER-INTRO GRID (Übersichtsseite Hotels & Zimmer) ─────── */
.zimmer-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 48px 0 32px;
}
.zimmer-intro-text h1 {
  font-family: var(--font-h);
  font-size: clamp(22px, 3vw, 34px);
  color: var(--text);
  margin-bottom: 12px;
}
.zimmer-intro-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  font-family: var(--font-b);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.4;
}
.zimmer-intro-text p {
  font-size: 14px;
  color: hsl(222 30% 16% / .75);
  line-height: 1.75;
  margin: 0;
}
.zimmer-contact-box {
  background: var(--gradient);
  color: #fff;
  padding: 32px 28px;
}
.zimmer-contact-box h3 {
  font-family: var(--font-h);
  font-size: clamp(18px, 2.2vw, 26px);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}
.zimmer-contact-box p {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  line-height: 1.8;
  margin: 0;
}
.zimmer-contact-box a { color: #fff; font-weight: 700; }
@media (max-width: 760px) {
  .zimmer-intro-grid { grid-template-columns: 1fr; padding: 32px 0 20px; }
}

/* ── ZIMMER-TABS ─────────────────────────────────────────────── */
.zimmer-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  background: var(--light);
  padding: 20px 24px 0;
  max-width: var(--inner);
  margin: 0 auto;
  border-bottom: 3px solid var(--primary);
}
.zimmer-tabs a {
  display: block;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #555;
  border: 1px solid #ddd;
  border-bottom: none;
  background: #fff;
  transition: all .2s;
}
.zimmer-tabs a:hover,
.zimmer-tabs a.aktiv { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── ZIMMER-GALERIE ──────────────────────────────────────────── */
.room-composite-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #f5f7fa;
  display: block;
  margin: 30px 0;
}
.room-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin: 30px 0;
}
.room-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: contain; background: #f5f7fa; }
.room-gallery img:last-child:nth-child(odd) { grid-column: span 2; }

/* ── ZIMMER-DETAIL ───────────────────────────────────────────── */
.room-detail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: start;
  max-width: var(--inner);
  margin: 0 auto;
  padding: 50px 24px;
}
.room-detail-info h1 { font-size: clamp(26px, 4vw, 38px); color: var(--primary); margin-bottom: 8px; }
.room-price-tag {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-b);
  margin: 12px 0 4px;
}
.price-note-sm { font-size: 11px; color: var(--muted); margin-bottom: 24px; }
.feat-list { list-style: none; margin-bottom: 28px; }
.feat-list li {
  font-size: 14px; color: #555;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.feat-list li::before { content: "✓"; color: var(--primary); font-weight: 700; }
.breakfast-box {
  background: linear-gradient(135deg, #f0f4ff, #e8f7fd);
  border-left: 4px solid var(--primary);
  padding: 18px 20px;
  margin-bottom: 26px;
}
.breakfast-box h4 {
  color: var(--primary);
  font-size: 13px;
  font-family: var(--font-b);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.breakfast-box p { font-size: 14px; color: #555; margin: 0; }

/* ── ZIMMER ÜBERSICHT ────────────────────────────────────────── */
.zimmer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.zimmer-item { border: 1px solid var(--border); background: #fff; }
.zimmer-item-img { width: 100%; height: 195px; background-size: cover; background-position: center; }
.zimmer-item .zi-body { padding: 18px 20px; }
.zimmer-item h3 { font-size: 17px; color: var(--red); margin-bottom: 6px; }
.zi-persons { font-size: 11px; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .06em; }
.zimmer-item p { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 12px; }
.zi-price { font-size: 19px; font-weight: 700; color: var(--primary); margin-bottom: 14px; font-family: var(--font-b); }

/* ── PAGE CONTENT ────────────────────────────────────────────── */
.page-content { max-width: var(--inner); margin: 0 auto; padding: 55px 24px 75px; }
.page-content h1 { font-size: clamp(26px, 4vw, 40px); color: var(--primary); margin-bottom: 22px; }
.page-content h2 { font-size: clamp(20px, 3vw, 28px); color: var(--primary); margin: 36px 0 14px; }
.page-content h3 { font-size: 20px; color: var(--primary); margin: 26px 0 10px; }
.page-content p { font-size: 15px; line-height: 1.85; color: #555; }
.page-content ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.page-content ul li { font-size: 15px; color: #555; margin-bottom: 4px; }
.page-content strong { font-weight: 700; color: #333; }
.page-content a { color: var(--primary); }
.page-content a:hover { text-decoration: underline; }
.hr-bar { width: 60px; height: 3px; background: var(--gradient); margin: 24px 0; }

/* ── ÜBER UNS ────────────────────────────────────────────────── */
.ueber-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding: 48px 0 36px;
  align-items: start;
}
.ueber-intro-heading {
  font-family: var(--font-h);
  font-size: clamp(22px, 3vw, 34px);
  color: var(--text);
  line-height: 1.25;
}
.ueber-intro-col p {
  font-size: 14px;
  color: hsl(222 30% 16% / .75);
  line-height: 1.8;
  margin: 0;
}
.ueber-image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 48px;
}
.ueber-image-strip img {
  width: 100%;
  height: 185px;
  object-fit: contain;
  background: #f5f7fa;
  display: block;
}
.ueber-owner-grid {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 40px;
}
.ueber-owner-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  box-shadow: var(--shadow-card);
}
.ueber-owner-text p.lead {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 16px;
}
.ueber-owner-text p {
  font-size: 14px;
  color: hsl(222 30% 16% / .75);
  line-height: 1.8;
}
.ueber-closing p {
  font-size: 15px;
  color: hsl(222 30% 16% / .75);
  line-height: 1.85;
}
@media (max-width: 860px) {
  .ueber-intro-grid { grid-template-columns: 1fr; gap: 20px; padding: 32px 0 24px; }
  .ueber-image-strip { grid-template-columns: repeat(2, 1fr); }
  .ueber-owner-grid { grid-template-columns: 1fr; }
  .ueber-owner-photo { margin: 0 auto; display: block; }
}

/* ── BEWERTUNGEN ─────────────────────────────────────────────── */
.review-list { display: flex; flex-direction: column; gap: 16px; }
.review-item { border-left: 4px solid var(--primary); padding: 20px 24px; background: var(--light); }
.review-meta { font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.review-date { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.review-stars { color: var(--orange); font-size: 14px; margin-bottom: 8px; }
.review-text { font-size: 14px; color: #555; line-height: 1.75; margin: 0; }

/* ── SERVICES ────────────────────────────────────────────────── */
.services-list { margin-top: 30px; }
.service-entry { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid var(--border); padding: 12px 0; }
.service-entry:hover { background: var(--light); }
.service-key { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); padding-right: 16px; padding-top: 2px; }
.service-val { font-size: 14px; color: #555; line-height: 1.7; }

/* ── LAGE ────────────────────────────────────────────────────── */
.lage-page-title {
  text-align: center;
  padding: 52px 0 0;
}
.lage-page-title h2 {
  font-size: clamp(24px, 4vw, 46px);
  color: var(--text);
  line-height: 1.2;
  max-width: 820px;
  margin: 0 auto 22px;
}
.lage-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0 28px;
}
.lage-lead {
  text-align: center;
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.lage-main-grid {
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}
.lage-main-text p {
  font-size: 14px;
  color: hsl(222 30% 16% / .8);
  line-height: 1.85;
  margin-bottom: 22px;
  text-align: justify;
}
.lage-main-text a { color: var(--primary); }
.lage-sports-label {
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.lage-image-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.lage-image-mosaic img {
  width: 100%;
  height: 108px;
  object-fit: cover;
  display: block;
}
.lage-image-mosaic img.span2 { grid-column: span 2; }
.lage-image-mosaic img.span3 { grid-column: span 3; height: 160px; }
.lage-cta-box {
  text-align: center;
  padding: 36px 0 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.lage-cta-box p {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
@media (max-width: 860px) {
  .lage-main-grid { grid-template-columns: 1fr; }
  .lage-image-mosaic { grid-template-columns: repeat(2, 1fr); }
  .lage-image-mosaic img.span2 { grid-column: span 1; }
  .lage-image-mosaic img.span3 { grid-column: span 2; }
}
.lage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 36px 0; }
.info-box { background: var(--light); padding: 28px; }
.info-box h3 { color: var(--primary); font-size: 19px; margin-bottom: 16px; }
.info-box p { font-size: 14px; color: #555; margin-bottom: 8px; }
.info-box strong { color: #333; }
.info-box a { color: var(--primary); }
.map-embed { width: 100%; height: 420px; border: none; margin-top: 36px; display: block; }

/* ── KONTAKT ─────────────────────────────────────────────────── */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; margin-top: 36px; }
.kontakt-info h2 { color: var(--primary); font-size: 22px; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.contact-icon { color: var(--primary-light); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.contact-text h4 { font-size: 11px; font-family: var(--font-b); text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 2px; font-weight: 600; }
.contact-text p { font-size: 15px; color: #333; margin: 0; font-weight: 600; }
.contact-text a { color: var(--primary); font-weight: 600; }

/* Formular */
.form-section-title { font-family: var(--font-b); font-size: 15px; font-weight: 700; color: #333; margin: 28px 0 10px; padding-bottom: 6px; border-bottom: 2px solid var(--light); }
.form-row { display: grid; grid-template-columns: 220px 1fr; gap: 10px; align-items: start; margin-bottom: 10px; }
.form-row > * { min-width: 0; }
.form-label { font-size: 13px; color: var(--primary); padding-top: 10px; line-height: 1.4; }
.form-input input,
.form-input select,
.form-input textarea { width: 100%; padding: 8px 12px; border: 1px solid #ccc; font-family: var(--font-b); font-size: 14px; color: #333; background: #f9f9f9; transition: border-color .2s, background .2s; }
.form-input input:focus, .form-input select:focus, .form-input textarea:focus { border-color: var(--primary); background: #fff; }
.form-input input[type="number"] { text-align: center; }
.form-input textarea { resize: vertical; min-height: 70px; }
.radio-label { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: #444; margin-bottom: 8px; cursor: pointer; }
.radio-label input[type="radio"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--primary); }
.form-radio-inline { display: flex; gap: 12px; }
.form-radio-inline .radio-label { flex: 1; padding: 12px 14px; background: var(--light); border: 1px solid #ddd; border-radius: 3px; margin-bottom: 0; align-items: flex-start; }
.checkbox-label { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #555; line-height: 1.65; cursor: pointer; }
.checkbox-label input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--primary); }
.checkbox-label a { color: var(--primary); }
.form-note { font-size: 12px; color: var(--muted); margin-top: 8px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #888; margin-bottom: 5px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 10px 14px; border: 1px solid #ddd; font-family: var(--font-b); font-size: 14px; color: #333; background: #fff; transition: border-color .2s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--primary); }
.form-field textarea { resize: vertical; }

/* ── GUTSCHEINE ──────────────────────────────────────────────── */
.gutschein-hero { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; margin: 40px 0 52px; }

.gutschein-card-visual {
  background: var(--gradient);
  color: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(26,26,140,.25);
  position: relative;
  overflow: hidden;
}
.gutschein-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 16px);
}
.gc-ribbon { font-size: 36px; opacity: .85; }
.gc-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; opacity: .75; }
.gc-hotel { font-family: var(--font-h); font-size: clamp(20px, 3vw, 26px); line-height: 1.25; }
.gc-location { font-size: 13px; opacity: .8; }
.gc-deco { letter-spacing: .4em; opacity: .5; font-size: 12px; }

.gutschein-hero-text h2 { font-size: clamp(24px, 3vw, 34px); color: var(--primary); margin-bottom: 14px; }
.gutschein-hero-text p { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 20px; }

.gutschein-steps-title { text-align: center; margin-top: 0; }
.gutschein-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0 48px; }
.gutschein-step { text-align: center; padding: 28px 20px; background: var(--light); border-radius: 6px; position: relative; }
.gs-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 12px; }
.gs-num { position: absolute; top: 14px; right: 18px; font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: .05em; }
.gutschein-step h4 { font-size: 16px; color: var(--primary); margin-bottom: 6px; }
.gutschein-step p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

.gutschein-details { max-width: 600px; margin-bottom: 48px; }
.gutschein-feat li { font-size: 15px; }

.gutschein-cta-box { background: var(--light); border-left: 4px solid var(--orange); padding: 36px 40px; text-align: center; margin-bottom: 40px; }
.gutschein-cta-box i { font-size: 36px; color: var(--orange); margin-bottom: 12px; display: block; }
.gutschein-cta-box h3 { font-size: 22px; color: var(--primary); margin-bottom: 8px; }
.gutschein-cta-box p { font-size: 14px; color: #555; margin-bottom: 20px; }
.gutschein-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 760px) {
  .gutschein-hero { grid-template-columns: 1fr; gap: 28px; }
  .gutschein-card-visual { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .gutschein-steps { grid-template-columns: 1fr; gap: 12px; }
  .gutschein-step { padding: 20px 16px; }
  .gutschein-cta-box { padding: 24px 20px; }
}

/* ── AGB ─────────────────────────────────────────────────────── */
.agb-section { max-width: 780px; }
.agb-section h2 { font-size: 19px; color: var(--primary); margin: 36px 0 12px; }
.agb-section p, .agb-section li { font-size: 14px; color: #555; line-height: 1.85; margin-bottom: 8px; }
.agb-section ol { padding-left: 22px; }

/* ── BUCHEN ──────────────────────────────────────────────────── */
.buchen-wrap { text-align: center; max-width: 700px; margin: 0 auto; }
.buchen-wrap h1 { color: var(--primary); font-size: clamp(24px, 4vw, 38px); margin-bottom: 16px; }
.buchen-wrap p { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 20px; }
.buchen-contact { display: flex; gap: 36px; justify-content: center; flex-wrap: wrap; margin: 40px 0; }
.bc-item { text-align: center; }
.bc-icon { font-size: 34px; color: var(--primary); margin-bottom: 8px; }
.bc-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 4px; }
.bc-value { font-size: 20px; color: var(--primary); font-weight: 700; }
.bc-value a { color: var(--primary); }

/* ── FOOTER (Dunkles Blau, 4 Spalten wie /love/) ────────────── */
.hs-footer {
  background: var(--primary-deep);
  color: rgba(255,255,255,.85);
  padding: 64px 24px 48px;
  margin-top: 64px;
}
.footer-grid {
  max-width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-col h3 { font-family: var(--font-h); font-size: 20px; color: #fff; margin-bottom: 14px; line-height: 1.3; }
.footer-col h4 { font-family: var(--font-h); font-size: 17px; color: #fff; margin-bottom: 14px; }
.footer-col p { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 8px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.75); margin-bottom: 6px; transition: color .2s; }
.footer-col a:hover { color: var(--primary-light); }
.footer-col .contact-row { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.footer-col .contact-row i { color: var(--primary-light); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-col .contact-row span, .footer-col .contact-row a { font-size: 13px; color: rgba(255,255,255,.75); display: inline; margin: 0; }
.footer-col .contact-row a:hover { color: var(--primary-light); }
.footer-btm {
  background: var(--primary-deep);
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-btm-inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 18px 24px;
  text-align: center;
}
.footer-btm-inner p { font-size: 12px; color: rgba(255,255,255,.6); margin: 0; }
.footer-btm-inner a { color: rgba(255,255,255,.6); display: inline; }
.footer-btm-inner a:hover { color: var(--primary-light); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .room-cards { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .room-detail { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .lage-grid { grid-template-columns: 1fr; }
  .versprechen-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: repeat(2, 1fr); }
  .service-entry { grid-template-columns: 1fr; }
  .service-key { margin-bottom: 4px; }
}
@media (max-width: 640px) {
  .room-cards { grid-template-columns: repeat(2, 1fr); }
  .info-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { height: 300px; }
  .form-row { grid-template-columns: 1fr; gap: 4px; }
  .form-label { padding-top: 0; font-weight: 600; }
  .buchen-contact { gap: 24px; }

  /* Booking CTA */
  .booking-cta-bar { margin: 14px auto; padding: 0 16px; }
  .booking-cta-link { font-size: 13px; padding: 12px 14px; }
  .booking-cta-sub { font-size: 12px; margin-top: 7px; }

  /* Intro */
  .section-intro { padding: 24px 16px 0; }

  /* Rooms */
  .section-rooms { padding: 24px 0; }
  .room-card-body { padding: 10px; }
  .room-desc { font-size: 11px; }
  .room-price-btn { font-size: 12px; padding: 8px 10px; }

  /* Testimonial */
  .section-testimonial { padding: 40px 16px; margin-top: 24px; }

  /* Teaser-Kacheln */
  .section-cards { padding: 24px 0; }
  .info-card { height: 140px; }

  /* Versprechen */
  .section-versprechen { padding: 24px 0; }
  .versprechen-images { display: none; }

  /* Gallery */
  .section-gallery { padding: 16px 0; }

  /* Allgemein */
  .container { padding: 0 16px; }
  .hs-footer { padding: 40px 16px 32px; margin-top: 40px; }
}
@media (max-width: 420px) {
  .room-cards { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr 1fr; }
  .booking-cta-link { font-size: 12px; }
  .hero { height: 260px; }
}

/* ── COOKIE BANNER ────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-deep);
  color: rgba(255,255,255,.9);
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
.cookie-banner-inner {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-inner p { flex: 1; min-width: 240px; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.85); margin: 0; }
.cookie-banner-inner a { color: var(--primary-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 20px;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.cookie-btn:hover { opacity: .85; }
.cookie-btn.accept { background: var(--orange); color: #fff; }
.cookie-btn.decline { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }

/* Map consent placeholder */
.map-placeholder {
  width: 100%;
  height: 420px;
  border: 1px solid var(--border);
  background: var(--light);
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.map-placeholder-inner { max-width: 420px; padding: 32px; }
.map-placeholder-inner i { font-size: 40px; color: var(--muted); margin-bottom: 16px; }
.map-placeholder-inner p { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.map-placeholder-note { font-size: 12px !important; color: var(--muted) !important; margin-top: 10px !important; }
.map-placeholder-note a { color: var(--primary); text-decoration: underline; }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb {
  padding: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 4px; list-style: none; padding: 0; margin: 0; }
.breadcrumb li { display: flex; align-items: center; gap: 4px; }
.breadcrumb li + li::before { content: '›'; color: var(--muted); }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--muted); }

/* ── LANDING PAGE BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity .2s, background .2s, color .2s;
  text-decoration: none;
}
.btn-primary { background: var(--orange); color: #fff !important; border-color: var(--orange); }
.btn-primary:hover { opacity: .88; }
.btn-outline-light { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: rgba(255,255,255,.15); }
.btn-white { background: #fff; color: var(--primary) !important; border-color: #fff; }
.btn-white:hover { opacity: .9; }

/* ── SEO LANDING PAGES ───────────────────────────────────────── */
.lp-hero {
  background: linear-gradient(135deg, var(--primary-deep) 0%, #1a3a6c 60%, var(--primary-light) 100%);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}
.lp-hero h1 { font-size: clamp(26px, 4vw, 42px); color: #fff; margin-bottom: 16px; max-width: 800px; margin-left: auto; margin-right: auto; }
.lp-hero p { font-size: 18px; opacity: .9; max-width: 600px; margin: 0 auto 28px; }
.lp-hero .lp-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.lp-content { max-width: 860px; margin: 0 auto; padding: 48px 24px; }
.lp-content h2 { font-size: clamp(20px, 2.5vw, 28px); color: var(--primary); margin: 40px 0 14px; }
.lp-content h2:first-child { margin-top: 0; }
.lp-content p { font-size: 15px; line-height: 1.85; color: #444; margin-bottom: 1em; }
.lp-content ul { padding-left: 20px; margin-bottom: 1em; }
.lp-content ul li { font-size: 15px; line-height: 1.8; color: #444; margin-bottom: 4px; }
.lp-cta-box { background: var(--gradient); color: #fff; padding: 40px 32px; text-align: center; margin: 48px 0 0; }
.lp-cta-box h2 { color: #fff; font-size: 24px; margin-bottom: 12px; }
.lp-cta-box p { opacity: .9; margin-bottom: 20px; }
.lp-rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 24px 0; }
.lp-room-card { border: 1px solid var(--border); padding: 20px; }
.lp-room-card h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
.lp-room-card .price { font-size: 18px; font-weight: 700; color: var(--orange); margin-bottom: 8px; }
.lp-room-card p { font-size: 13px; color: var(--muted); margin: 0; }
@media (max-width: 640px) {
  .lp-rooms-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   WIDGETS: Solar + Badges + Bewertungs-Slider
   ═══════════════════════════════════════════════ */
.section-widgets { padding: 20px 0; background: #f0f2f5; border-top: 1px solid #e0e3eb; border-bottom: 1px solid #e0e3eb; }
.widgets-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 32px; align-items: start; }
.widget-solar { position: relative; width: 100%; max-width: 500px; aspect-ratio: 500 / 300; }
.widget-solar iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.widget-right { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.widget-right iframe { display: block; }

/* Bewertungs-Slider (slider2) */
.review-slider { position: relative; }
.review-slide { display: none; }
.review-slide.active { display: flex; justify-content: center; animation: reviewFadeIn 0.6s ease; }
@keyframes reviewFadeIn { from { opacity: 0; } to { opacity: 1; } }
.review-slide img { height: auto; width: auto; display: block; }

/* ═══════════════════════════════════════════════
   GALERIE-SLIDER (slider3, 40 Bilder)
   ═══════════════════════════════════════════════ */
.section-gallery { background: #f5f7fa; overflow: hidden; position: relative; padding: 28px 0; }
.gallery-slider { position: relative; overflow: hidden; cursor: pointer; max-width: 760px; margin: 0 auto; background: #fff; border-radius: 8px; box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.gallery-track { display: flex; transition: transform 0.45s ease; will-change: transform; }
.gallery-slide { min-width: 100%; flex-shrink: 0; height: 300px; display: flex; align-items: center; justify-content: center; background: #fff; }
.gallery-slide img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; pointer-events: none; }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.12); color: #333; border: none; width: 40px; height: 56px; font-size: 24px; line-height: 1; cursor: pointer; z-index: 3; transition: background .2s; }
.gallery-arrow:hover { background: rgba(0,0,0,.28); }
.gallery-arrow.prev { left: 0; border-radius: 0 4px 4px 0; }
.gallery-arrow.next { right: 0; border-radius: 4px 0 0 4px; }
.gallery-counter { position: absolute; bottom: 12px; right: 14px; background: rgba(0,0,0,.35); color: #fff; font-size: 12px; padding: 3px 10px; border-radius: 20px; pointer-events: none; letter-spacing: .05em; }
.gallery-fs-btn { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,.12); color: #444; border: none; width: 32px; height: 32px; font-size: 14px; cursor: pointer; border-radius: 3px; z-index: 3; transition: background .2s; }
.gallery-fs-btn:hover { background: rgba(0,0,0,.28); }

/* Fullscreen-Overlay */
.gallery-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.96); z-index: 9000; align-items: center; justify-content: center; }
.gallery-overlay.open { display: flex; }
.gallery-overlay img { max-width: 96vw; max-height: 94vh; object-fit: contain; display: block; }
.gallery-ov-close { position: fixed; top: 14px; right: 14px; background: rgba(255,255,255,.15); color: #fff; border: none; width: 42px; height: 42px; font-size: 24px; cursor: pointer; border-radius: 50%; z-index: 9001; line-height: 42px; text-align: center; transition: background .2s; }
.gallery-ov-close:hover { background: rgba(255,255,255,.3); }
.gallery-ov-arrow { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); color: #fff; border: none; padding: 28px 18px; font-size: 32px; cursor: pointer; z-index: 9001; transition: background .2s; }
.gallery-ov-arrow:hover { background: rgba(255,255,255,.25); }
.gallery-ov-arrow.prev { left: 0; }
.gallery-ov-arrow.next { right: 0; }
.gallery-ov-counter { position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.6); font-size: 13px; z-index: 9001; }

@media (max-width: 860px) {
  .widgets-grid { grid-template-columns: 1fr; }
  .widget-solar { max-width: 100%; }
}
@media (max-width: 600px) {
  .gallery-slide { height: 200px; }
  .gallery-arrow { width: 32px; height: 46px; font-size: 20px; }
}

/* Bewertungs-Streifen (unter Galerie-Slider) */
.review-strip { background: #fff; border-top: 1px solid #e8eaed; border-bottom: 1px solid #e8eaed; padding: 18px 0; }
.review-strip .container { display: flex; justify-content: center; }
.review-strip .review-slider { max-width: 320px; width: 100%; }
.review-strip .review-slide img { max-height: 64px; max-width: 100%; width: auto; object-fit: contain; display: block; margin: 0 auto; }

/* Footer HotelStars Badge */
.footer-badge { margin-top: 14px; }

/* Solar-Widget auf Über-uns */
.ueber-solar { padding: 36px 0 48px; border-top: 1px solid var(--border); margin-top: 12px; }
.ueber-solar h3 { font-family: var(--font-h); font-size: 22px; color: var(--primary); margin-bottom: 8px; }
.ueber-solar p { font-size: 15px; color: #555; margin-bottom: 20px; }

/* Validation error state */
.field-error { border-color: #c0392b !important; background: #fff8f8 !important; outline: 2px solid rgba(192,57,43,.2) !important; }
.field-error + span, label:has(.field-error) { color: #c0392b; }
.form-radio-inline.field-error .radio-label { border-color: #c0392b !important; background: #fff8f8 !important; }

/* ── LANGUAGE SWITCHER ───────────────────────────────────────────── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
  margin-left: 8px;
}
.lang-switch a {
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.lang-switch a:hover { color: #fff; }
.lang-switch .lang-aktiv {
  color: #fff;
  border-bottom: 2px solid rgba(255,255,255,.8);
}
