/* ==========================================================================
   SEX-PORNOCLUB – VISIT-X Affiliate
   Farbwelt: Schwarz / Weiss mit Verlauf von Dunkelgelb nach Orange
   ========================================================================== */

:root {
  --black:      #000000;
  --bg:         #0a0a0a;
  --bg-2:       #101010;
  --surface:    #161616;
  --surface-2:  #1e1e1e;
  --line:       #292929;
  --line-soft:  #1f1f1f;

  --white:      #ffffff;
  --text:       #f2f2f2;
  --muted:      #9a9a9a;
  --muted-dim:  #6e6e6e;

  --gold:       #c8930a;   /* dunkles Gelb */
  --amber:      #e8a300;
  --orange:     #ff6a00;   /* fast Orange */
  --orange-hot: #ff8a1f;

  --grad:       linear-gradient(135deg, var(--gold) 0%, var(--amber) 45%, var(--orange) 100%);
  --grad-soft:  linear-gradient(135deg, rgba(232,163,0,.16), rgba(255,106,0,.10));

  --radius:     14px;
  --radius-sm:  9px;
  --shadow:     0 10px 30px rgba(0,0,0,.55);
  --shadow-glow:0 8px 26px rgba(255,106,0,.28);
  --wrap:       1280px;
  --ease:       cubic-bezier(.4,.16,.2,1);
}

*,*::before,*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.is-gated { overflow: hidden; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { margin: 0; line-height: 1.2; font-weight: 800; letter-spacing: -.02em; }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.muted { color: var(--muted); }
.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
  --btn-py: .7rem; --btn-px: 1.25rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: var(--btn-py) var(--btn-px);
  border: 1px solid transparent; border-radius: 999px;
  font-weight: 700; font-size: .925rem; line-height: 1;
  cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), border-color .18s var(--ease);
}
.btn--primary {
  background: var(--grad); color: var(--black);
  box-shadow: 0 4px 16px rgba(255,106,0,.22);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn--sm  { --btn-py: .5rem; --btn-px: .95rem; font-size: .82rem; }
.btn--lg  { --btn-py: .95rem; --btn-px: 1.9rem; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; }
.btn:active { transform: translateY(0); }

/* ── Header ────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10,10,10,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; height: 68px; }

.logo { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.logo__mark {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--grad); color: var(--black);
  font-weight: 900; font-size: .82rem; letter-spacing: -.03em;
}
.logo__text {
  display: flex; flex-direction: column;
  font-weight: 900; font-size: 1.02rem; letter-spacing: -.03em; color: var(--white);
}
.logo__text small { font-weight: 500; font-size: .68rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

.nav { display: flex; gap: .35rem; margin-inline-start: auto; }
.nav a {
  padding: .55rem .95rem; border-radius: 999px;
  color: var(--muted); font-weight: 600; font-size: .92rem;
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav a:hover { color: var(--white); background: var(--surface); }
.nav a.is-active { color: var(--amber); background: rgba(232,163,0,.10); }

/* ── Mobile Bottom-Navigation ──────────────────────────────────────────
   Unterhalb von 760 px ersetzt sie die Kopfnavigation. Fest am unteren
   Rand, damit sie mit dem Daumen erreichbar ist; die Kopfzeile behält nur
   Logo und den CTA.
   ------------------------------------------------------------------ */
.tabbar { display: none; }

.tabbar__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .22rem; padding: .5rem .2rem .3rem; min-height: 54px;
  color: var(--muted-dim); font-size: .68rem; font-weight: 700;
  letter-spacing: .01em; text-align: center;
  border-top: 2px solid transparent;
  transition: color .18s var(--ease), border-color .18s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.tabbar__icon { width: 23px; height: 23px; flex-shrink: 0; }
.tabbar__label { line-height: 1; }

.tabbar__item:active { color: var(--white); }
.tabbar__item.is-active { color: var(--amber); border-top-color: var(--amber); }

/* Telefonsex hebt sich dauerhaft ab – kürzester Weg zur Conversion. */
.tabbar__item--accent { color: var(--orange); }
.tabbar__item--accent .tabbar__icon {
  filter: drop-shadow(0 0 7px rgba(255,106,0,.45));
}
.tabbar__item--accent.is-active { color: var(--orange-hot); border-top-color: var(--orange); }

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(760px 380px at 12% -8%, rgba(255,106,0,.20), transparent 62%),
    radial-gradient(620px 340px at 88% 4%, rgba(200,147,10,.16), transparent 60%),
    var(--black);
  border-bottom: 1px solid var(--line-soft);
}
.hero__inner { max-width: 760px; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .4rem .9rem; margin-bottom: 1.3rem;
  border: 1px solid rgba(232,163,0,.32); border-radius: 999px;
  background: rgba(232,163,0,.08);
  font-size: .82rem; font-weight: 700; color: var(--amber);
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255,106,0,.7); animation: pulse 2s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(255,106,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,106,0,0); }
}
.hero__title { font-size: clamp(2.2rem, 6vw, 3.9rem); font-weight: 900; margin-bottom: 1rem; color: var(--white); }
.hero__text { font-size: clamp(1rem, 2vw, 1.18rem); color: var(--muted); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }

/* ── Sections ──────────────────────────────────────────────────────── */
.section { padding-block: clamp(2.2rem, 5vw, 3.4rem); }
.section__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}
.section__title { font-size: clamp(1.35rem, 3vw, 1.85rem); color: var(--white); }
.section__title::after {
  content: ""; display: block; width: 46px; height: 3px;
  margin-top: .6rem; border-radius: 2px; background: var(--grad);
}
.section__more { color: var(--amber); font-weight: 700; font-size: .9rem; }
.section__more:hover { color: var(--orange-hot); }

.page-head { margin-bottom: 1.6rem; }
.page-head__title { font-size: clamp(1.8rem, 4.5vw, 2.6rem); color: var(--white); }
.page-head__sub { color: var(--muted); margin: .4rem 0 0; }

.empty, .notice {
  padding: 1.1rem 1.3rem; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); color: var(--muted);
}
.notice { border-color: rgba(255,106,0,.35); background: rgba(255,106,0,.07); color: var(--orange-hot); }
.empty a { color: var(--amber); font-weight: 700; }

/* ── Grids ─────────────────────────────────────────────────────────────
   Feste Spaltenzahlen statt auto-fill: Die Seiten liefern 12 bzw. 24
   Kacheln, und nur Spaltenzahlen, die diese Werte teilen, ergeben eine
   volle letzte Reihe. auto-fill erzeugte je nach Fensterbreite auch 5
   oder 7 Spalten – dabei blieb die letzte Reihe zwangsläufig angebrochen.

   Erlaubt sind daher 2 / 3 / 4 / 6 (Models) bzw. 1 / 2 / 3 / 4 (Videos).
   Die 5 wird bewusst übersprungen.
   ------------------------------------------------------------------ */
.grid { display: grid; gap: 1.15rem; }

.grid--models { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--videos { grid-template-columns: repeat(1, minmax(0, 1fr)); }

@media (min-width: 560px) {
  .grid--models { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--videos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .grid--models { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid--videos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1180px) {
  .grid--models { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .grid--videos { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ── Cards ─────────────────────────────────────────────────────────── */
.card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: rgba(232,163,0,.42); box-shadow: var(--shadow); }

.card__media {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 3 / 4; background: var(--bg-2);
}
.card__media--16x9 { aspect-ratio: 16 / 9; }
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease), opacity .3s var(--ease);
}
.card:hover .card__media img { transform: scale(1.05); }

.card__clip {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.card__clip.is-playing { opacity: 1; }

.card__placeholder {
  display: grid; place-items: center; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--surface-2), var(--bg-2));
}
.card__placeholder span {
  font-weight: 900; font-size: 1.5rem; letter-spacing: .1em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; opacity: .5;
}

.card__badges { position: absolute; top: .6rem; left: .6rem; display: flex; gap: .35rem; flex-wrap: wrap; }
.card__duration {
  position: absolute; right: .6rem; bottom: .6rem;
  padding: .2rem .5rem; border-radius: 6px;
  background: rgba(0,0,0,.78); color: var(--white);
  font-size: .74rem; font-weight: 700; font-variant-numeric: tabular-nums;
}
.card__play {
  position: absolute; inset: 0; margin: auto;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(0,0,0,.5); border: 2px solid rgba(255,255,255,.85);
  opacity: 0; transition: opacity .22s var(--ease), transform .22s var(--ease);
  transform: scale(.85);
}
.card__play::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 0; height: 0; margin-left: 20px;
  border-left: 15px solid var(--white);
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
}
.card__media--16x9:hover .card__play { opacity: 1; transform: scale(1); }

.card__body { display: flex; flex-direction: column; gap: .45rem; padding: .85rem .9rem 1rem; flex: 1; }
.card__title { font-size: 1.02rem; color: var(--white); }
.card__title--sm { font-size: .93rem; font-weight: 700; line-height: 1.35; }
.card__title a:hover { color: var(--amber); }
.card__meta { margin: 0; font-size: .82rem; color: var(--muted); display: flex; gap: .4rem; flex-wrap: wrap; align-items: center; }
.card__text { margin: 0; font-size: .84rem; color: var(--muted-dim); line-height: 1.5; }
.card__model { color: var(--muted); font-weight: 600; }
.card__model:hover { color: var(--amber); }
.card__model.is-online::before {
  content: ""; display: inline-block; width: 7px; height: 7px; margin-right: .35rem;
  border-radius: 50%; background: var(--orange);
}
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-top: auto; padding-top: .5rem; }
.card__body > .btn { margin-top: auto; }
.price { font-weight: 800; color: var(--amber); font-size: .9rem; font-variant-numeric: tabular-nums; }
.price--lg { font-size: 1.35rem; }
.dot { color: var(--muted-dim); }

/* ── Badges ────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .22rem .55rem; border-radius: 6px;
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  background: var(--surface-2); color: var(--muted); border: 1px solid var(--line);
}
.badge--live { background: var(--orange); color: var(--black); border-color: transparent; }
.badge--live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--black); animation: blink 1.4s infinite;
}
@keyframes blink { 50% { opacity: .25; } }
.badge--top  { background: var(--grad); color: var(--black); border-color: transparent; }
.badge--new  { background: var(--amber); color: var(--black); border-color: transparent; }
.badge--vip  { background: transparent; color: var(--amber); border-color: var(--amber); }
.badge--free { background: var(--white); color: var(--black); border-color: transparent; }
.badge--fsk  { background: transparent; color: var(--muted); }

/* ── Filter / Tabs ─────────────────────────────────────────────────── */
.filters {
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: .8rem;
  padding: 1.1rem; margin-bottom: 1.8rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.field { display: flex; flex-direction: column; gap: .35rem; min-width: 140px; }
.field > span { font-size: .74rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.field select {
  appearance: none; width: 100%;
  padding: .6rem 2.1rem .6rem .8rem;
  background: var(--bg-2) url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239a9a9a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right .8rem center;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--white); font-size: .9rem; font-family: inherit; cursor: pointer;
}
.field select:focus { border-color: var(--amber); outline: none; }
.field--check { flex-direction: row; align-items: center; gap: .5rem; min-width: 0; padding-bottom: .55rem; }
.field--check span { text-transform: none; font-size: .9rem; color: var(--text); letter-spacing: 0; }
.field--check input { width: 18px; height: 18px; accent-color: var(--orange); cursor: pointer; }

.tabs { display: flex; gap: .4rem; overflow-x: auto; padding-bottom: .5rem; margin-bottom: 1.6rem; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tabs__item {
  padding: .5rem 1rem; border-radius: 999px; white-space: nowrap;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--muted); font-size: .87rem; font-weight: 600;
  transition: all .18s var(--ease);
}
.tabs__item:hover { color: var(--white); border-color: var(--muted-dim); }
.tabs__item.is-active { background: var(--grad); color: var(--black); border-color: transparent; }

/* ── Pagination ────────────────────────────────────────────────────── */
.pager { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .4rem; margin-top: 2.4rem; }
.pager__btn, .pager__num {
  display: inline-grid; place-items: center; min-width: 40px; height: 40px; padding-inline: .85rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--text); font-size: .88rem; font-weight: 700;
  transition: all .18s var(--ease);
}
.pager__num { padding-inline: .5rem; }
.pager__btn:hover, .pager__num:hover { border-color: var(--amber); color: var(--amber); }
.pager__num.is-current { background: var(--grad); color: var(--black); border-color: transparent; }
.pager__btn.is-disabled { opacity: .35; pointer-events: none; }
.pager__gap { color: var(--muted-dim); padding-inline: .3rem; }

/* ── Model-Profil ──────────────────────────────────────────────────── */
.profile { position: relative; }
.profile__cover {
  height: clamp(150px, 26vw, 280px);
  background: var(--bg-2) center/cover no-repeat;
  position: relative;
}
.profile__cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35), var(--bg) 96%);
}
.profile__inner {
  display: grid; grid-template-columns: minmax(240px, 320px) 1fr; gap: 2.2rem;
  margin-top: -70px; position: relative; z-index: 1; padding-bottom: 1rem;
}
.profile__avatar {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.profile__clip { margin-top: 1.2rem; }
.profile__clip h3 { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: .55rem; }
.profile__main { padding-top: 80px; min-width: 0; }
.profile__headline { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin-bottom: .9rem; }
.profile__headline h1 { font-size: clamp(1.8rem, 4.5vw, 2.7rem); color: var(--white); }
.profile__about { color: var(--muted); max-width: 68ch; }
.profile__cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0; }

.facts {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .1rem; margin: 1.6rem 0 0;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--line-soft);
}
.facts__row { display: flex; justify-content: space-between; gap: 1rem; padding: .75rem .95rem; background: var(--surface); }
.facts dt { color: var(--muted); font-size: .84rem; }
.facts dd { margin: 0; font-weight: 700; font-size: .88rem; color: var(--white); }

.qa { display: grid; gap: 1rem; margin-top: 1.8rem; }
.qa__item { padding: 1.1rem 1.2rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); border-left: 3px solid var(--amber); }
.qa__item h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--amber); margin-bottom: .45rem; }
.qa__item p { margin: 0; color: var(--muted); }

/* ── Video-Detail ──────────────────────────────────────────────────── */
.watch { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 2rem; align-items: start; }
.player-wrap { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--black); }
.player { width: 100%; aspect-ratio: 16/9; object-fit: contain; background: var(--black); display: block; }
.player__note {
  margin: 0; padding: .6rem .9rem;
  background: var(--surface); border-top: 1px solid var(--line);
  font-size: .8rem; color: var(--muted);
}
.watch__title { font-size: clamp(1.3rem, 3vw, 1.9rem); margin: 1.3rem 0 .8rem; color: var(--white); }
.watch__meta { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; color: var(--muted); font-size: .87rem; margin-bottom: 1.2rem; }
.watch__desc { color: var(--muted); max-width: 72ch; }
.watch__buy {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.2rem; margin-top: 1.6rem;
  background: var(--grad-soft); border: 1px solid rgba(232,163,0,.28); border-radius: var(--radius);
}

.mini-profile {
  display: grid; grid-template-columns: 96px 1fr; gap: 1rem; align-items: start;
  padding: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.mini-profile__img img, .mini-profile__img .card__placeholder {
  width: 96px; height: 128px; object-fit: cover; border-radius: var(--radius-sm);
}
.mini-profile h3 { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; font-size: 1.02rem; color: var(--white); margin-bottom: .3rem; }
.mini-profile h3 a:hover { color: var(--amber); }
.mini-profile p { font-size: .84rem; margin-bottom: .7rem; }

/* ── Telefonsex ────────────────────────────────────────────────────── */
.hero--phone {
  background:
    radial-gradient(700px 360px at 82% -6%, rgba(255,106,0,.22), transparent 62%),
    radial-gradient(560px 320px at 8% 8%, rgba(200,147,10,.18), transparent 60%),
    var(--black);
}

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.steps__item {
  position: relative; padding: 1.4rem 1.3rem 1.3rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
}
.steps__num {
  display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: .8rem;
  border-radius: 50%; background: var(--grad); color: var(--black); font-weight: 900;
}
.steps__item h3 { font-size: 1rem; color: var(--white); margin-bottom: .35rem; }
.steps__item p { margin: 0; font-size: .88rem; color: var(--muted); }

/*
   Sonderfall: Wie viele Amateurinnen gerade telefonisch erreichbar sind,
   schwankt (etwa 11–19) und lässt sich nicht auf eine feste Spaltenzahl
   bringen. Deshalb Flexbox – die Karten der letzten Reihe wachsen auf die
   volle Breite mit, statt eine Lücke zu lassen. Das Querformat der Karte
   verträgt das, ein Bildraster täte es nicht.
*/
.grid--phone { display: flex; flex-wrap: wrap; gap: 1.15rem; }
.grid--phone > .phone-card { flex: 1 1 340px; }

.phone-card {
  display: grid; grid-template-columns: 120px 1fr; gap: 1rem;
  padding: 1rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .22s var(--ease), transform .22s var(--ease);
}
.phone-card:hover { border-color: rgba(232,163,0,.42); transform: translateY(-3px); }

.phone-card__img { position: relative; display: block; }
.phone-card__img img, .phone-card__img .card__placeholder {
  width: 120px; height: 160px; object-fit: cover; border-radius: var(--radius-sm);
}
.phone-card__img .badge { position: absolute; top: .4rem; left: .4rem; }

.phone-card__body { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.phone-card__name { font-size: 1.05rem; color: var(--white); }
.phone-card__name a:hover { color: var(--amber); }
.phone-card__body > .btn { margin-top: auto; }

.phone-number {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: .6rem; flex-wrap: wrap; margin-top: .3rem;
  padding: .6rem .8rem; border-radius: var(--radius-sm);
  background: var(--grad-soft); border: 1px solid rgba(232,163,0,.3);
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.phone-number:hover { border-color: var(--amber); }
.phone-number__digits {
  font-size: 1.06rem; font-weight: 800; color: var(--white);
  font-variant-numeric: tabular-nums; letter-spacing: .01em; white-space: nowrap;
}
.phone-number__price { font-size: .78rem; font-weight: 700; color: var(--amber); white-space: nowrap; }

.phone-alt { list-style: none; margin: 0; padding: 0; display: grid; gap: .2rem; }
.phone-alt li {
  display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap;
  font-size: .78rem; color: var(--muted);
}
.phone-alt__country {
  min-width: 24px; padding: .05rem .3rem; border-radius: 4px;
  background: var(--surface-2); border: 1px solid var(--line);
  font-size: .68rem; font-weight: 800; color: var(--muted); text-align: center;
}
.phone-alt a { color: var(--text); font-variant-numeric: tabular-nums; }
.phone-alt a:hover { color: var(--amber); }

.pricenote {
  margin-top: 1.6rem; padding: .9rem 1.1rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  font-size: .78rem; color: var(--muted-dim); line-height: 1.6;
}

@media (max-width: 480px) {
  .phone-card { grid-template-columns: 92px 1fr; gap: .8rem; }
  .phone-card__img img, .phone-card__img .card__placeholder { width: 92px; height: 123px; }
  .phone-number__digits { font-size: .98rem; }
}

/* ── CTA-Block ─────────────────────────────────────────────────────── */
.cta {
  text-align: center; padding: clamp(2.2rem, 5vw, 3.4rem) 1.5rem;
  background: var(--grad-soft); border: 1px solid rgba(232,163,0,.26); border-radius: 22px;
}
.cta h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); color: var(--white); margin-bottom: .6rem; }
.cta p { color: var(--muted); margin-bottom: 1.6rem; }

/* ── Fehlerseite ───────────────────────────────────────────────────── */
.errorbox { text-align: center; padding: clamp(3rem, 8vw, 5rem) 1rem; max-width: 560px; margin-inline: auto; }
.errorbox__code {
  display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 1.5rem;
  border-radius: 50%; background: var(--grad); color: var(--black);
  font-size: 2.4rem; font-weight: 900;
}
.errorbox h1 { font-size: clamp(1.5rem, 4vw, 2.1rem); color: var(--white); margin-bottom: .7rem; }
.errorbox p { color: var(--muted); }
.errorbox__actions { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }

/* ── Footer ────────────────────────────────────────────────────────── */
.site-footer { margin-top: 3rem; padding-top: 2.6rem; background: var(--black); border-top: 1px solid var(--line-soft); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem; padding-bottom: 2.2rem; }
.site-footer__grid h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--white); margin-bottom: .8rem; }
.site-footer__grid a { display: block; color: var(--muted); font-size: .89rem; padding: .22rem 0; }
.site-footer__grid a:hover { color: var(--amber); }
.site-footer__grid p { font-size: .87rem; max-width: 42ch; }
.logo--footer { margin-bottom: .9rem; }
.site-footer__bar {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.2rem 0; border-top: 1px solid var(--line-soft);
  font-size: .78rem; color: var(--muted-dim);
}

/* ── Altersabfrage ─────────────────────────────────────────────────── */
.agegate {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 1.5rem;
  background: rgba(0,0,0,.94); backdrop-filter: blur(8px);
}
.agegate__box {
  max-width: 470px; text-align: center; padding: 2.4rem 2rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow);
}
.agegate__badge {
  display: grid; place-items: center; width: 66px; height: 66px; margin: 0 auto 1.3rem;
  border-radius: 50%; background: var(--grad); color: var(--black);
  font-size: 1.25rem; font-weight: 900;
}
.agegate__title { font-size: 1.55rem; color: var(--white); margin-bottom: .8rem; }
.agegate__text { color: var(--muted); font-size: .92rem; }
.agegate__actions { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.6rem; }

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .watch { grid-template-columns: 1fr; }
  .profile__inner { grid-template-columns: 1fr; margin-top: -50px; gap: 1.4rem; }
  .profile__main { padding-top: 0; }
  .profile__media { max-width: 300px; }
}

@media (max-width: 760px) {
  .site-header__inner { height: 60px; gap: .8rem; }
  .nav { display: none; }                 /* wandert nach unten in die Tabbar */
  .header-cta { margin-inline-start: auto; }

  .tabbar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    background: rgba(10,10,10,.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    padding-bottom: env(safe-area-inset-bottom);
  }
  /* Platz schaffen, damit die Leiste den Seitenfuss nicht verdeckt. */
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }

  /* Spaltenzahl steckt oben in den min-width-Regeln – hier nur die Abstände. */
  .grid--models { gap: .8rem; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .filters { padding: .9rem; }
  .field { min-width: calc(50% - .4rem); flex: 1; }
  .card__text { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}
