/* =====================================================================
 * VaporettoTicket.com — Stylesheet
 * Farbkonzept: Lagunen-Teal + Cream + Coral-CTA
 * Mobile-first; Breakpoint Desktop ab 900 px.
 * ===================================================================== */

:root {
  /* Farben */
  --c-ink: #122327;
  --c-ink-mute: #3E5E62;
  --c-bg: #FFFFFF;
  --c-cream: #FBF6EC;
  --c-cream-2: #F4ECD9;
  --c-teal: #0A6E78;
  --c-teal-dark: #075058;
  --c-teal-50: #E1F2F3;
  --c-coral: #D87559;
  --c-coral-dark: #B85B41;
  --c-warn-bg: #FAEEDA;
  --c-warn-ink: #854F0B;
  --c-line: rgba(10,110,120,0.18);
  --c-line-soft: rgba(10,110,120,0.10);

  /* Spacing */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;

  /* Layout */
  --stickybar-h: 64px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  /* Sticky-Bar Safe-Area unter dem Footer freihalten — nur Mobile */
  padding-bottom: 0;
}
@media (max-width: 899px) {
  body { padding-bottom: calc(var(--stickybar-h) + env(safe-area-inset-bottom, 0px)); }
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-teal); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--c-teal-dark); }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.25; color: var(--c-ink); margin: 0 0 var(--s-4); }
h1 { font-size: clamp(28px, 5vw, 40px); letter-spacing: -0.01em; }
h2 { font-size: clamp(24px, 4vw, 32px); letter-spacing: -0.005em; }
h3 { font-size: 20px; }
p { margin: 0 0 var(--s-4); }
ul { padding-left: 1.2em; }
hr { border: 0; border-top: 1px solid var(--c-line-soft); margin: var(--s-6) 0; }

/* Visually hidden */
.vt-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Container ---------- */
.vt-wrap { max-width: 1200px; margin: 0 auto; padding: 0 var(--s-4); }
@media (min-width: 900px) { .vt-wrap { padding: 0 var(--s-5); } }

.vt-section { padding: var(--s-7) 0; }
.vt-section--cream { background: var(--c-cream); }
.vt-section__title { margin-bottom: var(--s-2); }
.vt-section__lede { color: var(--c-ink-mute); font-size: 17px; margin-bottom: var(--s-6); max-width: 720px; }

/* =====================================================================
 * Top Bar
 * ===================================================================== */
.vt-topbar { position: sticky; top: 0; z-index: 50; background: var(--c-bg); border-bottom: 1px solid var(--c-line-soft); }
.vt-topbar__inner { display: flex; align-items: center; gap: var(--s-4); padding: var(--s-3) 0; position: relative; }
.vt-topbar__brand { display: flex; align-items: center; gap: var(--s-2); font-weight: 600; text-decoration: none; color: var(--c-teal); font-size: 17px; line-height: 1; }
.vt-topbar__brand-mark { width: 42px; height: 26px; display: block; flex-shrink: 0; }
.vt-topbar__brand-text { white-space: nowrap; }
/* --- Burger (Mobile only) --- */
.vt-topbar__burger {
  display: inline-flex; flex-direction: column; justify-content: space-between;
  width: 32px; height: 24px; padding: 3px 0;
  margin-left: auto; margin-right: 12px;
  background: transparent; border: 0; cursor: pointer;
}
.vt-topbar__burger-bar { display: block; height: 2px; width: 100%; background: var(--c-teal); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.vt-topbar__burger[aria-expanded="true"] .vt-topbar__burger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.vt-topbar__burger[aria-expanded="true"] .vt-topbar__burger-bar:nth-child(2) { opacity: 0; }
.vt-topbar__burger[aria-expanded="true"] .vt-topbar__burger-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Nav (Mobile: Drawer von oben; Desktop: inline) --- */
.vt-topbar__nav {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  flex-direction: column;
  padding: var(--s-3) 0;
  z-index: 49;
}
.vt-topbar__nav.is-open { display: flex; }

/* Nav-Item (sowohl mit als auch ohne Dropdown) */
.vt-nav-item { display: block; }
.vt-nav-item__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px var(--s-4);
  color: var(--c-ink); text-decoration: none; font-size: 16px;
  border-bottom: 1px solid var(--c-line-soft);
}
.vt-nav-item:last-child > .vt-nav-item__link { border-bottom: 0; }
.vt-nav-item__link:hover { color: var(--c-teal); background: var(--c-cream); }
.vt-nav-item__caret { display: none; font-size: 12px; color: var(--c-ink-mute); margin-left: 6px; }
@media (min-width: 900px) {
  .vt-nav-item__caret { display: inline; }
}

/* Dropdown-Menu — Mobile: immer ausgeklappt unter dem Haupt-Link */
.vt-nav-menu {
  display: flex; flex-direction: column;
  padding-left: var(--s-5);
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-line-soft);
}
.vt-nav-menu a {
  display: block;
  padding: 10px var(--s-4) 10px 0;
  color: var(--c-ink); text-decoration: none; font-size: 14px;
  border-bottom: 1px solid var(--c-line-soft);
}
.vt-nav-menu a:last-child { border-bottom: 0; }
.vt-nav-menu a:hover { color: var(--c-teal); }

/* Legacy-Fallback: <a>-Kinder direkt im Nav (ohne .vt-nav-item-Wrapper) */
.vt-topbar__nav > a {
  display: block;
  padding: 12px var(--s-4);
  color: var(--c-ink); text-decoration: none; font-size: 16px;
  border-bottom: 1px solid var(--c-line-soft);
}
.vt-topbar__nav > a:last-child { border-bottom: 0; }
.vt-topbar__nav > a:hover { color: var(--c-teal); background: var(--c-cream); }

/* --- Lang-Select (kompakt für Kürzel) --- */
.vt-topbar__lang-select {
  padding: 6px 24px 6px 10px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  background: var(--c-bg) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%230A6E78' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>") no-repeat right 8px center;
  background-size: 9px;
  color: var(--c-ink);
  font-size: 13px;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}
.vt-topbar__lang-select:hover { border-color: var(--c-teal); }

@media (min-width: 900px) {
  .vt-topbar__burger { display: none; }
  .vt-topbar__nav {
    display: flex !important;
    position: static;
    background: transparent; border: 0; box-shadow: none;
    flex-direction: row; gap: var(--s-5);
    margin-left: auto; padding: 0;
  }
  .vt-topbar__nav > a {
    padding: 0; border-bottom: 0; font-size: 15px;
  }
  .vt-topbar__nav > a:hover { background: transparent; }

  /* Desktop-Dropdown: Nav-Item wird Hover-Anker */
  .vt-nav-item {
    position: relative;
  }
  .vt-nav-item__link {
    padding: 0; border-bottom: 0; font-size: 15px;
  }
  .vt-nav-item__link:hover { background: transparent; color: var(--c-teal); }

  /* Hover-Brücke (verhindert Mouse-Out-Lücke zwischen Link und Menu) */
  .vt-nav-item--has-menu::after {
    content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 12px;
  }

  /* Dropdown auf Desktop: hidden until hover/focus */
  .vt-nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -12px;
    min-width: 260px;
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
    padding: var(--s-2) 0;
    z-index: 60;
    opacity: 0; visibility: hidden; transform: translateY(-4px);
    transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  }
  .vt-nav-item--has-menu:hover > .vt-nav-menu,
  .vt-nav-item--has-menu:focus-within > .vt-nav-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .vt-nav-menu a {
    padding: 8px var(--s-4);
    font-size: 14px;
    border-bottom: 0;
    white-space: nowrap;
  }
  .vt-nav-menu a:hover { background: var(--c-cream); color: var(--c-teal); }

  .vt-topbar__lang-select { margin-left: var(--s-4); }
}

/* =====================================================================
 * Hero
 * ===================================================================== */
.vt-hero { background: var(--c-teal); color: #fff; padding: var(--s-7) 0 var(--s-8); position: relative; overflow: hidden; isolation: isolate; }
.vt-hero__inner { display: grid; gap: var(--s-5); position: relative; z-index: 2; }
@media (min-width: 900px) { .vt-hero__inner { grid-template-columns: 1.4fr 1fr; gap: var(--s-7); align-items: center; } }
.vt-hero__title { color: #fff; margin-bottom: var(--s-3); text-shadow: 0 2px 12px rgba(0,30,35,0.45); }
.vt-hero__lede { color: #E8F4F5; font-size: clamp(16px, 2vw, 18px); margin-bottom: var(--s-4); max-width: 560px; text-shadow: 0 1px 6px rgba(0,30,35,0.4); }

/* Hero-Background als <picture> / <img> — deterministisch, im Inspector sichtbar */
.vt-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.vt-hero__bg-img {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  object-position: 50% 30%;
}
@media (min-width: 900px) {
  .vt-hero__bg-img { object-position: 50% 55%; }
}
/* Gradient-Overlay über dem Bild für Text-Lesbarkeit */
.vt-hero__bg::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,40,45,0.55) 0%, rgba(10,40,45,0.25) 40%, rgba(10,40,45,0.05) 100%);
}
@media (min-width: 900px) {
  .vt-hero__bg::after {
    background: linear-gradient(110deg, rgba(10,40,45,0.55) 0%, rgba(10,40,45,0.28) 45%, rgba(10,40,45,0.02) 100%);
  }
}
.vt-hero__perks li { color: #E8F4F5; text-shadow: 0 1px 4px rgba(0,30,35,0.4); }
.vt-hero__warn {
  display: inline-flex; align-items: center; gap: var(--s-2);
  background: var(--c-warn-bg); color: var(--c-warn-ink);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  margin-bottom: var(--s-3);
}
.vt-hero__perks { list-style: none; padding: 0; margin: 0 0 var(--s-4); display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-4); }
.vt-hero__perks li { color: #E8F4F5; font-size: 14px; display: flex; align-items: center; gap: 6px; }
.vt-hero__perks li::before { content: "✓"; color: #fff; font-weight: 700; }

/* =====================================================================
 * Hero-Variantenbox (Startseite — Liste aller 5 Tarife)
 * ===================================================================== */
.vt-vbox { background: var(--c-cream); color: var(--c-ink); border-radius: var(--r-lg); padding: var(--s-5); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.vt-vbox * { color: var(--c-ink); }
.vt-vbox__head { display: flex; justify-content: space-between; align-items: center; gap: var(--s-3); margin: 0 0 var(--s-4); padding-bottom: var(--s-3); border-bottom: 1px solid var(--c-line-soft); }
.vt-vbox__title { font-size: 18px; font-weight: 700; color: var(--c-ink); margin: 0; line-height: 1.2; }
.vt-vbox__rating-inline { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--c-ink); white-space: nowrap; }
.vt-vbox__rating-star { color: #E2A03E; font-size: 18px; line-height: 1; }
.vt-vbox__rating-inline strong { font-weight: 700; color: var(--c-ink); }
.vt-vbox__rating-inline span { color: var(--c-ink-mute); }
.vt-vbox__h { font-size: 11px; color: var(--c-ink-mute); text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 var(--s-3); font-weight: 600; }
.vt-vbox__list { display: flex; flex-direction: column; margin: 0 0 var(--s-3); }
.vt-vbox__row { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; padding: 10px 0; border-bottom: 1px solid var(--c-line-soft); }
.vt-vbox__row:last-child { border-bottom: 0; }
.vt-vbox__row-label { color: var(--c-ink); }
.vt-vbox__row-price { font-weight: 600; color: var(--c-teal); font-variant-numeric: tabular-nums; }
.vt-vbox__row--hl .vt-vbox__row-label::after { content: " · " attr(data-popular); color: var(--c-coral); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.vt-vbox__cta { display: block; width: 100%; box-sizing: border-box; background: var(--c-coral); color: #fff !important; text-align: center; font-weight: 600; font-size: 16px; padding: 14px 18px; border-radius: var(--r-md); text-decoration: none; transition: background 0.15s; }
.vt-vbox__cta:hover { background: var(--c-coral-dark); color: #fff !important; }
.vt-vbox__partner { font-size: 12px; color: var(--c-ink-mute); margin: var(--s-2) 0 0; text-align: center; }

/* Variante für Subpages — eine Variante groß + Perks unter Preis */
.vt-vbox--single .vt-vbox__price-big { font-size: 38px; font-weight: 700; color: var(--c-teal); margin: 0; line-height: 1; }
.vt-vbox--single .vt-vbox__price-sub { font-size: 13px; color: var(--c-ink-mute); margin: 6px 0 var(--s-4); }
.vt-vbox__perks { list-style: none; padding: 0; margin: 0 0 var(--s-4); }
.vt-vbox__perks li { padding: 6px 0 6px 22px; position: relative; font-size: 13px; color: var(--c-ink); line-height: 1.4; border-top: 1px solid var(--c-line-soft); }
.vt-vbox__perks li:first-child { border-top: 0; padding-top: var(--s-3); }
.vt-vbox__perks li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--c-teal); font-weight: 700; font-size: 14px; }

/* =====================================================================
 * Booking Widget (Cream on Teal)
 * ===================================================================== */
.vt-widget {
  background: var(--c-cream); color: var(--c-ink);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
/* Defensive: alle Sub-Texte explizit setzen — kein White-on-White durch Hero-Vererbung */
.vt-widget * { color: var(--c-ink); }
.vt-widget__from { font-size: 12px; color: var(--c-ink-mute); text-transform: uppercase; letter-spacing: 0.06em; margin: 0; }
.vt-widget__price-row { display: flex; align-items: baseline; gap: var(--s-2); margin: 4px 0 var(--s-3); }
.vt-widget__price { font-size: 32px; font-weight: 700; color: var(--c-teal); }
.vt-widget__price-strike { font-size: 16px; color: var(--c-ink-mute); text-decoration: line-through; }
.vt-widget__per { font-size: 13px; color: var(--c-ink-mute); }
.vt-widget__cta {
  display: block; width: 100%; box-sizing: border-box;
  background: var(--c-coral); color: #fff !important;
  text-align: center; font-weight: 600; font-size: 16px;
  padding: 14px 18px; border-radius: var(--r-md); text-decoration: none;
  transition: background 0.15s;
}
.vt-widget__cta:hover { background: var(--c-coral-dark); color: #fff !important; }
.vt-widget__rating { display: flex; align-items: center; gap: var(--s-2); margin-top: var(--s-3); font-size: 14px; }
.vt-widget__rating-stars { color: #E2A03E; font-size: 16px; letter-spacing: 1px; }
.vt-widget__partner { font-size: 12px; color: var(--c-ink-mute); margin-top: var(--s-2); display: flex; align-items: center; gap: 6px; }
.vt-widget__perks { list-style: none; padding: 0; margin: var(--s-3) 0 0; }
.vt-widget__perks li { font-size: 13px; color: var(--c-ink-mute); padding-left: 20px; position: relative; margin-bottom: 4px; }
.vt-widget__perks li::before { content: "✓"; position: absolute; left: 0; color: var(--c-teal); font-weight: 700; }

/* =====================================================================
 * Trust Bar
 * ===================================================================== */
.vt-trustbar { background: var(--c-cream); border-bottom: 1px solid var(--c-line-soft); }
.vt-trustbar__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); padding: var(--s-4) 0; }
@media (min-width: 700px) { .vt-trustbar__inner { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 700px) { .vt-trustbar__inner--3 { grid-template-columns: repeat(3, 1fr); } }
.vt-trustbar__item { display: flex; align-items: center; gap: var(--s-2); font-size: 13px; color: var(--c-teal); }
.vt-trustbar__item-icon { color: var(--c-teal); font-size: 18px; flex-shrink: 0; }
.vt-trustbar__item-label { line-height: 1.3; }

/* =====================================================================
 * Pass Comparison Table
 * ===================================================================== */
.vt-pass-table { width: 100%; border-collapse: collapse; font-size: 15px; background: var(--c-bg); border: 1px solid var(--c-line-soft); border-radius: var(--r-md); overflow: hidden; }
.vt-pass-table th, .vt-pass-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--c-line-soft); }
.vt-pass-table th { background: var(--c-cream); color: var(--c-teal); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.vt-pass-table tr:last-child td { border-bottom: 0; }
.vt-pass-table__price { font-weight: 700; color: var(--c-teal); white-space: nowrap; }
.vt-pass-table__highlight { background: var(--c-cream-2); }
.vt-pass-table__highlight td { font-weight: 600; }
.vt-pass-table__usp { display: inline-block; background: var(--c-teal-50); color: var(--c-teal); font-size: 11px; padding: 2px 8px; border-radius: 4px; margin-left: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
@media (max-width: 700px) {
  .vt-pass-table { font-size: 13px; }
  .vt-pass-table th, .vt-pass-table td { padding: 10px 8px; }
}

/* =====================================================================
 * Steps (How-it-works) — horizontale Schritt-Reihe mit Verbindungslinie
 * ===================================================================== */
.vt-steps { display: grid; gap: var(--s-6); grid-template-columns: 1fr; position: relative; margin-top: var(--s-5); }
@media (min-width: 800px) {
  .vt-steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); align-items: start; }
  /* Verbindungslinie zwischen den drei Steps */
  .vt-steps::before {
    content: ""; position: absolute; top: 28px; left: calc(16.67% + 28px); right: calc(16.67% + 28px);
    height: 2px; background: var(--c-line); z-index: 0;
  }
}
.vt-step { position: relative; z-index: 1; text-align: center; }
.vt-step__num {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--c-teal); color: #fff;
  font-size: 24px; font-weight: 700;
  margin-bottom: var(--s-3);
  box-shadow: 0 4px 14px rgba(10,110,120,0.25);
}
.vt-step__icon-row { display: flex; align-items: center; justify-content: center; gap: 6px; color: var(--c-coral); font-size: 14px; margin-bottom: var(--s-2); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.vt-step__icon { font-size: 18px; }
.vt-step__title { font-size: 18px; font-weight: 700; color: var(--c-ink); margin: 0 0 var(--s-2); line-height: 1.3; }
.vt-step__body { font-size: 14px; color: var(--c-ink-mute); line-height: 1.55; max-width: 320px; margin: 0 auto; }

/* =====================================================================
 * Pontoon-Box (Tipp)
 * ===================================================================== */
.vt-pontoon-box {
  display: flex; gap: var(--s-4);
  background: var(--c-cream); border-left: 4px solid var(--c-teal);
  padding: var(--s-4) var(--s-5); border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: var(--s-5) 0;
}
.vt-pontoon-box__icon { color: var(--c-teal); font-size: 24px; flex-shrink: 0; }
.vt-pontoon-box__body { font-size: 15px; }
.vt-pontoon-box__body strong { color: var(--c-teal); }

/* =====================================================================
 * Cards Grid
 * ===================================================================== */
.vt-cards { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 700px) { .vt-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .vt-cards--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .vt-cards--4 { grid-template-columns: repeat(4, 1fr); gap: var(--s-3); } }

/* Coverage — schlanke 2-Spalten-Liste statt Cards */
.vt-coverage { display: grid; gap: var(--s-6); grid-template-columns: 1fr; }
@media (min-width: 700px) { .vt-coverage { grid-template-columns: 1fr 1fr; gap: var(--s-7); } }
.vt-coverage__h { font-size: 18px; font-weight: 600; color: var(--c-ink); display: flex; align-items: center; gap: 10px; margin: 0 0 var(--s-3); }
.vt-coverage__icon { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--c-teal); color: #fff; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.vt-coverage__icon--out { background: var(--c-warn-ink); }
.vt-coverage__list { list-style: none; padding: 0; margin: 0; }
.vt-coverage__list li { padding: 8px 0; border-bottom: 1px solid var(--c-line-soft); font-size: 15px; color: var(--c-ink); }
.vt-coverage__list li:last-child { border-bottom: 0; }
.vt-coverage__link { margin-top: var(--s-3); font-size: 14px; }
.vt-card { background: var(--c-bg); border: 1px solid var(--c-line-soft); border-radius: var(--r-md); padding: var(--s-5); transition: border-color 0.15s; }
.vt-card:hover { border-color: var(--c-teal); }
.vt-card a { text-decoration: none; }
.vt-card__title { font-size: 17px; font-weight: 600; color: var(--c-teal); margin-bottom: var(--s-2); }
.vt-card__meta { font-size: 14px; color: var(--c-ink-mute); }

/* Use-Case-Cards — mit großem Icon-Kreis, für "Who it's for"-Sektionen */
.vt-usecase { background: var(--c-bg); border: 1px solid var(--c-line-soft); border-radius: var(--r-md); padding: var(--s-5); text-align: center; transition: border-color 0.15s, transform 0.15s; }
.vt-usecase:hover { border-color: var(--c-teal); transform: translateY(-2px); }
.vt-usecase__icon {
  display: inline-grid; place-items: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--c-cream); color: var(--c-teal);
  font-size: 28px; line-height: 1;
  margin: 0 auto var(--s-3);
}
.vt-usecase__title { font-size: 17px; font-weight: 700; color: var(--c-ink); margin: 0 0 var(--s-2); }
.vt-usecase__body { font-size: 14px; color: var(--c-ink-mute); line-height: 1.55; margin: 0; }

/* =====================================================================
 * Reviews Section
 * ===================================================================== */
.vt-reviews { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 700px) { .vt-reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .vt-reviews { grid-template-columns: repeat(3, 1fr); } }
.vt-review { background: var(--c-bg); border: 1px solid var(--c-line-soft); border-radius: var(--r-md); padding: var(--s-5); display: flex; flex-direction: column; }
.vt-review__stars { color: #E2A03E; font-size: 16px; letter-spacing: 2px; margin-bottom: var(--s-2); }
.vt-review__stars-empty { color: var(--c-line); }
.vt-review__text { font-size: 15px; color: var(--c-ink); line-height: 1.5; margin: 0 0 var(--s-4); flex: 1; }
.vt-review__meta { display: flex; align-items: center; gap: var(--s-3); padding-top: var(--s-3); border-top: 1px solid var(--c-line-soft); }
.vt-review__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--c-teal-50); color: var(--c-teal); display: grid; place-items: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.vt-review__byline { font-size: 13px; color: var(--c-ink); line-height: 1.3; }
.vt-review__byline strong { font-weight: 600; }
.vt-review__date { color: var(--c-ink-mute); font-size: 12px; }

/* Linien-Teaser-Cards mit Bild */
.vt-line-card { background: var(--c-bg); border: 1px solid var(--c-line-soft); border-radius: var(--r-md); overflow: hidden; transition: border-color 0.15s, transform 0.15s; text-decoration: none; color: var(--c-ink); display: block; }
.vt-line-card:hover { border-color: var(--c-teal); transform: translateY(-2px); color: var(--c-ink); }
.vt-line-card__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; background: var(--c-cream); }
.vt-line-card__body { padding: var(--s-3) var(--s-4) var(--s-4); }
.vt-line-card__title { font-size: 15px; font-weight: 600; color: var(--c-teal); margin: 0 0 4px; line-height: 1.3; }
.vt-line-card__blurb { font-size: 12px; color: var(--c-ink-mute); margin: 0; line-height: 1.4; }

/* =====================================================================
 * FAQ Accordion
 * ===================================================================== */
.vt-faq { display: flex; flex-direction: column; gap: var(--s-2); }
.vt-faq__item { background: var(--c-bg); border: 1px solid var(--c-line-soft); border-radius: var(--r-md); overflow: hidden; }
.vt-faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-4) var(--s-5);
  background: transparent; border: 0; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--c-ink); text-align: left;
}
.vt-faq__q::after { content: "+"; color: var(--c-teal); font-size: 22px; font-weight: 400; transition: transform 0.2s; }
.vt-faq__item--open .vt-faq__q::after { content: "−"; }
.vt-faq__a { padding: 0 var(--s-5) var(--s-4); display: none; color: var(--c-ink); font-size: 15px; }
.vt-faq__a p:last-child { margin-bottom: 0; }
.vt-faq__item--open .vt-faq__a { display: block; }
.vt-faq__item--open { border-color: var(--c-teal); background: var(--c-cream); }

/* =====================================================================
 * Sticky Bar (Mobile only)
 * ===================================================================== */
.vt-stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: var(--c-cream); border-top: 1px solid var(--c-line);
  padding: 10px var(--s-4);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
}
.vt-stickybar__inner {
  display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important;
  align-items: center; gap: var(--s-3); max-width: 1200px; margin: 0 auto;
}
.vt-stickybar__label { flex: 1; min-width: 0; font-size: 13px; line-height: 1.2; color: var(--c-ink); }
.vt-stickybar__label strong { display: block; font-weight: 600; color: var(--c-teal); }
.vt-stickybar__cta { background: var(--c-coral); color: #fff !important; padding: 10px 18px; border-radius: var(--r-md); text-decoration: none; font-weight: 600; font-size: 14px; white-space: nowrap; flex-shrink: 0; }
.vt-stickybar__cta:hover { background: var(--c-coral-dark); }
@media (min-width: 900px) { .vt-stickybar { display: none; } }

/* =====================================================================
 * Closing CTA Band
 * ===================================================================== */
.vt-closing { background: var(--c-teal); color: #fff; padding: var(--s-7) 0; text-align: center; position: relative; overflow: hidden; }
.vt-closing--photo {
  background-color: var(--c-teal);
  background-image: linear-gradient(rgba(10,40,45,0.78), rgba(10,40,45,0.55)), var(--vt-closing-bg);
  background-size: cover;
  background-position: center 55%;
  background-repeat: no-repeat;
}
.vt-closing__title { color: #fff; max-width: 640px; margin: 0 auto var(--s-3); text-shadow: 0 2px 8px rgba(0,30,35,0.5); }
.vt-closing__lede { color: #E8F4F5; margin-bottom: var(--s-5); text-shadow: 0 1px 4px rgba(0,30,35,0.4); }
.vt-closing__btn { display: inline-block; background: var(--c-coral); color: #fff !important; padding: 14px 32px; border-radius: var(--r-md); text-decoration: none; font-weight: 600; font-size: 17px; }
.vt-closing__btn:hover { background: var(--c-coral-dark); color: #fff !important; }

/* =====================================================================
 * Footer
 * ===================================================================== */
.vt-footer { background: var(--c-cream); padding: var(--s-7) 0 var(--s-5); color: var(--c-ink); font-size: 14px; }
.vt-footer__cols { display: grid; gap: var(--s-5); grid-template-columns: 1fr; }
@media (min-width: 700px) { .vt-footer__cols { grid-template-columns: 2fr 1fr 1fr; } }
@media (min-width: 700px)  { .vt-footer__cols--4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .vt-footer__cols--4 { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.vt-footer h4 { color: var(--c-teal); font-size: 14px; margin-bottom: var(--s-3); text-transform: uppercase; letter-spacing: 0.06em; }
.vt-footer__col ul { list-style: none; padding: 0; margin: 0; }
.vt-footer__col li { margin-bottom: 6px; }
.vt-footer__col a { color: var(--c-ink); text-decoration: none; }
.vt-footer__col a:hover { color: var(--c-teal); text-decoration: underline; }
.vt-footer__bottom { margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid var(--c-line-soft); font-size: 12px; color: var(--c-ink-mute); }
.vt-footer__disclaimer { font-size: 12px; color: var(--c-ink-mute); max-width: 720px; line-height: 1.5; }

/* =====================================================================
 * Prose / Content
 * ===================================================================== */
.vt-prose { max-width: 760px; }
.vt-prose h2 { margin-top: var(--s-6); }
.vt-prose h3 { margin-top: var(--s-5); }
.vt-prose ul li { margin-bottom: 6px; }

/* =====================================================================
 * Welle 1–7: Components added in June 2026
 * ===================================================================== */

/* ---------- Universal pill ---------- */
.vt-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  vertical-align: middle;
  white-space: nowrap;
}
.vt-pill__icon { font-weight: 700; }
.vt-pill--in     { background: var(--c-teal-50); color: var(--c-teal-dark); }
.vt-pill--out    { background: var(--c-warn-bg); color: var(--c-warn-ink); }
.vt-pill--season { background: var(--c-cream-2); color: var(--c-ink-mute); font-weight: 600; }

/* Legacy alias (.vt-line-row__pill*) — gleichbehandelt wie .vt-pill */
.vt-line-row__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  vertical-align: middle;
  white-space: nowrap;
}
.vt-line-row__pill--in     { background: var(--c-teal-50); color: var(--c-teal-dark); }
.vt-line-row__pill--out    { background: var(--c-warn-bg); color: var(--c-warn-ink); }
.vt-line-row__pill--season { background: var(--c-cream-2); color: var(--c-ink-mute); font-weight: 600; }

/* ---------- Lines-Hub: Line-Row Card ---------- */
.vt-line-row {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: var(--s-5);
  margin-bottom: var(--s-5);
}
.vt-section--cream .vt-line-row {
  background: #fff; /* heller Kontrast auf cream-section */
}
.vt-line-row__title {
  margin: 0 0 var(--s-2);
  font-size: 20px;
  color: var(--c-ink);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
/* THE markante Hook-Lede — der "DIE Linie für X"-Satz */
.vt-line-row__hook {
  background: var(--c-cream);
  border-left: 4px solid var(--c-teal);
  padding: 14px 18px;
  margin: 14px 0 16px;
  border-radius: var(--r-sm);
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  color: var(--c-teal-dark);
  line-height: 1.4;
}
.vt-line-row__route {
  font-size: 14px;
  color: var(--c-ink-mute);
  margin: var(--s-2) 0;
  line-height: 1.5;
}
.vt-line-row__route strong { color: var(--c-ink); font-weight: 600; }
.vt-line-row__body {
  font-size: 15px;
  color: var(--c-ink-mute);
  margin: var(--s-2) 0;
}
.vt-line-row__meta {
  list-style: none;
  padding: 0;
  margin: var(--s-3) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-5);
  font-size: 14px;
  color: var(--c-ink-mute);
}
.vt-line-row__meta li strong { color: var(--c-ink); font-weight: 600; }
.vt-line-row__links {
  margin: var(--s-4) 0 0;
  font-size: 14px;
}
.vt-line-row__links a { font-weight: 600; }

.vt-line-list { display: flex; flex-direction: column; }

/* ---------- Linien-Detail-Hero-Box — re-use vt-vbox--single + Modifier ---------- */
.vt-vbox--line {
  /* erbt vt-vbox--single Surface (Cream-Card im Hero) */
}
.vt-vbox__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-3);
}
.vt-vbox__line-num {
  color: var(--c-teal) !important;
  font-size: 36px !important;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s-1) !important;
}
.vt-vbox__facts {
  display: grid;
  grid-template-columns: minmax(110px, auto) 1fr;
  gap: var(--s-2) var(--s-4);
  margin: var(--s-4) 0;
  font-size: 14px;
  color: var(--c-ink);
}
.vt-vbox__facts dt {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-ink-mute);
  font-weight: 600;
  font-size: 12px;
  margin: 0;
}
.vt-vbox__facts dd {
  margin: 0;
  color: var(--c-ink);
}

/* ---------- Attractions-Section ---------- */
.vt-attractions {
  list-style: none;
  padding: 0;
  margin: var(--s-5) 0 0;
}
.vt-attractions__item {
  display: flex;
  gap: var(--s-3);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--c-line-soft);
}
.vt-attractions__item:last-child { border-bottom: 0; }
.vt-attractions__marker {
  font-size: 22px;
  line-height: 1;
  flex: 0 0 auto;
  color: var(--c-teal);
  margin-top: 2px;
}
.vt-attractions__body { flex: 1 1 auto; }
.vt-attractions__title {
  margin: 0 0 var(--s-1);
  font-size: 17px;
  color: var(--c-ink);
}
.vt-attractions__desc {
  margin: 0;
  font-size: 15px;
  color: var(--c-ink-mute);
  line-height: 1.5;
}
@media (min-width: 800px) {
  .vt-attractions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 var(--s-6);
  }
  .vt-attractions__item {
    padding: var(--s-4) 0;
  }
}

/* ---------- FAQ-Hub Jump-Navigation ---------- */
.vt-jumpnav {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.vt-jumpnav li { margin: 0; }
.vt-jumpnav a {
  display: inline-block;
  padding: 8px 14px;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-teal-dark);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.vt-jumpnav a:hover {
  background: var(--c-teal-50);
  border-color: var(--c-teal);
  color: var(--c-teal-dark);
}

/* ---------- 4er-Card-Layout ---------- */
.vt-cards--4 {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .vt-cards--4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .vt-cards--4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- 4er-Step-Layout (buy-online) ---------- */
.vt-steps--4 {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 800px)  { .vt-steps--4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .vt-steps--4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Narrow-Wrap (Legal-Pages) ---------- */
.vt-wrap--narrow { max-width: 760px; }
.vt-wrap--narrow h3 { margin-top: var(--s-5); font-size: 18px; color: var(--c-ink); }
.vt-wrap--narrow h4 { margin-top: var(--s-4); font-size: 16px; color: var(--c-ink-mute); }
.vt-wrap--narrow p  { font-size: 15px; line-height: 1.6; }
.vt-wrap--narrow ul { margin-bottom: var(--s-4); }
.vt-wrap--narrow ul li { margin-bottom: var(--s-2); font-size: 15px; }

/* ---------- Compact Hero (FAQ-Hub) ---------- */
.vt-hero--compact { padding: var(--s-6) 0; }
.vt-hero__inner--single {
  display: block;
  max-width: 760px;
}

/* ---------- Pontoon-Box mit Warn-Modifier ---------- */
.vt-pontoon-box--warn {
  background: var(--c-warn-bg);
}
.vt-pontoon-box--warn .vt-pontoon-box__icon { color: var(--c-warn-ink); }
.vt-pontoon-box--warn strong { color: var(--c-warn-ink); }

/* ---------- Use-case Cards (Welle 4–6: Inseln, Praxis, Vergleich) ---------- */
.vt-usecase {
  background: var(--c-bg);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-md);
  padding: var(--s-5);
}
.vt-section--cream .vt-usecase { background: #fff; }
.vt-usecase__icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: var(--s-3);
}
.vt-usecase__title {
  margin: 0 0 var(--s-2);
  font-size: 17px;
  color: var(--c-ink);
}
.vt-usecase__body {
  margin: 0;
  font-size: 15px;
  color: var(--c-ink-mute);
  line-height: 1.5;
}

/* ---------- Related-Section: Cross-Link-Block am Ende von Subpages ---------- */
.vt-related {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .vt-related { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .vt-related { grid-template-columns: 1fr 1fr 1fr; } }
.vt-related__item {
  display: flex;
  gap: var(--s-3);
  padding: var(--s-4);
  background: var(--c-bg);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--c-ink);
  transition: border-color 0.15s, background 0.15s;
}
.vt-section--cream .vt-related__item { background: #fff; }
.vt-related__item:hover {
  border-color: var(--c-teal);
  background: var(--c-teal-50);
  color: var(--c-ink);
}
.vt-related__arrow {
  flex: 0 0 auto;
  color: var(--c-teal);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}
.vt-related__body { flex: 1 1 auto; display: block; }
.vt-related__title {
  display: block;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 2px;
}
.vt-related__desc {
  display: block;
  font-size: 13px;
  color: var(--c-ink-mute);
  line-height: 1.4;
}

/* ---------- Honest-Heads-Up Box (auf 72h-Pass für Rolling Venice) ---------- */
.vt-headsup {
  background: var(--c-cream);
  border: 2px dashed var(--c-teal);
  border-radius: var(--r-md);
  padding: var(--s-5);
  margin: var(--s-5) 0;
}
.vt-headsup__title {
  margin: 0 0 var(--s-3);
  font-size: 18px;
  color: var(--c-teal-dark);
}
.vt-headsup p { margin: 0 0 var(--s-3); color: var(--c-ink); }
.vt-headsup p:last-child { margin-bottom: 0; }
