/* ============================================================
   styles.css
   Einstiegspunkt: alle Design-Tokens + Komponenten in einer Datei.
   Produktionsbetrieb: Fonts self-hosten für Core Web Vitals.
   ============================================================ */

/* @import url("/assets/fonts/fonts.css"); */
/* Entwicklung-Fallback: Google Fonts (bereits in seo.php eingebunden) */

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Lato', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #2C2B29;
  background: #FAFAF8;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: #1B5239; text-decoration: none; }
a:hover { color: #113A27; text-decoration: underline; text-underline-offset: 2px; }
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  color: #1A1917;
}
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; }

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Brand */
  --brand-primary:        #C8922A;
  --brand-primary-dark:   #A0721F;
  --brand-secondary:      #1B5239;
  --brand-secondary-dark: #113A27;
  --brand-cta:            #D44500;
  --brand-cta-hover:      #B03800;

  /* Surfaces */
  --surface-base:    #FAFAF8;
  --surface-card:    #FFFFFF;
  --surface-subtle:  #F3F1EC;
  --surface-warm:    #F8F1E4;
  --surface-gold:    #FDF8EE;
  --surface-inverse: #113A27;

  /* Text */
  --text-primary:   #1A1917;
  --text-body:      #2C2B29;
  --text-muted:     #888580;
  --text-inverse:   #FFFFFF;

  /* Borders */
  --border-default: #E5E2DA;
  --border-subtle:  #F3F1EC;
  --border-accent:  #E2A83A;
  --border-focus:   #2E7050;

  /* Shadows */
  --shadow-card:       0 1px 4px rgba(44,43,41,.08);
  --shadow-card-hover: 0 4px 12px -2px rgba(44,43,41,.12);
  --shadow-btn-cta:    0 2px 12px rgba(212,69,0,.28);

  /* Radii */
  --radius-btn:  8px;
  --radius-card: 12px;
  --radius-badge: 9999px;

  /* Transitions */
  --t-color:  color .15s ease-out, background-color .15s ease-out, border-color .15s ease-out;
  --t-shadow: box-shadow .18s ease-out;
  --t-transform: transform .18s ease-out;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px)  { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.section {
  padding: 56px 0;
}
@media (min-width: 1024px) { .section { padding: 72px 0; } }

.section-header {
  margin-bottom: 32px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 6px;
}
.section-header p {
  color: var(--text-muted);
  margin: 0;
}

/* Gold-Trennlinie */
.gold-rule {
  width: 40px;
  height: 3px;
  background: var(--brand-primary);
  border-radius: 2px;
  margin-bottom: 12px;
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border-default);
  box-shadow: var(--shadow-card);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo-link { display: flex; align-items: center; }
.site-logo { height: 42px; width: auto; display: block; }

/* Desktop-Nav */
.site-nav {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .site-nav a {
    font-size: .875rem;
    font-weight: 700;
    color: #454340;
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: var(--t-color);
  }
  .site-nav a:hover,
  .site-nav a.active {
    color: var(--brand-primary);
    border-bottom-color: var(--brand-primary);
    text-decoration: none;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #454340;
  border-radius: 2px;
  transition: .2s;
}
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border-default);
  background: #fff;
  padding: 8px 20px 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 700;
  color: #454340;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--brand-primary); text-decoration: none; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #232220;
  border-top: 3px solid var(--brand-primary);
  padding: 48px 0 28px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-logo-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-logo-img  { height: 56px; width: auto; opacity: .92; }
.footer-tagline {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .05em;
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  width: 100%;
}
.footer-nav a {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  padding: 5px 14px;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: color .15s;
  white-space: nowrap;
}
.footer-nav a:last-child { border-right: none; }
.footer-nav a:hover { color: #E2A83A; text-decoration: none; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  font-size: .72rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }
.footer-bottom-sep { opacity: .3; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-cta);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-btn-cta);
  letter-spacing: .02em;
  transition: background .15s, box-shadow .15s;
}
.btn-cta:hover {
  background: var(--brand-cta-hover);
  box-shadow: 0 4px 16px rgba(212,69,0,.36);
  text-decoration: none;
  color: #fff;
}
.btn-cta:active { transform: translateY(1px); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-primary);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .15s;
  letter-spacing: .02em;
}
.btn-primary:hover { background: var(--brand-primary-dark); text-decoration: none; color: #fff; }
.btn-primary:active { transform: translateY(1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--brand-secondary);
  font-family: 'Lato', sans-serif;
  font-size: .9375rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  border: 2px solid var(--brand-secondary);
  cursor: pointer;
  transition: background .15s;
}
.btn-outline:hover { background: #EEF5F1; text-decoration: none; color: var(--brand-secondary); }

.btn-sm { padding: 8px 16px; font-size: .875rem; }

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb-wrap {
  background: #fff;
  border-bottom: 1px solid var(--border-subtle);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 14px 0;
  font-size: .8rem;
  color: var(--text-muted);
}
.breadcrumb li + li::before {
  content: "›";
  margin-right: 6px;
  color: #C9C5BC;
}
.breadcrumb a { color: var(--brand-secondary); font-weight: 700; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Cards ─────────────────────────────────────────────────── */
.c-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border-bottom: 2px solid transparent;
  text-decoration: none;
  color: var(--text-primary);
  transition: box-shadow .18s, border-color .18s;
}
.c-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-bottom-color: var(--border-accent);
  text-decoration: none;
  color: var(--text-primary);
}
.c-card:hover .c-img { transform: scale(1.04); }

.c-img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #F3D98D;
}
.c-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease-out;
}
.c-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F3D98D 0%, #C8922A 100%);
}
.c-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 7px;
}
.c-badge {
  display: inline-flex;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  background: #EEF5F1;
  border-radius: var(--radius-badge);
  padding: 3px 9px;
  align-self: flex-start;
}
.c-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0;
}
.c-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-meta {
  font-size: .78rem;
  color: #ABA79E;
  margin-top: auto;
  padding-top: 8px;
}
.c-cta {
  font-size: .875rem;
  font-weight: 700;
  color: var(--brand-cta);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Card Grids */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px)  { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3,1fr); } }

.card-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px)  { .card-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .card-grid-4 { grid-template-columns: repeat(4,1fr); } }

/* ── Quick-Info Bar ─────────────────────────────────────────── */
.quick-info {
  background: #fff;
  border-bottom: 1px solid var(--border-default);
  padding: 16px 0;
}
.quick-info-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.qi-facts { display: flex; flex-wrap: wrap; gap: 20px; }
.qi-fact  { display: flex; flex-direction: column; gap: 1px; }
.qi-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.qi-value { font-size: .9rem; font-weight: 700; color: var(--text-primary); }
.qi-ctas  { display: flex; flex-wrap: wrap; gap: 8px; }

/* ── CTA-Block ──────────────────────────────────────────────── */
.cta-block {
  background: var(--surface-warm);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}
.cta-block h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 4px;
}
.cta-block p {
  font-size: .84rem;
  color: var(--text-muted);
  margin: 0 0 14px;
  line-height: 1.5;
}
.cta-block-btns { display: flex; flex-wrap: wrap; gap: 8px; }

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 7px; }
.faq-item {
  border-radius: var(--radius-btn);
  border: 1px solid var(--border-default);
  overflow: hidden;
}
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  font-family: 'Lato', sans-serif;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-primary);
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color .15s;
}
.faq-trigger:hover { color: var(--brand-primary); }
.faq-trigger[aria-expanded="true"] {
  color: var(--brand-primary-dark);
  background: #FDFAF3;
  border-bottom: 1px solid #F3D98D;
}
.faq-icon {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--brand-primary);
  flex-shrink: 0;
  transition: transform .22s ease-out;
  display: inline-block;
}
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-body {
  padding: 12px 16px 14px;
  font-size: .9rem;
  line-height: 1.72;
  color: #454340;
  background: #FDFAF3;
}
.faq-body[hidden] { display: none; }
.faq-body.open    { display: block; }

/* ── Hero (Detail-Seite) ────────────────────────────────────── */
.detail-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 768px) { .detail-hero { height: 520px; } }
.detail-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,35,25,.1) 0%, rgba(10,35,25,.72) 100%);
}
.detail-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
  width: 100%;
}
.detail-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,.28);
}
.detail-hero-sub { color: rgba(255,255,255,.78); font-size: .9375rem; margin: 0; }

/* ── Detail-Layout (Artikel + Sidebar) ─────────────────────── */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0 64px;
}
@media (min-width: 960px) {
  .detail-layout { grid-template-columns: 1fr 320px; gap: 40px; }
}

.article-body p {
  font-size: 1.0625rem;
  line-height: 1.82;
  color: var(--text-body);
  margin: 0 0 16px;
}
.article-body ul, .article-body ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.article-body ul li, .article-body ol li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 5px;
}

.section-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 14px;
  padding-top: 36px;
  border-top: 1px solid var(--border-default);
}
.section-h2.first { border-top: none; padding-top: 0; }
.article-body > .section-h2:first-of-type { border-top: none; padding-top: 0; }

/* Tabellen (Öffnungszeiten, Tickets) */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  border-radius: 8px;
  overflow: hidden;
}
.hours-table td {
  padding: 9px 14px;
  font-size: .9rem;
  border-bottom: 1px solid var(--border-subtle);
  line-height: 1.4;
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table tr:nth-child(even) { background: var(--surface-base); }
.hours-table td:first-child { font-weight: 700; color: var(--text-primary); width: 38%; }
.hours-table td:last-child   { color: #454340; }

/* Transport-Badges */
.transport-list { display: flex; flex-direction: column; gap: 10px; margin: 12px 0 20px; }
.transport-item { display: flex; align-items: flex-start; gap: 12px; }
.t-badge {
  flex-shrink: 0;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-top: 2px;
}
.t-bts   { background: #009DC4; color: #fff; }
.t-mrt   { background: #4A148C; color: #fff; }
.t-boat  { background: #0D7EC4; color: #fff; }
.t-taxi  { background: #2E7050; color: #fff; }
.t-train { background: #C8922A; color: #fff; }
.t-tour  { background: #888580; color: #fff; }
.t-car   { background: #454340; color: #fff; }
.t-tuktuk{ background: var(--brand-primary); color: #fff; }
.t-text  { font-size: .9375rem; color: var(--text-body); line-height: 1.55; }
.t-text strong { color: var(--text-primary); }

/* Highlights Grid */
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 16px 0 20px;
}
@media (min-width: 600px) { .highlight-grid { grid-template-columns: 1fr 1fr; } }
.highlight-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #E5E2DA;
  transition: box-shadow .18s, border-color .18s;
}
.highlight-item:hover { box-shadow: 0 4px 12px rgba(44,43,41,.08); border-color: #E2A83A; }
.highlight-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #E2A83A;
  opacity: .5;
  line-height: 1;
  flex-shrink: 0;
}
.highlight-text h4 { font-size: .875rem; font-weight: 700; margin: 0 0 3px; color: #1A1917; }
.highlight-text p  { font-size: .78rem; color: #888580; margin: 0; line-height: 1.4; }

/* Besuchstipps */
.tips-list {
  list-style: none;
  margin: 12px 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tips-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .9375rem;
  color: var(--text-body);
  line-height: 1.6;
}
.tip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Galerie */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0 8px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 7px;
}

/* Google Maps */
.map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-default);
  margin: 12px 0 20px;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
}

/* ── Sidebar ────────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 14px; }
@media (min-width: 960px) { .sidebar { position: sticky; top: 80px; } }

.sb-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border-default);
  overflow: hidden;
}
.sb-header {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sb-header h3 {
  font-family: 'Lato', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}
.sb-header-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
  flex-shrink: 0;
}
.sb-body { padding: 14px 16px; }
.sb-ctas { display: flex; flex-direction: column; gap: 8px; }

/* TOC */
.toc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
  font-size: .875rem;
  font-weight: 700;
  color: #454340;
  text-decoration: none;
  border-bottom: 1px solid var(--border-subtle);
  transition: color .12s, background .12s;
}
.toc-link::after { content: '›'; color: #C9C5BC; font-size: 1rem; }
.toc-link:hover  { color: var(--brand-primary); background: #FDFAF3; text-decoration: none; }
.toc-link:last-child { border-bottom: none; }

/* ── Verwandte / Related ────────────────────────────────────── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr 1fr; } }
.rel-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text-primary);
  transition: opacity .15s;
}
.rel-card:hover { opacity: .82; text-decoration: none; }
.rel-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 7px;
}
.rel-card-cat {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  margin-bottom: 2px;
}
.rel-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.3;
}

/* ── Utility ────────────────────────────────────────────────── */
.bg-warm    { background: var(--surface-warm); }
.bg-subtle  { background: var(--surface-subtle); }
.see-all    { text-align: center; margin-top: 32px; }
.text-muted { color: var(--text-muted); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── Homepage Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 768px)  { .hero { height: 660px; } }
@media (min-width: 1024px) { .hero { height: 740px; } }
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,35,25,.15) 0%, rgba(10,35,25,.52) 50%, rgba(10,35,25,.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 64px;
  width: 100%;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -.025em;
  text-shadow: 0 2px 18px rgba(0,0,0,.30);
  max-width: 700px;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin: 0 0 32px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-ctas  { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background .15s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.25); text-decoration: none; color: #fff; }

/* Kategorien-Grid (Homepage) */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 640px)  { .cat-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(5,1fr); gap: 16px; } }

.cat-item {
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  background: #fff;
  border-radius: var(--radius-card);
  border-top: 3px solid transparent;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--text-primary);
  transition: box-shadow .18s, border-color .18s, transform .18s;
}
.cat-item:hover {
  box-shadow: 0 6px 18px rgba(44,43,41,.12);
  border-top-color: var(--brand-primary);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--text-primary);
}
.cat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E2A83A;
  opacity: .45;
  line-height: 1;
  margin-bottom: 10px;
}
.cat-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}
.cat-desc  { font-size: .75rem; color: var(--text-muted); line-height: 1.4; }
.cat-arrow { margin-top: auto; padding-top: 12px; color: var(--brand-primary); font-size: .8rem; font-weight: 700; }

/* Quick-Facts Strip (Homepage) */
.facts-strip { background: var(--surface-base); border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
}
@media (min-width: 640px) { .facts-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 900px) { .facts-grid { grid-template-columns: repeat(6,1fr); } }
.fact {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}
.fact:last-child { border-right: none; }
.fact-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #ABA79E;
}
.fact-val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

/* Stadtteile-Grid (Homepage) */
.district-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 900px) { .district-grid { grid-template-columns: repeat(4,1fr); } }
.district-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 160px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
}
.district-card:hover { text-decoration: none; color: #fff; }
.district-card:hover .district-img { transform: scale(1.05); }
.district-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease-out;
}
.district-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,25,18,.82) 0%, rgba(10,25,18,.2) 70%, transparent 100%);
}
.district-body { position: relative; z-index: 1; padding: 16px 18px; }
.district-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; font-weight: 700; margin: 0 0 3px; }
.district-desc { font-size: .75rem; color: rgba(255,255,255,.78); margin: 0; }

/* Welcome / USP-Sektion */
.welcome-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) { .welcome-inner { grid-template-columns: 1fr 1fr; gap: 64px; } }
.welcome-text h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin: 0 0 14px; }
.welcome-text p  { font-size: 1.0625rem; line-height: 1.82; color: #454340; margin: 0 0 24px; }
.welcome-usps { display: flex; flex-direction: column; gap: 12px; }
.usp { display: flex; align-items: flex-start; gap: 14px; }
.usp-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brand-primary); flex-shrink: 0; margin-top: 6px; }
.usp-text { font-size: .9375rem; line-height: 1.6; color: var(--text-body); }
.usp-text strong { color: var(--text-primary); }
.welcome-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-default);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.stat { background: #fff; padding: 20px 22px; display: flex; flex-direction: column; gap: 4px; }
.stat-val   { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; font-weight: 700; color: var(--brand-primary); line-height: 1; }
.stat-label { font-size: .78rem; color: var(--text-muted); font-weight: 700; letter-spacing: .04em; }

/* ── Info-Strip (Homepage: Was du wissen solltest) ── */
.info-strip { background: var(--surface-warm); }
.info-strip-inner {
  max-width: 760px;
}

/* ── Kategorie-Seiten (Übersicht) ─────────────────────────── */
.page-hero {
  background: linear-gradient(to right, #113A27, #1B5239);
  padding: 40px 0 48px;
}
@media (min-width: 1024px) { .page-hero { padding: 56px 0 64px; } }
.page-hero .breadcrumb { padding: 0; margin-bottom: 16px; }
.page-hero .breadcrumb li { color: rgba(255,255,255,.5); }
.page-hero .breadcrumb a { color: rgba(255,255,255,.65); font-weight: 700; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb li + li::before { color: rgba(255,255,255,.3); }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); color: #fff; margin: 0 0 10px; }
.page-hero p  { font-size: 1rem; color: rgba(255,255,255,.72); margin: 0; max-width: 560px; line-height: 1.65; }

/* Filter Bar */
.filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--border-default);
  position: sticky;
  top: 64px;
  z-index: 50;
  padding: 12px 0;
}
.filter-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.filter-btn {
  font-family: 'Lato', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1.5px solid var(--border-default);
  background: #fff;
  color: #454340;
  cursor: pointer;
  transition: background .12s, border-color .12s, color .12s;
  white-space: nowrap;
}
.filter-btn:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.filter-btn.active { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; }
.filter-count { font-size: .75rem; color: var(--text-muted); margin-left: auto; white-space: nowrap; }

/* Intro Text Block */
.cat-intro { max-width: 760px; }
.cat-intro h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 14px;
}
.cat-intro p {
  font-size: 1.0625rem;
  line-height: 1.82;
  color: #454340;
  margin: 0 0 14px;
}
.cat-intro p:last-child { margin-bottom: 0; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pg-btn {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 8px;
  border: 1.5px solid var(--border-default);
  background: #fff;
  font-family: 'Lato', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: #454340;
  cursor: pointer;
  text-decoration: none;
  transition: background .12s, border-color .12s, color .12s;
}
.pg-btn:hover { border-color: var(--brand-primary); color: var(--brand-primary); text-decoration: none; }
.pg-btn.active { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; }
.pg-btn.active:hover { color: #fff; }
.pg-ellipsis { color: #C9C5BC; padding: 0 4px; line-height: 36px; }

/* ── Detail-Seite: Fehlende Klassen ──────────────────────── */

/* Quick-Info-Bar (Detail-Seite) */
.quick-info { background: #fff; border-bottom: 1px solid var(--border-default); padding: 16px 0; }
.quick-info-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between; }
.qi-facts { display: flex; flex-wrap: wrap; gap: 20px; }
.qi-fact  { display: flex; flex-direction: column; gap: 1px; }
.qi-label { font-size: .6rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--text-muted); }
.qi-value { font-size: .9rem; font-weight: 700; color: var(--text-primary); }
.qi-ctas  { display: flex; flex-wrap: wrap; gap: 8px; }

/* Section H2 mit Trennlinie */
.section-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 14px;
  padding-top: 36px;
  border-top: 1px solid var(--border-default);
}
.section-h2.first { border-top: none; padding-top: 0; }
.article-body > .section-h2:first-of-type { border-top: none; padding-top: 0; }

/* Öffnungszeiten Hinweis */
.hours-note { font-size: .8rem; color: var(--text-muted); margin: 0 0 16px; font-style: italic; }

/* CTA-Block (Buchungskasten im Artikel) */
.cta-block { background: var(--surface-warm); border-radius: 10px; padding: 20px; margin: 20px 0; }
.cta-block h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; font-weight: 700; margin: 0 0 4px; color: var(--text-primary); }
.cta-block p  { font-size: .84rem; color: var(--text-muted); margin: 0 0 14px; line-height: 1.5; }
.cta-block-btns { display: flex; flex-wrap: wrap; gap: 8px; }

/* Transport-Badges (Anfahrt) */
.transport-list  { display: flex; flex-direction: column; gap: 10px; margin: 12px 0 20px; }
.transport-item  { display: flex; align-items: flex-start; gap: 12px; }
.t-badge { flex-shrink: 0; font-size: .65rem; font-weight: 700; letter-spacing: .06em; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; margin-top: 2px; }
.t-bts  { background: #009DC4; color: #fff; }
.t-mrt  { background: #4A148C; color: #fff; }
.t-boat { background: #0D7EC4; color: #fff; }
.t-taxi { background: var(--brand-secondary); color: #fff; }
.t-train{ background: #C8922A; color: #fff; }
.t-tour { background: #888580; color: #fff; }
.t-car  { background: #454340; color: #fff; }
.t-text { font-size: .9375rem; color: #2C2B29; line-height: 1.55; }
.t-text strong { color: var(--text-primary); }

/* Besuchstipps-Liste */
.tips-list { list-style: none; margin: 12px 0 20px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.tips-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .9375rem; color: #2C2B29; line-height: 1.6; }
.tip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-primary); flex-shrink: 0; margin-top: 7px; }

/* Karten-Embed */
.map-wrap { border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); margin: 12px 0 20px; }
.map-wrap iframe { display: block; width: 100%; height: 280px; border: none; }

/* Sidebar TOC-Links */
.toc-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 16px;
  font-size: .875rem; font-weight: 700;
  color: #454340;
  text-decoration: none;
  border-bottom: 1px solid var(--border-subtle);
  transition: color .12s, background .12s;
}
.toc-link::after { content: '›'; color: #C9C5BC; font-size: 1rem; }
.toc-link:hover  { color: var(--brand-primary); background: #FDFAF3; text-decoration: none; }
.toc-link:last-child { border-bottom: none; }

/* Sidebar Facts (neue Variante mit justify-content) */
.sb-facts { display: flex; flex-direction: column; gap: 0; }
.sb-fact  { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; padding: 9px 16px; border-bottom: 1px solid var(--border-subtle); font-size: .875rem; flex-wrap: wrap; }
.sb-fact:last-child   { border-bottom: none; }
.sb-fact-label { color: var(--text-muted); flex-shrink: 0; }
.sb-fact-val   { font-weight: 700; color: var(--text-primary); }

/* FAQ Icon (+ wird zu ×) */
.faq-trigger { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq-icon { font-size: 1.1rem; font-weight: 300; color: var(--brand-primary); flex-shrink: 0; transition: transform .22s ease-out; display: inline-block; }
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-trigger[aria-expanded="true"] { color: var(--brand-primary-dark); background: #FDFAF3; border-bottom: 1px solid #F3D98D; }

/* Verwandte Sehenswürdigkeiten */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr 1fr; } }
.rel-card { display: flex; flex-direction: column; text-decoration: none; color: var(--text-primary); transition: opacity .15s; }
.rel-card:hover { opacity: .82; text-decoration: none; color: var(--text-primary); }
.rel-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 8px; margin-bottom: 7px; }
.rel-card-cat   { font-size: .62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--brand-secondary); margin-bottom: 2px; }
.rel-card-title { font-family: 'Playfair Display', Georgia, serif; font-size: .9rem; font-weight: 700; line-height: 1.3; }

/* ── Buchungs-Widget in Sidebar ───────────────────────────── */
.sb-widget-body {
  padding: 12px 14px;
}
/* Widget-Container normalisieren – externe Widgets haben oft eigene Margins */
.sb-widget-body > div:first-child {
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* ══════════════════════════════════════════════════════════════
   HEADER & NAVIGATION – Desktop + Mobile + Dropdown
══════════════════════════════════════════════════════════════ */

/* ── Site Header ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border-default);
  transition: box-shadow .2s;
}
.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 32px;
}
.logo-link { flex-shrink: 0; display: flex; align-items: center; text-decoration: none; }
.site-logo  { height: 36px; width: auto; display: block; }

/* ── Desktop Nav ─────────────────────────────────────────── */
.main-nav  { flex: 1; display: flex; justify-content: flex-end; }
.nav-list  { list-style: none; display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }

.nav-item  { position: relative; }

.nav-link, .nav-link-btn {
  display: flex; align-items: center; gap: 4px;
  padding: 6px 10px;
  font-family: 'Lato', sans-serif;
  font-size: .875rem; font-weight: 700;
  color: #454340;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  cursor: pointer;
  transition: color .12s, background .12s;
}
.nav-link-btn {
  background: none;
  border: none;
  line-height: inherit;
}
.nav-link:hover, .nav-link-btn:hover,
.nav-link.active, .nav-link-btn.active { color: var(--brand-secondary); background: #F3F8F5; text-decoration: none; }

.nav-chevron { transition: transform .2s; flex-shrink: 0; color: #C9C5BC; }
.nav-item.has-dropdown.is-open .nav-chevron { transform: rotate(180deg); }

/* ── Dropdown – nur per JS geöffnet (.is-open) ───────────── */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(44,43,41,.13);
  padding: 6px;
  margin: 0;
  z-index: 300;
  overflow: hidden;
}
.nav-item.has-dropdown.is-open .nav-dropdown { display: block; }

/* Dropdown Header: "Alle"-Link + Unterkategorie-Links */
.nav-dropdown-header { display: flex; flex-direction: column; }

.nav-dd-all {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 9px 12px;
  font-family: 'Lato', sans-serif; font-size: .875rem; font-weight: 700;
  color: var(--brand-secondary);
  text-decoration: none; border-radius: 6px;
  transition: background .1s;
}
.nav-dd-all:hover { background: #F3F8F5; text-decoration: none; }

.nav-dd-sub {
  display: block; padding: 7px 12px 7px 20px;
  font-family: 'Lato', sans-serif; font-size: .8rem; font-weight: 700;
  color: #666; text-decoration: none; border-radius: 6px;
  transition: background .1s, color .1s;
}
.nav-dd-sub::before { content: '↳ '; color: #C9C5BC; }
.nav-dd-sub:hover, .nav-dd-sub.active { background: #F3F8F5; color: var(--brand-secondary); text-decoration: none; }

/* Trennlinie */
.nav-dd-divider { height: 1px; background: var(--border-subtle); margin: 4px 0; }

/* Eintrags-Liste */
.nav-dd-entries { list-style: none; margin: 0; padding: 0; max-height: 280px; overflow-y: auto; }
.nav-dd-entries li a, .nav-dd-entry {
  display: block; padding: 7px 12px;
  font-family: 'Lato', sans-serif; font-size: .84rem; font-weight: 400;
  color: #454340; text-decoration: none; border-radius: 6px;
  transition: background .1s, color .1s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-dd-entries li a:hover, .nav-dd-entry:hover,
.nav-dd-entries li a.active, .nav-dd-entry.active { background: #F3F8F5; color: var(--brand-secondary); text-decoration: none; }

/* Mobile: Unterkategorie-Links */
.mob-sub-cat {
  display: block; padding: 8px 20px 8px 30px;
  font-family: 'Lato', sans-serif; font-size: .8rem; font-weight: 700;
  color: #888; text-decoration: none;
}
.mob-sub-cat.active { color: var(--brand-secondary); }

/* ── Hamburger ───────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform .22s, opacity .22s;
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ──────────────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border-subtle);
  padding: 8px 0 16px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }

.mob-link {
  display: block;
  padding: 11px 20px;
  font-family: 'Lato', sans-serif;
  font-size: .9375rem; font-weight: 700;
  color: #454340;
  text-decoration: none;
  border-bottom: 1px solid var(--border-subtle);
}
.mob-link.active { color: var(--brand-secondary); }
.mob-link:last-child { border-bottom: none; }

/* Mobile Akkordeon-Gruppe */
.mob-group { border-bottom: 1px solid var(--border-subtle); }

.mob-group-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 20px;
  background: none; border: none; cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: .9375rem; font-weight: 700;
  color: #454340;
  text-align: left;
}
.mob-group-toggle.active { color: var(--brand-secondary); }
.mob-chevron { flex-shrink: 0; color: #C9C5BC; transition: transform .2s; }
.mob-group-toggle[aria-expanded="true"] .mob-chevron { transform: rotate(180deg); }

.mob-group-body {
  display: none;
  flex-direction: column;
  background: var(--surface-subtle);
  padding: 4px 0;
}
.mob-group-body.open { display: flex; }

.mob-sub-all, .mob-sub-link {
  display: block;
  padding: 9px 20px 9px 30px;
  font-family: 'Lato', sans-serif;
  font-size: .875rem; font-weight: 700;
  color: #454340;
  text-decoration: none;
}
.mob-sub-all { color: var(--brand-secondary); font-size: .875rem; }
.mob-sub-link.active, .mob-sub-all.active { color: var(--brand-secondary); }

/* ── Responsive Breakpoints ──────────────────────────────── */
@media (max-width: 960px) {
  .main-nav   { display: none; }
  .hamburger  { display: flex; }
}

/* ══════════════════════════════════════════════════════════════
   TIPPS DETAIL-SEITE
══════════════════════════════════════════════════════════════ */

/* Page Header (Artikel/Guide/Reisezeit – kein Foto) */
.page-header { background: #F8F1E4; border-bottom: 1px solid #E5E2DA; padding: 36px 0 40px; }
.ph-category {
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--brand-primary);
  margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.ph-category::before { content: ''; width: 20px; height: 2px; background: var(--brand-primary); border-radius: 2px; }
.page-header h1 { font-size: clamp(1.7rem, 3.5vw, 2.75rem); color: #1A1917; margin: 0 0 12px; max-width: 680px; }
.page-header p  { font-size: 1rem; color: #656360; margin: 0; max-width: 600px; line-height: 1.65; }

/* Article Hero (nur Reisepläne mit Foto) */
.article-hero { position: relative; height: 360px; overflow: hidden; display: flex; align-items: flex-end; }
@media (min-width: 768px) { .article-hero { height: 440px; } }
.article-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,35,25,.1) 0%, rgba(10,35,25,.75) 100%); }
.article-hero-content { position: relative; z-index: 1; padding-bottom: 36px; width: 100%; }
.article-category {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--brand-primary); margin-bottom: 10px;
}
.article-category::before { content: ''; width: 24px; height: 2px; background: var(--brand-primary); border-radius: 2px; }
.article-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); color: #fff; margin: 0 0 8px; text-shadow: 0 2px 12px rgba(0,0,0,.28); max-width: 720px; }
.article-meta { font-size: .8rem; color: rgba(255,255,255,.65); display: flex; flex-wrap: wrap; gap: 14px; }

/* Article Layout */
.article-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 32px; padding: 40px 0 64px; align-items: start;
}
@media (min-width: 960px) { .article-layout { grid-template-columns: 1fr 300px; gap: 48px; } }

/* Article Body */
.article-body p    { font-size: 1.0625rem; line-height: 1.82; color: #2C2B29; margin: 0 0 16px; }
.article-body ul, .article-body ol   { margin: 0 0 16px; padding-left: 20px; }
.article-body ul li, .article-body ol li{ font-size: 1rem; line-height: 1.72; color: #2C2B29; margin-bottom: 6px; }

/* Art-H2 / Art-H3 */
.art-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700; color: #1A1917;
  margin: 0 0 14px; padding-top: 32px;
  border-top: 1px solid #E5E2DA;
}
.art-h2.first { border-top: none; padding-top: 0; }
.article-body > .art-h2:first-of-type { border-top: none; padding-top: 0; }
.art-h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem; font-weight: 700;
  color: #1A1917; margin: 20px 0 8px;
}

/* Callout Boxes */
.box { border-radius: 10px; padding: 18px 20px; margin: 16px 0 20px; }
.box h4 { font-size: .9rem; font-weight: 700; margin: 0 0 8px; }
.box p, .box ul { font-size: .9375rem; line-height: 1.7; margin: 0; }
.box ul { padding-left: 18px; }
.box ul li { margin-bottom: 4px; }
.box-tip   { background: #F8F1E4; border-left: 3px solid #C8922A; border-radius: 0 10px 10px 0; padding: 14px 16px; margin: 14px 0 20px; }
.box-tip h4   { font-size: .875rem; font-weight: 700; color: #A0721F; margin: 0 0 4px; }
.box-tip p    { font-size: .875rem; color: #454340; margin: 0; line-height: 1.6; }
.box-green { background: #EEF5F1; border-left: 3px solid #1B5239; border-radius: 0 10px 10px 0; padding: 14px 16px; margin: 14px 0 20px; }
.box-green h4 { font-size: .875rem; font-weight: 700; color: #1B5239; margin: 0 0 4px; }
.box-green p  { font-size: .875rem; color: #454340; margin: 0; line-height: 1.6; }
.box-warn  { background: #FFF0E8; border-left: 3px solid #D44500; border-radius: 0 10px 10px 0; padding: 14px 16px; margin: 14px 0 20px; }
.box-warn h4  { font-size: .875rem; font-weight: 700; color: #B03800; margin: 0 0 4px; }
.box-warn p   { font-size: .875rem; color: #454340; margin: 0; line-height: 1.6; }
.box-info  { background: #F3F1EC; border-left: 3px solid #888580; border-radius: 0 10px 10px 0; padding: 14px 16px; margin: 14px 0 20px; }
.box-info h4  { font-size: .875rem; font-weight: 700; color: #454340; margin: 0 0 4px; }
.box-info p   { font-size: .875rem; color: #454340; margin: 0; line-height: 1.6; }

/* Klimatabelle */
.climate-table { width: 100%; border-collapse: collapse; margin: 16px 0 20px; font-size: .875rem; }
.climate-table th { background: #F3F1EC; padding: 9px 12px; text-align: left; font-weight: 700; color: #454340; font-size: .75rem; letter-spacing: .04em; border-bottom: 2px solid #E5E2DA; }
.climate-table td { padding: 9px 12px; border-bottom: 1px solid #F3F1EC; color: #2C2B29; vertical-align: middle; }
.climate-table tr:last-child td { border-bottom: none; }
.climate-table tr:nth-child(even) { background: #FAFAF8; }

/* Season badges */
.season-badge { display: inline-block; font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 2px 8px; border-radius: 9999px; }
.s-best     { background: #EEF5F1; color: #1B5239; }
.s-hot      { background: #FFF0E8; color: #B03800; }
.s-rain     { background: #F3F1EC; color: #454340; }
.s-shoulder { background: #FDF8EE; color: #A0721F; }

/* Season Grid */
.season-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 16px 0 20px; }
@media (min-width: 600px) { .season-grid { grid-template-columns: 1fr 1fr; } }
.season-card { padding: 16px 18px; border-radius: 10px; border: 1px solid #E5E2DA; }
.season-card h4 { font-size: .9rem; font-weight: 700; margin: 0 0 6px; display: flex; align-items: center; gap: 8px; }
.season-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.season-card p { font-size: .84rem; color: #888580; margin: 0; line-height: 1.55; }
.season-months { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; }

/* Reiseplan: Day Blocks & Timeline */
.day-block { margin-bottom: 48px; }
.day-label { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.day-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--brand-primary); color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 12px rgba(200,146,42,.3);
}
.day-title-wrap h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 700; color: #1A1917; margin: 0 0 2px; }
.day-subtitle { font-size: .8rem; color: #888580; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.timeslots { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 28px; }
.timeslots::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, #E2A83A, #E5E2DA); }
.timeslot { position: relative; padding-bottom: 28px; }
.timeslot:last-child { padding-bottom: 0; }
.timeslot::before { content: ''; position: absolute; left: -24px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--brand-primary); border: 2px solid #fff; box-shadow: 0 0 0 2px #E2A83A; }
.ts-time { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-primary); margin-bottom: 4px; }
.ts-heading { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; font-weight: 700; color: #1A1917; margin: 0 0 6px; line-height: 1.3; }
.ts-body { font-size: .9375rem; line-height: 1.72; color: #454340; margin: 0 0 10px; }
.ts-tip { display: flex; gap: 10px; align-items: flex-start; background: #F8F1E4; border-radius: 7px; padding: 10px 12px; margin: 8px 0; font-size: .84rem; color: #454340; line-height: 1.55; }
.ts-tip::before { content: '→'; color: var(--brand-primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Verwandte Artikel */
.related-articles { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 16px 0; }
@media (min-width: 600px) { .related-articles { grid-template-columns: 1fr 1fr; } }
.rel-article {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 13px 15px; background: #fff;
  border-radius: 9px; border: 1px solid #E5E2DA;
  text-decoration: none; color: #1A1917;
  transition: box-shadow .18s, border-color .18s;
}
.rel-article:hover { box-shadow: 0 4px 12px rgba(44,43,41,.08); border-color: #E2A83A; text-decoration: none; color: #1A1917; }
.rel-article-num { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; font-weight: 700; color: #E2A83A; opacity: .5; line-height: 1; flex-shrink: 0; }
.rel-article-text h4 { font-size: .875rem; font-weight: 700; margin: 0 0 2px; color: #1A1917; }
.rel-article-text p  { font-size: .78rem; color: #888580; margin: 0; line-height: 1.4; }

/* ═══════════════════════════════════════════════════════════
   TOUREN – CSS-Erweiterungen für styles.css
   Quelle: ui_kits/[projekt]/tour-detail.html
   Einfügen am Ende von /assets/css/styles.css
   ═══════════════════════════════════════════════════════════ */

/* ── Tour Hero ─────────────────────────────────────────────── */
.tour-hero{position:relative;height:420px;overflow:hidden;display:flex;align-items:flex-end;padding:0}
@media(min-width:768px){.tour-hero{height:520px}}
.tour-hero::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,#0A2319 0%,#1B5239 50%,#2E7050 100%);z-index:0}
.tour-hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 50%;z-index:1}
.tour-hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(10,25,18,.08) 0%,rgba(10,25,18,.78) 100%);z-index:2}
.tour-hero-content{position:relative;z-index:3;padding-bottom:36px;width:100%}
.tour-type-badge{display:inline-flex;align-items:center;gap:8px;font-size:.65rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#E2A83A;margin-bottom:10px}
.tour-type-badge::before{content:'';width:20px;height:2px;background:#E2A83A;border-radius:2px}
.tour-hero h1{font-size:clamp(1.7rem,3.8vw,3rem);color:#fff;margin:0 0 10px;letter-spacing:-.02em;text-shadow:0 2px 12px rgba(0,0,0,.28);max-width:760px}
.tour-hero-meta{display:flex;flex-wrap:wrap;gap:14px;align-items:center}
.th-pill{display:inline-flex;align-items:center;gap:5px;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.28);color:#fff;font-size:.75rem;font-weight:700;padding:4px 12px;border-radius:9999px;backdrop-filter:blur(4px)}

/* ── Booking Bar ───────────────────────────────────────────── */
.booking-bar{background:#1B5239;padding:0}
.booking-bar-inner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px;padding:16px 0}
.bb-price{display:flex;flex-direction:column;gap:1px}
.bb-from{font-size:.62rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:rgba(255,255,255,.6)}
.bb-amount{font-family:'Playfair Display',Georgia,serif;font-size:1.6rem;font-weight:700;color:#fff;line-height:1}
.bb-per{font-size:.75rem;color:rgba(255,255,255,.6)}
.bb-facts{display:flex;flex-wrap:wrap;gap:16px}
.bb-fact{display:flex;flex-direction:column;gap:1px}
.bb-fact-label{font-size:.6rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:rgba(255,255,255,.5)}
.bb-fact-val{font-size:.875rem;font-weight:700;color:#fff}
.bb-ctas{display:flex;gap:10px;flex-shrink:0}

/* ── Tour Layout ───────────────────────────────────────────── */
.tour-layout{display:grid;grid-template-columns:1fr;gap:32px;padding:36px 0 64px;align-items:start}
@media(min-width:960px){.tour-layout{grid-template-columns:1fr 310px;gap:44px}}

/* ── Article Body ──────────────────────────────────────────── */
.article-body p{font-size:1rem;line-height:1.82;color:#2C2B29;margin:0 0 14px}
.article-body p:last-child{margin-bottom:0}

/* Einleitung/Lead-Absatz auf Detailseiten – immer groesser als Fliesstext.
   !important noetig, weil einleitung aus der DB manchmal schon eigene
   <p>-Tags mitbringt, die sonst von .article-body p ueberschrieben wuerden. */
.lead-einleitung, .lead-einleitung p{font-size:1.125rem !important;line-height:1.85;color:var(--text-primary);margin:0 0 28px}
.lead-einleitung p:last-child{margin-bottom:0}
.sec-h2{font-family:'Playfair Display',Georgia,serif;font-size:clamp(1.2rem,2.2vw,1.55rem);font-weight:700;color:#1A1917;margin:0 0 14px;padding-top:30px;border-top:1px solid #E5E2DA}
.sec-h2.first{border-top:none;padding-top:0}
.article-body > .sec-h2:first-of-type{border-top:none;padding-top:0}

/* ── Highlights Grid ───────────────────────────────────────── */
.highlights-grid{display:grid;grid-template-columns:1fr;gap:10px;margin:12px 0 20px}
@media(min-width:580px){.highlights-grid{grid-template-columns:1fr 1fr}}
.hl-item{display:flex;gap:10px;align-items:flex-start;padding:11px 14px;background:#EEF5F1;border-radius:8px}
.hl-dot{width:8px;height:8px;border-radius:50%;background:#1B5239;flex-shrink:0;margin-top:5px}
.hl-text{font-size:.9rem;color:#2C2B29;line-height:1.5;font-weight:600}

/* ── Inklusive Grid ────────────────────────────────────────── */
.incl-grid{display:grid;grid-template-columns:1fr;gap:0;margin:12px 0 20px;border-radius:10px;overflow:hidden;border:1px solid #E5E2DA}
@media(min-width:580px){.incl-grid{grid-template-columns:1fr 1fr}}
.incl-col{padding:16px 18px}
.incl-col:first-child{border-bottom:1px solid #E5E2DA;background:#F4FAF7}
@media(min-width:580px){.incl-col:first-child{border-bottom:none;border-right:1px solid #E5E2DA;background:#F4FAF7}}
.incl-col h4{font-size:.72rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;margin:0 0 10px}
.incl-col.yes h4{color:#1B5239}
.incl-col.no h4{color:#B03800}
.incl-col.no{background:#FFF8F5}
.incl-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:7px}
.incl-list li{display:flex;gap:8px;align-items:flex-start;font-size:.875rem;color:#2C2B29;line-height:1.45}
.incl-list li::before{font-size:.75rem;flex-shrink:0;margin-top:1px}
.incl-col.yes .incl-list li::before{content:'✓';color:#1B5239;font-weight:700}
.incl-col.no .incl-list li::before{content:'✗';color:#D44500;font-weight:700}

/* ── Itinerary / Ablauf ────────────────────────────────────── */
.itinerary{display:flex;flex-direction:column;gap:0;margin:12px 0 20px;position:relative;padding-left:28px}
.itinerary::before{content:'';position:absolute;left:8px;top:10px;bottom:10px;width:2px;background:linear-gradient(to bottom,#C8922A,#E5E2DA)}
.itin-step{position:relative;padding-bottom:20px}
.itin-step:last-child{padding-bottom:0}
.itin-step::before{content:'';position:absolute;left:-23px;top:5px;width:12px;height:12px;border-radius:50%;background:#C8922A;border:2px solid #fff;box-shadow:0 0 0 2px #E2A83A}
.itin-time{font-size:.65rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:#C8922A;margin-bottom:3px}
.itin-title{font-family:'Playfair Display',Georgia,serif;font-size:.9375rem;font-weight:700;color:#1A1917;margin:0 0 4px}
.itin-desc{font-size:.875rem;color:#888580;line-height:1.55;margin:0}

/* ── Related Tours ─────────────────────────────────────────── */
.related-grid{display:grid;grid-template-columns:1fr;gap:12px;margin:14px 0}
@media(min-width:580px){.related-grid{grid-template-columns:repeat(3,1fr)}}
.rel-tour{display:flex;flex-direction:column;text-decoration:none;color:#1A1917;border-radius:10px;overflow:hidden;border:1px solid #E5E2DA;transition:box-shadow .18s,border-color .18s}
.rel-tour:hover{box-shadow:0 4px 12px rgba(44,43,41,.08);border-color:#E2A83A;text-decoration:none;color:#1A1917}
.rel-tour img{width:100%;aspect-ratio:3/2;object-fit:cover}
.rel-tour-body{padding:11px 13px}
.rel-tour-type{font-size:.6rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:#1B5239;margin-bottom:2px}
.rel-tour-name{font-family:'Playfair Display',Georgia,serif;font-size:.875rem;font-weight:700;line-height:1.3;margin-bottom:4px}
.rel-tour-price{font-size:.78rem;color:#888580}
.rel-tour-price strong{color:#D44500}

/* ── Sidebar Buchung ───────────────────────────────────────── */
.sb-booking-price{padding:16px 16px 0;text-align:center}
.sbp-from{font-size:.65rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:#888580}
.sbp-amount{font-family:'Playfair Display',Georgia,serif;font-size:2rem;font-weight:700;color:#1B5239;line-height:1}
.sbp-per{font-size:.78rem;color:#888580}
.sb-booking-body{padding:12px 16px 16px;display:flex;flex-direction:column;gap:8px}
.sb-cancel{text-align:center;font-size:.72rem;color:#1B5239;font-weight:700;padding-bottom:2px}

/* ═══════════════════════════════════════════════════════════
   ESSEN-GUIDE + TIPPS – CSS-Ergänzungen
   Quelle: ui_kits/[projekt]/essen-guide.html
   Am Ende von /assets/css/styles.css einfügen
   ═══════════════════════════════════════════════════════════ */

/* ── Guide Layout (Essen & Tipps) ──────────────────────────── */
.guide-layout{display:grid;grid-template-columns:1fr;gap:32px;padding:36px 0 64px;align-items:start}
@media(min-width:960px){.guide-layout{grid-template-columns:1fr 300px;gap:44px}}

/* ── Restaurant List ───────────────────────────────────────── */
.restaurant-list{display:flex;flex-direction:column;gap:18px}

/* ── Restaurant Card ───────────────────────────────────────── */
.rest-card{display:flex;flex-direction:column;background:#fff;border-radius:12px;border:1px solid #E5E2DA;overflow:hidden;transition:box-shadow .18s,border-color .18s;text-decoration:none;color:#1A1917}
.rest-card:hover{box-shadow:0 4px 16px rgba(44,43,41,.10);border-color:#E2A83A;text-decoration:none;color:#1A1917}
@media(min-width:580px){.rest-card{flex-direction:row}}

/* Card Image */
.rest-card-img-wrap{overflow:hidden;position:relative;flex-shrink:0;width:100%;height:180px;background:#F3F1EC}
@media(min-width:580px){.rest-card-img-wrap{width:220px;height:auto}}
.rest-card-img-wrap img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .28s ease-out}
.rest-card:hover .rest-card-img-wrap img{transform:scale(1.04)}

/* Rang-Badge */
.rest-rank{position:absolute;top:10px;left:10px;width:28px;height:28px;border-radius:50%;background:#C8922A;color:#fff;font-size:.72rem;font-weight:700;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 6px rgba(0,0,0,.2)}

/* Card Body */
.rest-card-body{padding:16px 18px;display:flex;flex-direction:column;gap:6px;flex:1}
.rest-card-top{display:flex;align-items:flex-start;justify-content:space-between;gap:10px;flex-wrap:wrap}
.rest-name{font-family:'Playfair Display',Georgia,serif;font-size:1.05rem;font-weight:700;color:#1A1917;margin:0;line-height:1.3}

/* Preis-Tier */
.price-tier{font-size:.8rem;font-weight:700;letter-spacing:.03em;white-space:nowrap;flex-shrink:0}
.price-active{color:#1B5239}
.price-inactive{color:#C9C5BC}

/* Tags */
.rest-tags{display:flex;flex-wrap:wrap;gap:5px}
.rest-tag{font-size:.62rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:2px 8px;border-radius:9999px}
.rt-cuisine{background:#EEF5F1;color:#1B5239}
.rt-area{background:#F3F1EC;color:#656360}
.rt-special{background:#FDF8EE;color:#A0721F}
.rt-warn{background:#FFF0E8;color:#B03800}

/* Beschreibung & Meta */
.rest-desc{font-size:.875rem;line-height:1.62;color:#454340;margin:0}
.rest-meta{display:flex;flex-wrap:wrap;gap:12px;margin-top:4px;font-size:.78rem;color:#888580}
.rest-meta span{display:flex;align-items:center;gap:4px}
.rest-cta{margin-top:auto;padding-top:8px;font-size:.8rem;font-weight:700;color:#C8922A;display:inline-flex;align-items:center;gap:4px;align-self:flex-start}

/* ── Preisklassen-Legende (Sidebar) ────────────────────────── */
.price-legend{display:flex;flex-direction:column;gap:6px;padding:14px 16px}
.pl-item{display:flex;align-items:baseline;gap:8px;font-size:.84rem}
.pl-tier{font-weight:700;color:#1B5239;flex-shrink:0;min-width:36px}
.pl-desc{color:#888580}

/* ── Hotels Strip ──────────────────────────────────────────── */
.hotels-strip{display:grid;grid-template-columns:1fr;gap:10px;margin:14px 0 24px}
@media(min-width:640px){.hotels-strip{grid-template-columns:repeat(3,1fr)}}
.hotel-mini{display:flex;flex-direction:column;text-decoration:none;color:#1A1917;border-radius:10px;overflow:hidden;border:1px solid #E5E2DA;transition:border-color .18s,box-shadow .18s}
.hotel-mini:hover{border-color:#E2A83A;box-shadow:0 4px 12px rgba(44,43,41,.08);text-decoration:none;color:#1A1917}
.hotel-mini img{width:100%;aspect-ratio:3/2;object-fit:cover}
.hotel-mini-body{padding:10px 12px}
.hotel-mini-type{font-size:.6rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:#1B5239;margin-bottom:2px}
.hotel-mini-name{font-family:'Playfair Display',Georgia,serif;font-size:.875rem;font-weight:700;color:#1A1917;margin-bottom:3px;line-height:1.3}
.hotel-mini-price{font-size:.78rem;color:#888580}
.hotel-mini-price strong{color:#1B5239}

/* Ende styles.css */

/* ═══════════════════════════════════════════════════════════
   UNTERKÜNFTE
   Quelle: ui_kits/[projekt]/unterkunft-detail.html
   ═══════════════════════════════════════════════════════════ */

/* ── Hotel Hero ────────────────────────────────────────────── */
.hotel-hero{position:relative;height:400px;overflow:hidden;display:flex;align-items:flex-end;padding:0}
@media(min-width:768px){.hotel-hero{height:500px}}
.hotel-hero::before{content:'';position:absolute;inset:0;background:linear-gradient(160deg,#1B5239 0%,#C8922A 100%);z-index:0}
.hotel-hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 50%;z-index:1}
.hotel-hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(10,25,18,.05) 0%,rgba(10,25,18,.70) 100%);z-index:2}
.hotel-hero-content{position:relative;z-index:3;padding-bottom:32px;width:100%}
.hotel-type-badge{display:inline-flex;align-items:center;font-size:.65rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#E2A83A;margin-bottom:10px;gap:8px}
.hotel-type-badge::before{content:'';width:20px;height:2px;background:#E2A83A;border-radius:2px}
.hotel-hero h1{font-size:clamp(1.6rem,3.5vw,2.75rem);color:#fff;margin:0 0 10px;letter-spacing:-.02em;text-shadow:0 2px 10px rgba(0,0,0,.3)}
.hotel-hero-meta{display:flex;flex-wrap:wrap;align-items:center;gap:12px}
.stars{color:#E2A83A;font-size:1rem;letter-spacing:2px}
.hotel-location{font-size:.85rem;color:rgba(255,255,255,.78);display:flex;align-items:center;gap:5px}
.hotel-location::before{content:'◎';font-size:.7rem;color:#E2A83A}

/* ── Hotel Infobar ─────────────────────────────────────────── */
.hotel-infobar{background:#fff;border-bottom:1px solid #E5E2DA;padding:0}
.infobar-inner{display:flex;flex-wrap:wrap;align-items:stretch;justify-content:space-between;gap:0}
.ib-fact{padding:14px 20px;display:flex;flex-direction:column;gap:2px;border-right:1px solid #F3F1EC;flex:1;min-width:120px}
.ib-fact:last-child{border-right:none}
.ib-label{font-size:.6rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:#888580}
.ib-val{font-size:.9rem;font-weight:700;color:#1A1917}
.ib-price{font-size:1.1rem;font-weight:700;color:#1B5239}
.ib-ctas{display:flex;align-items:center;gap:8px;padding:12px 20px;flex-shrink:0}

/* ── Hotel Layout ──────────────────────────────────────────── */
.hotel-layout{display:grid;grid-template-columns:1fr;gap:32px;padding:36px 0 64px;align-items:start}
@media(min-width:960px){.hotel-layout{grid-template-columns:1fr 300px;gap:40px}}

/* ── Gallery Grid ──────────────────────────────────────────── */
.gallery-grid{display:grid;grid-template-columns:2fr 1fr;grid-template-rows:1fr 1fr;gap:6px;border-radius:12px;overflow:hidden;margin-bottom:28px;aspect-ratio:16/7}
.gallery-grid img{width:100%;height:100%;object-fit:cover;display:block}
.gallery-grid img:first-child{grid-row:1/3}

/* ── Amenities ─────────────────────────────────────────────── */
.amenities-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:6px;margin:12px 0 24px}
@media(min-width:640px){.amenities-grid{grid-template-columns:repeat(3,1fr)}}
.amenity{display:flex;align-items:center;gap:8px;padding:8px 12px;background:#FAFAF8;border-radius:7px;border:1px solid #F3F1EC;font-size:.84rem;color:#454340}
.amenity-dot{width:7px;height:7px;border-radius:50%;flex-shrink:0}
.amenity.yes .amenity-dot{background:#2E7050}
.amenity.no{opacity:.45}
.amenity.no .amenity-dot{background:#C9C5BC}

/* ── Room Cards ────────────────────────────────────────────── */
.room-list{display:flex;flex-direction:column;gap:14px;margin:12px 0 24px}
.room-card{display:flex;flex-direction:column;background:#fff;border-radius:10px;border:1px solid #E5E2DA;overflow:hidden;transition:box-shadow .18s,border-color .18s}
.room-card:hover{box-shadow:0 4px 12px rgba(44,43,41,.08);border-color:#E2A83A}
@media(min-width:640px){.room-card{flex-direction:row}}
.room-img{width:100%;height:160px;object-fit:cover;flex-shrink:0}
@media(min-width:640px){.room-img{width:200px;height:auto}}
.room-body{padding:16px 18px;display:flex;flex-direction:column;flex:1;gap:6px}
@media(min-width:640px){.room-body{flex-direction:row;align-items:flex-start;justify-content:space-between;gap:16px}}
.room-info{flex:1}
.room-name{font-family:'Playfair Display',Georgia,serif;font-size:1rem;font-weight:700;color:#1A1917;margin:0 0 4px}
.room-desc{font-size:.84rem;color:#888580;line-height:1.5;margin:0 0 8px}
.room-features{display:flex;flex-wrap:wrap;gap:6px}
.room-feature{font-size:.68rem;font-weight:700;letter-spacing:.05em;background:#F3F1EC;color:#656360;padding:2px 8px;border-radius:9999px}
.room-pricing{display:flex;flex-direction:column;align-items:flex-end;gap:6px;flex-shrink:0;padding-top:2px}
@media(max-width:639px){.room-pricing{align-items:flex-start}}
.room-price-note{font-size:.65rem;color:#888580}
.room-price{font-size:1.2rem;font-weight:700;color:#1B5239;white-space:nowrap}
.room-price span{font-size:.75rem;color:#888580;font-weight:400}

/* ── Related Hotels ────────────────────────────────────────── */
.rel-hotel{display:flex;flex-direction:column;text-decoration:none;color:#1A1917;border-radius:10px;overflow:hidden;border:1px solid #E5E2DA;transition:box-shadow .18s,border-color .18s}
.rel-hotel:hover{box-shadow:0 4px 12px rgba(44,43,41,.08);border-color:#E2A83A;text-decoration:none;color:#1A1917}
.rel-hotel img{width:100%;aspect-ratio:3/2;object-fit:cover}
.rel-hotel-body{padding:12px 14px}
.rel-hotel-type{font-size:.62rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:#1B5239;margin-bottom:3px}
.rel-hotel-name{font-family:'Playfair Display',Georgia,serif;font-size:.9rem;font-weight:700;line-height:1.3;margin-bottom:4px}
.rel-hotel-price{font-size:.8rem;color:#888580}
.rel-hotel-price strong{color:#1B5239}

/* ── Booking Widget ────────────────────────────────────────── */
.booking-price{padding:16px 16px 0;text-align:center}
.bp-from{font-size:.7rem;color:#888580;text-transform:uppercase;letter-spacing:.05em}
.bp-amount{font-family:'Playfair Display',Georgia,serif;font-size:2rem;font-weight:700;color:#1B5239;line-height:1}
.bp-per{font-size:.8rem;color:#888580}
.booking-submit{padding:0 16px 16px}
.booking-note{text-align:center;font-size:.72rem;color:#888580;padding:0 16px 14px;line-height:1.5}

/* ═══════════════════════════════════════════════════════════
   STADTTEILE & MÄRKTE
   Quelle: ui_kits/[projekt]/stadtteil-detail.html
   ═══════════════════════════════════════════════════════════ */

/* ── District Hero ─────────────────────────────────────────── */
.district-hero{position:relative;height:460px;overflow:hidden;display:flex;align-items:flex-end;padding:0}
@media(min-width:768px){.district-hero{height:560px}}
.district-hero::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,#0A2319 0%,#1B5239 40%,#2E7050 65%,#C8922A 100%);z-index:0}
.district-hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 40%;z-index:1}
.district-hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(10,25,18,.08) 0%,rgba(10,25,18,.75) 100%);z-index:2}
.district-hero-content{position:relative;z-index:3;padding-bottom:40px;width:100%}
.district-tag{display:inline-flex;align-items:center;gap:8px;font-size:.65rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#E2A83A;margin-bottom:10px}
.district-tag::before{content:'';width:20px;height:2px;background:#E2A83A;border-radius:2px}
.district-hero h1{font-size:clamp(2rem,4.5vw,3.5rem);color:#fff;margin:0 0 12px;letter-spacing:-.025em;text-shadow:0 2px 14px rgba(0,0,0,.3)}
.district-tags{display:flex;flex-wrap:wrap;gap:7px}
.dtag{display:inline-block;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.3);color:#fff;font-size:.72rem;font-weight:700;padding:4px 12px;border-radius:9999px;backdrop-filter:blur(4px)}

/* ── Vibe Bar ──────────────────────────────────────────────── */
.vibe-bar{background:#fff;border-bottom:1px solid #E5E2DA;padding:0}
.vibe-inner{display:flex;flex-wrap:wrap;align-items:stretch;gap:0}
.vibe-item{display:flex;flex-direction:column;gap:2px;padding:13px 20px;border-right:1px solid #F3F1EC;flex:1;min-width:120px}
.vibe-item:last-child{border-right:none}
.vibe-label{font-size:.6rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:#888580}
.vibe-val{font-size:.875rem;font-weight:700;color:#1A1917}

/* ── District Layout ───────────────────────────────────────── */
.district-layout{display:grid;grid-template-columns:1fr;gap:32px;padding:36px 0 64px;align-items:start}
@media(min-width:960px){.district-layout{grid-template-columns:1fr 300px;gap:44px}}

/* ── Highlight Cards (mit Bild) ────────────────────────────── */
.hl-card{display:flex;gap:0;background:#fff;border-radius:10px;border:1px solid #E5E2DA;overflow:hidden;text-decoration:none;color:#1A1917;transition:box-shadow .18s,border-color .18s}
.hl-card:hover{box-shadow:0 4px 12px rgba(44,43,41,.08);border-color:#E2A83A;text-decoration:none;color:#1A1917}
.hl-card-img{width:90px;height:90px;object-fit:cover;flex-shrink:0}
.hl-card-body{padding:12px 14px;display:flex;flex-direction:column;gap:4px;justify-content:center;flex:1}
.hl-card-cat{font-size:.6rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:#1B5239}
.hl-card-name{font-family:'Playfair Display',Georgia,serif;font-size:.9375rem;font-weight:700;color:#1A1917;line-height:1.3;margin:0}
.hl-card-meta{font-size:.78rem;color:#888580}

/* ── Category Section (Numbered List) ─────────────────────── */
.cat-section{margin-bottom:32px}
.cat-header{display:flex;align-items:center;gap:10px;margin-bottom:16px}
.cat-dot{width:10px;height:10px;border-radius:50%;flex-shrink:0}
.cat-title{font-family:'Playfair Display',Georgia,serif;font-size:1.1rem;font-weight:700;color:#1A1917;margin:0}
.cat-items{display:flex;flex-direction:column;gap:8px}
/* Stadtteil-Row-Item – überschreibt die Homepage-Column-Variante innerhalb .cat-items */
.cat-items .cat-item{display:flex;flex-direction:row;gap:12px;align-items:flex-start;padding:14px 16px;background:#FAFAF8;border-radius:10px;border:1px solid #F3F1EC;border-top:1px solid #F3F1EC;box-shadow:none;transform:none;text-decoration:none;color:#1A1917;transition:box-shadow .18s,border-color .18s}
.cat-items .cat-item:hover{box-shadow:0 4px 10px rgba(44,43,41,.07);border-color:#E5E2DA;transform:none}
.cat-item-num{width:26px;height:26px;border-radius:50%;background:#C8922A;color:#fff;font-family:'Lato',sans-serif;font-size:.75rem;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px}
.cat-item-body{flex:1}
.cat-item-body h4{font-size:.9rem;font-weight:700;color:#1A1917;margin:0 0 2px}
.cat-item-body p{font-size:.83rem;color:#888580;margin:0;line-height:1.5}
.cat-item-body .tag{display:inline-block;font-size:.62rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#1B5239;background:#EEF5F1;border-radius:9999px;padding:1px 7px;margin-top:4px;white-space:nowrap}

/* ── Weitere Stadtteile (Photo Grid) ──────────────────────── */
.districts-row{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin:14px 0}
@media(min-width:640px){.districts-row{grid-template-columns:repeat(4,1fr)}}
.dist-card{position:relative;border-radius:10px;overflow:hidden;min-height:110px;display:flex;align-items:flex-end;text-decoration:none}
.dist-card:hover{text-decoration:none}
.dist-card:hover .dist-img{transform:scale(1.06)}
.dist-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .3s ease-out}
.dist-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(10,25,18,.80) 0%,transparent 60%)}
.dist-body{position:relative;z-index:1;padding:10px 12px}
.dist-name{font-family:'Playfair Display',Georgia,serif;font-size:.875rem;font-weight:700;color:#fff;margin:0 0 2px}
.dist-desc{font-size:.65rem;color:rgba(255,255,255,.75)}

/* ── Hero-Slider (mehrere Hero-Bilder) ──────────────────────── */
.hero-slide{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 50%;opacity:0;transition:opacity 1.2s ease}
.hero-slide.is-active{opacity:1}
.hero-bg .hero-slide{object-position:center 55%}
.detail-hero-bg .hero-slide,
.district-hero-bg .hero-slide{object-position:center 40%}
.hero-slider-dots{position:absolute;z-index:6;left:50%;bottom:16px;transform:translateX(-50%);display:flex;gap:8px}
.hero-slider-dot{width:8px;height:8px;padding:0;border:none;border-radius:50%;background:rgba(255,255,255,.45);cursor:pointer}
.hero-slider-dot.is-active{background:#fff}
