/* Cosima Jähn – Monteurzimmer Heringen */
:root {
  --blush: #FDF1F0;
  --blush-deep: #F5E4E2;
  --gold: #B5945F;
  --gold-dark: #96794A;
  --gold-light: #D4BC8A;
  --text: #2C2825;
  --text-muted: #6B6560;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(44, 40, 37, 0.08);
  --shadow-lg: 0 12px 40px rgba(44, 40, 37, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --header-h: 64px;
}

@media (min-width: 768px) {
  :root { --header-h: 72px; }
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1140px, 100% - 1.25rem);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .container { width: min(1140px, 100% - 2rem); }
}

/* Icons */
.icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  display: block;
}
.trust-icon .icon,
.feature-icon .icon { width: 22px; height: 22px; color: var(--gold-dark); }
.trust-icon,
.feature-icon {
  color: var(--gold-dark);
}
.faq-question .icon { width: 20px; height: 20px; color: var(--gold); }
.btn .icon { width: 18px; height: 18px; }
.lang-btn {
  display: none;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.mobile-nav .icon { width: 18px; height: 18px; color: var(--gold); }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(181, 148, 95, 0.15);
  transition: box-shadow 0.3s;
  overflow: visible;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  background: var(--blush);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}
.brand-tagline {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.main-nav { display: none; }
.main-nav ul {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.lang-switch {
  position: relative;
}

/* Visible language flags – desktop row */
.lang-flags {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

.lang-flags--desktop {
  display: none;
  flex-wrap: nowrap;
  align-items: center;
}

.lang-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 1.15rem;
  line-height: 1;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
  overflow: hidden;
}

.lang-flag-img {
  display: block;
  width: 1.35rem;
  height: 0.9rem;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.lang-flag:hover {
  background: var(--blush);
  border-color: var(--blush-deep);
  transform: translateY(-1px);
}

.lang-flag.active {
  background: var(--blush);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(181, 148, 95, 0.25);
}

/* Mobile: single flag opens picker; desktop: all flags visible */
.lang-picker {
  display: none;
  position: relative;
  flex-shrink: 0;
}

.lang-picker-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.35rem 0.55rem;
  min-width: 44px;
  min-height: 44px;
  background: var(--white);
  border: 1.5px solid rgba(181, 148, 95, 0.28);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}

.lang-picker-toggle .lang-flag-img {
  width: 1.5rem;
  height: 1rem;
}

.lang-picker-chevron {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  margin-top: -0.15rem;
  transition: transform 0.2s;
}

.lang-picker.open .lang-picker-toggle {
  border-color: var(--gold);
  background: var(--blush);
}

.lang-picker.open .lang-picker-chevron {
  transform: rotate(-135deg);
  margin-top: 0.15rem;
}

.lang-picker-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  min-width: 12.5rem;
  background: var(--white);
  border: 1px solid rgba(181, 148, 95, 0.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  padding: 0.35rem;
}

.lang-picker-menu[hidden] {
  display: none;
}

.lang-picker-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.75rem;
  min-height: 44px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}

.lang-picker-option .lang-flag-img {
  width: 1.4rem;
  height: 0.93rem;
}

.lang-picker-option:hover,
.lang-picker-option.active {
  background: var(--blush);
}

.lang-picker-option.active {
  color: var(--gold-dark);
  font-weight: 600;
}

@media (max-width: 767px) {
  .lang-picker {
    display: block;
  }

  .lang-flags--desktop {
    display: none !important;
  }

  .header-inner {
    gap: 0.5rem;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (min-width: 768px) {
  .lang-picker {
    display: none !important;
  }

  .lang-flags--desktop {
    display: flex;
    flex-wrap: nowrap;
  }

  .header-actions {
    flex-shrink: 0;
    gap: 0.65rem;
  }

  .header-actions .lang-flags--desktop .lang-flag {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
  }

  .header-actions .lang-flags--desktop .lang-flag-img {
    width: 1.3rem;
    height: 0.87rem;
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .main-nav ul {
    gap: 0.85rem;
  }

  .main-nav a {
    font-size: 0.82rem;
  }

  .header-actions .lang-flags--desktop {
    gap: 0.2rem;
  }

  .header-actions .lang-flags--desktop .lang-flag {
    width: 1.875rem;
    height: 1.875rem;
  }

  .header-actions .lang-flags--desktop .lang-flag-img {
    width: 1.2rem;
    height: 0.8rem;
  }

  .header-actions .btn-primary {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }
}

@media (min-width: 1100px) {
  .header-actions .lang-flags--desktop .lang-flag {
    width: 2.125rem;
    height: 2.125rem;
  }

  .header-actions .lang-flags--desktop .lang-flag-img {
    width: 1.35rem;
    height: 0.9rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(181, 148, 95, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--blush); }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1da851; }
.btn-lg { padding: 0.9rem 1.75rem; font-size: 1rem; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 2rem;
  z-index: 999;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0; list-style: none; }
.mobile-nav a {
  display: block;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--blush);
}

/* Hero */
.hero {
  padding: calc(var(--header-h) + 2rem) 0 2.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(181, 148, 95, 0.1) 0%, transparent 60%),
    linear-gradient(165deg, var(--blush) 0%, var(--white) 45%);
  position: relative;
}

.hero-main {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 768px) {
  .hero {
    padding: calc(var(--header-h) + 3rem) 0 4rem;
  }

  .hero-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-main {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 1.5rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.pill {
  padding: 0.35rem 0.85rem;
  background: var(--white);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--blush-deep);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Inquiry Card */
.inquiry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(181, 148, 95, 0.12);
}
.inquiry-card h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.inquiry-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--blush-deep);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { min-height: 80px; resize: vertical; }

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.form-actions .btn { width: 100%; }

.trust-response {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.trust-response .icon { flex-shrink: 0; color: var(--gold); margin-top: 0.1rem; }

/* Trust Bar */
.trust-bar {
  background: var(--text);
  color: var(--white);
  padding: 1.25rem 0;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.trust-item strong { display: block; font-size: 1rem; }
.trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(181, 148, 95, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Impressions */
.impressions {
  padding: 3rem 0;
  background: var(--white);
}

.section-header--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 720px;
}

.impressions-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

.impression-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.impression-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.impression-card:hover img { transform: scale(1.03); }

.impression-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(26, 24, 22, 0.75));
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

@media (min-width: 640px) {
  .impressions-grid {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: repeat(2, minmax(180px, 1fr));
    gap: 1rem;
  }

  .impression-card--large {
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .impression-card:not(.impression-card--large) {
    aspect-ratio: 16 / 11;
  }
}

@media (min-width: 768px) {
  .impressions { padding: 4rem 0; }
  .impressions-grid { min-height: 420px; }
}
/* Sections */
section { padding: 3.5rem 0; }

@media (min-width: 768px) {
  section { padding: 5rem 0; }
}

section:nth-child(even) { background: var(--blush); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-header p { color: var(--text-muted); }

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.feature-card {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(181, 148, 95, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow); }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--blush);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Accommodation */
.accommodation-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.gallery {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--blush-deep);
  touch-action: pan-y pinch-zoom;
  user-select: none;
  -webkit-user-select: none;
}
.gallery--wide {
  aspect-ratio: 16 / 10;
  min-height: 260px;
}
.slide-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.gallery-slide.active { opacity: 1; z-index: 1; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background:
    linear-gradient(145deg, var(--blush) 0%, var(--blush-deep) 50%, rgba(181, 148, 95, 0.15) 100%);
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  text-align: center;
  padding: 2rem;
}
.gallery-placeholder::before {
  content: '✦';
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.6;
}
.gallery-nav {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
}
.gallery-dot.active { background: var(--white); width: 24px; border-radius: 4px; }
.gallery-arrows button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.95);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.gallery-arrows .icon { width: 20px; height: 20px; }
.gallery-arrows .prev { left: 0.75rem; }
.gallery-arrows .next { right: 0.75rem; }

.accommodation-layout--full {
  display: grid;
  gap: 2rem;
}

.accommodation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .accommodation-layout--full {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
  .gallery--wide { min-height: 360px; }
}

.accommodation-info h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.price-tag small { font-family: var(--font-sans); font-size: 0.75rem; color: var(--text-muted); }

.accommodation-info > p { color: var(--text-muted); margin-bottom: 1rem; }

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.amenity {
  padding: 0.35rem 0.75rem;
  background: var(--blush);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
}

.expandable { margin-top: 1rem; }
.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.expandable-content.open { max-height: 600px; }
.expandable-content p { color: var(--text-muted); margin-bottom: 1rem; }
.expand-toggle {
  background: none;
  border: none;
  color: var(--gold-dark);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

/* Location / Employers */
.location-grid {
  display: grid;
  gap: 2rem;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.location-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
.location-body { padding: 1.5rem; }
.location-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.location-body address {
  font-style: normal;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.map-link {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.employers-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}
.employers-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
}
.employers-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--blush-deep);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.faq-question svg { flex-shrink: 0; transition: transform 0.3s; color: var(--gold); }
.faq-question .icon { flex-shrink: 0; transition: transform 0.3s; color: var(--gold); }
.faq-item.open .faq-question .icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact */
.contact-section { background: var(--text) !important; color: var(--white); }
.contact-section .section-label { color: var(--gold-light); }
.contact-section .section-header h2 { color: var(--white); }
.contact-section .section-header p { color: rgba(255,255,255,0.7); }

.contact-grid {
  display: grid;
  gap: 2rem;
}
.host-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(181, 148, 95, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.host-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.host-photo {
  width: 96px;
  height: 96px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50%;
  border: 3px solid var(--gold-light);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.host-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
  color: var(--gold-light);
}
.host-card > p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.host-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-buttons .btn { justify-content: flex-start; }

/* Footer */
.site-footer {
  background: #1a1816;
  color: rgba(255,255,255,0.6);
  padding: 3rem 0 2rem;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.legal-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  transition: background 0.2s;
}
.legal-btn:hover { background: rgba(255,255,255,0.1); }

.legal-panel {
  display: none;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.7;
}
.legal-panel.open { display: block; }
.legal-panel h4 {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.legal-panel p { margin-bottom: 0.75rem; }

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--blush-deep);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  gap: 0.5rem;
}
.sticky-cta .btn { flex: 1; padding: 0.85rem 0.75rem; font-size: 0.9rem; min-height: 48px; }

.brand-name { font-size: 1rem; }
.brand-tagline { display: none; }

@media (min-width: 480px) {
  .brand-tagline { display: block; }
  .brand-name { font-size: 1.15rem; }
}

/* Responsive */
@media (min-width: 640px) {
  .trust-items { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .employers-list { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .main-nav { display: block; }
  .menu-toggle { display: none; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .form-row.three { grid-template-columns: 1fr 1fr 1fr; }
  .inquiry-card { position: sticky; top: calc(var(--header-h) + 1rem); }
}

@media (max-width: 767px) {
  .form-row { grid-template-columns: 1fr; }
  .form-actions { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .header-actions .btn-primary { display: none; }
  .hero h1 { font-size: 1.85rem; }
  .hero-lead { font-size: 1rem; }
  .hero-pills { gap: 0.4rem; }
  .pill { font-size: 0.78rem; }
  .inquiry-card {
    padding: 1.25rem;
    border-radius: var(--radius);
    margin-inline: 0;
  }
  section { padding: 2.5rem 0; }
  .impressions { padding: 2.5rem 0; }
  .impressions-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }
  .impressions-grid::-webkit-scrollbar {
    display: none;
  }
  .impression-card {
    flex: 0 0 88%;
    scroll-snap-align: center;
    aspect-ratio: 4 / 3;
  }
  .impression-card--large {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
  .section-header {
    margin-bottom: 1.75rem;
    text-align: left;
    max-width: none;
  }
  .section-header h2 { font-size: 1.55rem; }
  .section-header p { font-size: 0.95rem; }
  .features-grid { grid-template-columns: 1fr; }
  .trust-item { font-size: 0.8rem; }
  .trust-item strong { font-size: 0.92rem; }
  .contact-buttons .btn { justify-content: center; width: 100%; }
  .contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .host-card { padding: 1.5rem; }
  .host-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .host-photo {
    width: 112px;
    height: 112px;
  }

  /* Unterkunft */
  .accommodation-layout,
  .accommodation-layout--full {
    gap: 1.5rem;
  }
  .gallery,
  .gallery--wide {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 0;
    max-height: none;
    border-radius: var(--radius);
  }
  .gallery-arrows button { width: 40px; height: 40px; }
  .gallery-arrows .prev { left: 0.5rem; }
  .gallery-arrows .next { right: 0.5rem; }
  .slide-label {
    left: 0.75rem;
    bottom: 0.75rem;
    font-size: 0.75rem;
  }
  .accommodation-info h3 { font-size: 1.35rem; line-height: 1.25; }
  .price-tag { font-size: 1.3rem; }
  .amenities { margin: 1rem 0; gap: 0.4rem; }
  .amenity { font-size: 0.78rem; }
  .accommodation-actions {
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.25rem;
  }
  .accommodation-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  /* Lage & below */
  .location-grid { gap: 1.25rem; }
  .location-map iframe { height: 220px; }
  .location-body { padding: 1.25rem; }
  .location-body h3 { font-size: 1.15rem; }
  .employers-list {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .employers-list li { font-size: 0.82rem; }
  .faq-question {
    font-size: 0.95rem;
    padding: 1rem 0;
    gap: 0.75rem;
    line-height: 1.4;
  }
  .faq-answer p { font-size: 0.9rem; }
  .expandable-content p { font-size: 0.92rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
