/* ════════════════════════════════════════════════════
   site.css — Globales Stylesheet
   Branding-Farben in :root von widget.css definiert.
   ════════════════════════════════════════════════════ */

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

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--hp-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }

/* ──────────────── Header ──────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.site-logo-img {
  height: 60px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .site-logo-img { height: 48px; }
}
.site-nav { display: flex; gap: 18px; align-items: center; }
.site-nav a {
  font-size: 0.92rem;
  color: #444;
  text-decoration: none;
  font-weight: 500;
}
.site-nav a:hover { color: var(--hp-brand); }
.site-lang select {
  font-size: 0.88rem;
  padding: 5px 26px 5px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  font-family: inherit;
  cursor: pointer;
}
.site-lang-list { display: none; }

/* ──────────────── Sections ──────────────── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 20px;
  position: relative;
}
.section h2 {
  font-size: clamp(1.55rem, 2.9vw, 2.1rem);
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--hp-ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.section-intro {
  font-size: 1.05rem;
  color: #555;
  max-width: 760px;
  margin: 0 0 36px;
  line-height: 1.65;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--hp-brand);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--hp-brand);
  border-radius: 1px;
}
/* Dezenter Gold-Akzent oben rechts pro Section (visueller Anker, kein Lärm) */
.section::before {
  content: "";
  position: absolute;
  top: 32px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 199, 68, 0.10) 0%, rgba(242, 199, 68, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.section > * { position: relative; z-index: 1; }
/* Section-Akzent auf farbigen Hintergründen ausblenden (Cream, Crimson) */
.faq-section::before,
.schedule-section::before,
.season-section::before,
.kids-section::before,
.closing-section::before { display: none; }

/* ──────────────── Operator Cards ──────────────── */
.op-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.op-card {
  --op-color: var(--hp-brand);
  background: #fff;
  border: 1px solid #ECE7DC;
  border-radius: 14px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.op-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.op-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--op-color);
}
.op-card--bigbus          { --op-color: #D8362D; }
.op-card--citysightseeing { --op-color: #F4B400; }
.op-card--grayline        { --op-color: #E6557A; }
.op-card--greenline       { --op-color: #43A047; }

.op-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.op-card-logo {
  height: 38px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}
.op-card-title { flex: 1; }
.op-card-name {
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0;
  color: var(--hp-ink);
  letter-spacing: -0.01em;
}
.op-card-tagline {
  font-size: 0.82rem;
  color: var(--op-color);
  margin: 3px 0 0;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.op-card-summary {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}
.op-card-details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  font-size: 0.86rem;
  padding-top: 16px;
  border-top: 1px solid #F1EDE2;
}
.op-card-details dt {
  color: #999;
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  align-self: center;
}
.op-card-details dd {
  color: var(--hp-ink);
  margin: 0;
  font-weight: 600;
}

/* ──────────────── Combo Cards ──────────────── */
.combo-section { background: #fff; }
.combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.combo-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.combo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}
.combo-card--featured {
  border: 2px solid var(--hp-brand);
}
.combo-card-popular-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--hp-brand);
  color: #fff;
  font-size: 0.7em;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 1;
  box-shadow: 0 3px 10px rgba(179,39,31,0.3);
}
.combo-card-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f0f0f0;
  overflow: hidden;
}
.combo-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.combo-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.combo-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hp-ink);
  margin: 0 0 8px;
}
.combo-card-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.55;
  margin: 0 0 14px;
  flex: 1;
}
.combo-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: #666;
}
.combo-card-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--hp-brand);
}
.combo-card-cta {
  display: block;
  padding: 12px 16px;
  background: transparent;
  color: var(--hp-brand) !important;
  border: 1.5px solid var(--hp-brand);
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.combo-card-cta:hover { background: var(--hp-brand); color: #fff !important; }

.combo-card--featured .combo-card-cta {
  background: var(--hp-brand);
  color: #fff !important;
  border-color: var(--hp-brand);
}
.combo-card--featured .combo-card-cta:hover {
  background: var(--hp-brand-d);
  color: #fff !important;
}

/* ──────────────── Extras: kollabierbar ──────────────── */
.extras-section {
  background: #fff;
  padding-top: 8px;
  padding-bottom: 32px;
}
.extras-details {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--hp-cream);
  border: 1px solid #ECE7DC;
  border-radius: 12px;
  overflow: hidden;
}
/* Variante "innerhalb Result-Section": eigenständige Optik gegenüber Cream-BG */
.extras-details--inresult {
  margin-top: 24px;
  background: #fff;
  border: 1px solid #ECE7DC;
}
.extras-details--inresult .extras-details-summary:hover {
  background: rgba(245,233,212,0.4);
}
.extras-details-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  transition: background 0.15s ease;
}
.extras-details-summary::-webkit-details-marker { display: none; }
.extras-details-summary:hover { background: rgba(245,233,212,0.6); }
.extras-details-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hp-ink);
}
.extras-details-hint {
  font-size: 0.88rem;
  color: #6E6A60;
  flex: 1;
}
.extras-details-chevron {
  color: var(--hp-accent2);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.extras-details[open] .extras-details-chevron { transform: rotate(180deg); }
.extras-details-body {
  padding: 0 24px 24px;
  border-top: 1px solid #ECE7DC;
  padding-top: 22px;
}
.extras-details-intro {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 20px;
  max-width: 760px;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.extras-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.extras-card-type {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hp-accent2);
  background: var(--hp-sand);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.extras-card-name {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--hp-ink);
}
.extras-card-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.55;
  margin: 0 0 16px;
  flex: 1;
}
.extras-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}
.extras-card-price-from { font-size: 0.78rem; color: #888; }
.extras-card-price-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--hp-brand);
}
.extras-card-cta {
  display: block;
  padding: 11px 16px;
  background: transparent;
  color: var(--hp-accent2) !important;
  border: 1.5px solid var(--hp-accent);
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.15s ease;
}
.extras-card-cta:hover { background: var(--hp-cream); }

@media (max-width: 768px) {
  .extras-grid { grid-template-columns: 1fr; }
  .extras-details-summary { padding: 14px 16px; flex-wrap: wrap; gap: 8px; }
  .extras-details-title { font-size: 0.95rem; }
  .extras-details-hint { font-size: 0.82rem; width: 100%; }
  .extras-details-chevron { position: absolute; right: 16px; top: 18px; }
  .extras-details-summary { position: relative; }
  .extras-details-body { padding: 18px 16px 18px; }

  /* Routes, schedule, alt — mobile */
  .stop-item-summary { padding: 12px 14px; gap: 10px; }
  .stop-item-num { width: 26px; height: 26px; font-size: 0.82rem; }
  .stop-item-title { font-size: 0.95rem; }
  .stop-item-body { padding: 14px 16px 16px 52px; }
  .schedule-table { font-size: 0.84rem; }
  .schedule-table th, .schedule-table td { padding: 10px 8px; }
  .alt-grid { grid-template-columns: 1fr; }
  .routes-map { padding: 8px; border-radius: 10px; }
}

/* ──────────────── Routes & Stops Section ──────────────── */
.routes-section { background: #fff; }
.routes-map {
  margin: 0 auto 32px;
  max-width: 900px;
  background: var(--hp-cream);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.routes-map-img { width: 100%; height: auto; display: block; border-radius: 8px; }

.stops-accordion {
  max-width: 900px;
  margin: 0 auto 28px;
  display: grid;
  gap: 10px;
}
.stop-item {
  background: #fff;
  border: 1px solid #ECE7DC;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.15s ease;
}
.stop-item[open] { box-shadow: 0 6px 18px rgba(0,0,0,0.05); }
.stop-item-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  cursor: pointer;
  list-style: none;
}
.stop-item-summary::-webkit-details-marker { display: none; }
.stop-item-summary:hover { background: var(--hp-cream); }
.stop-item-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hp-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.stop-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--hp-ink);
  flex: 1;
}
.stop-item-chevron {
  color: var(--hp-accent2);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.stop-item[open] .stop-item-chevron { transform: rotate(180deg); }
.stop-item-body {
  padding: 0 22px 18px 60px;
  border-top: 1px solid #F1EDE2;
  padding-top: 14px;
}
.stop-item-summary-p {
  font-size: 0.96rem;
  color: var(--hp-ink);
  margin: 0 0 12px;
  line-height: 1.6;
}
.stop-item-meta p {
  font-size: 0.9rem;
  color: #555;
  margin: 0 0 8px;
  line-height: 1.55;
}
.stop-item-meta p strong { color: var(--hp-ink); font-weight: 600; }
/* Tipp-Box: separater Cream-Block mit Glühbirnen-Icon */
.stop-item-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--hp-cream);
  border-left: 3px solid var(--hp-accent);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--hp-ink);
  line-height: 1.55;
}
.stop-item-tip-icon {
  color: var(--hp-accent2);
  flex-shrink: 0;
  margin-top: 1px;
}
.stop-item-tip strong { color: var(--hp-brand-d); font-weight: 700; }

.routes-greenline-note {
  max-width: 900px;
  margin: 28px auto 0;
  background: var(--hp-cream);
  border-left: 4px solid var(--hp-accent);
  border-radius: 8px;
  padding: 18px 22px;
}
.routes-greenline-note h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--hp-ink);
}
.routes-greenline-note p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* ──────────────── Schedule + Tips ──────────────── */
.schedule-section { background: var(--hp-cream); }
.schedule-h3 {
  font-size: 1.15rem;
  margin: 8px 0 16px;
  color: var(--hp-ink);
}
.schedule-h3--tips { margin-top: 40px; }
.schedule-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ECE7DC;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.schedule-table th,
.schedule-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #F1EDE2;
}
.schedule-table thead th {
  background: #FAF6EE;
  color: var(--hp-accent2);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.schedule-table tbody th[scope="row"] {
  font-weight: 700;
  color: var(--hp-ink);
  padding-left: 14px;
}
.schedule-table tbody tr:last-child th,
.schedule-table tbody tr:last-child td {
  border-bottom: none;
}
.schedule-op {
  display: flex;
  align-items: center;
  gap: 10px;
}
.schedule-op-logo {
  height: 28px;
  width: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.schedule-op-name { white-space: nowrap; }
/* Farbiger Linker-Rand pro Operator-Row */
.schedule-row { position: relative; }
.schedule-row th[scope="row"] {
  border-left: 3px solid var(--row-color, transparent);
}
.schedule-row--bigbus          { --row-color: #D8362D; }
.schedule-row--citysightseeing { --row-color: #F4B400; }
.schedule-row--grayline        { --row-color: #E6557A; }
.schedule-row--greenline       { --row-color: #43A047; }
.schedule-season-note {
  font-size: 0.92rem;
  color: #555;
  font-style: italic;
  margin: 16px 0 0;
  line-height: 1.6;
}
.tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.tips-item {
  background: #fff;
  border: 1px solid #ECE7DC;
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tips-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(179,39,31,0.08);
}
.tips-item-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--hp-brand);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  opacity: 0.85;
  letter-spacing: -0.03em;
}
.tips-item-body { flex: 1; }
.tips-item h4 {
  font-size: 1.02rem;
  margin: 4px 0 8px;
  color: var(--hp-ink);
  font-weight: 700;
  line-height: 1.3;
}
.tips-item p {
  font-size: 0.94rem;
  color: #4a4a4a;
  margin: 0;
  line-height: 1.6;
}

/* ──────────────── Bus vs Alternatives ──────────────── */
.alt-section { background: #fff; }
.alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.alt-card {
  background: #fff;
  border: 1px solid #ECE7DC;
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.alt-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.alt-card--highlight {
  background: linear-gradient(180deg, var(--hp-cream) 0%, #fff 100%);
  border: 2px solid var(--hp-brand);
  box-shadow: 0 4px 14px rgba(179,39,31,0.08);
}
.alt-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--hp-cream);
  color: var(--hp-accent2);
  margin-bottom: 14px;
}
.alt-card--highlight .alt-card-icon {
  background: var(--hp-brand);
  color: #fff;
  box-shadow: 0 4px 12px rgba(179,39,31,0.2);
}
.alt-card h3 {
  font-size: 1.08rem;
  margin: 0 0 10px;
  color: var(--hp-ink);
}
.alt-card--highlight h3 { color: var(--hp-brand); }
.alt-card p {
  font-size: 0.93rem;
  color: #4a4a4a;
  line-height: 1.65;
  margin: 0;
}
.alt-verdict {
  background: var(--hp-sand);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.alt-verdict-icon {
  color: var(--hp-accent2);
  flex-shrink: 0;
  margin-top: 4px;
}
.alt-verdict-body { flex: 1; }
.alt-verdict h3 {
  font-size: 1.12rem;
  margin: 0 0 10px;
  color: var(--hp-accent2);
}
.alt-verdict p {
  font-size: 0.98rem;
  color: var(--hp-ink);
  margin: 0;
  line-height: 1.65;
}

/* ──────────────── Season — 4 cards + sweet-spot strip ──────────────── */
.season-section { background: var(--hp-cream); }
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.season-card {
  --season-color: var(--hp-accent2);
  background: #fff;
  border: 1px solid #ECE7DC;
  border-radius: 14px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.season-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.07);
}
.season-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--season-color);
}
.season-card--spring { --season-color: #7BB661; }
.season-card--summer { --season-color: #E89F2B; }
.season-card--autumn { --season-color: #B25A1F; }
.season-card--winter { --season-color: #4A8FC3; }

.season-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.season-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--hp-cream);
  color: var(--season-color);
  flex-shrink: 0;
}
.season-card--summer .season-card-icon,
.season-card--spring .season-card-icon { background: rgba(232,159,43,0.08); }
.season-card-titles { flex: 1; }
.season-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: var(--hp-ink);
}
.season-card-months {
  display: block;
  font-size: 0.78rem;
  color: #888;
  margin-top: 2px;
}

.season-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 14px;
  padding: 12px 0;
  border-top: 1px solid #F1EDE2;
  border-bottom: 1px solid #F1EDE2;
}
.season-card-stat dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999;
  margin-bottom: 4px;
  font-weight: 600;
}
.season-card-stat dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--hp-ink);
}
.season-card-crowds {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.season-card-crowd-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #E0DBD0;
}
.season-card-crowds[data-level="1"] .season-card-crowd-dot:nth-child(1) { background: var(--season-color); }
.season-card-crowds[data-level="2"] .season-card-crowd-dot:nth-child(-n+2) { background: var(--season-color); }
.season-card-crowds[data-level="3"] .season-card-crowd-dot { background: var(--season-color); }

.season-card-rec {
  font-size: 0.88rem;
  color: #4a4a4a;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.season-sweetspot {
  background: linear-gradient(90deg, var(--hp-sand) 0%, rgba(245,233,212,0.4) 100%);
  border-radius: 12px;
  padding: 22px 26px;
  border-left: 4px solid var(--hp-accent);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.season-sweetspot-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--hp-accent2);
  text-transform: uppercase;
}
.season-sweetspot-text {
  font-size: 1rem;
  color: var(--hp-ink);
  margin: 0;
  line-height: 1.6;
}

/* ──────────────── FAQ ──────────────── */
.faq-section { background: var(--hp-cream); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid #ECE7DC;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.faq-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.faq-item[open] {
  border-color: var(--hp-brand);
  box-shadow: 0 4px 18px rgba(179,39,31,0.08);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--hp-ink);
  cursor: pointer;
  list-style: none;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item-q { flex: 1; }
.faq-item-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hp-cream);
  color: var(--hp-brand);
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.faq-item-toggle::before,
.faq-item-toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  top: 50%;
  left: 50%;
}
.faq-item-toggle::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-item-toggle::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-item-toggle {
  background: var(--hp-brand);
  color: #fff;
}
.faq-item[open] .faq-item-toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.faq-item-answer {
  padding: 0 22px 22px;
  font-size: 0.97rem;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid #F5F2EA;
  padding-top: 16px;
  margin-top: 4px;
}

/* ──────────────── Closing CTA — Premium Final Block ──────────────── */
.closing-section {
  background:
    radial-gradient(ellipse at top right, rgba(242,199,68,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(142,28,22,0.25) 0%, transparent 50%),
    linear-gradient(135deg, var(--hp-brand) 0%, var(--hp-brand-d) 60%, #6F140F 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 72px 20px 64px;
}
/* Dezentes Punktraster im Hintergrund für Tiefe */
.closing-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}
/* Goldene Akzent-Linie oben + unten */
.closing-section::before,
.closing-section::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--hp-accent);
  border-radius: 2px;
  display: block !important;  /* override section::before reset */
}
.closing-section::before { top: 28px; }
.closing-section::after  { bottom: 28px; opacity: 0.5; }

.closing-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  z-index: 1;
}

/* Trust-Strip oben */
.closing-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 36px;
  margin-bottom: 38px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.closing-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.88);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.closing-trust-item svg {
  color: var(--hp-accent);
  flex-shrink: 0;
}

/* Titel */
.closing-title {
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-shadow: 0 2px 18px rgba(0,0,0,0.18);
}
.closing-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* Doppel-CTA */
.closing-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.closing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 32px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.closing-cta--primary {
  background: var(--hp-accent);
  color: #5A3F08 !important;
  box-shadow:
    0 6px 22px rgba(242,199,68,0.45),
    0 2px 6px rgba(0,0,0,0.12),
    inset 0 -2px 0 rgba(90,63,8,0.12);
}
.closing-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 30px rgba(242,199,68,0.6),
    0 4px 10px rgba(0,0,0,0.15),
    inset 0 -2px 0 rgba(90,63,8,0.12);
  background: #F5D055;
}
.closing-cta--primary svg {
  transition: transform 0.18s ease;
}
.closing-cta--primary:hover svg { transform: translateX(3px); }
.closing-cta--secondary {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 14.5px 28px;
}
.closing-cta--secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-1px);
}

/* Rating-Strip unten */
.closing-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}
.closing-rating-stars {
  color: var(--hp-accent);
  font-size: 1rem;
  letter-spacing: 2px;
  filter: drop-shadow(0 1px 3px rgba(242,199,68,0.4));
}
.closing-rating-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

/* Mobile */
@media (max-width: 640px) {
  .closing-section { padding: 56px 18px 48px; }
  .closing-trust { gap: 14px 22px; margin-bottom: 28px; padding-bottom: 22px; }
  .closing-trust-item { font-size: 0.8rem; gap: 7px; }
  .closing-trust-item svg { width: 18px; height: 18px; }
  .closing-title { font-size: 1.85rem; }
  .closing-sub { font-size: 0.98rem; margin-bottom: 26px; }
  .closing-ctas { gap: 10px; flex-direction: column; align-items: stretch; }
  .closing-cta { width: 100%; padding: 15px 24px; font-size: 0.96rem; }
  .closing-cta--secondary { padding: 13.5px 24px; }
  .closing-rating { flex-direction: column; gap: 6px; }
  .closing-rating-text { font-size: 0.78rem; line-height: 1.4; max-width: 280px; }
}

/* ──────────────── Footer ──────────────── */
.site-footer {
  background: #1f1f1f;
  color: #aaa;
  padding: 36px 20px;
  font-size: 0.88rem;
}
.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.site-footer-nav {
  display: flex;
  gap: 22px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.site-footer-nav a {
  color: #ccc;
  text-decoration: none;
}
.site-footer-nav a:hover { color: #fff; }
.site-footer-disclaimer {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #888;
  margin: 0 0 14px;
  max-width: 800px;
}
.site-footer-copyright { font-size: 0.82rem; color: #666; }

/* ──────────────── Kids-Section ──────────────── */
.kids-section { background: var(--hp-cream); }
.kids-section .section-intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
  color: #444;
}
.kids-ages {
  max-width: 720px;
  margin: 0 auto 32px;
  background: #fff;
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.kids-ages-h3 {
  font-size: 1.1rem;
  margin: 0 0 14px;
  color: var(--hp-ink);
}
.kids-ages-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}
.kids-ages-table th,
.kids-ages-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid #eee;
  font-size: 0.92rem;
}
.kids-ages-table th {
  font-weight: 600;
  color: var(--hp-brand-d);
  background: var(--hp-sand);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.kids-ages-table tr:last-child td { border-bottom: none; }
.kids-ages-table td[translate="no"] {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--hp-ink);
}
.kids-ages-note {
  font-size: 0.85rem;
  color: #666;
  margin: 12px 0 0;
  font-style: italic;
}

.kids-tips {
  max-width: 880px;
  margin: 0 auto 24px;
}
.kids-tips-h3 {
  text-align: center;
  font-size: 1.15rem;
  margin: 0 0 18px;
  color: var(--hp-ink);
}
.kids-tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.kids-tips-list li {
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  border-left: 3px solid var(--hp-accent);
}
.kids-tips-list h4 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  color: var(--hp-brand-d);
}
.kids-tips-list p {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}
.kids-faq-link {
  text-align: center;
  font-size: 0.92rem;
  color: #555;
  margin: 18px auto 0;
}
.kids-faq-link a {
  color: var(--hp-brand);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(179, 39, 31, 0.3);
  text-underline-offset: 3px;
}
.kids-faq-link a:hover {
  text-decoration-color: var(--hp-brand);
}

/* ──────────────── Mobile ──────────────── */
@media (max-width: 768px) {
  .section { padding: 36px 16px; }
  .op-grid, .combo-grid { grid-template-columns: 1fr; }
  .site-header { padding: 10px 16px; }
  .site-logo { font-size: 0.95rem; }
  .site-nav { gap: 10px; }
  .site-nav a { font-size: 0.85rem; }
  .site-lang select { font-size: 0.82rem; padding: 4px 22px 4px 8px; }
  .kids-ages { padding: 18px 16px; }
  .kids-ages-table th,
  .kids-ages-table td { padding: 8px 6px; font-size: 0.85rem; }
  .kids-tips-list { grid-template-columns: 1fr; }

  /* Section eyebrow + accent */
  .section { padding: 44px 16px; }
  .section::before { width: 120px; height: 120px; top: 16px; right: -30px; }
  .section-eyebrow { font-size: 0.68rem; letter-spacing: 0.14em; }

  /* Operator cards */
  .op-grid { grid-template-columns: 1fr; gap: 16px; }
  .op-card { padding: 22px 20px 20px; }

  /* Schedule */
  .schedule-op-logo { height: 22px; width: 28px; }
  .schedule-op-name { font-size: 0.86rem; }

  /* Tipps single column on mobile */
  .tips-list { grid-template-columns: 1fr; gap: 14px; }
  .tips-item { padding: 18px 20px; gap: 14px; }
  .tips-item-num { font-size: 2rem; }

  /* Alt-Section */
  .alt-card { padding: 22px 20px; }
  .alt-verdict { flex-direction: column; gap: 8px; padding: 20px 22px; }
  .alt-verdict-icon { margin-top: 0; }

  /* Season-Grid 4 → 2 columns on tablet, 1 on phone (handled below) */
  .season-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .season-card { padding: 20px 18px 18px; }
  .season-sweetspot { padding: 18px 20px; }

  /* FAQ */
  .faq-item summary { padding: 16px 18px; font-size: 0.98rem; gap: 12px; }
  .faq-item-answer { padding: 14px 18px 18px; }
}

/* Phone: Season 1-column */
@media (max-width: 480px) {
  .season-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Legal pages (legal-notice, privacy-policy)
   ============================================================ */
.legal-page {
  max-width: 760px;
  margin: 40px auto 80px;
  padding: 0 20px;
  color: var(--hp-ink, #2a2a2a);
  line-height: 1.6;
}
.legal-content h1 {
  font-size: 2rem;
  margin: 0 0 24px;
  color: var(--hp-ink, #2a2a2a);
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 36px 0 12px;
  color: var(--hp-ink, #2a2a2a);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
  color: var(--hp-ink, #2a2a2a);
}
.legal-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 20px 0 6px;
  color: var(--hp-ink, #2a2a2a);
}
.legal-content p { margin: 0 0 14px; }
.legal-content ul { margin: 0 0 14px 22px; padding: 0; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--hp-brand, #B3271F); text-decoration: underline; }
.legal-content a:hover { text-decoration: none; }
.legal-content code {
  background: #f4f4f4;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 0.9em;
}
.legal-back { margin-top: 40px; font-size: 0.95rem; }
.legal-back a { color: var(--hp-brand, #B3271F); }

/* ============================================================
   Sub-Pages — FAQ, Tips, Operator-Detail
   ============================================================ */
.subpage { padding-top: 16px; }
.subpage .section { padding: 40px 20px; }
.subpage h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.18;
  margin: 0 0 14px;
  color: var(--hp-ink);
  letter-spacing: -0.01em;
}
.subpage-back {
  max-width: 1100px;
  margin: 24px auto 60px;
  padding: 0 20px;
  font-size: 0.95rem;
}
.subpage-back a { color: var(--hp-brand, #B3271F); text-decoration: none; font-weight: 600; }
.subpage-back a:hover { text-decoration: underline; }

.faq-more-link {
  margin: 24px 0 0;
  text-align: center;
  font-size: 1rem;
}
.faq-more-link a {
  color: var(--hp-brand, #B3271F);
  text-decoration: none;
  font-weight: 600;
}
.faq-more-link a:hover { text-decoration: underline; }

/* ──────── Operator-Page Hero ──────── */
.operator-hero {
  --op-color: var(--hp-brand, #B3271F);
  background: linear-gradient(135deg, rgba(0,0,0,0.02), rgba(242,199,68,0.06));
  border-bottom: 4px solid var(--op-color);
  padding: 36px 20px;
}
.operator-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.operator-hero-text { flex: 1; }
.operator-hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--op-color);
  margin: 0 0 8px;
}
.operator-hero-h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--hp-ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.operator-hero-sub {
  font-size: 1.05rem;
  color: #444;
  margin: 0 0 22px;
  line-height: 1.55;
}
.operator-hero-cta {
  display: inline-block;
  background: var(--op-color);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.operator-hero-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.operator-hero-logo {
  /* Fixe Box, damit SVGs ohne intrinsische Größe (citysightseeing.svg hat
     nur viewBox, kein width/height) trotzdem gerendert werden. */
  width: 180px;
  flex: 0 0 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.operator-hero-logo img {
  width: 100%;
  max-width: 180px;
  max-height: 80px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 720px) {
  .operator-hero-logo { width: 140px; flex: 0 0 140px; }
  .operator-hero-logo img { max-width: 140px; max-height: 64px; }
}
@media (max-width: 720px) {
  .operator-hero-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .operator-hero-logo img { max-height: 60px; }
}

/* ──────── Operator-Page Facts grid ──────── */
.operator-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px 24px;
  margin: 0;
  padding: 0;
}
.operator-facts-grid > div {
  padding: 14px 18px;
  background: #FAF8F2;
  border-radius: 10px;
  border: 1px solid #ECE7DC;
}
.operator-facts-grid dt {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
  margin: 0 0 4px;
}
.operator-facts-grid dd {
  margin: 0;
  font-size: 0.98rem;
  color: var(--hp-ink);
  font-weight: 600;
}

/* ──────── Operator-Page Highlights ──────── */
.operator-highlights-list {
  margin: 0 0 18px;
  padding: 0 0 0 22px;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}
.operator-highlights-list li { margin-bottom: 8px; }

.operator-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.operator-feature {
  background: #F1EDE2;
  color: var(--hp-ink);
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 0.86rem;
  font-weight: 500;
}

/* ──────── Operator-Page Best-for + Caveat cards ──────── */
.operator-best-for {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 720px) {
  .operator-best-for { grid-template-columns: 1fr; }
}
.operator-best-for-card,
.operator-caveat-card {
  padding: 24px;
  border-radius: 12px;
  background: #FAF8F2;
}
.operator-caveat-card {
  background: #FFF7E6;
  border-left: 4px solid #F4B400;
}
.operator-best-for-card h3,
.operator-caveat-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--hp-ink);
}
.operator-best-for-card p,
.operator-caveat-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: #444;
}

/* ──────── Operator-Page CTA band ──────── */
.operator-cta-section { padding-top: 20px; }
.operator-cta-band {
  background: var(--hp-brand, #B3271F);
  color: #fff;
  padding: 36px 28px;
  border-radius: 14px;
  text-align: center;
}
.operator-cta-band h2 {
  color: #fff;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  margin: 0 0 10px;
}
.operator-cta-band p {
  margin: 0 0 22px;
  font-size: 1rem;
  color: rgba(255,255,255,0.92);
}
.operator-cta-button {
  display: inline-block;
  background: #fff;
  color: var(--hp-brand, #B3271F) !important;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.operator-cta-button:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.18); }

/* ──────── Tips-Page ──────── */
.tips-block { padding-bottom: 8px; }
.tips-block h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin: 0 0 14px;
}
.tips-block p,
.tips-list li { font-size: 1rem; line-height: 1.65; color: #333; }
.tips-list {
  padding: 0 0 0 22px;
  margin: 8px 0 16px;
}
.tips-list li { margin-bottom: 10px; }
.tips-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 18px 0;
}
.tips-card {
  background: #FAF8F2;
  border: 1px solid #ECE7DC;
  border-radius: 10px;
  padding: 20px 22px;
}
.tips-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--hp-brand, #B3271F);
}
.tips-card p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: #444; }
.tips-note {
  margin-top: 16px;
  padding: 14px 18px;
  background: #FFF7E6;
  border-left: 4px solid #F4B400;
  border-radius: 6px;
  font-size: 0.96rem;
}
.tips-season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 12px;
}
.tips-season {
  background: #FAF8F2;
  border: 1px solid #ECE7DC;
  border-radius: 10px;
  padding: 20px 22px;
}
.tips-season h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--hp-ink); }
.tips-season p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: #444; }

/* ──────── Footer 4-Spalten ──────── */
.site-footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px 32px;
  margin-bottom: 26px;
}
.site-footer-col h4 {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  font-weight: 700;
}
.site-footer-col a {
  display: block;
  color: #ccc;            /* Heller Text auf dunklem #1f1f1f Footer */
  text-decoration: none;
  font-size: 0.93rem;
  padding: 3px 0;
  transition: color 0.15s ease;
}
.site-footer-col a:hover { color: #fff; }

/* ──────── Header Nav-Dropdown (Operators) ──────── */
.site-nav-dropdown {
  position: relative;
}
.site-nav-dropdown > summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.92rem;
  color: #444;
  font-weight: 500;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.site-nav-dropdown > summary::-webkit-details-marker { display: none; }
.site-nav-dropdown > summary::after {
  content: "▾";
  font-size: 0.7em;
  color: #888;
}
.site-nav-dropdown[open] > summary { color: var(--hp-brand, #B3271F); }
.site-nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 6px 0;
  z-index: 200;
}
.site-nav-dropdown-panel a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
.site-nav-dropdown-panel a:hover {
  background: #FAF8F2;
  color: var(--hp-brand, #B3271F);
}
@media (max-width: 600px) {
  .site-nav { gap: 12px; }
  .site-nav-dropdown-panel { right: 0; left: auto; }
}

/* ──────── Operator-Page: Stops-Table ──────── */
.operator-stops h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin: 0 0 10px;
  color: var(--hp-ink);
}
.operator-stops-intro {
  margin: 0 0 18px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #444;
}
.operator-stops-tablewrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  border: 1px solid #ECE7DC;
}
.operator-stops-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  background: #fff;
  color: var(--hp-ink, #222);
}
.operator-stops-table thead {
  background: #FAF8F2;
}
.operator-stops-table th,
.operator-stops-table td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #ECE7DC;
}
.operator-stops-table th {
  font-weight: 700;
  color: #666;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.operator-stops-table tbody tr:last-child td {
  border-bottom: none;
}
.operator-stops-num {
  font-weight: 700;
  color: var(--op-color, var(--hp-brand, #B3271F));
  width: 1%;
  white-space: nowrap;
}
.operator-stops-name {
  font-weight: 600;
  min-width: 160px;
}
.operator-stops-address,
.operator-stops-near {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
}
.operator-stops-first,
.operator-stops-last {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: #555;
}
.operator-stops-note {
  margin: 14px 0 0;
  font-size: 0.88rem;
  color: #777;
  line-height: 1.6;
}

/* ──────── Operator-Page: Languages-Note ──────── */
.operator-langs h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin: 0 0 10px;
  color: var(--hp-ink);
}
.operator-langs-note {
  margin: 0;
  padding: 16px 20px;
  background: #FAF8F2;
  border-radius: 10px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #333;
}

/* ──────── Operator-Page: Hero — Stars + Live-Reviews + CTA-Row ──────── */
/* Hero hat HELLEN Hintergrund (siehe .operator-hero) — Text dunkel halten. */
.operator-hero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 10px;
  color: var(--hp-ink, #222);
}
.operator-hero-stars {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 2px;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
}
.operator-hero-stars-empty {
  color: #E0DACA;
}
.operator-hero-stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #F4B400;
  pointer-events: none;
}
.operator-hero-rating-num {
  font-weight: 800;
  font-size: 1rem;
  color: var(--hp-ink, #222);
}
.operator-hero-rating-sep {
  opacity: 0.4;
  font-weight: 400;
}
.operator-hero-reviews {
  font-size: 0.92rem;
  color: #555;
}
.operator-hero-validity {
  margin: 4px 0 18px;
  font-size: 0.93rem;
  color: #555;
}
.operator-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.operator-hero-cta-row > .operator-hero-cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 12px 22px;
  border-radius: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.operator-hero-cta-row > .operator-hero-cta--primary {
  background: var(--op-color, var(--hp-brand, #B3271F));
  color: #fff;
}
.operator-hero-cta-row > .operator-hero-cta--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.operator-hero-cta-row > .operator-hero-cta--secondary {
  background: #fff;
  color: var(--hp-ink, #222);
  border: 1.5px solid #D9D2BD;
}
.operator-hero-cta-row > .operator-hero-cta--secondary:hover {
  background: #FAF8F2;
  border-color: var(--op-color, var(--hp-brand, #B3271F));
  color: var(--op-color, var(--hp-brand, #B3271F));
}
@media (max-width: 600px) {
  .operator-hero-cta-row > .operator-hero-cta { width: 100%; justify-content: center; }
}

/* ──────── Operator-Page: Combo-Cards (Reseller-Logo + CTA) ──────── */
/* Erbt das Combo-Grid + Card-Grundlayout von der Startseite (.combo-grid,
   .combo-card, .combo-card-image, .combo-card-body, .combo-card-cta).
   Hier nur die Operator-Page-spezifischen Ergänzungen. */
.operator-combos h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin: 0 0 10px;
  color: var(--hp-ink);
}
.combo-card-reseller {
  margin-top: 10px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.combo-card-reseller-logo {
  height: 18px;
  width: auto;
  display: block;
  opacity: 0.85;
}

/* ──────── Operator-Page: Closing-CTA-Band — Primary + Secondary ──────── */
.operator-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}
.operator-cta-button--primary {
  background: #fff !important;
  color: var(--hp-brand, #B3271F) !important;
}
.operator-cta-button--secondary {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.65);
}
.operator-cta-button--secondary:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: #fff;
  color: #fff !important;
  transform: translateY(-1px);
}

/* ──────── Tips-Page: Hidden-Gem-Stops ──────── */
.tips-hidden-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}
@media (min-width: 760px) {
  .tips-hidden-grid { grid-template-columns: 1fr 1fr; }
}
.tips-hidden-card {
  background: #FAF8F2;
  border: 1px solid #ECE7DC;
  border-radius: 10px;
  padding: 22px 24px;
}
.tips-hidden-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  color: var(--hp-brand, #B3271F);
  line-height: 1.3;
}
.tips-hidden-meta {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 4px 12px;
  margin: 0 0 14px;
  font-size: 0.86rem;
  line-height: 1.45;
}
.tips-hidden-meta dt {
  font-weight: 700;
  color: #777;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.74rem;
  align-self: center;
}
.tips-hidden-meta dd {
  margin: 0;
  color: #444;
}
.tips-hidden-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}
