/* ==========================================================================
   REISE-FINDER · Reisedesign-Look  (Stufe 12, 2026-05-27)
   --------------------------------------------------------------------------
   Übernommen aus /reisedesign/ (Bens State-of-the-Art-Referenz):
     - Schriften: Inter (Body) + Playfair Display (Heading)
     - Tokens: #0d0f12 BG, #181b22 Card-BG, #C8A96A Gold, weiß auf dunkel
     - Step-Mechanik: aktiver Step slidet, sanfte 300ms-Übergänge
     - Compact-Cards für Antwort-Optionen: weißer Text IMMER lesbar
       (Schrift-Bug aus Stufe 11 gefixt — Text ist im Ruhezustand klar,
       Hover/Selected betont nur)
     - Sticky-Progress oben: 3px Gold-Linie + Phase-Labels
     - Buttons: gold-Fill (Next), gold-Outline (Back)
     - Reederei/Schiff-Karten: dark-card-Look mit Bild + Overlay + Label
   Sie-Form behalten (Reisedesign ist Du-Form — nur Look übernehmen).
   Logik (Scoring/Ranking/CTAs) unverändert.
   ========================================================================== */

body.rf-body {
  /* Tokens 1:1 wie Reisedesign — Konsistenz vor Distinktivität */
  --rf-bg:           #0d0f12;
  --rf-bg-card:      #181b22;
  --rf-bg-card-2:    #1f2330;
  --rf-gold:         #C8A96A;
  --rf-gold-warm:    #D4B87A;
  --rf-gold-dim:     rgba(200, 169, 106, 0.3);
  --rf-gold-glow:    rgba(200, 169, 106, 0.25);
  --rf-white:        #FFFFFF;
  --rf-muted:        #999999;
  --rf-muted-2:      #b8b8b8;
  --rf-border:       #333333;
  --rf-border-hover: #555555;
  --rf-radius:       12px;
  --rf-radius-sm:    8px;
  --rf-trans:        200ms ease;

  --rf-font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --rf-font-heading: 'Playfair Display', Georgia, serif;

  background: var(--rf-bg);
  color: var(--rf-white);
  font-family: var(--rf-font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

::selection { background: var(--rf-gold); color: var(--rf-bg); }
:focus-visible { outline: 2px solid var(--rf-gold); outline-offset: 3px; }

/* ── Topbar — schmal, dunkel mit Gold-Hairline ─────────────── */
.rf-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 15, 18, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(200, 169, 106, 0.18);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rf-topbar__logo img { display: block; height: 64px; width: auto; }
.rf-topbar__cta {
  color: var(--rf-gold);
  font-family: var(--rf-font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--rf-gold);
  border-radius: var(--rf-radius);
  transition: background var(--rf-trans), color var(--rf-trans);
}
.rf-topbar__cta:hover { background: rgba(200, 169, 106, 0.12); }
@media (max-width: 720px) {
  .rf-topbar { padding: 12px 16px; }
  .rf-topbar__cta { font-size: 0.74rem; padding: 8px 14px; }
  .rf-topbar__logo img { height: 52px; }
}

/* ── Hero — Vollbild-Sog mit Bestandsbild + Dark-Gradient (Stufe 14) ── */
.rf-hero {
  position: relative;
  isolation: isolate;
  padding: 120px 24px 96px;
  min-height: 80vh;
  text-align: center;
  background: var(--rf-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rf-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;   /* Sonnenuntergang sitzt im unteren Drittel — Mitte würde zu viel Himmel zeigen */
  z-index: 0;
  display: block;
}
.rf-hero::after {
  /* Sanfter Dark-Gradient — gerade so viel, dass Text lesbar bleibt,
     aber das Sunset-Motiv klar durchkommt. Oben leichter Tint, hinter
     dem Text-Block eine weiche Abdunklung, unten Schatten unter dem CTA. */
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 45% at 50% 50%, rgba(13, 15, 18, 0.55) 0%, rgba(13, 15, 18, 0) 80%),
    linear-gradient(180deg, rgba(13, 15, 18, 0.45) 0%, rgba(13, 15, 18, 0.08) 30%, rgba(13, 15, 18, 0.08) 60%, rgba(13, 15, 18, 0.55) 100%);
  pointer-events: none;
}
/* Zusätzlich: Text-Shadows für Hero-Texte (statt globalem Heavy-Gradient),
   damit das Bild atmet und der Text trotzdem klar bleibt. */
.rf-hero__inner .rf-hero__eyebrow { text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45); }
.rf-hero h1.rf-hero__title { text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55); }
.rf-hero p.rf-hero__intro { text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5); }
.rf-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .rf-hero { min-height: 72vh; padding: 88px 20px 64px; }
  /* Sunset weiter nach unten ziehen — sitzt hinter dem CTA (Gold-Fläche
     ist robust gegen Bild), Headline+Intro stehen vor dunklerem Himmel-Teil */
  .rf-hero__bg { object-position: center 85%; }
  .rf-hero p.rf-hero__intro { text-shadow: 0 1px 14px rgba(0, 0, 0, 0.85); }
}

.rf-hero__eyebrow {
  display: inline-block;
  color: var(--rf-gold);
  font-family: var(--rf-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Spezifisch genug, dass section h2/h3/p-Overrides nicht stören.
   h1 wird global nicht überschrieben (nur h2/h3), Intro durch eigene Klasse spezifischer. */
.rf-hero h1.rf-hero__title {
  font-family: var(--rf-font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--rf-white);
  margin: 0 0 20px;
  letter-spacing: -0.005em;
}

.rf-hero p.rf-hero__intro {
  color: var(--rf-muted-2);
  font-size: 1.04rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 32px;
}

/* Stufe 13 (2026-05-27): Hero-CTA bekommt im HTML zusätzlich .btn-Klasse.
   Damit greift `section a:not(.btn)` aus global.css NICHT mehr → Gold-auf-Gold-
   Konflikt ist auf der CSS-Architektur-Ebene gelöst, ohne !important-Stapel. */
a.rf-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: var(--rf-gold);
  color: #1a1a2e;
  font-family: var(--rf-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--rf-radius);
  border: none;
  min-height: 52px;
  transition: background var(--rf-trans), transform var(--rf-trans), box-shadow var(--rf-trans);
}
.rf-hero__cta:hover {
  background: var(--rf-gold-warm);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--rf-gold-glow);
}
.rf-hero__cta-arrow {
  font-size: 1rem;
  animation: rf-hint-arrow 2.4s ease-in-out infinite;
}
@keyframes rf-hint-arrow {
  0%, 60%, 100% { transform: translateY(0); }
  30%           { transform: translateY(3px); }
}

@media (max-width: 720px) {
  /* .rf-hero padding wird oben (Stufe 14) gesetzt — hier nur Text/CTA-Anpassungen */
  .rf-hero__intro { font-size: 1rem; }
  .rf-hero__cta { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── App-Container ────────────────────────────────────────── */
.rf-app {
  flex: 1;
  width: 100%;
  padding: 56px 24px 80px;
  position: relative;
  scroll-margin-top: 32px;
}
@media (max-width: 720px) { .rf-app { padding: 36px 14px 56px; } }

.rf-shell {
  max-width: 1100px;
  margin: 0 auto;
  scroll-margin-top: 24px;
}
.rf-shell--flow {
  min-height: calc(100vh - 168px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rf-loading {
  text-align: center;
  padding: 80px 0;
  color: var(--rf-muted);
}

/* ──────────────────────────────────────────────────────────
   FLOW — One-Question-Screen im Reisedesign-Look
   ────────────────────────────────────────────────────────── */

/* Sticky Progress-Bar oben (3px Gold-Linie + Pagination-Label) */
.rf-progress {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.rf-progress__label {
  font-family: var(--rf-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--rf-gold);
  text-transform: uppercase;
  white-space: nowrap;
}
.rf-progress__bar {
  position: relative;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.rf-progress__fill {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  background: var(--rf-gold);
  border-radius: 0 2px 2px 0;
  transition: width 400ms ease;
}

/* Step-Card — Headline + Subline + Compact-Cards + Nav */
.rf-question {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 0 8px;
  animation: rf-slide-in-right 0.3s ease;
}
.rf-question.is-back { animation: rf-slide-in-left 0.3s ease; }

@keyframes rf-slide-in-right {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: none; }
}
@keyframes rf-slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: none; }
}

.rf-question__headline {
  font-family: var(--rf-font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--rf-white);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.rf-question__subtext {
  font-family: var(--rf-font-body);
  color: var(--rf-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 auto 36px;
  max-width: 560px;
}

/* Compact-Cards für Antwort-Optionen (Reisedesign-Pattern) —
   weißer Text IMMER lesbar, Hover/Selected betonen nur. */
.rf-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 32px;
  max-width: 900px;
}
.rf-option {
  background: var(--rf-bg-card);
  border: 1px solid var(--rf-border);
  border-radius: var(--rf-radius);
  padding: 20px 28px;
  font-family: var(--rf-font-body);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--rf-white);
  cursor: pointer;
  text-align: center;
  transition: border-color var(--rf-trans), box-shadow var(--rf-trans), transform var(--rf-trans), background var(--rf-trans);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  min-width: 180px;
  min-height: 64px;
  justify-content: center;
}
.rf-option:hover {
  border-color: var(--rf-border-hover);
  background: var(--rf-bg-card-2);
  transform: translateY(-2px);
}
.rf-option.is-selected {
  border: 2px solid var(--rf-gold);
  box-shadow: 0 0 20px var(--rf-gold-glow);
  color: var(--rf-gold);
  padding: 19px 27px;  /* gleicht 2px-Border aus */
}
.rf-option__label {
  font-weight: 500;
  line-height: 1.3;
}
.rf-option__hint {
  font-family: var(--rf-font-body);
  font-size: 0.78rem;
  color: var(--rf-muted);
  font-weight: 400;
}
.rf-option.is-selected .rf-option__hint { color: var(--rf-gold-warm); }

/* Nav — Back-Button im Reisedesign-Stil */
.rf-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding-top: 20px;
}
.rf-nav__back {
  background: transparent;
  border: 1px solid var(--rf-gold);
  color: var(--rf-gold);
  font-family: var(--rf-font-body);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--rf-radius);
  cursor: pointer;
  transition: background var(--rf-trans);
  min-height: 44px;
}
.rf-nav__back:hover { background: rgba(200, 169, 106, 0.1); }

/* ──────────────────────────────────────────────────────────
   RESULTS — Reederei-Karten + Schiffe im Reisedesign-Look
   ────────────────────────────────────────────────────────── */
@keyframes rf-reveal-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.rf-results__head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 760px;
}
.rf-results__eyebrow {
  display: inline-block;
  font-family: var(--rf-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rf-gold);
  margin-bottom: 18px;
}
.rf-results__title {
  font-family: var(--rf-font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--rf-white);
  margin: 0 0 14px;
}
.rf-results__sub {
  color: var(--rf-muted-2);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 560px;
}

.rf-shell--reveal .rf-results__head { opacity: 0; animation: rf-reveal-up 0.5s ease 0.05s forwards; }
.rf-shell--reveal .rf-red-card { opacity: 0; animation: rf-reveal-up 0.55s ease forwards; }
@media (prefers-reduced-motion: reduce) {
  .rf-shell--reveal .rf-results__head,
  .rf-shell--reveal .rf-red-card,
  .rf-question { animation: none; opacity: 1; transform: none; }
  .rf-hero__cta-arrow { animation: none; }
}

/* Reederei-Karte — wie rd-card: Bild + Overlay-Gradient + Label */
.rf-red-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 56px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.rf-red-card {
  background: var(--rf-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--rf-radius);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.rf-red-card:hover { border-color: rgba(200, 169, 106, 0.25); }
.rf-red-card.is-open {
  border-color: var(--rf-gold);
  box-shadow: 0 0 0 1px var(--rf-gold-dim), 0 18px 50px rgba(0, 0, 0, 0.5);
}

.rf-red-card__hero {
  position: relative;
  display: block;
  width: 100%;
  height: 380px;
  min-height: 280px;
  max-height: 60vh;
  border: 0;
  padding: 0;
  background: var(--rf-bg);
  color: var(--rf-white);
  cursor: pointer;
  overflow: hidden;
  font-family: inherit;
  text-align: left;
}
@media (max-width: 720px) {
  .rf-red-card__hero { height: 320px; }
}

.rf-red-card__photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;  /* Default-Fokus; per inline-style überschreibbar */
  display: block;
  transition: transform 0.5s ease;
  z-index: 0;
}
.rf-red-card__hero:hover .rf-red-card__photo { transform: scale(1.04); }

/* Logo-Fallback würdevoll — bis Bild kommt */
.rf-red-card__hero--logo {
  background:
    radial-gradient(ellipse 70% 50% at 50% 35%, rgba(200, 169, 106, 0.14) 0%, transparent 70%),
    linear-gradient(160deg, #181b22 0%, #0d0f12 50%, #07080a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  position: relative;
}
.rf-red-card__hero--logo::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--rf-gold-dim);
  border-radius: var(--rf-radius);
  pointer-events: none;
}
.rf-red-card__logo-big {
  display: block;
  width: auto;
  height: auto;
  max-width: min(45%, 240px);
  max-height: 36%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  z-index: 1;
}

/* Overlay-Gradient + Label (Reisedesign-Card-Pattern) */
.rf-red-card__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 15, 20, 0.95) 0%, rgba(11, 15, 20, 0.55) 30%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.rf-red-card__hero-body {
  position: absolute;
  bottom: 28px;
  left: 32px;
  right: 90px;
  z-index: 2;
  pointer-events: none;
}
.rf-red-card__sub {
  font-family: var(--rf-font-body);
  color: var(--rf-gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.rf-red-card__name {
  font-family: var(--rf-font-heading);
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--rf-white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.rf-red-card__chevron {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--rf-gold);
  background: rgba(13, 15, 18, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--rf-gold);
  font-family: var(--rf-font-heading);
  font-size: 1.3rem;
  transition: background var(--rf-trans), color var(--rf-trans), transform var(--rf-trans);
}
.rf-red-card__chevron::before { content: '▾'; line-height: 1; }
.rf-red-card__hero:hover .rf-red-card__chevron {
  background: rgba(200, 169, 106, 0.25);
}
.rf-red-card.is-open .rf-red-card__chevron {
  background: var(--rf-gold);
  color: #1a1a2e;
  transform: rotate(180deg);
}

/* Body — Begründung + CTAs */
.rf-red-card__body {
  padding: 28px 32px 32px;
  background: var(--rf-bg-card-2);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.rf-red-card__begruendung {
  font-family: var(--rf-font-body);
  color: var(--rf-muted-2);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 70ch;
}
.rf-red-card__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.rf-red-card__schiffe {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: var(--rf-bg);
  padding: 28px 32px 36px;
  display: grid;
  gap: 20px;
}
.rf-red-card__rest { display: grid; gap: 20px; }

.rf-red-card__more {
  background: transparent;
  border: 1px solid var(--rf-border);
  color: var(--rf-white);
  font-family: var(--rf-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: var(--rf-radius);
  cursor: pointer;
  transition: border-color var(--rf-trans), background var(--rf-trans);
  min-height: 48px;
}
.rf-red-card__more:hover {
  border-color: var(--rf-gold);
  background: rgba(200, 169, 106, 0.08);
  color: var(--rf-gold);
}

@media (max-width: 720px) {
  .rf-red-grid { gap: 20px; }
  .rf-red-card__hero-body { left: 20px; right: 76px; bottom: 22px; }
  .rf-red-card__chevron { right: 18px; bottom: 22px; width: 44px; height: 44px; }
  .rf-red-card__body { padding: 24px 20px 24px; }
  .rf-red-card__schiffe { padding: 22px 18px 28px; }
  .rf-red-card__ctas .rf-btn { width: 100%; }
}

/* ──────────────────────────────────────────────────────────
   SCHIFF-ITEMS — wie kleinere rd-cards
   ────────────────────────────────────────────────────────── */
.rf-ship {
  background: var(--rf-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--rf-radius);
  overflow: hidden;
  transition: border-color var(--rf-trans), transform var(--rf-trans);
}
.rf-ship:hover { border-color: rgba(200, 169, 106, 0.3); transform: translateY(-2px); }

.rf-ship__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--rf-bg);
}
@supports not (aspect-ratio: 16/9) { .rf-ship__media { min-height: 200px; } }
.rf-ship__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 0.4s ease;
}
.rf-ship:hover .rf-ship__photo { transform: scale(1.03); }

.rf-ship__media--logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px;
  gap: 12px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(200, 169, 106, 0.12) 0%, transparent 70%),
    linear-gradient(160deg, #181b22 0%, #0d0f12 60%, #07080a 100%);
  position: relative;
}
.rf-ship__media--logo::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid var(--rf-gold-dim);
  border-radius: 8px;
  pointer-events: none;
}
.rf-ship__media--logo .rf-ship__logo {
  display: block;
  max-width: 56%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  z-index: 1;
}
.rf-ship__media--logo .rf-ship__logo-name {
  font-family: var(--rf-font-heading);
  color: var(--rf-gold);
  font-size: 1.05rem;
  margin: 0;
  z-index: 1;
  text-align: center;
}

.rf-ship__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rf-ship__name {
  font-family: var(--rf-font-heading);
  font-size: clamp(1.3rem, 2.4vw, 1.55rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--rf-white);
  margin: 0;
}
.rf-ship__meta {
  color: var(--rf-muted);
  font-family: var(--rf-font-body);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin: 0;
}
.rf-ship__satz {
  color: var(--rf-muted-2);
  font-family: var(--rf-font-body);
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 6px 0 8px;
}
.rf-ship__preis {
  font-family: var(--rf-font-heading);
  font-size: 1.05rem;
  margin: 4px 0 0;
  color: var(--rf-white);
}
.rf-ship__preis strong { color: var(--rf-gold); font-weight: 500; }
.rf-ship__preis small { color: var(--rf-muted); font-size: 0.78rem; font-family: var(--rf-font-body); }
.rf-ship__ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.rf-ship__tertiary { margin: 10px 0 0; }
.rf-ship__textlink {
  color: var(--rf-gold);
  font-family: var(--rf-font-body);
  font-size: 0.84rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color var(--rf-trans);
}
.rf-ship__textlink:hover { border-bottom-color: var(--rf-gold); }

@media (min-width: 880px) {
  .rf-ship {
    display: grid;
    grid-template-columns: 360px 1fr;
  }
  .rf-ship__media { aspect-ratio: auto; height: 100%; min-height: 240px; }
  .rf-ship__body { padding: 26px 28px 28px; }
}

/* ──────────────────────────────────────────────────────────
   CTAs — Reisedesign-Buttons
   ────────────────────────────────────────────────────────── */
.rf-btn {
  display: inline-block;
  font-family: var(--rf-font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border-radius: var(--rf-radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background var(--rf-trans), color var(--rf-trans), border-color var(--rf-trans), transform var(--rf-trans);
  min-height: 48px;
  line-height: 1.2;
  white-space: nowrap;
}
.rf-btn--primary {
  background: var(--rf-gold);
  color: #1a1a2e;
  border-color: var(--rf-gold);
}
.rf-btn--primary:hover {
  background: var(--rf-gold-warm);
  border-color: var(--rf-gold-warm);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--rf-gold-glow);
}
.rf-btn--outline {
  background: transparent;
  color: var(--rf-white);
  border-color: var(--rf-border);
}
.rf-btn--outline:hover {
  border-color: var(--rf-gold);
  color: var(--rf-gold);
  background: rgba(200, 169, 106, 0.08);
}
.rf-btn--outline-dark {
  background: transparent;
  color: var(--rf-gold);
  border-color: var(--rf-gold);
}
.rf-btn--outline-dark:hover {
  background: var(--rf-gold);
  color: #1a1a2e;
}
.rf-btn--ghost {
  background: transparent;
  color: var(--rf-muted-2);
  border-color: var(--rf-border);
}
.rf-btn--ghost:hover {
  border-color: var(--rf-border-hover);
  color: var(--rf-white);
}

.rf-ship__ctas .rf-btn {
  font-size: 0.78rem;
  padding: 11px 18px;
  min-height: 42px;
}

/* ── Empty/Notfall ──────────────────────────────────────── */
.rf-empty {
  background: var(--rf-bg-card);
  border: 1px solid var(--rf-border);
  color: var(--rf-white);
  border-radius: var(--rf-radius);
  padding: 64px 32px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.rf-empty h2 {
  font-family: var(--rf-font-heading);
  font-size: 1.7rem;
  font-weight: 400;
  margin: 0 0 14px;
  color: var(--rf-white);
}
.rf-empty p {
  color: var(--rf-muted-2);
  margin: 0 auto 24px;
  max-width: 460px;
  line-height: 1.6;
}

/* ── Restart ──────────────────────────────────────────────── */
.rf-restart {
  text-align: center;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.rf-restart__btn {
  background: transparent;
  border: 1px solid var(--rf-gold);
  color: var(--rf-gold);
  font-family: var(--rf-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: var(--rf-radius);
  cursor: pointer;
  transition: background var(--rf-trans);
  min-height: 44px;
}
.rf-restart__btn:hover { background: rgba(200, 169, 106, 0.1); }

/* ── Footer ───────────────────────────────────────────────── */
.rf-foot {
  background: var(--rf-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--rf-muted);
  padding: 48px 32px 36px;
  text-align: center;
  font-family: var(--rf-font-body);
  font-size: 0.86rem;
  line-height: 1.7;
}
.rf-foot__text { max-width: 600px; margin: 0 auto 16px; }
.rf-foot__legal a {
  color: var(--rf-muted);
  text-decoration: none;
  transition: color var(--rf-trans);
}
.rf-foot__legal a:hover { color: var(--rf-gold); }

/* ========================================================================== 
   STAGING REWORK · aktuelles Auszeit-CI (2026-08-03)
   Shell: Startseite V4 · Finder: Paper/Ink/Gold · Ergebnisse priorisiert
   ========================================================================== */
body.rf-body {
  --rf-bg: #F5F3EF;
  --rf-bg-card: #FFFFFF;
  --rf-bg-card-2: #FFFFFF;
  --rf-gold: #C9A84C;
  --rf-gold-warm: #B0913B;
  --rf-gold-dim: rgba(201,168,76,.32);
  --rf-gold-glow: rgba(201,168,76,.18);
  --rf-white: #1A1A1A;
  --rf-muted: #6E6A60;
  --rf-muted-2: #514E47;
  --rf-border: rgba(26,26,26,.14);
  --rf-border-hover: rgba(26,26,26,.34);
  --rf-radius: 0;
  --rf-radius-sm: 0;
  --rf-font-body: var(--body);
  --rf-font-heading: var(--display);
  display: block;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

.rf-body header { flex: none; }
.rf-body footer { margin-top: 0; }
.rf-body .wa-float { bottom: 22px; }

/* Hero: aktueller Reisemanufaktur-Auftritt, links geführt und kompakter. */
.rf-hero {
  min-height: 590px;
  padding: 96px 0 88px;
  justify-content: flex-start;
  text-align: left;
  background: var(--ink);
  border-bottom: 0;
}
.rf-hero__bg { object-position: center 55%; }
.rf-hero::after {
  background:
    linear-gradient(90deg, rgba(26,26,26,.96) 0%, rgba(26,26,26,.84) 38%, rgba(26,26,26,.34) 68%, rgba(26,26,26,.18) 100%),
    linear-gradient(180deg, rgba(26,26,26,.08), rgba(26,26,26,.28));
}
.rf-hero__inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
.rf-hero__inner .rf-hero__eyebrow {
  color: var(--gold);
  margin: 0 0 18px;
  text-shadow: none;
}
.rf-hero h1.rf-hero__title {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--paper);
  font-size: clamp(44px, 5.8vw, 68px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.015em;
  text-shadow: none;
}
.rf-hero h1.rf-hero__title em { color: var(--gold); font-style: italic; }
.rf-hero p.rf-hero__intro {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(245,243,239,.82);
  font-size: 18px;
  line-height: 1.6;
  text-shadow: none;
}
.rf-hero__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
a.rf-hero__cta {
  width: auto;
  max-width: none;
  min-height: 61px;
  padding: 17px 38px;
  border-radius: 0;
  background: var(--gold);
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}
.rf-hero__cta:hover { background: var(--gold-deep); box-shadow: 0 8px 26px rgba(201,168,76,.34); }
.rf-hero__time { color: rgba(245,243,239,.68); font-size: 13px; letter-spacing: .02em; }

/* Persönlicher Kompetenznachweis zwischen Hero und Tool. */
.rf-proof { background: #fff; border-bottom: 1px solid var(--line); }
.rf-proof__inner { min-height: 112px; display: flex; align-items: center; gap: 24px; }
.rf-proof__faces { display: flex; flex: 0 0 auto; padding-left: 8px; }
.rf-proof__faces img {
  width: 48px; height: 48px; object-fit: cover; border-radius: 50%;
  border: 3px solid #fff; margin-left: -8px;
}
.rf-proof__inner > p { margin: 0; color: var(--muted); font-size: 14px; }
.rf-proof__inner > p:not(.rf-proof__rating) { display: flex; flex-direction: column; }
.rf-proof__inner strong { color: var(--ink); }
.rf-proof__rating { margin-left: auto !important; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.rf-proof__rating > span { color: var(--gold-deep); letter-spacing: .08em; }

/* Fragenstrecke: helle, editorial geführte Fläche. */
.rf-app {
  padding: 72px 24px 88px;
  background: var(--paper);
  color: var(--ink);
  scroll-margin-top: 104px;
}
.rf-shell { max-width: 1100px; scroll-margin-top: 112px; }
.rf-shell--flow { min-height: 620px; justify-content: center; }
.rf-loading { color: var(--muted); }
.rf-progress {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto 42px;
}
.rf-progress__meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 32px; }
.rf-progress__label { color: var(--gold-deep); font-size: 11px; letter-spacing: .18em; order: 2; }
.rf-progress__back {
  order: 1; border: 0; background: transparent; color: var(--muted); padding: 5px 0;
  font: 600 13px/1.2 var(--body); cursor: pointer; border-bottom: 1px solid transparent;
}
.rf-progress__back:hover { color: var(--ink); border-bottom-color: var(--gold); }
.rf-progress__bar { height: 2px; background: rgba(26,26,26,.12); border-radius: 0; }
.rf-progress__fill { background: var(--gold); border-radius: 0; }
.rf-question { max-width: 920px; padding: 0; text-align: left; }
.rf-question__headline {
  max-width: 800px; margin: 0 0 10px; color: var(--ink);
  font-size: clamp(32px, 4vw, 44px); font-weight: 500; line-height: 1.14; letter-spacing: -.01em;
}
.rf-question__subtext { max-width: 660px; margin: 0 0 34px; color: var(--muted); font-size: 15px; }
.rf-options {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px; max-width: none; margin: 0;
}
.rf-option {
  width: 100%; min-width: 0; min-height: 78px; padding: 17px 20px;
  border: 1px solid var(--line); border-radius: 0; background: #fff; color: var(--ink);
  align-items: flex-start; text-align: left; gap: 3px; box-shadow: none;
}
.rf-option:hover { border-color: var(--gold); background: var(--paper-deep); transform: none; }
.rf-option.is-selected { padding: 16px 19px; border: 2px solid var(--gold); color: var(--ink); box-shadow: none; }
.rf-option__label { font-weight: 600; }
.rf-option__hint { color: var(--muted); font-size: 12px; }
.rf-option.is-selected .rf-option__hint { color: var(--muted); }

/* Ergebnis-Einstieg und Profil. */
.rf-results__head { max-width: 850px; margin: 0 0 28px; text-align: left; }
.rf-results__eyebrow { color: var(--gold-deep); margin-bottom: 14px; }
.rf-results__title { color: var(--ink); font-size: clamp(36px,5vw,56px); font-weight: 500; line-height: 1.08; }
.rf-results__sub { max-width: 670px; margin: 0; color: var(--muted); font-size: 16px; }
.rf-profile {
  margin: 0 0 36px; padding: 22px 24px; background: #fff; border: 1px solid var(--line);
}
.rf-profile__label { margin: 0 0 12px; color: var(--gold-deep); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.rf-profile__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.rf-profile__chip {
  display: inline-flex; align-items: baseline; gap: 7px; padding: 8px 13px;
  border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: var(--paper);
}
.rf-profile__chip small { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.rf-profile__chip strong { font-size: 12px; font-weight: 600; }

/* Drei priorisierte Reedereien; weitere Alternativen erst auf Wunsch. */
.rf-red-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-bottom: 40px; }
.rf-red-card {
  background: #fff; border: 1px solid var(--line); border-radius: 0;
  color: var(--ink); box-shadow: none; scroll-margin-top: 116px;
}
.rf-red-card:hover { border-color: rgba(26,26,26,.28); }
.rf-red-card.is-open { grid-column: 1 / -1; border-color: var(--gold); box-shadow: 0 14px 38px rgba(26,26,26,.10); }
.rf-red-card--featured { grid-column: 1 / -1; }
.rf-red-card__hero { height: 225px; min-height: 0; max-height: none; background: var(--ink); }
.rf-red-card--featured .rf-red-card__hero { height: 360px; }
.rf-red-card__hero-overlay { background: linear-gradient(to top, rgba(26,26,26,.94) 0%, rgba(26,26,26,.48) 45%, rgba(26,26,26,.08) 76%); }
.rf-red-card__hero-body { bottom: 24px; left: 26px; right: 80px; }
.rf-red-card__rank { display: block; margin: 0 0 7px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.rf-red-card__name { color: var(--paper); font-size: clamp(27px,3.3vw,42px); font-weight: 500; }
.rf-red-card:not(.rf-red-card--featured) .rf-red-card__name { font-size: clamp(24px,2.6vw,32px); }
.rf-red-card__sub { color: var(--gold); margin: 6px 0 0; font-size: 10px; }
.rf-red-card__chevron { width: 42px; height: 42px; bottom: 24px; right: 24px; border-radius: 50%; background: rgba(26,26,26,.72); }
.rf-red-card.is-open .rf-red-card__chevron { color: var(--ink); background: var(--gold); }
.rf-red-card:not(.is-open) .rf-red-card__body { display: none; }
.rf-red-card__body { padding: 26px 28px 28px; background: #fff; border-top: 0; }
.rf-red-card__begruendung { max-width: 760px; margin: 0 0 20px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.rf-red-card__ctas { gap: 10px; }
.rf-red-card__schiffe {
  grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px;
  padding: 24px 28px 30px; background: var(--paper-deep); border-top: 1px solid var(--line);
}
.rf-red-card__rest { grid-column: 1 / -1; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.rf-red-card__more { grid-column: 1 / -1; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: #fff; }
.rf-red-card__more:hover { border-color: var(--gold); color: var(--ink); background: var(--paper); }
.rf-red-grid__extra { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.rf-red-grid__extra[hidden] { display: none; }
.rf-results__more {
  grid-column: 1 / -1; min-height: 52px; padding: 14px 22px; cursor: pointer;
  border: 1px solid var(--ink); background: transparent; color: var(--ink);
  font: 600 14px/1.2 var(--body);
}
.rf-results__more:hover { background: var(--ink); color: var(--paper); }

/* Schiffe: kompakte Vergleichskarten statt langer Einzellisten. */
.rf-red-card__schiffe .rf-ship,
.rf-red-card__rest .rf-ship { display: block; background: #fff; border: 1px solid var(--line); border-radius: 0; color: var(--ink); }
.rf-ship:hover { border-color: var(--gold); transform: none; }
.rf-ship__media { aspect-ratio: 16 / 7; min-height: 0; }
.rf-ship__body { padding: 18px 20px 20px; gap: 7px; }
.rf-ship__name { color: var(--ink); font-size: 22px; font-weight: 500; }
.rf-ship__satz { color: var(--muted); font-size: 14px; line-height: 1.5; margin: 2px 0 4px; }
.rf-ship__meta { color: var(--muted); font-size: 11px; letter-spacing: .02em; }
.rf-ship__preis { color: var(--ink); font-size: 16px; }
.rf-ship__preis strong { color: var(--gold-deep); }
.rf-ship__textlink { color: var(--ink); border-bottom-color: var(--gold); }
.rf-btn { border-radius: 0; font-size: 14px; }
.rf-btn--primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.rf-btn--primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); box-shadow: none; }
.rf-btn--outline,.rf-btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.rf-btn--outline:hover,.rf-btn--ghost:hover { border-color: var(--ink); color: var(--paper); background: var(--ink); }
.rf-empty { background: #fff; border: 1px solid var(--line); border-radius: 0; color: var(--ink); }
.rf-empty h2 { color: var(--ink); font-weight: 500; }
.rf-empty p { color: var(--muted); }
.rf-restart { border-top-color: var(--line); }
.rf-restart__btn { border: 0; border-bottom: 1px solid var(--gold); border-radius: 0; color: var(--ink); padding: 8px 0; }
.rf-restart__btn:hover { background: transparent; color: var(--gold-deep); }

@media (max-width: 820px) {
  .rf-hero { min-height: 520px; }
  .rf-proof__inner { flex-wrap: wrap; padding-top: 20px; padding-bottom: 20px; gap: 14px 18px; }
  .rf-proof__rating { margin-left: 72px !important; }
}

@media (max-width: 720px) {
  .rf-body .wa-float { bottom: 16px; }
  .rf-hero { min-height: 440px; padding: 54px 0 50px; }
  .rf-hero__bg { object-position: 62% center; }
  .rf-hero::after { background: linear-gradient(90deg, rgba(26,26,26,.94), rgba(26,26,26,.68) 68%, rgba(26,26,26,.38)); }
  .rf-hero__inner { padding-left: 20px; padding-right: 20px; }
  .rf-hero h1.rf-hero__title { font-size: clamp(35px,10vw,44px); max-width: 10.5ch; }
  .rf-hero p.rf-hero__intro { font-size: 15px; line-height: 1.55; max-width: 32ch; margin-bottom: 24px; }
  .rf-hero__actions { gap: 12px; }
  a.rf-hero__cta { width: 100%; min-height: 54px; padding: 14px 24px; justify-content: center; text-align: center; }
  .rf-hero__time { width: 100%; text-align: center; }
  .rf-proof__inner { padding-left: 18px; padding-right: 18px; }
  .rf-proof__faces img { width: 42px; height: 42px; }
  .rf-proof__inner > p:not(.rf-proof__rating) { flex: 1 1 210px; font-size: 12px; }
  .rf-proof__rating { width: 100%; margin-left: 0 !important; font-size: 12px !important; }
  .rf-app { padding: 48px 16px 64px; scroll-margin-top: 78px; }
  .rf-shell { scroll-margin-top: 86px; }
  .rf-shell--flow { min-height: 580px; justify-content: flex-start; }
  .rf-progress { margin-bottom: 30px; }
  .rf-question__headline { font-size: 30px; line-height: 1.16; }
  .rf-question__subtext { margin-bottom: 24px; font-size: 14px; }
  .rf-options { grid-template-columns: 1fr; gap: 9px; }
  .rf-option { min-height: 66px; padding: 14px 16px; }
  .rf-option.is-selected { padding: 13px 15px; }
  .rf-results__title { font-size: 38px; }
  .rf-profile { padding: 18px 16px; }
  .rf-profile__chips { gap: 6px; }
  .rf-profile__chip { padding: 7px 10px; }
  .rf-red-grid,.rf-red-grid__extra { grid-template-columns: 1fr; gap: 14px; }
  .rf-red-card,.rf-red-card.is-open,.rf-red-card--featured { grid-column: auto; }
  .rf-red-card__hero,.rf-red-card--featured .rf-red-card__hero { height: 190px; }
  .rf-red-card--featured .rf-red-card__hero { height: 235px; }
  .rf-red-card__hero-body { left: 18px; right: 68px; bottom: 17px; }
  .rf-red-card__chevron { right: 16px; bottom: 16px; width: 38px; height: 38px; }
  .rf-red-card__name { font-size: 27px; }
  .rf-red-card__body { padding: 20px 18px 22px; }
  .rf-red-card__begruendung { font-size: 14px; margin-bottom: 17px; }
  .rf-red-card__ctas .rf-btn { width: 100%; }
  .rf-red-card__schiffe,.rf-red-card__rest { grid-template-columns: 1fr; padding: 16px; gap: 12px; }
  .rf-red-card__rest { padding: 0; }
  .rf-ship__media { aspect-ratio: 16 / 7; }
  .rf-ship__body { padding: 16px; }
  .rf-ship__satz { font-size: 13px; }
}
