@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/manrope-variable.woff2') format('woff2-variations'), url('/fonts/manrope-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('/fonts/playfair-display-variable.woff2') format('woff2-variations'), url('/fonts/playfair-display-variable.woff2') format('woff2');
}

:root {
  --bg: #faf7f1;
  --surface: #ffffff;
  --ink: #1f2a24;
  --ink-soft: #5c675f;
  --line: #e8e1d3;
  --dark: #141b2e;
  --dark-soft: #212c47;
  --gold: #b28a52;
  --gold-light: #e7d3ac;
  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(20, 27, 46, 0.25);
  --shadow-sm: 0 4px 14px -6px rgba(20, 27, 46, 0.18);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.9em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--dark);
  color: #fff;
}
.btn-primary:hover { background: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark {
  background: transparent;
  border-color: var(--line);
  color: var(--dark);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

/* Header */
.utility-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
}
.utility-bar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 38px;
  font-size: 0.82rem;
}
.utility-bar-inner a { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.78); }
.utility-bar-inner a:hover { color: #fff; }
.utility-bar-inner .icon-svg { width: 14px; height: 14px; color: var(--gold-light); }

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  white-space: nowrap;
  flex: none;
}
.brand img { height: 38px; width: auto; flex: none; }
.brand small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}
nav.main-nav { display: flex; gap: 22px; flex-wrap: nowrap; }
nav.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--dark); }
nav.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
}
.header-cta { display: flex; align-items: center; gap: 16px; flex: none; }
.header-cta .btn-primary { padding: 12px 22px; font-size: 0.88rem; white-space: nowrap; }
.menu-toggle { display: none; background: none; border: none; padding: 4px; cursor: pointer; color: var(--dark); }

@media (max-width: 1160px) {
  .utility-bar { display: none; }
  nav.main-nav { display: none; }
  .menu-toggle { display: block; }
  .nav-bar.open nav.main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--surface);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
}
@media (max-width: 560px) {
  .header-cta .btn-primary { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,27,46,0.55) 0%, rgba(20,27,46,0.72) 65%, rgba(20,27,46,0.9) 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 3;
  background: var(--dark);
  pointer-events: none;
  animation: heroCurtain 1.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

/* Cinematic hero: curtain-up reveal, bold Ken Burns zoom, scroll parallax on the container */
.hero-bg-img {
  position: absolute;
  inset: -110px -40px;
  background-size: cover;
  background-position: center;
  transform: scale(1.32);
  animation: heroKenBurns 11s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes heroCurtain { from { opacity: 1; } to { opacity: 0; } }
@keyframes heroKenBurns { to { transform: scale(1); } }

.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-enter .hero-rule {
  transform-origin: left;
  animation: heroRuleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}
.hero-enter h1 .line { display: block; overflow: hidden; }
.hero-enter h1 .line span { display: block; animation: heroLineUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-enter h1 .line:nth-child(1) span { animation-delay: 1.3s; }
.hero-enter h1 .line:nth-child(2) span { animation-delay: 1.55s; }
.hero-enter .lead { animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.9s both; }
.hero-enter .hero-actions { animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 2.1s both; }

@keyframes heroRuleIn { from { transform: scaleX(0); opacity: 0; } to { transform: scaleX(1); opacity: 1; } }
@keyframes heroLineUp {
  from { transform: translateY(115%); opacity: 0; filter: blur(6px); }
  to { transform: translateY(0); opacity: 1; filter: blur(0); }
}
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .hero-bg::before { animation: none; opacity: 0; }
  .hero-bg-img { animation: none; transform: scale(1); }
  .hero-enter .hero-rule,
  .hero-enter h1 .line span,
  .hero-enter .lead,
  .hero-enter .hero-actions {
    animation: none; opacity: 1; transform: none; filter: none;
  }
}
.hero-content p.lead { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin-top: 1.6em; flex-wrap: wrap; }
.hero-stats {
  position: relative; z-index: 2;
  display: flex; gap: 40px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold-light);
}
.hero-stats div span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* Page hero (smaller, for subpages) */
.page-hero {
  position: relative;
  padding: 150px 0 70px;
  color: #fff;
  overflow: hidden;
}
.page-hero .hero-bg::after { background: linear-gradient(180deg, rgba(20,27,46,0.72) 0%, rgba(20,27,46,0.85) 100%); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero p.lead { color: rgba(255,255,255,0.85); max-width: 620px; }

/* Sections */
section { padding: 90px 0; }
section.tight { padding: 60px 0; }
.section-head { max-width: 640px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.bg-dark { background: var(--dark); color: #fff; }
.bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark p { color: rgba(255,255,255,0.72); }
.bg-surface { background: var(--surface); }

/* btn-primary matches --dark, so on any dark-background context it needs a gold fill to stay visible */
.hero .btn-primary,
.page-hero .btn-primary,
.bg-dark .btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.hero .btn-primary:hover,
.page-hero .btn-primary:hover,
.bg-dark .btn-primary:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-sm);
}

/* Grid helpers */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Cards */
.card {
  display: block;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .card-img { aspect-ratio: 4/3; overflow: hidden; }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card .card-body { padding: 22px; }
.card .tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  background: rgba(178,138,82,0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.card .meta {
  display: flex;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 10px;
  flex-wrap: wrap;
}
.card .meta span { display: inline-flex; align-items: center; gap: 6px; }

.pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.pill {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--dark);
  background: var(--surface);
  transition: border-color 0.2s ease, color 0.2s ease;
}
a.pill:hover { border-color: var(--gold); color: var(--gold); }

.feature-col { transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
.feature-col:hover { transform: translateY(-8px); }
.feature-col:hover .icon-svg-lg { box-shadow: var(--shadow); transform: scale(1.08); }
.feature-col h3 { font-family: 'Manrope', sans-serif; font-size: 1.1rem; margin: 20px 0 8px; }
.feature-col p { font-size: 0.95rem; }

.benefit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.benefit-card:hover { box-shadow: var(--shadow-sm); border-color: var(--gold-light); }
.benefit-card h3 { font-family: 'Manrope', sans-serif; font-size: 1.08rem; margin: 18px 0 8px; }
.benefit-card p { font-size: 0.92rem; margin: 0; }
.benefit-card .icon-svg-lg { padding: 12px; width: 22px; height: 22px; }

/* Line-icon system (replaces emoji) */
.icon-svg { width: 20px; height: 20px; color: var(--gold); }
.icon-svg-lg {
  width: 26px; height: 26px;
  color: var(--gold);
  padding: 15px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Editorial feature columns (no card chrome, divided by rule) */
.feature-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-columns .feature-col {
  padding: 4px 32px;
  border-left: 1px solid var(--line);
}
.feature-columns .feature-col:first-child { border-left: none; padding-left: 4px; }
@media (max-width: 900px) {
  .feature-columns { grid-template-columns: 1fr 1fr; row-gap: 44px; }
  .feature-columns .feature-col:nth-child(3) { border-left: none; }
}
@media (max-width: 620px) {
  .feature-columns { grid-template-columns: 1fr; }
  .feature-columns .feature-col { border-left: none; padding-left: 4px; }
}

.hero-rule {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 26px;
}

.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.tag-pill {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(178,138,82,0.12);
  color: var(--gold);
}

.checklist { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-direction: column; gap: 12px; }
.checklist li { position: relative; padding-left: 30px; color: rgba(255,255,255,0.82); font-size: 0.96rem; }
.checklist li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.stat-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--dark);
}
.stat-badge span { font-size: 0.9rem; line-height: 1.4; color: var(--ink-soft); max-width: 220px; }

.icon-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.icon-feature .icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(178,138,82,0.14);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.icon-feature h4 { margin-bottom: 4px; font-family: 'Manrope', sans-serif; font-size: 1.02rem; }
.icon-feature p { margin: 0; font-size: 0.92rem; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

.value-card { text-align: center; }
.value-card .icon-svg-lg {
  width: 70px;
  height: 70px;
  padding: 20px;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 4px;
  box-shadow: none;
  margin: 0 auto 20px;
}
.value-card h3 { color: #fff; font-size: 1.05rem; font-family: 'Manrope', sans-serif; margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; margin: 0; }

/* Two-column Q&A / SEO split (Über uns) */
.qa-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
@media (max-width: 900px) { .qa-split { grid-template-columns: 1fr; gap: 44px; } }
.qa-col { padding-right: 0; }
.qa-col.bordered { border-right: 1px solid var(--line); padding-right: 60px; }
@media (max-width: 900px) {
  .qa-col.bordered { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 44px; }
}
.qa-meta { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); margin-bottom: 10px; }
.qa-col h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  position: relative;
}
.qa-col h3::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 2px;
  background: var(--gold);
}
.qa-col p { font-size: 0.96rem; }
.qa-col .highlight-p {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  font-style: italic;
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split.reverse .col-img { order: 2; }

/* Cinematic photo frame: filmic bottom vignette + slow hover zoom */
.cine-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cine-frame img {
  display: block;
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cine-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,27,46,0) 55%, rgba(20,27,46,0.34) 100%);
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.cine-frame:hover img { transform: scale(1.09); }
.cine-frame:hover::after { opacity: 0.6; }
@media (prefers-reduced-motion: reduce) {
  .cine-frame:hover img { transform: none; }
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  margin-bottom: 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
}

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.form-card h2 { font-size: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: #fdfcf9;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.checkbox-row { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--ink-soft); }
.checkbox-row input { width: auto; }

.contact-info-list { display: flex; flex-direction: column; gap: 22px; }

/* Attraction cards (Region page) */
.attraction-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.attraction-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.attraction-card .attraction-img { aspect-ratio: 4/3; overflow: hidden; }
.attraction-card .attraction-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.attraction-card:hover .attraction-img img { transform: scale(1.05); }
.attraction-card .attraction-body { padding: 22px; }
.attraction-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.attraction-card p { font-size: 0.92rem; margin-bottom: 18px; }
.attraction-links { display: flex; gap: 10px; }
.attraction-links a {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
}
.attraction-links .btn-website { background: var(--gold); color: #fff; }
.attraction-links .btn-website:hover { background: var(--dark); }
.attraction-links .btn-route { border: 1px solid var(--line); color: var(--dark); }
.attraction-links .btn-route:hover { border-color: var(--gold); color: var(--gold); }

/* Info strip (Verkehrsanbindung etc.) */
.info-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
@media (max-width: 760px) { .info-strip { grid-template-columns: 1fr; gap: 32px; } }
.info-strip h3 { font-size: 1.1rem; margin-bottom: 10px; }
.info-strip p { font-size: 0.92rem; margin: 0; }

/* Static Q&A cards (Region page) */
.qa-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 760px) { .qa-cards { grid-template-columns: 1fr; } }
.qa-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.qa-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 44px; height: 3px;
  background: var(--gold);
}
.qa-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow-sm); }
.qa-card h3 { font-size: 1.2rem; margin-bottom: 14px; }
.qa-card p { font-size: 0.94rem; margin: 0; }
.qa-card strong { color: var(--dark); }

/* Blog */
.blog-card .card-body p { font-size: 0.92rem; }
.notice-banner {
  background: var(--gold-light);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
}

/* Footer */
footer.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 70px 0 30px; }
footer.site-footer p { color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
footer.site-footer h2 { color: #fff; font-family: 'Manrope', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 16px; }
footer.site-footer a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
footer.site-footer a:hover { color: var(--gold-light); }
footer.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .legal-links { display: flex; gap: 20px; }

.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.badge-row span {
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
}

/* Simple photo+title unit cards (Unsere Einheiten) */
.unit-card a.unit-img { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.unit-card a.unit-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.unit-card:hover a.unit-img img { transform: scale(1.05); }
.unit-card h3 { margin: 16px 0 4px; font-size: 1.1rem; }
.unit-card .unit-tagline { font-size: 0.92rem; margin-bottom: 12px; }
.unit-card .unit-link { font-size: 0.85rem; color: var(--gold); font-weight: 600; }

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.section-head-row .btn { flex: none; }

/* Testimonials (Bewertungen) */
.rating-stars { color: var(--gold); letter-spacing: 2px; }
.testimonial-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-card .rating-stars { display: block; font-size: 0.95rem; margin-bottom: 14px; }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-card.expanded .testimonial-text { -webkit-line-clamp: unset; overflow: visible; }
.testimonial-toggle {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}
.testimonial-toggle:hover { text-decoration: underline; }
.testimonial-author {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

/* Gold CTA band */
.bg-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
}
.bg-gold h2 { color: var(--dark); }
.bg-gold p { color: rgba(31,42,36,0.75); }
.bg-gold .btn-primary { background: var(--dark); }
.bg-gold .btn-primary:hover { background: #000; }

/* Mietwagen split (light) */
.mietwagen-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
}
.mietwagen-feature { margin-bottom: 20px; }
.mietwagen-feature h4 { font-family: 'Manrope', sans-serif; font-size: 1rem; margin-bottom: 3px; }
.mietwagen-feature p { margin: 0; font-size: 0.9rem; }
.mietwagen-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.active { border-color: var(--gold-light); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 26px;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item.active .faq-question, .faq-question:hover { color: var(--gold); }
.faq-icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(178,138,82,0.1);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-icon svg { width: 15px; height: 15px; }
.faq-item.active .faq-icon { transform: rotate(180deg); background: var(--gold); color: #fff; }
.faq-answer { display: none; padding: 0 26px; }
.faq-item.active .faq-answer { display: block; }
.faq-answer p { padding-top: 16px; padding-bottom: 24px; margin: 0; font-size: 0.95rem; border-top: 1px solid var(--line); }

/* Scroll reveal: one authored moment, applied consistently */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Unit detail page */
.unit-back {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.unit-back:hover { color: #fff; }
.unit-note {
  background: var(--gold-light);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  margin: 20px 0;
}

.unit-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .unit-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .unit-gallery { grid-template-columns: 1fr; } }
.unit-gallery-item {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.unit-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.unit-gallery-item:hover img { transform: scale(1.06); }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,14,12,0.94);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 88vw; max-height: 84vh; border-radius: 8px; object-fit: contain; }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 620px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* Blog article */
.article-body { max-width: 720px; margin: 0 auto; }
.article-body p { font-size: 1.03rem; line-height: 1.75; }
.article-body h2 { margin-top: 2em; font-size: 1.5rem; }
.article-body ul { padding-left: 22px; color: var(--ink-soft); margin-bottom: 1.5em; }
.article-body li { margin-bottom: 10px; font-size: 1.02rem; line-height: 1.6; }
.article-cta {
  margin-top: 2.5em;
  padding: 30px 32px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--line);
  text-align: center;
}

/* Kontakt page */
.b2b-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: rgba(178,138,82,0.08);
  border: 1px solid var(--gold-light);
}
.b2b-note .icon-svg { flex: none; margin-top: 2px; }
.b2b-note strong { color: var(--dark); }
.b2b-note p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }

.contact-info-card {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: var(--shadow);
}
.contact-info-card h2 { color: #fff; font-size: 1.1rem; margin: 0; }
.contact-info-card .icon-feature .icon {
  background: rgba(255,255,255,0.08);
  color: var(--gold-light);
}
.contact-info-card .icon-feature h4 { color: #fff; }
.contact-info-card .icon-feature p, .contact-info-card .icon-feature a { color: rgba(255,255,255,0.75); }
.contact-info-card .icon-feature a:hover { color: var(--gold-light); }

.hours-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 34px;
}
.hours-card h2 { margin-bottom: 4px; font-size: 1rem; }
.hours-card p { margin: 0 0 14px; font-size: 0.92rem; color: var(--ink-soft); }
.hours-card .tag-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}
.hours-card .tag-gold .icon-svg { width: 16px; height: 16px; }

.contact-intro { max-width: 760px; }
.contact-intro hr { border: none; border-top: 1px solid var(--line); margin: 28px 0; }
.contact-intro p { font-size: 1.02rem; line-height: 1.75; }
.contact-intro strong { color: var(--gold); font-weight: 700; }
.article-cta p { font-weight: 600; color: var(--dark); margin-bottom: 18px; font-size: 1.05rem; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: -220px;
  z-index: 200;
  max-width: 920px;
  margin: 0 auto;
  transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible { bottom: 24px; }
.cookie-banner-inner {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-inner p { margin: 0; font-size: 0.92rem; flex: 1 1 320px; color: rgba(255,255,255,0.8); }
.cookie-banner-inner a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { white-space: nowrap; }
.cookie-banner .btn-outline-dark { border-color: rgba(255,255,255,0.35); color: #fff; }
.cookie-banner .btn-outline-dark:hover { border-color: var(--gold-light); color: var(--gold-light); }
.cookie-banner .btn-primary { background: var(--gold); color: var(--dark); }
.cookie-banner .btn-primary:hover { background: var(--gold-light); box-shadow: var(--shadow-sm); }
@media (max-width: 640px) {
  .cookie-banner { left: 12px; right: 12px; bottom: -280px; }
  .cookie-banner.visible { bottom: 12px; }
  .cookie-banner-inner { padding: 22px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: none; }
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed; inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20,27,46,0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.cookie-modal.open { opacity: 1; visibility: visible; }
.cookie-modal-box {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px;
  max-width: 520px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
}
.cookie-modal-box h3 { margin-bottom: 12px; }
.cookie-modal-box > p { font-size: 0.95rem; margin-bottom: 26px; }
.cookie-modal-box > p a { color: var(--gold); }
.cookie-modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px;
  border: none; background: none; cursor: pointer;
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
}
.cookie-modal-close svg { width: 18px; height: 18px; }
.cookie-modal-close:hover { color: var(--dark); }
.cookie-category { padding: 18px 0; border-top: 1px solid var(--line); }
.cookie-category:last-of-type { border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.cookie-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.cookie-category p { font-size: 0.88rem; margin: 0; }
.cookie-modal-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }

/* Toggle switch */
.cookie-switch { position: relative; display: inline-flex; flex: none; width: 44px; height: 24px; }
.cookie-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.cookie-switch-slider {
  position: absolute; inset: 0;
  background: var(--line);
  border-radius: 999px;
  transition: background 0.2s ease;
}
.cookie-switch-slider::before {
  content: '';
  position: absolute; left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}
.cookie-switch input:checked + .cookie-switch-slider { background: var(--gold); }
.cookie-switch input:checked + .cookie-switch-slider::before { transform: translateX(20px); }
.cookie-switch.disabled input { cursor: not-allowed; }
.cookie-switch.disabled .cookie-switch-slider { opacity: 0.6; }
