/* =============================================================================
 * romatouristcard.com — Stylesheet
 * Stand: 2026-05-27 · Single Source: components.md
 * Architektur: BEM + Utilities · Mobile-First · CSS Custom Properties als Tokens
 * ============================================================================= */

/* -- Schriften (lokal gehostet, DSGVO-konform) ----------------------------- */
@font-face {
  font-family: 'Source Serif 4';
  src: url('../fonts/source-serif-4-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Serif 4';
  src: url('../fonts/source-serif-4-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* -- Tokens (Sektion 0 aus components.md) --------------------------------- */
:root {
  --c-bg:        #ffffff;
  --c-bg-soft:   #f4f1e8;
  --c-text:      #1a1a2e;
  --c-text-soft: #4a5570;
  --c-primary:        #a01838;
  --c-primary-hover:  #7d1129;
  --c-accent:    #0a3a7a;
  --c-border:    #d8d3c4;
  --c-success:   #15803d;
  --c-warning:   #b45309;
  --c-error:     #b91c1c;
  --c-star:      #f59e0b;

  --font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --fs-xs:   0.8125rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --lh-tight: 1.2;
  --lh-base:  1.55;

  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;

  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);

  --container-max: 1140px;
  --gap-section:   var(--s-8);
  --header-h-mobile:  56px;
  --header-h-desktop: 64px;
  --stickybar-h:      72px;
}

/* -- Reset / Basis -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--c-text);
  background: var(--c-bg);
  padding-top: var(--header-h-mobile);
  /* Platz für Sticky-Bar inklusive iOS-Safe-Area, damit der Footer nicht überdeckt wird */
  padding-bottom: calc(var(--stickybar-h) + env(safe-area-inset-bottom, 0px));
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 900px) {
  body {
    padding-top: var(--header-h-desktop);
    padding-bottom: 0;
  }
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: var(--c-text);
  margin: 0 0 var(--s-4);
}
p { margin: 0 0 var(--s-4); }
ul { margin: 0 0 var(--s-4); padding-left: var(--s-5); }

/* -- Layout --------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--s-4);
}
@media (min-width: 900px) {
  .container { padding-inline: var(--s-5); }
}

.section {
  padding-block: var(--s-7);
  background: var(--c-bg);
}
.section--soft   { background: var(--c-bg-soft); }
.section--dark   { background: var(--c-text); color: #fff; }
.section--tight  { padding-block: var(--s-5); }
@media (min-width: 900px) {
  .section { padding-block: var(--s-8); }
}
.section__title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--s-3);
  text-align: center;
}
.section__lead {
  font-size: var(--fs-md);
  color: var(--c-text-soft);
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-6);
}
@media (min-width: 900px) {
  .section__title { font-size: var(--fs-3xl); }
}

/* -- Header --------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h-mobile);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--c-text);
}
.site-header__logo img {
  height: 36px;
  width: auto;
}
.site-header__lang {
  display: flex;
  align-items: center;
  gap: var(--s-1);
}
.site-header__lang-link {
  display: inline-block;
  padding: var(--s-1) var(--s-2);
  font-size: var(--fs-sm);
  color: var(--c-text-soft);
  text-decoration: none;
  border-radius: var(--r-sm);
  font-weight: 500;
}
.site-header__lang-link:hover { background: var(--c-bg-soft); text-decoration: none; }
.site-header__lang-link.is-active {
  color: var(--c-primary);
  background: var(--c-bg-soft);
}

/* Mobile: native Select-Dropdown */
.site-header__lang-mobile {
  display: flex;
  align-items: center;
}
.site-header__lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-1) var(--s-5) var(--s-1) var(--s-2);
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text);
  cursor: pointer;
  /* Dropdown-Pfeil als Inline-SVG */
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23c2410c' d='M6 8.5L2 4.5h8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--s-2) center;
  background-size: 10px 10px;
  max-width: 140px;
}

@media (min-width: 900px) {
  .site-header { height: var(--header-h-desktop); }
  .site-header__logo img { height: 42px; }
}

/* -- Hero ----------------------------------------------------------------- */
.hero {
  padding-block: var(--s-6) var(--s-7);
  background: var(--c-bg-soft);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: center;
}
.hero__title {
  font-size: var(--fs-2xl);
  margin: var(--s-2) 0;
}
.hero__subtitle {
  font-size: var(--fs-md);
  color: var(--c-text-soft);
  margin-bottom: var(--s-4);
}
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-5);
}
.hero__bullets li {
  position: relative;
  padding-left: var(--s-6);
  margin-bottom: var(--s-2);
  font-size: var(--fs-base);
}
.hero__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-accent);
  font-weight: 600;
  width: var(--s-5);
  text-align: center;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: flex-start;
}
.hero__cta-meta {
  font-size: var(--fs-sm);
  color: var(--c-text-soft);
}
.hero__cta-meta .hero__star { color: var(--c-star); }
.hero__media { width: 100%; margin: 0; }
.hero__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
@media (min-width: 900px) {
  .hero { padding-block: var(--s-8); }
  .hero__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--s-7);
  }
  .hero__title { font-size: var(--fs-3xl); }
}

/* -- Trust-Bar ------------------------------------------------------------ */
.trustbar {
  padding-block: var(--s-4);
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.trustbar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3) var(--s-6);
}
.trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-sm);
  color: var(--c-text);
  font-weight: 500;
}
.trustbar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--c-bg-soft);
  border-radius: var(--r-pill);
  font-size: var(--fs-base);
  flex-shrink: 0;
}

/* -- Choice-Grid (Was ist enthalten) ------------------------------------- */
.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}
.choice-block {
  position: relative;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-6) var(--s-5) var(--s-5);
  transition: transform .15s ease, box-shadow .15s ease;
}
.choice-block:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.choice-block__num {
  position: absolute;
  top: -16px;
  left: var(--s-5);
  background: var(--c-primary);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--fs-base);
  font-family: var(--font-sans);
}
.choice-block__title {
  font-size: var(--fs-md);
  margin: 0 0 var(--s-3);
}
.choice-block__options {
  list-style: none;
  padding: 0;
  margin: 0;
}
.choice-block__options li {
  padding: var(--s-2) 0;
  font-size: var(--fs-sm);
  color: var(--c-text-soft);
  border-top: 1px dashed var(--c-border);
}
.choice-block__options li:first-child { border-top: none; padding-top: 0; }

.bonus-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-border);
}
.bonus-row__item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--fs-sm);
}
.bonus-row__icon {
  width: 36px;
  height: 36px;
  background: var(--c-bg-soft);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 600px) {
  .bonus-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .choice-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
}

/* -- Builder-Sektion (Smartphone-Mockup + Optionen-Übersicht) ----------- */
.builder {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
  max-width: 920px;
  margin-inline: auto;
}

/* Smartphone-Frame */
.builder__phone {
  background: var(--c-text);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  width: 300px;
  margin-inline: auto;
}
.builder__phone-screen {
  background: var(--c-bg-soft);
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  display: flex;
  flex-direction: column;
}
.builder__phone-tickets {
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1;
  justify-content: flex-start;
}
.builder__phone-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 4px;
  font-size: var(--fs-xs);
  color: var(--c-text-soft);
}
.builder__phone-time { font-weight: 600; }
.builder__phone-header {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4) var(--s-3);
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}
.builder__phone-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 7px;
  border-radius: 5px;
  font-family: var(--font-sans);
}
.builder__phone-title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-text);
}

/* Ticket-Karte im Phone */
.ticket-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.ticket-card__body { flex: 1; min-width: 0; }
.ticket-card__status {
  font-size: 9px;
  color: var(--c-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 3px;
}
.ticket-card__title {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.25;
  margin-bottom: 3px;
}
.ticket-card__meta {
  font-size: 10px;
  color: var(--c-text-soft);
  line-height: 1.1;
}
.ticket-card__qr {
  background: var(--c-bg-soft);
  border-radius: 6px;
  padding: 5px;
  flex-shrink: 0;
  color: var(--c-text);
  display: flex;
}

/* Bonus-Karte (Gutschein) */
.bonus-card {
  background: var(--c-bg-soft);
  border: 1px dashed var(--c-primary);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.bonus-card__icon {
  width: 24px;
  height: 24px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}
.bonus-card__title { font-size: var(--fs-xs); font-weight: 600; color: var(--c-text); line-height: 1.2; }
.bonus-card__meta  { font-size: 10px; color: var(--c-text-soft); line-height: 1.1; margin-top: 2px; }

/* Rechte Spalte: nummerierte Wahl-Zeilen */
.builder__choices { display: flex; flex-direction: column; gap: var(--s-5); }
.choice-row { display: flex; gap: var(--s-4); align-items: flex-start; }
.choice-row__num {
  width: 36px;
  height: 36px;
  background: var(--c-primary);
  color: #fff;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--fs-md);
  flex-shrink: 0;
  font-family: var(--font-serif);
}
.choice-row__title {
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--c-text);
  margin-bottom: var(--s-1);
}
.choice-row__text {
  font-size: var(--fs-sm);
  color: var(--c-text-soft);
  line-height: 1.45;
}

/* Preis-Box */
.builder__pricebox {
  padding: var(--s-4);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}
.builder__pricebox-label { font-size: var(--fs-sm); color: var(--c-text-soft); }
.builder__pricebox-price {
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--c-text);
  font-family: var(--font-serif);
  line-height: 1;
  margin: 4px 0;
}
.builder__pricebox-meta { font-size: var(--fs-xs); color: var(--c-text-soft); }

@media (min-width: 900px) {
  .builder {
    grid-template-columns: 300px 1fr;
    gap: var(--s-8);
  }
  .builder__phone { margin-inline: 0; }
}

/* -- How it works (Steps) ----------------------------------------------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  counter-reset: step;
}
.step {
  position: relative;
  padding: var(--s-5);
  background: var(--c-bg);
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--c-bg-soft);
  color: var(--c-primary);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  margin-bottom: var(--s-3);
}
.step__title { font-size: var(--fs-md); margin: 0 0 var(--s-2); }
.step__text { font-size: var(--fs-sm); color: var(--c-text-soft); margin: 0; }
@media (min-width: 600px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* -- Essay (Prosa-Sektion "Ist die Karte das Geld wert?") --------------- */
.essay {
  max-width: 760px;
  margin-inline: auto;
}
.essay__title {
  font-size: var(--fs-lg);
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--c-text);
  margin: var(--s-6) 0 var(--s-3);
}
.essay__title:first-child { margin-top: 0; }
.essay__text {
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--c-text);
  margin: 0 0 var(--s-4);
}
.essay__text--summary {
  font-size: var(--fs-md);
  font-style: italic;
  color: var(--c-text-soft);
  padding: var(--s-4) var(--s-5);
  background: var(--c-bg-soft);
  border-left: 3px solid var(--c-primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-top: var(--s-5);
}
.essay__text--summary strong { color: var(--c-text); font-style: normal; }
.essay__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-5);
}
.essay__list li {
  position: relative;
  padding: var(--s-3) 0 var(--s-3) var(--s-7);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--c-text);
  border-top: 1px solid var(--c-border);
}
.essay__list li:first-child { border-top: none; }
.essay__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--s-3) + 6px);
  width: var(--s-5);
  height: 2px;
  background: var(--c-primary);
}
.essay__list li strong { color: var(--c-text); }
@media (min-width: 900px) {
  .essay__title { font-size: var(--fs-xl); }
}

/* -- Reviews ------------------------------------------------------------- */
.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
.reviews__summary {
  text-align: center;
  padding: var(--s-5);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}
.reviews__big-rating {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  font-weight: 600;
  color: var(--c-text);
  line-height: 1;
}
.reviews__stars {
  color: var(--c-star);
  font-size: var(--fs-lg);
  margin: var(--s-2) 0;
  letter-spacing: 2px;
}
.reviews__count {
  font-size: var(--fs-sm);
  color: var(--c-text-soft);
  margin-bottom: var(--s-4);
}
.reviews__link {
  display: inline-block;
  margin-top: var(--s-4);
  font-size: var(--fs-sm);
  color: var(--c-primary);
  font-weight: 500;
  text-decoration: none;
}
.reviews__link:hover { text-decoration: underline; }
.reviews__list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-4); }
.review {
  padding: var(--s-5);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}
.review__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s-2);
}
.review__stars { color: var(--c-star); letter-spacing: 1px; font-size: var(--fs-sm); }
.review__date { font-size: var(--fs-xs); color: var(--c-text-soft); }
.review__text { font-size: var(--fs-sm); margin: 0 0 var(--s-2); }
.review__source { font-size: var(--fs-xs); color: var(--c-text-soft); }
@media (min-width: 900px) {
  .reviews {
    grid-template-columns: 320px 1fr;
    align-items: start;
    gap: var(--s-7);
  }
  .reviews__summary {
    position: sticky;
    top: calc(var(--header-h-desktop) + var(--s-4));
  }
}

/* -- FAQ ----------------------------------------------------------------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: var(--s-3);
  overflow: hidden;
}
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-4) var(--s-5);
  font-weight: 500;
  font-size: var(--fs-base);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-sans);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: "+";
  font-size: var(--fs-lg);
  color: var(--c-primary);
  font-weight: 400;
  transition: transform .2s ease;
  margin-left: var(--s-3);
}
.faq__item[open] .faq__question::after { transform: rotate(45deg); }
.faq__item[open] .faq__question { border-bottom: 1px solid var(--c-border); }
.faq__answer { padding: var(--s-4) var(--s-5); font-size: var(--fs-sm); color: var(--c-text-soft); }
.faq__answer p:last-child { margin-bottom: 0; }
.faq__answer strong { color: var(--c-text); }

/* -- Tips ---------------------------------------------------------------- */
.tips { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
.tip {
  padding: var(--s-5);
  background: var(--c-bg);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.tip__title { font-size: var(--fs-base); margin: 0 0 var(--s-2); font-family: var(--font-sans); font-weight: 600; }
.tip__text { font-size: var(--fs-sm); color: var(--c-text-soft); margin: 0; }
@media (min-width: 900px) { .tips { grid-template-columns: repeat(3, 1fr); } }

/* -- Closing CTA --------------------------------------------------------- */
.closing-cta {
  padding-block: var(--s-8);
  background: var(--c-primary);
  color: #fff;
  text-align: center;
}
.closing-cta__title {
  color: #fff;
  font-size: var(--fs-2xl);
  margin-bottom: var(--s-3);
}
.closing-cta__text {
  color: rgba(255,255,255,0.9);
  font-size: var(--fs-md);
  margin-bottom: var(--s-5);
  max-width: 600px;
  margin-inline: auto;
}
.closing-cta .btn--primary {
  background: #fff;
  color: var(--c-primary);
  border: 2px solid #fff;
  font-size: var(--fs-md);
  padding: var(--s-4) var(--s-7);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.closing-cta .btn--primary:hover {
  background: var(--c-text);
  color: #fff;
  border-color: var(--c-text);
}
/* Closing-CTA-Button: Label + Preis als Flex-Children — Mobile gestapelt, Desktop nebeneinander */
.closing-cta__btn {
  flex-wrap: wrap;
  row-gap: var(--s-1);
  column-gap: var(--s-3);
}
.closing-cta__btn-label,
.closing-cta__btn-price {
  white-space: nowrap;
}
.closing-cta__btn-price {
  font-weight: 500;
  opacity: 0.85;
}
.closing-cta__btn-price::before {
  content: "— ";
}
/* Auf sehr schmalen Schirmen: Label und Preis untereinander, "— " wird zu unsichtbarem Abstand */
@media (max-width: 480px) {
  .closing-cta__btn {
    flex-direction: column;
  }
  .closing-cta__btn-price::before {
    content: "";
  }
}
@media (min-width: 900px) { .closing-cta__title { font-size: var(--fs-3xl); } }

/* -- Sticky Bar (Mobile) ------------------------------------------------ */
.stickybar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  min-height: var(--stickybar-h);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  /* Explizit horizontale Anordnung — auch wenn ein Parent zufällig flex-direction column setzt */
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-2) var(--s-4);
  /* iOS Safe-Area: damit die Bar nicht vom Home-Indicator/Toolbar überdeckt wird */
  padding-bottom: calc(var(--s-2) + env(safe-area-inset-bottom, 0px));
}
.stickybar__price {
  flex: 0 1 auto;
  min-width: 0;
  font-size: var(--fs-xs);
  color: var(--c-text-soft);
  line-height: 1.1;
  white-space: nowrap;
}
.stickybar__price strong {
  display: block;
  font-size: var(--fs-lg);
  color: var(--c-text);
  font-weight: 600;
  font-family: var(--font-serif);
  margin-top: 2px;
  white-space: nowrap;
}
.stickybar__cta {
  flex: 0 0 auto;
  padding: var(--s-3) var(--s-5);
  font-size: var(--fs-base);
  white-space: nowrap;
  min-width: 140px;
  text-align: center;
}
@media (min-width: 900px) { .stickybar { display: none !important; } }

/* -- Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--c-text);
  color: rgba(255,255,255,0.75);
  padding: var(--s-7) 0 var(--s-5);
  font-size: var(--fs-sm);
  margin-top: var(--s-8);
}
.site-footer__inner {
  display: grid;
  gap: var(--s-5);
}
.site-footer__disclaimer { margin: 0; line-height: 1.6; }
.site-footer__nav { display: flex; gap: var(--s-4); flex-wrap: wrap; }
.site-footer__nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: var(--fs-sm);
}
.site-footer__nav a:hover { color: #fff; text-decoration: underline; }
.site-footer__copyright {
  font-size: var(--fs-xs);
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 900px) {
  .site-footer__inner { grid-template-columns: 2fr 1fr; align-items: start; }
}

/* -- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-5);
  font: 600 var(--fs-base)/1.2 var(--font-sans);
  border-radius: var(--r-md);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, transform .05s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible {
  outline: 3px solid rgba(194, 65, 12, 0.35);
  outline-offset: 2px;
}
.btn--primary {
  background: var(--c-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--c-primary-hover);
  text-decoration: none;
  box-shadow: var(--shadow-md);
}
.btn--secondary {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn--secondary:hover {
  background: var(--c-bg-soft);
  text-decoration: none;
}
.btn--ghost {
  background: transparent;
  color: var(--c-primary);
  border-color: transparent;
}
.btn--ghost:hover { text-decoration: underline; }
.btn--lg { padding: var(--s-4) var(--s-6); font-size: var(--fs-md); }
.btn--sm { padding: var(--s-2) var(--s-3); font-size: var(--fs-sm); }
.btn--block { width: 100%; }

/* -- Badge --------------------------------------------------------------- */
.badge {
  display: inline-block;
  padding: var(--s-1) var(--s-3);
  font-size: var(--fs-xs);
  font-weight: 500;
  border-radius: var(--r-pill);
  background: var(--c-bg-soft);
  color: var(--c-text-soft);
}
.badge--accent {
  background: rgba(10, 126, 110, 0.1);
  color: var(--c-accent);
}
.badge--primary {
  background: rgba(194, 65, 12, 0.1);
  color: var(--c-primary);
}

/* -- Legal-Seiten (Impressum, Datenschutz) ------------------------------ */
.page--legal { padding-bottom: var(--s-5); }
.page--legal .stickybar { display: none; }
.legal { padding-block: var(--s-7); background: var(--c-bg); }
.legal__article {
  max-width: 720px;
  margin-inline: auto;
}
.legal__title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--s-6);
}
.legal h2 {
  font-size: var(--fs-lg);
  margin: var(--s-6) 0 var(--s-3);
}
.legal h3 {
  font-size: var(--fs-md);
  margin: var(--s-5) 0 var(--s-2);
}
.legal p,
.legal ul {
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--c-text);
  margin: 0 0 var(--s-3);
}
.legal ul { padding-left: var(--s-5); }
.legal ul li { margin-bottom: var(--s-2); }
.legal a { color: var(--c-primary); }
.legal__address {
  font-style: normal;
  margin: 0 0 var(--s-4);
  line-height: 1.55;
}
.legal__note {
  font-size: var(--fs-sm);
  color: var(--c-text-soft);
  margin-top: var(--s-7);
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-border);
}
@media (min-width: 900px) {
  .legal { padding-block: var(--s-8); }
  .legal__title { font-size: var(--fs-3xl); }
}

/* -- Utilities ----------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-soft   { color: var(--c-text-soft); }
.text-center { text-align: center; }
.is-loading { opacity: 0.5; transition: opacity .2s ease; }
.is-hidden-mobile  { display: none; }
.is-hidden-desktop { display: initial; }
@media (min-width: 900px) {
  .is-hidden-mobile  { display: initial; }
  .is-hidden-desktop { display: none; }
}

/* =============================================================================
 * BARCELONA-SPECIFIC OVERRIDES & ADDITIONS (after live-review pass)
 * ========================================================================== */

/* -- Sprach-Dropdown (dezent, 11 Sprachen) -------------------------------- */
.site-header__lang-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  padding: 2px 2px 2px var(--s-2);
}
.site-header__lang-wrap:hover {
  background: var(--c-bg-soft);
}
.site-header__lang-icon {
  font-size: 0.85rem;
  line-height: 1;
  opacity: 0.55;
}
.site-header__lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 6px 22px 6px 4px;
  font: inherit;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--c-text-soft);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23999' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
}
.site-header__lang-select:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
@media (min-width: 600px) {
  .site-header__lang-select { font-size: var(--fs-sm); }
}

/* Override: alte Pills komplett ausblenden, falls noch vorhanden */
.site-header__lang { display: none !important; }
.site-header__lang-mobile { display: none !important; }

/* SVG-Wortmarke — größer & dominanter */
.site-header__logo img {
  height: 64px;
  width: auto;
  display: block;
}
@media (max-width: 599px) {
  .site-header__logo img { height: 52px; }
}

/* -- Included-Blocks (Sagrada/Park/Hola) — neue Komponente ---------------- */
.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
}
@media (min-width: 700px) {
  .included-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .included-grid { grid-template-columns: repeat(3, 1fr); }
}
.included-block {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.included-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.included-block__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-bg-soft);
}
.included-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.included-block:hover .included-block__media img {
  transform: scale(1.03);
}
.included-block__body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}
.included-block__title {
  font-size: var(--fs-lg);
  margin: 0;
  color: var(--c-text);
}
.included-block__body > p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--c-text-soft);
  line-height: 1.6;
}
.included-block__options-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-text-soft);
  margin: var(--s-2) 0 0 !important;
}
.included-block__options {
  list-style: none;
  padding: 0;
  margin: 0;
}
.included-block__options li {
  padding: var(--s-2) 0;
  font-size: var(--fs-sm);
  color: var(--c-text);
  border-top: 1px dashed var(--c-border);
  position: relative;
  padding-left: var(--s-4);
}
.included-block__options li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-weight: 700;
}
.included-block__options li:first-child {
  border-top: none;
}

/* Bonus-Row hat eigenen Body-Text (nicht nur inline) */
.bonus-row { gap: var(--s-4); }
.bonus-row__item {
  align-items: flex-start;
  background: var(--c-bg-soft);
  padding: var(--s-4);
  border-radius: var(--r-md);
}
.bonus-row__item > div { flex: 1; }
.bonus-row__item strong {
  display: block;
  color: var(--c-text);
  margin-bottom: var(--s-1);
  font-size: var(--fs-base);
}
.bonus-row__item p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--c-text-soft);
  line-height: 1.5;
}
.bonus-row__icon {
  width: 44px;
  height: 44px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  font-size: 1.25rem;
}

/* -- FAQ Akkordeon (Klassen-Fix: .faq__question/.faq__answer) -------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: var(--s-3);
  overflow: hidden;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  line-height: 1.4;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-primary);
  transition: transform .2s ease;
  line-height: 1;
}
.faq__item[open] .faq__question::after {
  content: "−";
  transform: rotate(0deg);
}
.faq__item[open] .faq__question {
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg-soft);
}
.faq__answer {
  padding: var(--s-4) var(--s-5);
  font-size: var(--fs-sm);
  color: var(--c-text);
  line-height: 1.65;
}
.faq__answer strong { color: var(--c-text); }
.faq__answer p:last-child { margin-bottom: 0; }
.faq__answer br { display: block; content: ""; margin-bottom: var(--s-2); }

/* -- Comparison Table ------------------------------------------------------- */
.comparison-table-wrap {
  overflow-x: auto;
  margin: var(--s-6) 0;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-bg);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  min-width: 540px;
}
.comparison-table th,
.comparison-table td {
  padding: var(--s-3) var(--s-4);
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}
.comparison-table thead th {
  font-weight: 600;
  color: var(--c-text);
  background: var(--c-bg-soft);
  border-bottom: 2px solid var(--c-border);
}
.comparison-table tbody th[scope="row"] {
  text-align: left;
  font-weight: 500;
  color: var(--c-text);
  background: var(--c-bg-soft);
  white-space: nowrap;
}
.comparison-table__col-highlight {
  background: rgba(160, 24, 56, 0.04) !important;
  font-weight: 600;
}
.comparison-table__yes {
  color: #15803d;
  font-weight: 600;
}
.comparison-table__no {
  color: var(--c-text-soft);
}
.comparison-summary {
  font-size: var(--fs-sm);
  color: var(--c-text-soft);
  line-height: 1.65;
  max-width: 780px;
  margin: var(--s-5) auto 0;
  text-align: center;
}

/* -- Reviews — Card-Layout statt nur Liste -------------------------------- */
.reviews__big-rating-suffix {
  font-size: 1rem;
  color: var(--c-text-soft);
  font-weight: 400;
}
.reviews__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 700px) {
  .reviews__list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .reviews__list { grid-template-columns: repeat(3, 1fr); }
}
.review {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
}
.review__title {
  font-size: var(--fs-base);
  margin: var(--s-2) 0;
  color: var(--c-text);
}
.review__text {
  font-size: var(--fs-sm);
  color: var(--c-text);
  line-height: 1.55;
  margin: 0 0 var(--s-3);
}

/* -- Tips: bei Barcelona als kleine Cards --------------------------------- */
.tips {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 700px) {
  .tips { grid-template-columns: 1fr 1fr; }
}
.tip {
  background: var(--c-bg-soft);
  border-left: 3px solid var(--c-primary);
  padding: var(--s-4) var(--s-5);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.tip__title {
  font-size: var(--fs-base);
  margin: 0 0 var(--s-2);
  color: var(--c-text);
}
.tip__text {
  font-size: var(--fs-sm);
  color: var(--c-text);
  line-height: 1.6;
  margin: 0;
}

/* -- Hero: Bild größer, prominenter ---------------------------------------- */
@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr 1.1fr !important;
    align-items: center;
  }
  .hero__image {
    aspect-ratio: 4 / 5;
    max-height: 600px;
  }
}
.hero__image {
  aspect-ratio: 16 / 10;
}

/* -- Trust-Bar auf Mobile als 2x2-Grid ------------------------------------- */
@media (max-width: 599px) {
  .trustbar__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-3);
    justify-content: stretch;
  }
  .trustbar__item {
    font-size: var(--fs-xs);
    justify-content: flex-start;
  }
}

/* -- Closing CTA aufräumen ------------------------------------------------- */
.closing-cta__disclosure { display: none; }

/* Closing CTA: Button responsive (kein Overflow) */
.closing-cta__btn {
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}
.closing-cta .container {
  padding-inline: var(--s-4);
}
@media (max-width: 599px) {
  .closing-cta__btn {
    width: 100%;
    flex-direction: column;
    gap: 4px;
    padding: var(--s-4) var(--s-3);
  }
  .closing-cta__btn-label { font-size: var(--fs-md); }
  .closing-cta__btn-price { font-size: var(--fs-sm); opacity: 0.9; }
}

/* -- Hero CTA Button: 2-zeilig (Label + Preis) ---------------------------- */
.hero__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: var(--s-4) var(--s-6);
  max-width: 100%;
  text-align: center;
  line-height: 1.2;
  min-width: 220px;
}
.hero__btn-label {
  font-weight: 700;
}
.hero__btn-price {
  font-weight: 500;
  opacity: 0.92;
}

/* Default: nur Short-Label ("Book now") */
.hero__btn-label--long { display: none; }
.hero__btn-label--short { display: inline; }
.hero__btn-label--short { font-size: var(--fs-md); }
.hero__btn-price { font-size: var(--fs-sm); }

/* Mobile-Vollbreit + kompakt */
@media (max-width: 599px) {
  .hero__btn {
    width: 100%;
    max-width: 360px;
    min-width: 0;
  }
}

/* Desktop ab 700px: Lang-Label sichtbar, größerer Button */
@media (min-width: 700px) {
  .hero__btn-label--short { display: none; }
  .hero__btn-label--long {
    display: inline;
    font-size: 1.25rem;
  }
  .hero__btn-price { font-size: var(--fs-md); }
  .hero__btn {
    padding: var(--s-4) var(--s-7);
    min-width: 320px;
    gap: 4px;
  }
}

/* -- Sticky-Bar: Hide/Show-Animation -------------------------------------- */
.stickybar {
  transition: transform .25s ease, opacity .25s ease;
  will-change: transform;
}
.stickybar--hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

/* -- Header: Logo + Sprache nebeneinander, vertical centered -------------- */
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-block: var(--s-3);
}

/* -- How-it-works Cards prominenter --------------------------------------- */
.step {
  background: var(--c-bg) !important;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.06));
  transition: transform .15s ease, box-shadow .15s ease;
}
.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 58, 122, 0.08);
}
.step__num {
  background: var(--c-primary) !important;
  color: #fff !important;
  font-family: var(--font-sans);
  font-size: 1.1rem;
}
.step__text { color: var(--c-text) !important; line-height: 1.6; }

/* -- Booking-Widget Card-Wrap -------------------------------------------- */
@media (min-width: 900px) {
  .builder {
    align-items: stretch;
  }
}
.builder__choices {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
}
.choice-row {
  padding: var(--s-3) 0;
  border-bottom: 1px dashed var(--c-border);
}
.choice-row:last-of-type { border-bottom: 0; }
.choice-row__num {
  flex-shrink: 0;
}

/* -- Section title etwas sanfter -------------------------------------- */
.section__title {
  text-align: center;
  margin-bottom: var(--s-3);
}
.section__lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-6);
}

/* -- Container sauber max-width 1100 ------------------------------------- */
.container {
  max-width: 1140px;
  padding-inline: var(--s-5);
}
.container--narrow {
  max-width: 820px;
}

/* -- Smooth Scroll + Scroll-Margin für Anker-Sprünge ---------------------- */
html { scroll-behavior: smooth; }
section[id] {
  scroll-margin-top: 80px;
}

