/* ============================================================
   NOIR & OR — Design System
   Luxuriös dunkel · Gold-Akzente · editorial
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg:        #0B0908;
  --bg-soft:   #141110;
  --bg-elev:   #1C1815;
  --line:      #2A2521;
  --line-hi:   #3A3229;
  --ink:       #EDE4D3;
  --ink-mute:  #A69985;
  --ink-dim:   #6B6055;
  --gold:      #C9A961;
  --gold-hi:   #E8CD8A;
  --gold-deep: #8A6F3A;
  --accent:    #6B1F2E;
  --accent-hi: #A83349;
  --ok:        #6FAE7B;
  --warn:      #D4A054;
  --err:       #C25763;

  --radius: 2px;
  --radius-lg: 6px;

  --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-sans:    'Inter', -apple-system, system-ui, sans-serif;

  --shadow: 0 30px 80px rgba(0,0,0,.55), 0 2px 0 rgba(201,169,97,.05) inset;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-hi); }
button { font-family: inherit; }

/* ————— Typography ————— */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; letter-spacing: .01em; margin: 0; color: var(--ink); }
h1 { font-size: clamp(48px, 6vw, 88px); line-height: 1.02; letter-spacing: -.015em; }
h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.08; }
h3 { font-size: 24px; line-height: 1.2; }
h4 { font-size: 18px; line-height: 1.3; font-weight: 500; font-family: var(--f-sans); letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
p { margin: 0 0 1em; color: var(--ink-mute); }
em { color: var(--gold-hi); font-style: italic; }

.eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: .7;
}

.display { font-family: var(--f-display); font-weight: 300; font-style: italic; color: var(--gold-hi); }

/* ————— Layout ————— */
.container { max-width: 1360px; margin: 0 auto; padding: 0 40px; }
.container-tight { max-width: 900px; margin: 0 auto; padding: 0 40px; }

.section { padding: 100px 0; position: relative; }
.section--tight { padding: 60px 0; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep) 30%, var(--gold-deep) 70%, transparent);
  opacity: .5;
  margin: 60px auto;
  max-width: 800px;
}
.rule { height: 1px; background: var(--line); border: 0; margin: 40px 0; }

/* ————— Nav ————— */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,9,8,.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 40px; max-width: 1360px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand__mark {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--f-display); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -.02em;
}
.brand__text {
  font-family: var(--f-display); font-size: 22px; color: var(--ink);
  letter-spacing: .16em; text-transform: uppercase;
}
.brand__amp { color: var(--gold); font-style: italic; margin: 0 .1em; }

.nav__links { display: flex; gap: 36px; }
.nav__link {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
}
.nav__link:hover { color: var(--gold); }
.nav__link.active { color: var(--gold); }

/* Dropdowns */
.nav__dropdown { position: relative; }
.nav__link--drop { background: transparent; border: 0; cursor: pointer; font-family: inherit; padding: 0; display: inline-flex; align-items: center; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-mute); font-weight: 500; }
.nav__link--drop:hover { color: var(--gold); }
.nav__link--drop.active { color: var(--gold); }
.nav__dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--bg-soft); border: 1px solid var(--gold-deep);
  min-width: 220px; padding: 8px 0;
  opacity: 0; visibility: hidden; transition: opacity .18s, visibility .18s, transform .18s;
  z-index: 100; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__dropdown-item {
  display: block; padding: 10px 18px; font-size: 13px; color: var(--ink);
  text-decoration: none; transition: color .15s, background .15s;
  letter-spacing: .05em; text-transform: none;
}
.nav__dropdown-item:hover { color: var(--gold); background: rgba(233,184,74,.06); }

.nav__cta {
  font-family: var(--f-display); font-size: 20px; color: var(--gold);
  letter-spacing: .05em;
  padding: 8px 18px; border: 1px solid var(--gold-deep);
}
.nav__cta:hover { background: var(--gold); color: var(--bg); }

/* ————— Buttons ————— */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--f-sans); font-size: 12px; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  border: 1px solid var(--gold); background: transparent; color: var(--gold);
  cursor: pointer; transition: all .25s;
  text-decoration: none;
  border-radius: 0;
}
.btn:hover { background: var(--gold); color: var(--bg); }
.btn--solid { background: var(--gold); color: var(--bg); }
.btn--solid:hover { background: var(--gold-hi); border-color: var(--gold-hi); }
.btn--ghost { border-color: var(--line-hi); color: var(--ink-mute); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn--sm { padding: 10px 20px; font-size: 10px; letter-spacing: .24em; }
.btn--lg { padding: 22px 44px; font-size: 13px; }
.btn--danger { border-color: var(--err); color: var(--err); }
.btn--danger:hover { background: var(--err); color: var(--bg); }

/* ————— Cards / Profile ————— */
.card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  position: relative;
  transition: border-color .25s, transform .25s;
}
.card:hover { border-color: var(--gold-deep); }

/* Profile card in grid */
.dame-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.dame-card:hover { border-color: var(--gold-deep); transform: translateY(-2px); }
.dame-card__img {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--bg-elev);
}
/* FIX: nur Medien-Elemente füllen den Container — NICHT Overlays wie .dame-card__status.
   Vorher traf `> *` auch das Status-Badge (background rgba + backdrop-blur),
   das dadurch als dunkler Blur-Schleier über das ganze Bild gelegt wurde. */
.dame-card__img > img,
.dame-card__img > picture,
.dame-card__img > picture > img,
.dame-card__img > video,
.dame-card__img > .ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dame-card__status {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  background: rgba(11,9,8,.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.08);
  display: inline-flex; align-items: center; gap: 8px;
}
.dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.dot--online { background: var(--ok); box-shadow: 0 0 8px var(--ok); }
.dot--besetzt { background: var(--warn); }
.dot--offline { background: var(--ink-dim); }
.status-online { color: var(--ok); }
.status-besetzt { color: var(--warn); }
.status-offline { color: var(--ink-dim); }

.dame-card__body { padding: 24px; }
.dame-card__name {
  font-family: var(--f-display); font-size: 24px; color: var(--ink);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
  margin-bottom: 6px;
  line-height: 1.15;
}
.dame-card__display {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.3em;
  flex: 1 1 auto;
  hyphens: auto;
  word-break: break-word;
}
.dame-card__age { color: var(--gold); font-size: 16px; font-family: var(--f-sans); font-weight: 300; letter-spacing: .1em; flex: 0 0 auto; padding-top: 4px; }
.dame-card__tag { color: var(--ink-mute); font-size: 13px; font-style: italic; font-family: var(--f-display); margin-bottom: 16px; }

/* SEO-friendly hidden text (Voll-Namen für Suchmaschinen sichtbar) */
.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;
}
.dame-card__meta { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12px; color: var(--ink-dim); letter-spacing: .1em; }
.dame-card__rating { color: var(--gold); }

/* ————— Grid ————— */
.grid { display: grid; gap: 32px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .grid--4 { grid-template-columns: repeat(3, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .grid--4, .grid--3 { grid-template-columns: 1fr; } }

/* ————— Placeholder image ————— */
.ph {
  background:
    repeating-linear-gradient(45deg, rgba(201,169,97,.05) 0, rgba(201,169,97,.05) 2px, transparent 2px, transparent 14px),
    linear-gradient(135deg, #1a1512 0%, #0f0c0a 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  position: relative;
}
.ph::before {
  content: ''; position: absolute; inset: 12px; border: 1px solid var(--gold-deep); opacity: .3;
}
.ph__label { position: relative; z-index: 1; text-align: center; padding: 20px; }

/* Silhouette-artige Platzhalter mit Ornament */
.ph-silhouette {
  background:
    radial-gradient(ellipse 60% 40% at 50% 20%, rgba(201,169,97,.18) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 60%, var(--ph-tone, #2a1e18) 0%, #0a0705 75%);
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; position: relative;
}
.ph-silhouette::before {
  content: ''; position: absolute;
  width: 62%; height: 82%; bottom: -2%;
  background: linear-gradient(180deg, transparent 0%, transparent 22%, rgba(5,4,3,.6) 55%, #050403 100%);
  border-radius: 48% 48% 0 0 / 55% 55% 0 0;
  filter: blur(2px);
}
.ph-silhouette::after {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 40px, rgba(201,169,97,.03) 40px 41px),
    radial-gradient(circle at 50% 15%, rgba(232,205,138,.12) 0%, transparent 45%);
}
.ph-silhouette .ph__label {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%,-50%);
  color: rgba(232,205,138,.55);
  font-family: var(--f-display); font-style: italic; font-size: 22px;
  letter-spacing: .1em; text-transform: none;
  z-index: 2; text-align: center; max-width: 80%;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.ph-silhouette .ph__label::after {
  content: ''; display: block; width: 40px; height: 1px;
  background: rgba(201,169,97,.4); margin: 12px auto 0;
}
/* Colour variants for placeholder variety */
.ph-silhouette[data-tone="warm"]  { --ph-tone: #3a2418; }
.ph-silhouette[data-tone="wine"]  { --ph-tone: #3a1820; }
.ph-silhouette[data-tone="mocha"] { --ph-tone: #2a1e14; }
.ph-silhouette[data-tone="jade"]  { --ph-tone: #1a2820; }
.ph-silhouette[data-tone="ink"]   { --ph-tone: #1a1a24; }

/* ————— Form ————— */
.field { display: block; margin-bottom: 20px; }
.field__label { display: block; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 500; }
.field__hint { font-size: 12px; color: var(--ink-dim); margin-top: 6px; }
.input, .textarea, .select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 14px 16px;
  font-family: var(--f-sans); font-size: 14px;
  border-radius: 0;
  transition: border-color .2s;
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--gold); }
.textarea { min-height: 120px; resize: vertical; font-family: var(--f-sans); }
.select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }

/* ————— Tag / Chip ————— */
.tag {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--line-hi);
  color: var(--ink-mute);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  transition: all .2s;
}
.tag:hover { border-color: var(--gold); color: var(--gold); }
.tag--gold { border-color: var(--gold-deep); color: var(--gold); }

/* ————— Age Gate ————— */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse at center, #1a1210 0%, #050403 80%);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.age-gate__inner {
  max-width: 560px; text-align: center;
  border: 1px solid var(--gold-deep);
  padding: 60px 48px;
  background: rgba(11,9,8,.6);
  backdrop-filter: blur(20px);
}
.age-gate__brand { font-family: var(--f-display); font-size: 42px; color: var(--gold); letter-spacing: .2em; margin-bottom: 8px; }
.age-gate__eighteen { font-family: var(--f-display); font-size: 96px; color: var(--ink); line-height: 1; margin: 30px 0 20px; letter-spacing: -.02em; font-weight: 300; }
.age-gate__eighteen span { color: var(--gold); font-style: italic; }
.age-gate__text { color: var(--ink-mute); font-size: 14px; margin-bottom: 32px; line-height: 1.6; }
.age-gate__actions { display: flex; gap: 12px; justify-content: center; }

/* ————— Footer ————— */
.footer { background: #050403; border-top: 1px solid var(--line); padding: 80px 0 40px; margin-top: 100px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer__col h5 { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { padding: 6px 0; }
.footer__col a { color: var(--ink-mute); font-size: 13px; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid var(--line); padding-top: 30px; display: flex; justify-content: space-between; color: var(--ink-dim); font-size: 12px; letter-spacing: .1em; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }

/* ————— Banner slot (v13.5: unsichtbarer Container, mehrere Banner nebeneinander) ————— */
.banner-slot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  /* kein border, kein background, kein padding, kein min-height — nur Layout */
}
.banner-slot__item {
  flex: 0 1 auto;
  max-width: 100%;
  display: block;
}
.banner-slot__item img { max-width: 100%; height: auto; display: block; }
/* Label „Anzeige" entfernt — falls im DOM: unsichtbar */
.banner-slot__label { display: none !important; }
@media (max-width: 560px) {
  .banner-slot { gap: 12px; }
}

/* ————— Utilities ————— */
.center { text-align: center; }
.gold { color: var(--gold); }
.mute { color: var(--ink-mute); }
.dim { color: var(--ink-dim); }
.italic { font-style: italic; font-family: var(--f-display); }
.uppercase { text-transform: uppercase; letter-spacing: .2em; font-size: 12px; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.flex { display: flex; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; } .mt-60 { margin-top: 60px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-40 { margin-bottom: 40px; }

/* Ornament */
.ornament {
  text-align: center;
  color: var(--gold-deep);
  font-family: var(--f-display); font-size: 24px;
  letter-spacing: 1em; padding: 0 0 0 1em;
  margin: 40px 0;
}


/* ============================================================
   MOBILE OVERFLOW SAFETY NET  (v13.1)
   Verhindert dass Bilder, Schrift, lange URLs oder Nummern
   auf schmalen Screens über den Viewport hinausragen.
   ============================================================ */

/* 1) Grundschutz: nichts darf horizontal aus dem Viewport quellen */
html, body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* 2) Medien niemals breiter als ihr Container */
img, video, iframe, svg, canvas {
  max-width: 100%;
  height: auto;
}

/* 3) Grid-/Flex-Kinder: min-width:0 verhindert die klassische Overflow-Explosion
      (ohne das quillen Grid-Zellen wenn Inhalt breiter ist als die Spalte). */
.grid > *, .profile-wrap > *, .flex > * { min-width: 0; }

/* 4) Container-Padding auf Tablet/Mobile schrittweise reduzieren */
@media (max-width: 900px) {
  .container       { padding: 0 24px; }
  .container-tight { padding: 0 24px; }
  .nav__inner      { padding: 16px 24px; }
}
@media (max-width: 560px) {
  .container       { padding: 0 16px; }
  .container-tight { padding: 0 16px; }
  .nav__inner      { padding: 14px 16px; }
  .section         { padding: 60px 0; }
  .section--tight  { padding: 40px 0; }
}
@media (max-width: 380px) {
  .container       { padding: 0 12px; }
  .container-tight { padding: 0 12px; }
  .nav__inner      { padding: 12px 12px; }
}

/* 5) Typografie bricht auf Mobile lange Wörter (Namen, URLs, Hotlines) */
@media (max-width: 560px) {
  h1, h2, h3, h4 { overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
  h1 { font-size: clamp(30px, 8vw, 44px) !important; line-height: 1.06; }
  h2 { font-size: clamp(24px, 6.5vw, 34px) !important; line-height: 1.12; }
  h3 { font-size: 20px; }
  p, li { font-size: 15px; line-height: 1.65; }
  .display { word-break: break-word; }
  .num, .mono {
    word-break: break-word;
    overflow-wrap: anywhere;
    letter-spacing: .02em !important;
  }
}

/* 6) Profil-Seite (dame.html) speziell härten */
@media (max-width: 900px) {
  .profile-wrap {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 32px 0 24px !important;
  }
  .profile-content { position: static !important; top: auto !important; }
  .profile-image { max-width: 100%; }
  .profile-image img { width: 100%; height: 100%; object-fit: cover; }
  .profile-gallery { grid-template-columns: repeat(3, 1fr); }
  .profile-name { font-size: clamp(30px, 7vw, 44px) !important; line-height: 1.05 !important; word-break: break-word; }
  .profile-tagline { font-size: clamp(15px, 4vw, 18px) !important; }
  .profile-cta-box { padding: 22px !important; }
  .profile-cta-box .num {
    font-size: clamp(24px, 7vw, 34px) !important;
    word-break: break-word; overflow-wrap: anywhere;
    letter-spacing: .04em !important;
  }
  .profile-info-row {
    flex-wrap: wrap; gap: 6px;
  }
}
@media (max-width: 480px) {
  .profile-gallery { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .profile-cta-box .btn { width: 100%; text-align: center; }
  .profile-cta-box .flex { flex-direction: column; align-items: stretch; gap: 10px !important; }
}

/* 7) Generierte Landing-Pages (SEO-Pages) — Inline-Styles überschreiben */
@media (max-width: 900px) {
  .profile-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .profile-grid > div[style*="sticky"],
  [style*="position:sticky"] { position: static !important; top: auto !important; }
  .profile-grid h1,
  .profile-grid h1[style] {
    font-size: clamp(30px, 7vw, 44px) !important;
    line-height: 1.05 !important;
    word-break: break-word;
  }
  /* Große inline-Font-Sizes in Nummern-/Preisblöcken auf Mobile eindampfen */
  [style*="font-size:78px"],
  [style*="font-size:72px"],
  [style*="font-size:64px"] { font-size: clamp(30px, 8vw, 44px) !important; }
  [style*="font-size:56px"],
  [style*="font-size:52px"],
  [style*="font-size:48px"],
  [style*="font-size:42px"] {
    font-size: clamp(24px, 7vw, 34px) !important;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  [style*="font-size:32px"] { font-size: 22px !important; }
  [style*="font-size:24px"] { font-size: 18px !important; }
  [style*="font-size:22px"] { font-size: 17px !important; }
  /* Hero-Bereich der Landing-Pages */
  .lp-hero { padding: 40px 0 24px !important; }
  .lp-hero h1 { font-size: clamp(30px, 7vw, 44px) !important; line-height: 1.05 !important; }
  .lp-content h2 { font-size: 24px; }
  .lp-content h3 { font-size: 20px; }
  .lp-content p, .lp-content li { font-size: 15px; line-height: 1.7; }
}
@media (max-width: 480px) {
  .lp-hero h1 { font-size: clamp(26px, 8vw, 34px) !important; }
  .btn.btn--lg { display: block; width: 100%; text-align: center; margin-top: 8px; }
  /* Flex-Rows mit fixem Padding brauchen weniger Padding */
  [style*="padding:32px"] { padding: 20px !important; }
  [style*="padding: 32px"] { padding: 20px !important; }
}

/* 8) Tabellen / breite Blöcke — falls doch mal etwas hartnäckig ist:
      horizontales Scrollen als Notausgang, statt Overflow nach außen. */
@media (max-width: 560px) {
  table { display: block; overflow-x: auto; max-width: 100%; }
  pre, code { overflow-x: auto; max-width: 100%; }
}
