/* ============================================================
   Partnervermittlung — Homepage
   Boutique, traditional, trust-driven
   ============================================================ */

:root {
  --ivory: #FAF7F2;
  --ivory-2: #F4EFE6;
  --beige: #E8DED2;
  --beige-soft: #EFE7DB;
  --charcoal: #2F2F2F;
  --charcoal-soft: #4A4744;
  --muted: #6B6661;
  --border: #D8D3CC;
  --border-soft: #E5DFD6;
  --accent: #8A3A3A;
  --accent-hover: #6F2D2D;
  --accent-tint: rgba(138, 58, 58, 0.08);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.04);

  --r-card: 12px;
  --r-btn: 8px;
  --r-img: 12px;
  --r-input: 8px;

  --content-max: 1200px;
  --read-max: 760px;

  --h1: clamp(34px, 4.4vw, 60px);
  --h2: clamp(28px, 2.6vw, 40px);
  --h3: 26px;
  --body: 18px;
  --small: 15px;

  --serif: "Fraunces", "Source Serif 4", Georgia, serif;
  --sans: "Inter", "Source Sans 3", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  --script: "Caveat", "Brush Script MT", "Snell Roundhand", cursive;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--h1); line-height: 1.12; }
h2 { font-size: var(--h2); line-height: 1.18; }
h3 { font-size: var(--h3); line-height: 1.28; }

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   Layout
   ============================================================ */
.wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 32px;
}
.read { max-width: var(--read-max); }

section {
  padding: 96px 0;
  border-top: 1px solid var(--border-soft);
}
section:first-of-type { border-top: none; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: inline-block;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .lead {
  color: var(--charcoal-soft);
  font-size: 19px;
  line-height: 1.6;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-btn);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--charcoal); background: #fff; }
.btn-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-link:hover { color: var(--accent-hover); }
.btn-link .arr { transition: transform 160ms ease; }
.btn-link:hover .arr { transform: translateX(3px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ivory);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: grid; place-items: center;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}
.logo-name { line-height: 1.1; }
.logo-name small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

nav.primary {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  flex: 0 1 auto;
  min-width: 0;
}
nav.primary a {
  color: var(--charcoal-soft);
  position: relative;
  padding: 6px 0;
  transition: color 140ms ease;
  white-space: nowrap;
}
nav.primary a:hover { color: var(--accent); }
nav.primary a.active { color: var(--charcoal); }
nav.primary a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-phone {
  font-size: 15px;
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 140ms ease;
}
.header-phone:hover { color: var(--accent); }
.header-phone strong { font-weight: 600; }

/* Hamburger-Button — nur mobil sichtbar (Anzeige in @media ≤980) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: var(--r-btn);
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--charcoal);
  transition: transform 200ms ease, opacity 160ms ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* WhatsApp-Eintrag + Menü-CTA erscheinen nur im aufgeklappten Mobil-Menü */
.nav-contact { display: none; }
.nav-cta { display: none; }

/* ============================================================
   Breadcrumb (sub-pages)
   ============================================================ */
.breadcrumb {
  background: var(--ivory);
  border-bottom: 1px solid var(--border-soft);
}
.breadcrumb .wrap { padding-top: 14px; padding-bottom: 14px; }
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after {
  content: "›";
  color: var(--border);
}
.breadcrumb a { color: var(--muted); transition: color 140ms ease; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current="page"] { color: var(--charcoal-soft); font-weight: 500; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 80px 0 96px;
  border-top: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 10px;
}
.hero .supporting {
  font-size: 19px;
  color: var(--charcoal-soft);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 540px;
}
.hero .trust-line {
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
  margin: 28px 0 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  border-radius: var(--r-img);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--beige);
}

/* Hero-Slider — slajdy leżą jeden na drugim w kontenerze 4:5 (.hero-image).
   Zmiana slajdu = crossfade opacity: kompozytowane przez GPU, bez reflow.
   Bez JS widoczny zostaje slajd 1 (.is-active nadane w PHP) — reszta niewidoczna
   i nigdy nie pobrana (nie mają src). */
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
}
.hero-slide.is-active { opacity: 1; }
/* Jedno zdjęcie = brak slidera; zabezpiecza też przed niewystartowanym JS. */
.hero-slider.is-single .hero-slide { opacity: 1; }

.hero-dots {
  position: absolute;
  bottom: 20px; right: 20px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero-dots[hidden] { display: none; }
.hero-dot {
  width: 10px; height: 10px;
  padding: 0;
  border: 1px solid rgba(47, 47, 47, 0.25);
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.6);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}
.hero-dot:hover { background: rgba(250, 247, 242, 0.9); }
.hero-dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}
.hero-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Ruch jest dekoracją — przy prefers-reduced-motion crossfade znika,
   a app.js dodatkowo nie uruchamia autoplay. */
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition-duration: 1ms; }
  .hero-dot { transition: none; }
}

.hero-image .badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: var(--r-input);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--charcoal-soft);
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-soft);
}
.hero-image .badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ============================================================
   Placeholder image — striped + monospace caption
   ============================================================ */
.img-ph {
  background:
    repeating-linear-gradient(135deg,
      rgba(138, 58, 58, 0.05) 0,
      rgba(138, 58, 58, 0.05) 1px,
      transparent 1px,
      transparent 14px),
    linear-gradient(180deg, var(--beige-soft) 0%, var(--beige) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-align: center;
  padding: 24px;
  border-radius: var(--r-img);
}
.img-ph .ph-inner {
  border: 1px dashed rgba(107, 102, 97, 0.4);
  padding: 16px 20px;
  border-radius: var(--r-input);
  background: rgba(250, 247, 242, 0.45);
  max-width: 80%;
}
.img-ph .ph-inner b { color: var(--charcoal-soft); font-weight: 600; display: block; margin-bottom: 4px; }

/* Realne zdjęcia wstawiane w miejsce placeholderów (.img-ph) — wypełniają kontener
   z zachowaniem proporcji (aspect-ratio kontenera) i są przycinane (cover). */
.about-portrait,
.reassurance-media { overflow: hidden; }
.reassurance-media { border-radius: var(--r-img); }
.hero-image > img,
.about-portrait > img,
.reassurance-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   Trust strip
   ============================================================ */
.trust-strip {
  background: var(--ivory);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 36px 0;
}
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid var(--border-soft);
  padding-left: 24px;
}
.trust-item:first-child { border-left: none; padding-left: 0; }
.trust-item .num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}
.trust-item .label {
  font-size: 14px;
  color: var(--charcoal-soft);
  letter-spacing: 0.01em;
}

/* ============================================================
   About
   ============================================================ */
.about {
  background: var(--ivory);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-portrait {
  aspect-ratio: 5/6;
  border-radius: var(--r-img);
}
/* Wariant bez portretu (strona główna): jedna kolumna, tekst szerszy, ale
   ograniczony do ~68 znaków w wierszu, żeby nie zrobiła się ściana tekstu.
   Landingi krajów zostają dwukolumnowe — stąd modyfikator, nie zmiana .about-grid. */
.about-grid--solo {
  grid-template-columns: 1fr;
  max-width: 760px;
}
.about-grid--solo .about-body p { max-width: none; }
.about-grid--solo .about-signature { margin-top: 40px; }
.about-body p {
  color: var(--charcoal-soft);
  margin-bottom: 20px;
  max-width: 540px;
}
.about-body p:last-of-type { margin-bottom: 28px; }
.about-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-signature .name {
  font-family: var(--serif);
  font-size: 20px;
}
.about-signature .role {
  font-size: 14px;
  color: var(--muted);
}
.sig-mark {
  font-family: var(--script);
  font-size: 38px;
  color: var(--accent);
  line-height: 1;
}

/* ============================================================
   Country navigation
   ============================================================ */
.countries {
  background: #fff;
}
.country-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.country-card {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-card);
  padding: 24px 20px 20px;
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 300px;
}
.country-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent);
}
.country-card.featured {
  border-left: 3px solid var(--accent);
  padding-left: 22px;
}
.country-card .flag {
  width: 48px;
  height: 32px;
  border-radius: 3px;
  border: 1px solid var(--border-soft);
  display: block;
  overflow: hidden;
}
.country-desc {
  font-size: 13px;
  color: var(--charcoal-soft);
  margin: 0;
  line-height: 1.5;
}
.country-card .featured-tag {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-tint);
  padding: 4px 9px;
  border-radius: 20px;
}
.country-card h3 {
  font-size: 19px;
  line-height: 1.25;
  margin-top: auto;
}
.country-card .meta {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.country-card .arr-icon {
  color: var(--accent);
  font-size: 18px;
  transition: transform 200ms ease;
}
.country-card:hover .arr-icon { transform: translateX(4px); }

/* ============================================================
   Profile gallery
   ============================================================ */
.profiles {
  background: var(--ivory);
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.profile-card {
  display: block;
  color: inherit;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: box-shadow 240ms ease, transform 240ms ease, border-color 240ms ease;
}
.profile-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
  border-color: var(--accent);
}
.profile-card .photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 0;
  overflow: hidden;
  background: var(--ivory);
}
.profile-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-card .profile-id {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 20px;
}
.profile-card .body {
  padding: 18px 20px 22px;
}
.profile-card .name-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.profile-card .name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--charcoal);
}
.profile-card .age {
  font-size: 14px;
  color: var(--muted);
}
.profile-card .location {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.profile-card .bio {
  font-size: 14px;
  color: var(--charcoal-soft);
  line-height: 1.55;
  margin-bottom: 16px;
  min-height: 64px;
}
.profile-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.profile-card .tag {
  font-size: 12px;
  background: var(--ivory-2);
  border: 1px solid var(--border-soft);
  padding: 3px 10px;
  border-radius: 20px;
  color: var(--charcoal-soft);
}
.profile-card .verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.profile-card .card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.profile-card .profile-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.profile-card .profile-more .arr { transition: transform 200ms ease; }
.profile-card:hover .profile-more .arr { transform: translateX(4px); }

.gallery-foot {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
}
.gallery-foot .small-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* Kontextlinks zu anderen Ländern unter dem Galerie-Intro */
.country-jump {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}
.country-jump a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 140ms ease;
}
.country-jump a:hover { border-bottom-color: var(--accent); }

/* Paginierung des Tschechien-Katalogs (SEO: /seite/N/) */
.pagination {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.pagination a,
.pagination .pg-prev,
.pagination .pg-num,
.pagination .pg-next {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-btn);
  background: #fff;
  font-size: 15px;
  color: var(--charcoal-soft);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}
.pagination a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pagination .pg-num.is-current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
  pointer-events: none;
}
.pagination .pg-prev,
.pagination .pg-next { font-weight: 600; }
.pagination .pg-prev.is-disabled {
  color: var(--muted);
  background: var(--ivory-2);
  opacity: 0.55;
  pointer-events: none;
}
.pagination .pg-ellipsis {
  min-width: auto;
  height: auto;
  padding: 0 4px;
  border: none;
  background: none;
  color: var(--muted);
}

/* Schlanker Kopf für Katalog-Seiten 2+ (/seite/N/) */
.catalog-head {
  padding: 56px 0 8px;
  background: var(--ivory);
}
.catalog-head h1 {
  margin-top: 10px;
  font-size: clamp(28px, 3vw, 40px);
}
.catalog-head .supporting {
  margin-top: 14px;
  max-width: var(--read-max);
  color: var(--charcoal-soft);
  font-size: 17px;
  line-height: 1.6;
}
.catalog-head .catalog-back {
  margin-top: 16px;
  font-size: 14px;
}
.catalog-head .catalog-back a {
  color: var(--accent);
  font-weight: 600;
}
.catalog-head .catalog-back a:hover { color: var(--accent-hover); }

/* ============================================================
   Process
   ============================================================ */
.process {
  background: var(--beige-soft);
}
.process-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.process-head .lead {
  color: var(--charcoal-soft);
  font-size: 18px;
  line-height: 1.6;
  margin-top: 16px;
}
.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-card {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  border-top: 3px solid var(--accent);
  border-radius: var(--r-card);
  padding: 36px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}
.process-card .step-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}
.process-card h3 {
  font-size: 21px;
  line-height: 1.3;
}
.process-card p {
  font-size: 15px;
  color: var(--charcoal-soft);
  line-height: 1.6;
}
.process-cta {
  margin-top: 40px;
  background: var(--accent-tint);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-card);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.process-cta span {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--charcoal);
}

/* ============================================================
   Audience reassurance
   ============================================================ */
.reassurance {
  background: var(--ivory);
}
.reassurance-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.reassurance-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.reassurance-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
}
.reassurance-list li:last-child { border-bottom: none; padding-bottom: 0; }
.reassurance-list .mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 16px;
}
.reassurance-list strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}
.reassurance-list span.txt {
  font-size: 15px;
  color: var(--charcoal-soft);
  line-height: 1.55;
}

/* ============================================================
   Why Czech Republic
   ============================================================ */
.why-cz {
  background: var(--charcoal);
  color: var(--ivory);
  border-top: none;
}
.why-cz h2, .why-cz h3 { color: var(--ivory); }
.why-cz .eyebrow { color: #D9A89A; }
.why-cz p { color: rgba(250, 247, 242, 0.78); }
.why-cz .why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.why-cz .pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.45;
  color: var(--ivory);
  margin: 0 0 32px;
  padding-left: 20px;
  border-left: 2px solid #D9A89A;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-point {
  padding: 24px 0;
  border-bottom: 1px solid rgba(216, 211, 204, 0.18);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}
.why-point:last-child { border-bottom: none; }
.why-point .num {
  font-family: var(--serif);
  font-size: 32px;
  color: #D9A89A;
}
.why-point h4 {
  font-size: 19px;
  margin-bottom: 6px;
  color: var(--ivory);
}
.why-point p {
  font-size: 15px;
  line-height: 1.55;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--ivory);
}
.faq-list {
  border-top: 1px solid var(--border);
  max-width: 900px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 21px;
  color: var(--charcoal);
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: color 160ms ease;
}
.faq-q:hover { color: var(--accent); }
.faq-toggle {
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
  font-family: var(--serif);
  font-weight: 300;
  width: 28px;
  text-align: center;
  transition: transform 220ms ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease, padding 320ms ease;
  color: var(--charcoal-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 760px;
}
.faq-item.open .faq-a {
  max-height: 1000px;
  padding: 0 0 28px;
}

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta {
  background: var(--beige);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.cta-grid h2 { margin-bottom: 24px; }
.cta-grid > div > p {
  color: var(--charcoal-soft);
  margin-bottom: 24px;
  max-width: 520px;
}
.contact-block {
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-card);
  padding: 32px;
}
.contact-block h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.contact-block .sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.field label {
  font-size: 14px;
  color: var(--charcoal-soft);
  letter-spacing: 0.01em;
  font-weight: 500;
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 16px;
  padding: 12px 14px;
  border-radius: var(--r-input);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--charcoal);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.field textarea { min-height: 96px; resize: vertical; }
.field.error input, .field.error textarea, .field.error select {
  border-color: var(--accent);
}
.field .err-msg {
  font-size: 12px;
  color: var(--accent);
  display: none;
}
.field.error .err-msg { display: block; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 20px;
  line-height: 1.5;
}
.consent input { margin-top: 3px; }
.form-actions { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px 16px; }
.form-actions .small {
  font-size: 12px;
  color: var(--muted);
}
.form-success {
  background: var(--accent-tint);
  border: 1px solid var(--accent);
  padding: 16px;
  border-radius: var(--r-input);
  font-size: 14px;
  color: var(--accent);
  display: none;
  margin-bottom: 16px;
}
.form-success.show { display: block; }

.contact-link {
  color: var(--charcoal);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  transition: color 140ms ease, border-color 140ms ease;
}
.contact-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.contact-aside {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}
.contact-aside .row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  color: var(--charcoal-soft);
}
.contact-aside .row span:first-child {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(250, 247, 242, 0.7);
  padding: 72px 0 32px;
  font-size: 14px;
}
.site-footer a { color: rgba(250, 247, 242, 0.8); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col p {
  color: rgba(250, 247, 242, 0.7);
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-brand .logo { color: var(--ivory); margin-bottom: 16px; }
.footer-brand .logo small { color: rgba(250, 247, 242, 0.5); }
.footer-brand .logo-mark { border-color: #D9A89A; color: #D9A89A; }
.footer-bottom {
  border-top: 1px solid rgba(216, 211, 204, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(250, 247, 242, 0.5);
}
.footer-bottom .legal-links {
  display: flex; gap: 20px;
}

/* ============================================================
   Full-bleed hero variant
   ============================================================ */
.hero.full-bleed {
  padding: 0;
  position: relative;
}
.hero.full-bleed .hero-grid {
  display: block;
  padding: 0;
}
.hero.full-bleed .hero-image {
  aspect-ratio: auto;
  height: 640px;
  border-radius: 0;
  width: 100%;
}
.hero.full-bleed .hero-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  padding: 56px;
  max-width: 640px;
  width: calc(100% - 64px);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
}

/* ============================================================
   Tweaks panel
   ============================================================ */
.tweaks-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--ivory);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: var(--shadow-card);
  font-family: var(--mono);
  font-size: 18px;
}
.tweaks-fab.visible { display: flex; }

.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  z-index: 101;
  font-family: var(--sans);
  font-size: 14px;
  display: none;
  flex-direction: column;
  max-height: 80vh;
  overflow: hidden;
}
.tweaks-panel.open { display: flex; }
.tweaks-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-soft);
}
.tweaks-head h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tweaks-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--muted);
  line-height: 1;
}
.tweaks-body {
  padding: 16px 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tw-section { display: flex; flex-direction: column; gap: 8px; }
.tw-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.tw-radio {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.tw-radio button {
  flex: 1;
  background: none;
  border: none;
  padding: 8px 10px;
  font-size: 12px;
  cursor: pointer;
  color: var(--charcoal-soft);
  font-family: var(--sans);
  border-right: 1px solid var(--border-soft);
}
.tw-radio button:last-child { border-right: none; }
.tw-radio button.active {
  background: var(--charcoal);
  color: var(--ivory);
}
.tw-swatches { display: flex; gap: 8px; }
.tw-swatch {
  flex: 1;
  height: 36px;
  border-radius: 6px;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  transition: transform 140ms ease, box-shadow 140ms ease;
}
.tw-swatch.active { box-shadow: 0 0 0 2px var(--charcoal); transform: scale(1.04); }
.tw-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.tw-toggle button {
  width: 38px; height: 22px;
  background: var(--border);
  border: none;
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  transition: background 160ms ease;
}
.tw-toggle button::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 160ms ease;
}
.tw-toggle button.on { background: var(--accent); }
.tw-toggle button.on::after { transform: translateX(16px); }

/* ============================================================
   Responsive (basic; site is desktop-first per brief)
   ============================================================ */
@media (max-width: 1080px) {
  nav.primary { gap: 18px; font-size: 14px; }
  .site-header .wrap { gap: 16px; }
  .header-phone { font-size: 14px; }
}
@media (max-width: 980px) {
  section { padding: 64px 0; }
  .hero-grid, .about-grid, .reassurance-grid, .why-grid, .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* .why-cz .why-grid ist spezifischer als .why-grid — hier matchen, sonst
     bleibt es mobil 2-spaltig und die Punkt-Texte (03/04) werden zerdrückt. */
  .why-cz .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-strip .wrap, .country-grid, .profile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .process-cards { grid-template-columns: 1fr; gap: 20px; }
  .process-cta { flex-direction: column; align-items: flex-start; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .header-phone { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Mobile-Navigation: Hamburger + aufklappendes Panel (deutlich abgesetzt) */
  .site-header .wrap { position: relative; flex-wrap: wrap; height: auto; min-height: 72px; padding-top: 12px; padding-bottom: 12px; gap: 12px 16px; }
  .logo { margin-right: auto; }
  .nav-toggle { display: inline-flex; order: 2; }
  .header-cta { order: 3; gap: 12px; }
  nav.primary {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    z-index: 60;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    box-shadow: 0 18px 44px rgba(47, 47, 47, 0.22), 0 4px 12px rgba(47, 47, 47, 0.10);
  }
  nav.primary.open {
    display: flex;
    animation: pvfMenuIn 0.18s ease-out both;
  }
  /* Abgedunkelter Seiten-Hintergrund, damit das Menü klar als Overlay lesbar ist */
  nav.primary.open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(30, 26, 22, 0.42);
    animation: pvfMenuFade 0.18s ease-out both;
  }
  nav.primary a {
    padding: 14px 4px;
    font-size: 16px;
    font-weight: 500;
    color: var(--charcoal);
    white-space: normal;
    border-bottom: 1px solid var(--border-soft);
  }
  nav.primary a:hover { color: var(--accent); }
  nav.primary > a:last-of-type:not(.nav-cta) { border-bottom: none; }
  .nav-contact { display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-weight: 600; border-bottom: none !important; }
  .nav-contact .wa-ico { color: #1E8A4C; }

  /* Bar-CTA („Termin anfragen") ausblenden, damit im schmalen Header nichts umbricht;
     stattdessen als hervorgehobener Button unten im aufgeklappten Menü.
     Selektor bewusst spezifisch (nav.primary a.nav-cta), um nav.primary a zu schlagen. */
  .header-cta .btn { display: none; }
  nav.primary a.nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 14px;
    padding: 14px 18px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--r-btn);
    font-weight: 600;
  }
  nav.primary a.nav-cta:hover { background: var(--accent-hover); color: #fff; }

  @keyframes pvfMenuIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes pvfMenuFade {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
}
@media (max-width: 580px) {
  .wrap { padding: 0 20px; }
  .trust-strip .wrap, .country-grid, .profile-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .logo-name small { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

  /* Why-CZ: Nummernspalte schmaler, Zitat kleiner auf schmalem Schirm */
  .why-point { grid-template-columns: 52px 1fr; gap: 14px; padding: 20px 0; }
  .why-point .num { font-size: 26px; }
  .why-cz .pull { font-size: 21px; padding-left: 16px; }
}

/* ============================================================
   Profil (single-dame.php) — Hero, Galerie, Steckbrief, Ausgangslinks
   ============================================================ */
.profile-hero {
  padding: 56px 0 72px;
  border-top: none;
  background: var(--ivory);
}
.profile-hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 56px;
  align-items: start;
}
.profile-hero-photo {
  position: relative;
  border-radius: var(--r-img);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--beige);
  margin: 0;
}
.profile-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-hero-photo .profile-id {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 20px;
}
.profile-hero-info { padding-top: 4px; }
.profile-hero-info h1 {
  font-size: clamp(32px, 3.6vw, 50px);
  margin-bottom: 18px;
}
.profile-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
  margin-bottom: 22px;
  color: var(--charcoal-soft);
  font-size: 17px;
}
.profile-meta-age { font-weight: 600; color: var(--charcoal); }
.profile-meta-loc {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  color: var(--muted);
}
.profile-meta-id {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.profile-tags .tag-pill {
  font-size: 13px;
  background: var(--ivory-2);
  border: 1px solid var(--border-soft);
  padding: 5px 13px;
  border-radius: 20px;
  color: var(--charcoal-soft);
}
.profile-hero-note {
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal-soft);
  background: var(--accent-tint);
  border-left: 2px solid var(--accent);
  padding: 16px 18px;
  border-radius: var(--r-input);
  margin-bottom: 28px;
}
.profile-hero-note .verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.profile-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Galerie */
.profile-gallery { padding: 64px 0; }

/* Karussell: ein Bilderrad in einer Reihe, Pfeile zum Blättern */
.profile-gallery-carousel { position: relative; }
.profile-gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.profile-gallery-track::-webkit-scrollbar { display: none; }
.profile-gallery-item {
  flex: 0 0 calc((100% - 32px) / 3); /* 3 sichtbar am Desktop, Rest scrollt */
  scroll-snap-align: start;
  margin: 0;
  border-radius: var(--r-img);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--beige);
  border: 1px solid var(--border-soft);
}
.profile-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}
.gallery-arrow:hover { background: #fff; border-color: var(--accent); color: var(--accent); }
.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }
.gallery-arrow.is-hidden { display: none; }

/* Lightbox (Popup mit vergrößertem Foto) */
.pvf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(22, 18, 18, 0.92);
}
.pvf-lightbox.open { display: flex; }
.pvf-lightbox .lb-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.55);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 140ms ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255, 255, 255, 0.28); }
.lb-close { top: 18px; right: 18px; width: 44px; height: 44px; font-size: 26px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 30px; }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }

/* Steckbrief + Text */
.profile-detail { padding: 72px 0; background: var(--beige-soft); }
.profile-detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}
.profile-text-block { margin-bottom: 36px; }
.profile-text-block:last-child { margin-bottom: 0; }
.profile-text-block h2 {
  font-size: 26px;
  margin-bottom: 14px;
}
.profile-text-block p {
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: var(--read-max);
}
.profile-text-block p:last-child { margin-bottom: 0; }

.profile-aside {
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.steckbrief {
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-card);
  padding: 28px;
}
.steckbrief-title {
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.steckbrief dl { margin: 0; }
.steckbrief-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--border-soft);
}
.steckbrief-row:first-child { border-top: none; padding-top: 0; }
.steckbrief-row dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 2px;
}
.steckbrief-row dd {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 15px;
}

.profile-cta-card {
  background: var(--ivory);
  border: 1px solid var(--accent);
  border-radius: var(--r-card);
  padding: 28px;
}
.profile-cta-card h3 { font-size: 21px; margin-bottom: 8px; }
.profile-cta-card > p {
  font-size: 15px;
  color: var(--charcoal-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}
.profile-cta-card .btn { width: 100%; justify-content: center; }
.profile-cta-nap {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.profile-cta-nap .row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  color: var(--charcoal-soft);
}
.profile-cta-nap .row span:first-child {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}

/* Ausgangslinks (§4.4) */
.profile-exits { padding: 56px 0; background: var(--ivory); }
.profile-exits-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  font-size: 15px;
}
.profile-exits-links a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 140ms ease;
}
.profile-exits-links a:hover { border-bottom-color: var(--accent); }

@media (max-width: 980px) {
  .profile-hero-grid, .profile-detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .profile-hero-photo { max-width: 440px; }
  .profile-aside { position: static; }
  .profile-gallery-item { flex-basis: calc((100% - 16px) / 2.2); } /* ~2 sichtbar + Anschnitt */
}
@media (max-width: 580px) {
  .profile-gallery-item { flex-basis: 78%; } /* 1 groß + Anschnitt des nächsten */
  .steckbrief-row { grid-template-columns: 100px 1fr; gap: 12px; }
  .profile-exits-links { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================================
   Damen-Galerie (page-damen-galerie.php)
   ============================================================ */
.galerie-hero {
  padding: 48px 0 32px;
  border-top: none;
  background: var(--ivory);
}
.galerie-hero h1 { margin: 8px 0 18px; }
.galerie-hero .supporting {
  font-size: 18px;
  color: var(--charcoal-soft);
  line-height: 1.6;
  max-width: var(--read-max);
  margin-bottom: 24px;
}
.galerie-hero-cta { margin-top: 8px; }

.galerie-catalog {
  padding: 24px 0 80px;
  border-top: none;
  background: var(--ivory);
}
.galerie-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  padding: 20px 0 22px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 20px;
}
.filter-group { display: flex; flex-direction: column; gap: 10px; }
.filter-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  font-size: 14px;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--charcoal-soft);
  white-space: nowrap;
  transition: border-color 140ms ease, color 140ms ease, background 140ms ease;
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip[aria-current="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
}
.filter-chip.is-empty { opacity: 0.5; }
.filter-chip.is-empty:hover { opacity: 0.75; }

/* Licznik pań w grupie (badge na chipie) */
.chip-count {
  display: inline-block;
  min-width: 18px;
  margin-left: 5px;
  padding: 1px 7px;
  border-radius: 10px;
  background: var(--ivory-2);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  vertical-align: 1px;
}
.filter-chip:hover .chip-count { background: var(--beige); }
.filter-chip[aria-current="true"] .chip-count {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* Wyróżniona grupa Alter — panowie szukają głównie po wieku (własny wiersz, na górze) */
.filter-group--alter {
  order: -1;
  flex-basis: 100%;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border-soft);
  margin-bottom: 2px;
}
.filter-group--alter .filter-chip {
  padding: 9px 16px;
  font-size: 15px;
}
.filter-hint {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-style: italic;
  color: var(--muted);
  margin-left: 4px;
}

.galerie-reset { margin: 0 0 14px; }
.galerie-reset a {
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color 140ms ease, border-color 140ms ease;
}
.galerie-reset a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.galerie-count {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

/* SEO-Sektion unter der Galerie */
.galerie-seo { background: var(--beige-soft); }
.galerie-seo-head { margin-bottom: 36px; }
.galerie-seo-head h2 { margin-top: 8px; }
.galerie-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.galerie-seo-block h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.galerie-seo-block p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal-soft);
}
.galerie-steps {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal-soft);
}
.galerie-steps strong { color: var(--charcoal); }

.galerie-cta-btn { margin-top: 28px; }
.galerie-foot-cta { padding: 56px 0; border-top: none; background: var(--ivory); }

@media (max-width: 980px) {
  .galerie-seo-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 580px) {
  .galerie-filter { gap: 14px 20px; }
  .filter-hint { display: none; }
}

/* ============================================================
   Profil — „Lady-framed" Kontakt
   single-dame.php: Inline-Anfrageformular im Aside (#anfrage) +
   Reinforcement-Band „Möchten Sie … kennenlernen?". Die Anfrage ist
   um den Namen der Dame herum gerahmt; die Agentur tritt in den Hintergrund.
   ============================================================ */

/* Inline-Anfrageformular (ersetzt die alte NAP-lastige profile-cta-card) */
.profile-anfrage {
  background: var(--ivory);
  border: 1px solid var(--accent);
  border-radius: var(--r-card);
  padding: 28px;
}
.profile-anfrage-title {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.profile-anfrage-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.profile-anfrage .field { margin-bottom: 14px; }
.profile-anfrage .consent { margin: 6px 0 18px; }

/* Vollbreite-Button-Hilfsklasse */
.btn-block { width: 100%; justify-content: center; }

/* WhatsApp-Button (Hero) — niedrigschwelliger Kanal: schreiben statt anrufen */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn-whatsapp:hover { background: #1EBE57; border-color: #1EBE57; color: #fff; }
.btn-whatsapp .wa-ico { flex: 0 0 auto; }

/* Reassurance unter den Hero-CTAs (füllt die Lücke, schiebt WhatsApp) */
.profile-hero-quickcontact {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
}

/* WhatsApp-Inline-Link (Kennenlernen-Band) */
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1E8A4C;
  font-weight: 600;
  white-space: nowrap;
}
.wa-link:hover { color: #146635; }
.wa-link .wa-ico { flex: 0 0 auto; }

/* Steckbrief in der Hauptspalte (statt im Aside) — Abstand + sinnvolle Breite,
   damit die dt/dd-Tabelle bei breiter Spalte nicht auseinanderläuft. */
.profile-text .steckbrief { margin-top: 8px; max-width: 560px; }

/* Honeypot — im DOM, aber für Mensch und AT unsichtbar */
.pvf-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Fehlermeldung — Pendant zu .form-success */
.form-error {
  background: #FBEDED;
  border: 1px solid var(--accent);
  padding: 16px;
  border-radius: var(--r-input);
  font-size: 14px;
  color: var(--accent);
  display: none;
  margin-bottom: 16px;
}
.form-error.show { display: block; }
.consent.error { color: var(--accent); }

/* Reinforcement-Band „Möchten Sie … kennenlernen?" */
.profile-kennenlernen-wrap { padding: 56px 0; }
.profile-kennenlernen {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: var(--accent-tint);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-card);
  padding: 40px 32px;
}
.profile-kennenlernen h2 {
  font-size: 26px;
  margin-bottom: 12px;
}
.profile-kennenlernen > p {
  color: var(--charcoal-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}
.profile-kennenlernen .btn-kennenlernen {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 16px;
  padding: 16px 28px;
}
.profile-kennenlernen-call {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal-soft);
}
.profile-kennenlernen-note {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 580px) {
  .profile-kennenlernen { padding: 32px 22px; }
  .profile-kennenlernen h2 { font-size: 22px; }
}

/* ---- Profil „Lady-framed" — Mobile-Feinschliff ----
   Buttons erben global white-space:nowrap; mit dynamischem Namen würden die
   CTAs („Jetzt [Name] kennenlernen" / „JETZT [NAME] KENNENLERNEN") auf schmalen
   Phones überlaufen. Hier: sauber stapeln, volle Breite, Text darf umbrechen. */
@media (max-width: 980px) {
  /* Gestapelter Hero: Foto zentrieren statt links zu kleben */
  .profile-hero-photo { margin-inline: auto; }
}
@media (max-width: 580px) {
  .profile-hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .profile-hero-ctas .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .profile-hero-quickcontact { max-width: none; }

  .profile-anfrage { padding: 22px 18px; }
  .profile-anfrage-title { font-size: 20px; }

  .profile-kennenlernen .btn-kennenlernen {
    white-space: normal;
    line-height: 1.3;
    font-size: 14px;
    letter-spacing: 0.02em;
    padding: 15px 16px;
  }
  .profile-kennenlernen-call { font-size: 14px; }
  .wa-link { white-space: normal; }

  /* Abstände straffen — weniger Leerraum zwischen den Sektionen */
  .profile-hero { padding: 28px 0 36px; }
  .profile-gallery { padding: 32px 0; }
  .profile-detail { padding: 36px 0; }
  .profile-kennenlernen-wrap { padding: 36px 0; }
  .profile-exits { padding: 36px 0; }
  .profile-related { padding-top: 8px; }
  .profile-hero-grid, .profile-detail-grid { gap: 24px; }

  /* Galerie-Karussell: engere Pfeile; Steckbrief kompakter */
  .profile-gallery-track { gap: 12px; }
  .gallery-prev { left: 4px; }
  .gallery-next { right: 4px; }
  .lb-prev, .lb-next { width: 42px; height: 42px; font-size: 24px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .profile-text .steckbrief { padding: 20px; max-width: none; }
  .profile-hero-note { font-size: 14px; padding: 14px 16px; }

  /* Überschriften im Detail nicht zu groß auf schmalem Schirm */
  .profile-text-block h2 { font-size: 22px; }
}

/* ============================================================
   Preise & Konditionen (page-preise.php)
   Baustein-Hinweis (Callout), „kostenfrei"-Liste, Abo-Vergleichstabelle,
   Preise-Osteuropa-Kontext, CTA-Aktionskarte. Baut auf den bestehenden
   Komponenten auf (process-cards, reassurance-list, galerie-seo, cta-grid).
   ============================================================ */

/* Barrierefrei ausgeblendet (Tabellen-Eckzelle) */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* „optional"-Marker im 3. Baustein-Titel */
.baustein-optional {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-tint);
  border-radius: 999px;
  padding: 3px 10px;
  vertical-align: middle;
}

/* Hinweis-Callout (Beträge im Erstgespräch) */
.callout {
  margin-top: 40px;
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-card);
  padding: 24px 28px;
  box-shadow: var(--shadow-soft);
}
.callout p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal-soft);
  max-width: 760px;
}

/* „Was ist kostenfrei" — reassurance-list als einspaltige Liste */
.kostenfrei-head { margin-bottom: 8px; }
.kostenfrei-head h2 { margin-top: 8px; }
.kostenfrei-list {
  max-width: 760px;
  gap: 20px;
}
.kostenfrei-list .mark {
  border-color: var(--accent);
  background: var(--accent-tint);
}

/* Kein Abo — Vergleichstabelle */
.kein-abo { background: var(--beige-soft); }
.kein-abo-head {
  max-width: 760px;
  margin-bottom: 44px;
}
.kein-abo-head h2 { margin: 8px 0 16px; }
.kein-abo-head .lead {
  color: var(--charcoal-soft);
  font-size: 18px;
  line-height: 1.65;
}
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--r-card);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}
.compare-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--ivory);
  font-size: 15px;
}
.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
  line-height: 1.5;
}
.compare-table thead th {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--ivory-2);
}
.compare-table tbody th {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  color: var(--charcoal);
  width: 26%;
}
.compare-table td { color: var(--charcoal-soft); }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }
/* Eigene Spalte (PV Franzensbad) akzentuieren */
.compare-table .compare-us {
  background: var(--accent-tint);
  color: var(--charcoal);
  font-weight: 500;
}
.compare-table thead .compare-us { color: var(--accent); }

/* Preise-Osteuropa-Kontext */
.galerie-seo-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--charcoal-soft);
  margin-bottom: 20px;
}

/* Final-CTA — Aktionskarte (statt Formular: Button zu /kontakt/) */
.cta-action-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-action-card .btn-block { margin-top: 4px; }
.cta-action-note {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 980px) {
  .compare-table tbody th { width: auto; }
}

/* ============================================================
   Kontakt (page-kontakt.php)
   Kompakter Intro über volle Breite, darunter Grid mit Formular +
   Kontaktdaten. Ziel: Kontakt sofort erkennbar, Formular weit oben
   (Klient schreibt zuerst). Reihenfolge mobil: Intro → Formular → NAP.
   ============================================================ */
.kontakt {
  padding: 44px 0 88px;
  background: var(--ivory);
}
/* Formular-Karte auf hellem Grund leicht abheben (sonst Ivory-auf-Ivory). */
.kontakt .contact-block {
  background: var(--ivory-2);
  box-shadow: 0 2px 10px rgba(45, 35, 25, 0.05);
}
.kontakt-intro {
  max-width: 760px;
  margin-bottom: 40px;
}
.kontakt-intro h1 { margin-bottom: 20px; }
.kontakt-intro .supporting {
  font-size: 18px;
  color: var(--charcoal-soft);
  line-height: 1.65;
  margin-bottom: 20px;
}
.kontakt-intro .trust-line {
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
  margin: 0;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  grid-template-areas: "form info";
  gap: 48px;
  align-items: start;
}
.kontakt-grid .contact-block { grid-area: form; }
.kontakt-grid .kontakt-info  { grid-area: info; }
/* Grid-Items dürfen unter ihre Content-min-width schrumpfen — sonst
   sprengt das Formular (Button in .form-actions) den Track und die
   ganze Seite scrollt horizontal auf dem Handy. */
.kontakt-grid > * { min-width: 0; }

.kontakt-info h2 { font-size: 21px; margin-bottom: 12px; }
.kontakt-info > p {
  color: var(--charcoal-soft);
  margin-bottom: 20px;
}

.kontakt-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 28px;
}
.kontakt-channels .btn { flex: 1 1 auto; justify-content: center; }
.kontakt-info .contact-aside { margin-top: 0; }

@media (max-width: 980px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "form"
      "info";
    gap: 40px;
  }
}
@media (max-width: 520px) {
  .kontakt-channels { flex-direction: column; align-items: stretch; }
}

/* ============================================================
   Generyczne strony (page.php) — legal / prose
   Impressum, AGB, Datenschutzerklärung i inne strony z edytora WP.
   Wąski, czytelny layout; styl treści z the_content().
   ============================================================ */
.legal-page { padding: 56px 0 88px; }
.legal-head { margin-bottom: 32px; }
.legal-head h1 { margin-bottom: 10px; }
.legal-updated {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.legal-article .entry-content {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal-soft);
}
.legal-article .entry-content > *:first-child { margin-top: 0; }
.legal-article .entry-content h2 {
  font-size: 26px;
  color: var(--charcoal);
  margin: 44px 0 14px;
}
.legal-article .entry-content h3 {
  font-size: 20px;
  color: var(--charcoal);
  margin: 32px 0 10px;
}
.legal-article .entry-content p { margin: 0 0 16px; }
.legal-article .entry-content ul,
.legal-article .entry-content ol {
  margin: 0 0 16px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-article .entry-content li { line-height: 1.6; }
.legal-article .entry-content a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 140ms ease;
}
.legal-article .entry-content a:hover { border-bottom-color: var(--accent); }
.legal-article .entry-content strong { color: var(--charcoal); font-weight: 600; }
.legal-article .entry-content hr {
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 36px 0;
}
.legal-article .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 15px;
}
.legal-article .entry-content th,
.legal-article .entry-content td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--border-soft);
  vertical-align: top;
}
.legal-article .entry-content th { background: var(--ivory-2); font-weight: 600; color: var(--charcoal); }
