/* =====================================================
   Ferienwohnung Saaletal – Stylesheet
   ===================================================== */

/* Lokale Fonts – kein Google-Server-Kontakt, DSGVO-konform */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/cormorant-garamond-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/cormorant-garamond-400-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/cormorant-garamond-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/cormorant-garamond-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/cormorant-garamond-600-italic.woff2') format('woff2');
  font-weight: 600; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-300-normal.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* =====================================================
   CSS Custom Properties
   ===================================================== */
:root {
  --blue:    #1F6FA8;
  --blue-dark: #175a8a;
  --blue-light: #e8f3fa;
  --green:   #6E9447;
  --green-light: #f0f5eb;
  --yellow:  #E8B63C;
  --bg:      #F8F6F1;
  --bg-dark: #f0ede6;
  --text:    #253038;
  --text-muted: #6b7c88;
  --white:   #ffffff;
  --border:  #e2ddd6;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 2px 8px rgba(37, 48, 56, 0.07);
  --shadow-md: 0 4px 20px rgba(37, 48, 56, 0.10);
  --shadow-lg: 0 8px 40px rgba(37, 48, 56, 0.13);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: 0.25s ease;
  --container: 1240px;
}

/* =====================================================
   Reset & Base
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =====================================================
   Typography
   ===================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem);   font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 500; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.eyebrow-green { color: var(--green); }

/* =====================================================
   Layout Helpers
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header p { color: var(--text-muted); margin-top: 0.75rem; font-size: 1.05rem; }

.bg-white   { background: var(--white); }
.bg-dark-bg { background: var(--bg-dark); }
.bg-blue-light { background: var(--blue-light); }

/* Fade-in animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(31, 111, 168, 0.3);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 6px 20px rgba(31, 111, 168, 0.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.82rem; }

/* =====================================================
   Header & Navigation
   ===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(248, 246, 241, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 112px;
}

.logo img {
  height: 96px;
  width: auto;
}

.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
  background: var(--blue-light);
}
.main-nav a.active { font-weight: 600; }

.header-cta { margin-left: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--bg-dark); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 112px; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* =====================================================
   Hero – Startseite
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 48, 56, 0.55) 0%,
    rgba(31, 111, 168, 0.25) 60%,
    rgba(37, 48, 56, 0.3) 100%
  );
}
/* Hero – zweispaltiges Layout */
.hero-split {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 8rem 0 4rem;
  width: 100%;
}

.hero-content {
  color: var(--white);
  flex: 1;
  min-width: 0;
}
.hero-content .eyebrow { color: var(--yellow); }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Logo rechts im Hero */
.hero-logo {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: -4rem;
}
.hero-logo img {
  height: 280px;
  width: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.45));
  animation: hero-logo-float 4s ease-in-out infinite;
}
@keyframes hero-logo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* =====================================================
   Brand Intro (unter Hero)
   ===================================================== */
.brand-intro {
  background: var(--white);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.brand-intro-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.brand-intro-text { flex: 1; min-width: 260px; }
.brand-intro-text h2 { margin-bottom: 1rem; }
.brand-intro-text p { color: var(--text-muted); max-width: 500px; }
.brand-intro-stats {
  display: flex;
  gap: 2.5rem;
  flex-shrink: 0;
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* =====================================================
   Property Cards Grid
   ===================================================== */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.property-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.property-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.property-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.property-card:hover .property-card-img img { transform: scale(1.04); }

.property-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--white);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.property-badge-green { background: var(--green); color: var(--white); }

.property-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.property-location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.property-location svg { width: 13px; height: 13px; flex-shrink: 0; }
.property-card-body h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.property-card-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; flex: 1; }

.property-card-footer {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.property-features {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--bg);
  color: var(--text-muted);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  border: 1px solid var(--border);
}
.feature-chip svg { width: 11px; height: 11px; }

/* =====================================================
   Region Highlights (Startseite)
   ===================================================== */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.region-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.region-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.region-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.region-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.region-card p { font-size: 0.88rem; color: var(--text-muted); }

/* =====================================================
   Trust / Benefits Section
   ===================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
}
.benefit-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.benefit-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue);
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-item h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.benefit-item p { font-size: 0.85rem; color: var(--text-muted); }

/* =====================================================
   Ausflugsziele Preview
   ===================================================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.destination-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.destination-card:hover { box-shadow: var(--shadow-md); }
.destination-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.destination-card h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.destination-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* =====================================================
   CTA Banner
   ===================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { opacity: 0.88; font-size: 1.05rem; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 144px; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col a, .footer-col address {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  font-style: normal;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
  line-height: 1.6;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* =====================================================
   Page Hero (Unterseiten)
   ===================================================== */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37,48,56,0.7) 0%, rgba(37,48,56,0.2) 60%, transparent 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 3rem 0;
}
.page-hero-content .eyebrow { color: var(--yellow); }
.page-hero-content h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero-content p { opacity: 0.88; font-size: 1.05rem; max-width: 560px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.breadcrumb a { color: rgba(255,255,255,0.9); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.7; }

/* =====================================================
   Unterkunft Detail – Galerie
   ===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-grid .gallery-main {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-main { aspect-ratio: unset; }
.gallery-item:not(.gallery-main) { aspect-ratio: 4/3; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.2); }
.gallery-overlay svg { width: 32px; height: 32px; color: white; opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover .gallery-overlay svg { opacity: 1; }

/* Alle Bilder anzeigen Button */
.gallery-more {
  position: relative;
}
.gallery-more-btn {
  position: absolute;
  inset: 0;
  background: rgba(37,48,56,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  gap: 0.3rem;
  cursor: pointer;
  transition: background var(--transition);
}
.gallery-more-btn:hover { background: rgba(37,48,56,0.7); }
.gallery-more-btn span { font-size: 1.5rem; font-weight: 300; }

/* =====================================================
   Detail Seite – Inhalt
   ===================================================== */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.detail-main {}
.detail-sidebar { position: sticky; top: 100px; }

/* Sidebar Buchungs-Card */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.booking-card-price { margin-bottom: 1.5rem; }
.booking-card-price .price-label { font-size: 0.8rem; color: var(--text-muted); }
.booking-card-price .price-on-request {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue);
}
.booking-card .btn { width: 100%; justify-content: center; margin-bottom: 0.75rem; }
.booking-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
}

/* Ausstattung Chips */
.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.amenity-chip:hover { background: var(--blue-light); border-color: var(--blue); color: var(--blue); }
.amenity-chip svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

/* Sektion Divider */
.detail-section { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.detail-section h2 { margin-bottom: 1.25rem; }
.detail-section p { color: var(--text-muted); line-height: 1.75; }

/* Info Box */
.info-box {
  background: var(--blue-light);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box p { font-size: 0.9rem; color: var(--text); margin: 0; }

/* =====================================================
   Kontaktformular
   ===================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
}

.contact-info { }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail-text { }
.contact-detail-text strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-detail-text a, .contact-detail-text address {
  font-style: normal;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-card h3 { margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(31, 111, 168, 0.12);
  background: var(--white);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #e05c5c; }
.form-error { display: none; font-size: 0.78rem; color: #e05c5c; margin-top: 0.3rem; }
.form-error.visible { display: block; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7c88' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.75rem; text-align: center; line-height: 1.5; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.visible { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { margin-bottom: 0.75rem; color: var(--green); }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* =====================================================
   Übersicht-Seite Filter
   ===================================================== */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: var(--white);
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}

/* =====================================================
   Umgebung / Region Seite
   ===================================================== */
.region-section {
  margin-bottom: 4rem;
}
.region-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}
.region-section-icon {
  font-size: 1.75rem;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.region-section-header h2 { margin: 0; }
.region-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.region-tile {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.region-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.region-tile-body { padding: 1.5rem; }
.region-tile-body h4 { margin-bottom: 0.5rem; }
.region-tile-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.region-tile-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
}

/* =====================================================
   Lightbox Modal
   ===================================================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: white;
  font-size: 2rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2rem;
  opacity: 0.7;
  padding: 1rem;
  transition: opacity var(--transition);
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1024px) {
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4.5rem 0; }

  .hero-split { padding: 7rem 0 3rem; flex-direction: column; align-items: flex-start; gap: 2rem; }
  .hero-logo { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .brand-intro-inner { flex-direction: column; gap: 2rem; }
  .brand-intro-stats { gap: 2rem; justify-content: center; }

  .properties-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid .gallery-main { grid-column: span 2; grid-row: span 1; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  .form-row { grid-template-columns: 1fr; }

  .page-hero { height: 50vh; min-height: 320px; }

  .destinations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --container: 100%; }
  .container { padding: 0 1rem; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-main { grid-column: span 1; }

  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* =====================================================
   Utility
   ===================================================== */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.font-heading { font-family: var(--font-heading); }
