/**
 * site.css — hoponEdinburgh.com
 * ────────────────────────────────────────────────────────────
 * Castle Rock #2D3436 (primary) · Teal #00B894 (CTA)
 * Fonts: system stack
 */

/* ═══════════════════════════════════════════════════════
   TOKENS
   ═══════════════════════════════════════════════════════ */
:root {
  --hp-primary: #2D3436;
  --hp-cta: #00B894;
  --hp-cta-hover: #00a383;
  --hp-white: #ffffff;
  --hp-off-white: #f8f9fa;
  --hp-gray-100: #f1f3f5;
  --hp-gray-200: #e9ecef;
  --hp-gray-400: #ced4da;
  --hp-gray-600: #868e96;
  --hp-gray-800: #343a40;
  --hp-text: #2D3436;
  --hp-text-muted: #636e72;
  --hp-radius: 12px;
  --hp-radius-sm: 8px;
  --hp-shadow: 0 2px 12px rgba(0,0,0,.08);
  --hp-shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --hp-max-w: 1120px;
  --hp-section-py: 64px;
  --hp-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ═══════════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--hp-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--hp-text);
  background: var(--hp-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
details > summary { cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }
details > summary::marker { content: ''; }

/* ═══════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--hp-primary);
  color: var(--hp-white);
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.site-header-inner {
  max-width: var(--hp-max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-logo { flex-shrink: 0; }
.site-logo-img { height: 36px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 20px; font-size: 14px; font-weight: 500; }
.site-nav a:hover { opacity: .85; }

/* Nav dropdown */
.site-nav-dropdown { position: relative; }
.site-nav-dropdown > summary { display: flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 500; }
.site-nav-dropdown > summary::after { content: '▾'; font-size: 10px; }
.site-nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--hp-white);
  color: var(--hp-text);
  border-radius: var(--hp-radius-sm);
  box-shadow: var(--hp-shadow-lg);
  min-width: 200px;
  padding: 8px 0;
  z-index: 110;
}
.site-nav-dropdown-panel a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
}
.site-nav-dropdown-panel a:hover { background: var(--hp-gray-100); }

/* Language switcher */
.site-lang select {
  background: rgba(255,255,255,.15);
  color: var(--hp-white);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 13px;
  cursor: pointer;
}
.site-lang select option { color: var(--hp-text); background: var(--hp-white); }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hp-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hp-primary);
}
.hp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,52,54,.72) 0%, rgba(45,52,54,.45) 100%);
}
.hp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--hp-max-w);
  margin: 0 auto;
  padding: 48px 20px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
}
.hp-hero-text { color: var(--hp-white); }
.hp-hero-h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.hp-hero-h1-sub {
  display: block;
  font-weight: 600;
  font-size: 1.4rem;
  opacity: .9;
  margin-top: 4px;
}
.hp-hero-sub {
  font-size: 1rem;
  line-height: 1.65;
  opacity: .88;
  max-width: 520px;
}
.hp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 6px 14px;
  background: rgba(255,255,255,.12);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.hp-hero-badge-stars { color: #ffd700; letter-spacing: 2px; }

.hp-hero-credit {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════ */
.hp-trust {
  background: var(--hp-primary);
  color: var(--hp-white);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hp-trust-inner {
  max-width: var(--hp-max-w);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════
   PRICE COMPARISON RESULTS (Rome-style Cards)
   ═══════════════════════════════════════════════════════ */
.hp-results {
  background: var(--hp-bg-warm);
  padding: 48px 0 56px;
}
.hp-results-inner {
  max-width: var(--hp-max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.hp-results-h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--hp-primary);
  margin: 0 0 4px;
  text-align: center;
}
.hp-results-meta {
  text-align: center;
  font-size: 15px;
  color: var(--hp-text-muted);
  margin: 0 0 32px;
}

/* ── Results Grid ── */
.hp-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

/* ── Loading & Empty ── */
.hp-results-loading {
  text-align: center;
  padding: 40px 20px;
  color: var(--hp-text-muted);
  font-size: 16px;
  grid-column: 1 / -1;
}
.hp-results-spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid var(--hp-border);
  border-top-color: var(--hp-cta);
  border-radius: 50%;
  animation: hp-spin .7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes hp-spin { to { transform: rotate(360deg); } }
.hp-results-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--hp-text-muted);
  font-size: 15px;
  grid-column: 1 / -1;
}

/* ── Result Card ── */
.hp-rcard {
  background: var(--hp-white);
  border: 1px solid #d5d7da;
  border-radius: 12px;
  padding: 24px 20px 20px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .2s, border-color .2s;
}
.hp-rcard:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

/* ── Preise und Buttons auf eine Hoehe ──
   Die Karten haben unterschiedlich viele Hinweiszeilen (Altersspanne, freie
   Kinderplaetze, Ersparnis). Als einzelne Flex-Spalten rutscht der Preis
   dadurch je Karte auf eine andere Hoehe. Mit Subgrid teilen sich alle Karten
   die Zeilen des Ergebnis-Grids: Zeile 5 ist ueberall der Preis, Zeile 6 der
   Button. Das JS liefert dafuer in jeder Karte dieselben sieben Zeilen und
   setzt leere Platzhalter, wo ein Hinweis fehlt.

   Browser ohne Subgrid (vor Chrome 117 / Safari 16 / Firefox 71) behalten die
   Flex-Spalte von oben — sie sieht aus wie bisher, nur ohne die Ausrichtung. */
.hp-rcard-slot {
  /* Belegt seine Zeile, ohne Hoehe beizutragen. */
  height: 0;
  margin: 0;
  padding: 0;
}

@supports (grid-template-rows: subgrid) {
  .hp-results-grid {
    grid-template-rows: repeat(7, auto);
    align-items: start;
  }
  .hp-rcard {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 7;
    /* Eigener Zeilenabstand — sonst erbt die Karte die 20px des aeusseren
       Grids, das ist zwischen den Zeilen einer Karte zu viel. */
    row-gap: 10px;
    justify-items: center;
    align-content: start;
  }
  /* Preisblock und Button sollen ihre Zeile fuellen, nicht nur ihren Text. */
  .hp-rcard-price-block,
  .hp-rcard-cta,
  .hp-rcard-savings,
  .hp-rcard-rating,
  .hp-rcard-childage,
  .hp-rcard-childfree {
    align-self: center;
  }
}
.hp-rcard--best {
  border-color: #dc2626;
  box-shadow: 0 2px 16px rgba(220,38,38,.12);
}
.hp-rcard--toprated {
  border-color: #d4a017;
  box-shadow: 0 2px 16px rgba(212,160,23,.12);
}

/* Badge */
.hp-rcard-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.hp-rcard-badge--best {
  background: #dc2626;
  color: #fff;
}
.hp-rcard-badge--top {
  background: #d4a017;
  color: #fff;
}

/* Logos */
.hp-rcard-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
}
.hp-rcard-logo {
  max-height: 32px;
  max-width: 80px;
  object-fit: contain;
}
.hp-rcard-logo--reseller {
  max-height: 24px;
  max-width: 64px;
}
.hp-rcard-via {
  font-size: 12px;
  color: var(--hp-text-muted);
}
.hp-rcard-reseller-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--hp-text-muted);
}

/* Rating */
.hp-rcard-rating {
  font-size: 14px;
  color: var(--hp-text);
}
.hp-rcard-star {
  color: #f59e0b;
}
.hp-rcard-rating-val {
  font-weight: 700;
}
.hp-rcard-reviews {
  color: var(--hp-text-muted);
  font-size: 13px;
}

/* Preis */
.hp-rcard-price-block {
  padding: 4px 0;
}
.hp-rcard-total {
  font-size: 32px;
  font-weight: 800;
  color: var(--hp-text);
  line-height: 1.1;
}
.hp-rcard-per-person {
  font-size: 13px;
  color: var(--hp-text-muted);
  margin-top: 2px;
}

/* CTA Button */
.hp-rcard-cta {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  border: 2px solid var(--hp-primary);
  color: var(--hp-primary) !important;
  background: transparent !important;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.hp-rcard-cta:hover {
  background: var(--hp-primary) !important;
  color: #fff !important;
}
.hp-rcard-cta--best {
  background: var(--hp-cta) !important;
  color: #fff !important;
  border-color: var(--hp-cta);
}
.hp-rcard-cta--best:hover {
  opacity: .88;
  background: var(--hp-cta) !important;
  color: #fff !important;
}

/* Savings */
.hp-rcard-savings {
  font-size: 13px;
  color: var(--hp-cta);
  font-weight: 600;
  margin-top: -4px;
}

/* ── "Need something else?" ── */
.hp-results-more {
  text-align: center;
  margin-top: 32px;
  padding: 16px 24px;
  background: var(--hp-white);
  border: 1px solid var(--hp-border);
  border-radius: 10px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.hp-results-more-link {
  color: var(--hp-primary);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.hp-results-more-link:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════
   SHARED SECTION LAYOUT
   ═══════════════════════════════════════════════════════ */
.hp-section-inner {
  max-width: var(--hp-max-w);
  margin: 0 auto;
  padding: var(--hp-section-py) 20px;
}
.hp-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hp-cta);
  margin-bottom: 8px;
}
.hp-section-h2 {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}
.hp-section-intro {
  font-size: 1rem;
  color: var(--hp-text-muted);
  max-width: 680px;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════════
   OPERATOR COMPARISON
   ═══════════════════════════════════════════════════════ */
.hp-operators { background: var(--hp-off-white); }
.hp-op-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.hp-op-card {
  background: var(--hp-white);
  border-radius: var(--hp-radius);
  box-shadow: var(--hp-shadow);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--op-color, var(--hp-primary));
}
.hp-op-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.hp-op-logo {
  height: 36px;
  width: 140px;
  object-fit: contain;
  object-position: left center;
}
.hp-op-tagline {
  font-size: 13px;
  color: var(--hp-text-muted);
  font-weight: 500;
}
.hp-op-summary {
  font-size: 15px;
  line-height: 1.65;
  color: var(--hp-gray-800);
  margin-bottom: 20px;
}
.hp-op-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 20px;
  flex: 1;
}
.hp-op-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--hp-gray-200);
  font-size: 14px;
}
.hp-op-detail-row:last-child { border-bottom: none; }
.hp-op-detail-row dt {
  font-weight: 600;
  color: var(--hp-text);
}
.hp-op-detail-row dd {
  color: var(--hp-text-muted);
  text-align: right;
}
.hp-op-cta {
  display: block;
  text-align: center;
  padding: 12px 24px;
  background: var(--hp-cta) !important;
  color: var(--hp-white) !important;
  text-decoration: none !important;
  border-radius: var(--hp-radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: opacity .15s;
}
.hp-op-cta:hover { opacity: .88; color: var(--hp-white) !important; }

/* ═══════════════════════════════════════════════════════
   COMBO TICKETS
   ═══════════════════════════════════════════════════════ */
.hp-combos { background: var(--hp-white); }
.hp-combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hp-combo-card {
  position: relative;
  background: var(--hp-white);
  border: 1px solid var(--hp-gray-200);
  border-radius: var(--hp-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.hp-combo-card:hover { box-shadow: var(--hp-shadow-lg); }
.hp-combo-card--featured {
  border-color: var(--hp-cta);
  box-shadow: 0 0 0 1px var(--hp-cta);
}
.hp-combo-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}
.hp-combo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-combo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--hp-cta);
  color: var(--hp-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 100px;
  z-index: 1;
}
.hp-combo-name {
  padding: 20px 20px 0;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.hp-combo-desc {
  padding: 0 20px;
  font-size: 14px;
  color: var(--hp-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.hp-combo-meta {
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  margin-bottom: 16px;
}
.hp-combo-rating {
  font-weight: 700;
  color: #f5a623;
}
.hp-combo-reviews { color: var(--hp-text-muted); }
.hp-combo-via { color: var(--hp-gray-600); font-style: italic; }
.hp-combo-cta {
  display: block;
  text-align: center;
  margin: 0 20px 20px;
  padding: 11px 20px;
  background: var(--hp-cta) !important;
  color: var(--hp-white) !important;
  text-decoration: none !important;
  border-radius: var(--hp-radius-sm);
  font-weight: 700;
  font-size: 14px;
  transition: opacity .15s;
}
.hp-combo-cta:hover { opacity: .88; color: var(--hp-white) !important; }

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.hp-faq { background: var(--hp-off-white); }
.hp-faq-list {
  max-width: 740px;
}
.hp-faq-item {
  border-bottom: 1px solid var(--hp-gray-200);
}
.hp-faq-q {
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.hp-faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--hp-gray-600);
  flex-shrink: 0;
  transition: transform .2s;
}
.hp-faq-item[open] > .hp-faq-q::after {
  content: '−';
  color: var(--hp-cta);
}
.hp-faq-a {
  padding: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--hp-text-muted);
}
.hp-faq-more {
  display: inline-block;
  margin-top: 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--hp-cta);
}
.hp-faq-more:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   CLOSING CTA
   ═══════════════════════════════════════════════════════ */
.hp-closing {
  background: var(--hp-primary);
  color: var(--hp-white);
  text-align: center;
}
.hp-closing-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--hp-section-py) 20px;
}
.hp-closing-h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.hp-closing-sub {
  font-size: 1rem;
  opacity: .85;
  line-height: 1.65;
  margin-bottom: 28px;
}
.hp-closing-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hp-closing-cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--hp-radius-sm);
  font-weight: 700;
  font-size: 16px;
  transition: opacity .15s;
}
.hp-closing-cta:hover { opacity: .88; }
.hp-closing-cta--primary {
  background: var(--hp-cta) !important;
  color: var(--hp-white) !important;
  text-decoration: none !important;
}
.hp-closing-cta--secondary {
  background: transparent;
  border: 2px solid rgba(255,255,255,.4);
  color: var(--hp-white) !important;
  text-decoration: none !important;
}
.hp-closing-cta--secondary:hover { border-color: rgba(255,255,255,.7); }
.hp-closing-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 20px;
}
.hp-closing-trust li {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: .85;
}
.hp-closing-rating {
  font-size: 14px;
  opacity: .7;
}
.hp-closing-stars {
  color: #ffd700;
  letter-spacing: 1px;
  margin-right: 4px;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
  background: #1a1e1f;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}
.site-footer-inner {
  max-width: var(--hp-max-w);
  margin: 0 auto;
  padding: 48px 20px 32px;
}
.site-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.site-footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}
.site-footer-col a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,.7);
  transition: color .15s;
}
.site-footer-col a:hover { color: var(--hp-white); }
.site-footer-disclaimer {
  font-size: 13px;
  opacity: .6;
  max-width: 640px;
  margin-bottom: 8px;
}
.site-footer-copyright {
  font-size: 13px;
  opacity: .4;
}

/* ═══════════════════════════════════════════════════════
   OPERATOR SUBPAGE — HERO
   ═══════════════════════════════════════════════════════ */
/* Operator Hero — Rome-style: heller Hintergrund, farbiger Akzent, Logo rechts */
.hp-ophero {
  background: linear-gradient(135deg, rgba(0,0,0,.02), rgba(0,184,148,.06));
  border-bottom: 4px solid var(--op-color, var(--hp-primary));
  padding: 36px 0;
}
.hp-ophero-inner {
  max-width: var(--hp-max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.hp-ophero-text { flex: 1; }
.hp-ophero-eyebrow {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--op-color, var(--hp-primary));
  margin: 0 0 8px;
}
.hp-ophero-name {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--hp-text);
  letter-spacing: -.015em;
  line-height: 1.15;
}
.hp-ophero-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 10px;
  color: var(--hp-text);
}
.hp-ophero-stars {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 2px;
  line-height: 1;
}
.hp-ophero-stars-empty { color: #d5d7da; }
.hp-ophero-stars-fill {
  position: absolute;
  top: 0; left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #f5a623;
  pointer-events: none;
}
.hp-ophero-rval {
  font-weight: 800;
  font-size: 1rem;
  color: var(--hp-text);
}
.hp-ophero-rsep { opacity: .4; font-weight: 400; }
.hp-ophero-rcount {
  font-size: .92rem;
  color: var(--hp-text-muted);
}
.hp-ophero-validity {
  margin: 4px 0 18px;
  font-size: .93rem;
  color: var(--hp-text-muted);
}
.hp-ophero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.hp-ophero-cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  font-weight: 700;
  font-size: .96rem;
  padding: 12px 22px;
  border-radius: var(--hp-radius-sm);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.hp-ophero-cta--primary {
  background: var(--hp-cta) !important;
  color: #fff !important;
}
.hp-ophero-cta--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.hp-ophero-cta--secondary {
  background: #fff !important;
  color: var(--hp-text) !important;
  border: 1.5px solid var(--hp-gray-200);
}
.hp-ophero-cta--secondary:hover {
  background: var(--hp-off-white) !important;
  border-color: var(--op-color, var(--hp-cta));
  color: var(--op-color, var(--hp-cta)) !important;
}
.hp-ophero-logo {
  width: 260px;
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-ophero-logo img {
  width: 100%;
  max-width: 260px;
  max-height: 110px;
  height: auto;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════════════
   OPERATOR SUBPAGE — QUICK FACTS
   ═══════════════════════════════════════════════════════ */
.hp-opfacts {
  background: var(--hp-off-white);
}
.hp-opfacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px 24px;
  margin-top: 24px;
}
.hp-opfacts-item {
  background: var(--hp-white);
  border-radius: var(--hp-radius-sm);
  padding: 16px;
  border: 1px solid var(--hp-gray-200);
}
.hp-opfacts-item dt {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--hp-text-muted);
  margin-bottom: 4px;
}
.hp-opfacts-item dd {
  font-size: 15px;
  font-weight: 600;
  color: var(--hp-text);
}
.hp-opfacts-item--price {
  border-color: var(--hp-cta);
  border-width: 2px;
}
.hp-opfacts-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--hp-cta);
}
.hp-opfacts-pnote {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--hp-text-muted);
  margin-top: 2px;
}
.hp-opfacts-validity {
  font-size: 13px;
  color: var(--hp-text-muted);
  margin-top: 16px;
  text-align: center;
}
.hp-op-cta--wide {
  display: block;
  text-align: center;
  margin-top: 24px;
  padding: 14px 28px;
  background: var(--hp-cta) !important;
  color: var(--hp-white) !important;
  text-decoration: none !important;
  border-radius: var(--hp-radius-sm);
  font-size: 16px;
  font-weight: 700;
  transition: opacity .15s;
}
.hp-op-cta--wide:hover { opacity: .88; color: var(--hp-white) !important; }

/* ═══════════════════════════════════════════════════════
   OPERATOR SUBPAGE — HIGHLIGHTS
   ═══════════════════════════════════════════════════════ */
.hp-ophigh {
  background: var(--hp-white);
}
.hp-ophigh-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hp-ophigh-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--hp-text);
}
.hp-ophigh-check {
  flex-shrink: 0;
  color: var(--hp-cta);
  margin-top: 2px;
}

/* Feature pills (Rome-style) */
.hp-ophigh-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.hp-ophigh-feature {
  background: rgba(0,184,148,.08);
  color: var(--hp-text);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(0,184,148,.15);
}

/* ═══════════════════════════════════════════════════════
   OPERATOR SUBPAGE — BEST FOR + GOOD TO KNOW
   ═══════════════════════════════════════════════════════ */
.hp-opadvice {
  background: var(--hp-off-white);
}
.hp-opadvice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hp-opadvice-card {
  padding: 24px;
  border-radius: var(--hp-radius);
  border: 1px solid var(--hp-gray-200);
}
.hp-opadvice-card--best {
  background: rgba(0,184,148,.04);
  border-color: rgba(0,184,148,.2);
}
.hp-opadvice-card--caveat {
  background: rgba(255,193,7,.04);
  border-color: rgba(255,193,7,.2);
}
.hp-opadvice-h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--hp-text);
}
.hp-opadvice-card--best .hp-opadvice-h3 svg { color: var(--hp-cta); }
.hp-opadvice-card--caveat .hp-opadvice-h3 svg { color: #f59f00; }
.hp-opadvice-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--hp-text-muted);
}

/* ═══════════════════════════════════════════════════════
   OPERATOR SUBPAGE — STOPS TABLE
   ═══════════════════════════════════════════════════════ */
.hp-opstops {
  background: var(--hp-white);
}
.hp-opstops-route-h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--route-color, var(--hp-text));
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hp-opstops-route-h3::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--route-color, var(--hp-text));
  flex-shrink: 0;
}
.hp-opstops--blue {
  background: var(--hp-white);
  padding-top: 0;
}
.hp-tablecontainer {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 20px;
}
.hp-opstops-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 14px;
}
.hp-opstops-table thead th {
  text-align: left;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--hp-text-muted);
  border-bottom: 2px solid var(--hp-gray-200);
  white-space: nowrap;
}
.hp-opstops-table tbody tr {
  border-bottom: 1px solid var(--hp-gray-200);
}
.hp-opstops-table tbody tr:last-child { border-bottom: none; }
.hp-opstops-table td {
  padding: 10px 12px;
  vertical-align: top;
}
.hp-opstops-nr {
  font-weight: 700;
  color: var(--hp-text-muted);
  text-align: center;
  width: 48px;
}
.hp-opstops-name-main {
  display: block;
  font-weight: 600;
  color: var(--hp-text);
}
.hp-opstops-address {
  display: block;
  font-size: 12px;
  color: var(--hp-text-muted);
  margin-top: 2px;
}
.hp-opstops-time {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.hp-opstops-near {
  font-size: 13px;
  color: var(--hp-text-muted);
}

/* ═══════════════════════════════════════════════════════
   OPERATOR SUBPAGE — AUDIO LANGUAGES
   ═══════════════════════════════════════════════════════ */
.hp-oplangs {
  background: var(--hp-off-white);
}
.hp-oplangs-h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.hp-oplangs-h3 svg { color: var(--hp-cta); }
.hp-oplangs-note {
  font-size: 15px;
  line-height: 1.6;
  color: var(--hp-text-muted);
  max-width: 640px;
}

/* ═══════════════════════════════════════════════════════
   OPERATOR SUBPAGE — COMBOS
   ═══════════════════════════════════════════════════════ */
.hp-opcombos {
  background: var(--hp-white);
}

/* ═══════════════════════════════════════════════════════
   OPERATOR SUBPAGE — CLOSING CTA BAND
   ═══════════════════════════════════════════════════════ */
.hp-op-closing .hp-section-inner {
  padding-bottom: calc(var(--hp-section-py) / 2);
}
.hp-op-closing-band {
  background: var(--hp-cta);
  color: #fff;
  padding: 40px 32px;
  border-radius: var(--hp-radius);
  text-align: center;
}
.hp-op-closing-h2 {
  color: #fff;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 800;
  margin: 0 0 10px;
}
.hp-op-closing-sub {
  margin: 0 0 24px;
  font-size: 1rem;
  color: rgba(255,255,255,.9);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hp-op-closing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hp-op-closing-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: var(--hp-radius-sm);
  text-decoration: none !important;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .15s, box-shadow .15s;
}
.hp-op-closing-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.hp-op-closing-btn--primary {
  background: #fff !important;
  color: var(--hp-cta) !important;
}
.hp-op-closing-btn--secondary {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.6);
}
.hp-op-closing-btn--secondary:hover {
  background: rgba(255,255,255,.12) !important;
  border-color: #fff;
  color: #fff !important;
}

/* Back-to-home link */
.hp-op-back {
  text-align: center;
  padding: 20px 0 40px;
  font-size: 14px;
}
.hp-op-back a {
  color: var(--hp-text-muted);
  text-decoration: none;
  transition: color .15s;
}
.hp-op-back a:hover { color: var(--hp-cta); }

@media (max-width: 600px) {
  .hp-op-closing-btn { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════
   03 · ROUTES & STOPS
   ═══════════════════════════════════════════════════════ */
.hp-routes { background: #fff; }
.hp-stops-accordion { max-width: none; }
.hp-stop-item {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fafafa;
  overflow: hidden;
}
.hp-stop-item[open] { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.hp-stop-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1rem;
}
.hp-stop-summary::-webkit-details-marker { display: none; }
.hp-stop-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--hp-cta);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.hp-stop-title { flex: 1; color: var(--hp-primary); }
.hp-stop-chevron {
  transition: transform .2s;
  flex-shrink: 0;
  color: #999;
}
.hp-stop-item[open] .hp-stop-chevron { transform: rotate(180deg); }
.hp-stop-body { padding: 0 20px 20px 20px; }
.hp-stop-desc { margin: 0 0 12px; color: #555; line-height: 1.6; }
.hp-stop-meta { margin: 0 0 12px; }
.hp-stop-meta p { margin: 4px 0; color: #444; line-height: 1.5; }
.hp-stop-meta-label { font-weight: 600; color: var(--hp-primary); }
.hp-stop-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 16px;
  background: #f0faf7;
  border-radius: 8px;
  border-left: 3px solid var(--hp-cta);
  font-size: .92rem;
  color: #444;
}
.hp-stop-tip-icon { flex-shrink: 0; color: var(--hp-cta); margin-top: 2px; }
.hp-stop-tip-label { font-weight: 600; color: var(--hp-cta); }

/* ═══════════════════════════════════════════════════════
   04 · SCHEDULE + TIPS
   ═══════════════════════════════════════════════════════ */
.hp-schedule { background: var(--hp-off-white); }
.hp-schedule-h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--hp-primary);
}
.hp-schedule-h3--tips { margin-top: 48px; }
.hp-schedule-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 0 12px; }
.hp-schedule-table,
.hp-kids-ages-table {
  min-width: 500px;
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.hp-schedule-table thead th,
.hp-kids-ages-table thead th {
  background: var(--hp-primary);
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hp-schedule-table tbody td,
.hp-schedule-table tbody th,
.hp-kids-ages-table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid #e8e8e8;
  vertical-align: middle;
}
.hp-schedule-table tbody th { text-align: left; }
.hp-schedule-table tbody tr:nth-child(even),
.hp-kids-ages-table tbody tr:nth-child(even) { background: rgba(0,0,0,.02); }
.hp-schedule-op { display: inline-flex; align-items: center; gap: 10px; }
.hp-schedule-op-logo { width: 28px; height: 28px; object-fit: contain; object-position: left center; border-radius: 4px; }
.hp-schedule-op-name { font-weight: 600; white-space: nowrap; }
.hp-schedule-season-note {
  margin: 12px 0 0;
  font-size: .88rem;
  color: #777;
  font-style: italic;
}

/* Tips */
.hp-tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: tips;
}
.hp-tips-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e8;
}
.hp-tips-item:last-child { border-bottom: none; }
.hp-tips-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--hp-cta);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.hp-tips-body h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hp-primary);
}
.hp-tips-body p { margin: 0; color: #555; line-height: 1.55; }

/* ═══════════════════════════════════════════════════════
   05 · BUS VS ALTERNATIVES
   ═══════════════════════════════════════════════════════ */
.hp-alt { background: #fff; }
.hp-alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 32px;
}
.hp-alt-card {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}
.hp-alt-card--highlight {
  background: linear-gradient(135deg, rgba(0,184,148,.08), rgba(0,184,148,.02));
  border-color: var(--hp-cta);
  box-shadow: 0 2px 12px rgba(0,184,148,.12);
}
.hp-alt-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(0,184,148,.1);
  color: var(--hp-cta);
  margin-bottom: 16px;
}
.hp-alt-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hp-primary);
}
.hp-alt-card p { margin: 0; color: #555; line-height: 1.55; font-size: .92rem; }
.hp-alt-verdict {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: linear-gradient(135deg, var(--hp-primary), #3d4a4c);
  border-radius: 12px;
  color: #fff;
}
.hp-alt-verdict-icon { flex-shrink: 0; margin-top: 2px; }
.hp-alt-verdict-body h3 { margin: 0 0 6px; font-size: 1.05rem; font-weight: 700; color: #fff; }
.hp-alt-verdict-body p { margin: 0; line-height: 1.55; color: rgba(255,255,255,.88); font-size: .92rem; }

/* ═══════════════════════════════════════════════════════
   06 · KIDS / FAMILY
   ═══════════════════════════════════════════════════════ */
.hp-kids { background: #fff; }
.hp-kids-ages { margin: 0 0 40px; }
.hp-kids-ages-h3,
.hp-kids-tips-h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--hp-primary);
}
/* Familienticket-Hinweis unter der Alterstabelle — etwas praesenter als die
   Fussnote darueber, weil er eine echte Ersparnis benennt. */
.hp-kids-family-note {
  margin: 10px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--hp-cta);
  background: rgba(0, 0, 0, .025);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--hp-text);
}

.hp-kids-ages-note {
  margin: 10px 0 0;
  font-size: .85rem;
  color: #888;
  font-style: italic;
}
.hp-kids-tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.hp-kids-tips-list li {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 20px;
}
.hp-kids-tips-list h4 {
  margin: 0 0 6px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--hp-primary);
}
.hp-kids-tips-list p { margin: 0; color: #555; line-height: 1.55; font-size: .9rem; }
.hp-kids-faq-link {
  margin: 28px 0 0;
  text-align: center;
  color: #666;
  font-size: .92rem;
}
.hp-kids-faq-link a { color: var(--hp-cta); text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   07 · BEST TIME TO VISIT (SEASONS)
   ═══════════════════════════════════════════════════════ */
.hp-season { background: #fff; }
.hp-season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 0 32px;
}
.hp-season-card {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hp-season-card-head { display: flex; align-items: center; gap: 12px; }
.hp-season-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hp-season-card--spring .hp-season-card-icon { background: #e8f5e9; color: #4caf50; }
.hp-season-card--summer .hp-season-card-icon { background: #fff8e1; color: #ff9800; }
.hp-season-card--autumn .hp-season-card-icon { background: #fbe9e7; color: #e64a19; }
.hp-season-card--winter .hp-season-card-icon { background: #e3f2fd; color: #1976d2; }
.hp-season-card-name { margin: 0; font-size: 1rem; font-weight: 700; color: var(--hp-primary); }
.hp-season-card-months { font-size: .82rem; color: #888; }
.hp-season-card-stats {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.hp-season-card-stat { display: flex; flex-direction: column; gap: 2px; }
.hp-season-card-stat dt { font-size: .75rem; text-transform: uppercase; color: #999; letter-spacing: .04em; font-weight: 600; }
.hp-season-card-stat dd { margin: 0; font-weight: 600; font-size: .9rem; color: var(--hp-primary); }
.hp-season-card-crowds { display: flex; gap: 4px; align-items: center; }
.hp-season-crowd-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ddd;
}
.hp-season-card-crowds[data-level="1"] .hp-season-crowd-dot:nth-child(1) { background: var(--hp-cta); }
.hp-season-card-crowds[data-level="2"] .hp-season-crowd-dot:nth-child(1),
.hp-season-card-crowds[data-level="2"] .hp-season-crowd-dot:nth-child(2) { background: #ff9800; }
.hp-season-card-crowds[data-level="3"] .hp-season-crowd-dot:nth-child(1),
.hp-season-card-crowds[data-level="3"] .hp-season-crowd-dot:nth-child(2),
.hp-season-card-crowds[data-level="3"] .hp-season-crowd-dot:nth-child(3) { background: #e53935; }
.hp-season-card-rec { margin: 0; font-size: .88rem; color: #555; line-height: 1.5; }
.hp-season-sweetspot {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(0,184,148,.1), rgba(0,184,148,.03));
  border-radius: 10px;
  border-left: 4px solid var(--hp-cta);
}
.hp-season-sweetspot-label {
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--hp-cta);
  white-space: nowrap;
}
.hp-season-sweetspot-text { margin: 0; color: #444; line-height: 1.55; }


/* ═══════════════════════════════════════════════════════
   SUBPAGES (Tips + FAQ)
   ═══════════════════════════════════════════════════════ */
.hp-subpage { padding-top: 16px; }
.hp-subpage .hp-section { padding: 40px 20px; max-width: var(--hp-max-w); margin-left: auto; margin-right: auto; }
.hp-subpage h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.18;
  margin: 0 0 14px;
  color: var(--hp-text);
  letter-spacing: -0.01em;
}
.hp-subpage-back {
  max-width: var(--hp-max-w);
  margin: 24px auto 60px;
  padding: 0 20px;
  font-size: 0.95rem;
}
.hp-subpage-back a { color: var(--hp-cta); text-decoration: none; font-weight: 600; }
.hp-subpage-back a:hover { text-decoration: underline; }

/* ──────── Legal Pages ──────── */
.hp-legal-page h2 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  margin: 32px 0 10px;
  color: var(--hp-text);
}
.hp-legal-page h3 {
  font-size: 1.05rem;
  margin: 24px 0 8px;
  color: var(--hp-text);
}
.hp-legal-page p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #444;
  margin: 0 0 14px;
}
.hp-legal-updated {
  margin-top: 32px;
  font-size: 0.88rem;
  color: var(--hp-text-muted);
  font-style: italic;
}

/* ──────── Tips-Page ──────── */
.hp-tips-block { padding-bottom: 8px; }
.hp-tips-block h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin: 0 0 14px;
}
.hp-tips-block p,
.hp-tips-ulist li { font-size: 1rem; line-height: 1.65; color: #333; }
.hp-tips-ulist {
  padding: 0 0 0 22px;
  margin: 8px 0 16px;
}
.hp-tips-ulist li { margin-bottom: 10px; }
.hp-tips-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 18px 0;
}
.hp-tips-card {
  background: var(--hp-off-white);
  border: 1px solid var(--hp-gray-200);
  border-radius: 10px;
  padding: 20px 22px;
}
.hp-tips-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--hp-primary);
}
.hp-tips-card p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: #444; }
.hp-tips-season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 12px;
}
.hp-tips-season {
  background: var(--hp-off-white);
  border: 1px solid var(--hp-gray-200);
  border-radius: 10px;
  padding: 20px 22px;
}
.hp-tips-season h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--hp-text); }
.hp-tips-season p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: #444; }

/* ──────── Tips-Page: Icon-List (Voucher + Weather) ──────── */
.hp-tips-icon-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 8px;
}
.hp-tips-icon-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--hp-off-white);
  border: 1px solid var(--hp-gray-200);
  border-left: 4px solid var(--hp-cta);
  border-radius: 10px;
  padding: 18px 20px;
}
.hp-tips-icon-symbol {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,184,148,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  margin-top: 1px;
}
.hp-tips-icon-symbol::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
/* Voucher icons */
[data-icon="save"] .hp-tips-icon-symbol::before   { content: "\1F4F1"; }
[data-icon="bright"] .hp-tips-icon-symbol::before  { content: "\2600\FE0F"; }
[data-icon="person"] .hp-tips-icon-symbol::before  { content: "\1F4C4"; }
[data-icon="clock"] .hp-tips-icon-symbol::before   { content: "\23F0"; }
/* Weather icons */
[data-icon="rain"] .hp-tips-icon-symbol::before    { content: "\1F327\FE0F"; }
[data-icon="sun"] .hp-tips-icon-symbol::before     { content: "\2615"; }
[data-icon="cold"] .hp-tips-icon-symbol::before    { content: "\2744\FE0F"; }
[data-icon="wind"] .hp-tips-icon-symbol::before    { content: "\1F4A8"; }
/* Weather-specific accent borders */
[data-icon="rain"]  { border-left-color: #74b9ff; }
[data-icon="sun"]   { border-left-color: #fdcb6e; }
[data-icon="cold"]  { border-left-color: #a29bfe; }
[data-icon="wind"]  { border-left-color: #636e72; }
.hp-tips-icon-item p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.65;
  color: #333;
  flex: 1;
}

/* ──────── Tips-Page: Hidden-Gem-Stops ──────── */
.hp-tips-hidden-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}
@media (min-width: 760px) {
  .hp-tips-hidden-grid { grid-template-columns: 1fr 1fr; }
}
.hp-tips-hidden-card {
  background: var(--hp-off-white);
  border: 1px solid var(--hp-gray-200);
  border-radius: 10px;
  padding: 22px 24px;
}
.hp-tips-hidden-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  color: var(--hp-primary);
  line-height: 1.3;
}
.hp-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;
}
.hp-tips-hidden-meta dt {
  font-weight: 700;
  color: #777;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.74rem;
  align-self: center;
}
.hp-tips-hidden-meta dd {
  margin: 0;
  color: #444;
}
.hp-tips-hidden-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* ──────── FAQ-Page (dedicated subpage) ──────── */
.hp-faqpage-section { background: var(--hp-off-white); }
.hp-faqpage-list { max-width: 820px; margin: 0 auto; }
.hp-faqpage-item {
  background: #fff;
  border: 1px solid var(--hp-gray-200);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hp-faqpage-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.hp-faqpage-item[open] {
  border-color: var(--hp-primary);
  box-shadow: 0 4px 18px rgba(45,52,54,0.08);
}
.hp-faqpage-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-text);
  cursor: pointer;
  list-style: none;
  line-height: 1.4;
}
.hp-faqpage-item summary::-webkit-details-marker { display: none; }
.hp-faqpage-item-q { flex: 1; }
.hp-faqpage-item-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hp-gray-100);
  color: var(--hp-primary);
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.hp-faqpage-item-toggle::before,
.hp-faqpage-item-toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  top: 50%;
  left: 50%;
}
.hp-faqpage-item-toggle::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.hp-faqpage-item-toggle::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}
.hp-faqpage-item[open] .hp-faqpage-item-toggle {
  background: var(--hp-primary);
  color: #fff;
}
.hp-faqpage-item[open] .hp-faqpage-item-toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.hp-faqpage-item-answer {
  padding: 0 22px 22px;
  font-size: 0.97rem;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid var(--hp-gray-100);
  padding-top: 16px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hp-hero-inner {
    grid-template-columns: 1fr;
    padding: 32px 16px;
  }
  .hp-hero-h1 { font-size: 1.8rem; }
  .hp-hero-h1-sub { font-size: 1.1rem; }
  .hp-op-grid { grid-template-columns: 1fr; }
  .hp-combo-grid { grid-template-columns: 1fr; }
  .site-footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .hp-opadvice-grid { grid-template-columns: 1fr; }
  .hp-alt-grid { grid-template-columns: 1fr; }
  .hp-season-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-kids-tips-list { grid-template-columns: 1fr; }
  .hp-results-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-tips-season-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  :root {
    --hp-section-py: 40px;
  }
  .hp-hero { min-height: 420px; }
  .hp-hero-h1 { font-size: 1.5rem; }
  .hp-section-h2 { font-size: 1.4rem; }
  .hp-closing-h2 { font-size: 1.5rem; }
  .hp-trust-inner { gap: 16px; }
  .hp-trust-item { font-size: 12px; }
  .site-logo-img { height: 28px; max-width: 160px; width: auto; object-fit: contain; object-position: left; }
  .site-nav { gap: 12px; font-size: 13px; }
  .site-nav-dropdown-panel { left: auto; right: 0; min-width: 180px; }
  .hp-closing-trust { flex-direction: column; align-items: center; gap: 10px; }
  .hp-ophero-inner { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
  .hp-ophero-logo { width: 200px; flex: 0 0 auto; }
  .hp-ophero-logo img { max-width: 200px; max-height: 90px; }
  .hp-ophero-cta { width: 100%; justify-content: center; }
  .hp-opfacts-grid { grid-template-columns: 1fr; }
  .hp-stop-body { padding-left: 20px; }
  .hp-season-grid { grid-template-columns: 1fr; }
  .hp-season-sweetspot { flex-direction: column; gap: 6px; }
  .hp-alt-verdict { flex-direction: column; }
  /* Results */
  .hp-results { padding: 32px 0 40px; }
  .hp-results-h2 { font-size: 22px; }
  .hp-results-grid { grid-template-columns: 1fr; gap: 16px; }
  .hp-rcard-total { font-size: 26px; }
  /* Subpage mobile */
  .hp-tips-season-grid { grid-template-columns: 1fr; }
  .hp-faqpage-item summary { padding: 16px 18px; font-size: 0.98rem; gap: 12px; }
  .hp-faqpage-item-answer { padding: 14px 18px 18px; }
}
