/* Pervout - modern flat theme (2026), single-accent, no gradients */

:root {
    --red:      #ff1f47;   /* accent (feller op zwart) */
    --red-soft: #ff4d6b;
    --red-rgb:  255, 31, 71;
    --blue:     #ff1f47;
    --blue-ink: #f2f2f6;   /* badge-tekst op donker (licht) */
    --ink:      #0a0a0d;   /* DONKER: alleen voor overlays op afbeeldingen */
    --ink-rgb:  5, 5, 8;
    --text:     #f4f4f7;   /* hoofd-tekstkleur (licht) */
    --muted:    #9a9aa7;
    --line:     #2a2a31;
    --bg:       #070709;
    --bg-soft:  #111116;
    --card:     #17171f;
    --bg-pink:  #2a0b14;
    --radius:   14px;
    --shadow:   0 16px 44px -18px rgba(0,0,0,0.75);
    --shadow-sm:0 1px 3px rgba(0,0,0,0.55), 0 6px 18px -10px rgba(0,0,0,0.6);
    --wrap:     1120px;
    --font:         "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-display: "Anton", "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: min(var(--wrap), 100% - 2.4rem); margin-inline: auto; }

/* ---------- Splash (lege homepage, alleen logo) ---------- */
body.splash {
    min-height: 100svh;
    display: grid; place-items: center;
    padding: 2rem;
    background: var(--bg);
}
.splash-logo {
    margin: 0;
    display: inline-flex; align-items: center; gap: clamp(0.6rem, 2vw, 1.3rem);
    font-family: var(--font-display);
    font-weight: 700; letter-spacing: -0.04em; line-height: 1;
    font-size: clamp(2.4rem, 11vw, 7rem);
    color: var(--text);
}
.splash-mark {
    display: inline-flex; gap: clamp(5px, 1.4vw, 11px); align-items: center;
    padding: clamp(8px, 1.8vw, 16px); border-radius: clamp(12px, 2vw, 22px);
    background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.splash-mark .dot {
    width: clamp(14px, 3.4vw, 34px); height: clamp(14px, 3.4vw, 34px);
    border-radius: 50%; display: block;
}
.splash-text .brand-accent { color: var(--red); }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(10, 10, 14, 0.82);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex; align-items: center; gap: 1.2rem;
    height: 68px;
}
.brand {
    display: inline-flex; align-items: center; gap: 0.55rem;
    font-family: var(--font-display);
    font-weight: 700; font-size: 1.3rem; letter-spacing: -0.03em;
}
.brand-mark {
    display: inline-flex; gap: 4px; align-items: center;
    padding: 7px; border-radius: 12px; background: var(--bg-soft);
    border: 1px solid var(--line);
}
.brand-mark .dot { width: 11px; height: 11px; border-radius: 50%; display: block; }
.dot-red  { background: var(--red); }
.dot-blue { background: var(--text); }
/* Subtiele animatie, ALLEEN op de logo-stippen: de twee stippen pulseren om en om. */
@keyframes hp-logo-dot {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.28); }
}
.brand-mark .dot { animation: hp-logo-dot 1.6s ease-in-out infinite; }
.brand-mark .dot-blue { animation-delay: 0.8s; }
.brand:hover .brand-mark .dot { animation-duration: 0.7s; }
@media (prefers-reduced-motion: reduce) {
    .brand-mark .dot { animation: none; }
}
.brand-text { color: var(--text); }
.brand-accent { color: var(--red); }

.site-nav {
    display: flex; gap: 0.4rem; margin-left: auto;
}
.site-nav a {
    padding: 0.5rem 0.8rem; border-radius: 999px;
    font-weight: 500; color: var(--muted); font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 0.05em;
    transition: background .15s, color .15s;
}
.site-nav a:hover { color: var(--text); background: var(--bg-soft); }
.site-nav a.is-active { color: var(--red); background: var(--bg-pink); }

.cta {
    padding: 0.6rem 1.15rem; border-radius: 999px;
    background: var(--red); color: #fff; font-weight: 600; font-size: 0.95rem;
    transition: transform .15s, background .15s;
}
.cta:hover { transform: translateY(-1px); background: var(--red); }

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: clamp(1.1rem, 2.5vw, 1.7rem) 0 clamp(0.8rem, 1.8vw, 1.2rem);
    text-align: center;
}
.hero .wrap { position: relative; z-index: 1; }
/* Desktop: grote titel op 1 regel; subtitel mag afbreken en blijft gecentreerd (mobiele <br> verbergen) */
@media (min-width: 900px) {
    .hero .wrap { width: 85vw; max-width: none; }
    .hero h1 { max-width: none; white-space: nowrap; }
    .br-m { display: none; }
}
.pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--card); border: 1px solid var(--line);
    padding: 0.4rem 0.9rem; border-radius: 999px;
    font-size: 0.82rem; font-weight: 600; color: var(--blue-ink);
    box-shadow: var(--shadow-sm); margin-bottom: 0.55rem;
}
.pill .live { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(var(--red-rgb), .18); }
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.6vw, 3.6rem);
    line-height: 1.02; letter-spacing: -0.04em; font-weight: 700;
    color: var(--text); max-width: 18ch; margin-inline: auto; overflow-wrap: break-word;
}
.hero h1 .grad { color: var(--red); }
.hero p.lead {
    margin: 0.5rem auto 0; max-width: 58ch; color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
}
.hero-actions { margin-top: 1.8rem; display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.btn {
    display: inline-block; padding: 0.85rem 1.5rem; border-radius: 999px; font-weight: 600;
    transition: transform .15s, background .15s;
}
.btn-red  { background: var(--red); color: #fff; }
.btn-red:hover { transform: translateY(-2px); background: var(--red-soft); }
.btn-ghost { background: var(--card); color: var(--blue-ink); border: 1px solid var(--line); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--red); color: var(--red); }
.btn-green { background: #1fbf4d; color: #fff; border: 0; }
.btn-green:hover { transform: translateY(-2px); background: #25d459; }

/* ---------- Section heading ---------- */
.section { padding: clamp(2.4rem, 5vw, 3.6rem) 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 5vw, 3.2rem); letter-spacing: -0.04em; font-weight: 700;
    line-height: 1.02;
}
.section-head h2 .em { color: var(--red); }
.sub-with-dots { display: inline-flex; align-items: center; gap: 0.45rem; }
.mini-mark { display: inline-flex; gap: 3px; align-items: center; flex: none; }
.mini-mark .dot { width: 7px; height: 7px; border-radius: 50%; display: block; }
.section-head p { color: var(--muted); margin-top: 0.15rem; }
.section-head .link {
    color: var(--red); font-weight: 600; white-space: nowrap;
}
.section-head .link:hover { text-decoration: underline; }

/* ---------- News / card grid ---------- */
.news-grid {
    display: grid; gap: 1.4rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.card {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-media .tag-cat {
    position: absolute; top: 0.7rem; left: 0.7rem;
    background: var(--red); color: #fff; font-weight: 600;
    font-size: 0.72rem; letter-spacing: .04em; text-transform: uppercase;
    padding: 0.3rem 0.7rem; border-radius: 999px;
}
.card-media .tag-dur {
    position: absolute; bottom: 0.7rem; right: 0.7rem;
    background: rgba(var(--ink-rgb), 0.86); color: #fff; font-weight: 600;
    font-size: 0.74rem; padding: 0.25rem 0.6rem; border-radius: 8px;
    backdrop-filter: blur(2px);
}
.card-body { padding: 1.1rem 1.15rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.card-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; }
.card-meta .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: #c7ccda; }
.card-body h3 { font-size: 1.18rem; line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.card:hover .card-body h3 { color: var(--red); }
.card-body p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.card-niches { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.9rem; }
.chip {
    font-size: 0.74rem; font-weight: 500; color: var(--blue-ink);
    background: var(--bg-soft); border: 1px solid var(--line);
    padding: 0.22rem 0.6rem; border-radius: 999px;
}
.card-link {
    margin-top: 1rem; align-self: flex-start;
    font-weight: 600; color: var(--red); font-size: 0.92rem;
    display: inline-flex; align-items: center; gap: 0.3rem;
}
.card-link:hover { gap: 0.55rem; }

/* ---------- Filter-bar + weergave-toggle ---------- */
.filter-bar { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.6rem; margin-bottom: clamp(1.4rem, 3vw, 2.2rem); }
.filter-bar .feed-filter { margin-bottom: 0; }
.view-toggle { flex: none; display: inline-flex; gap: 0.2rem; padding: 0.2rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; }
.vt-btn {
    display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
    padding: 0; border: 0; background: none; border-radius: 999px; color: var(--muted); cursor: pointer;
    transition: background .15s, color .15s;
}
.vt-btn svg { width: 18px; height: 18px; fill: currentColor; }
.vt-btn:hover { color: var(--text); }
.vt-btn.is-active { background: var(--card); color: var(--red); box-shadow: var(--shadow-sm); }

/* ---------- Grid-weergave (alleen desktop; mobiel toont altijd de lijst) ---------- */
@media (min-width: 701px) {
    .view-grid .feed {
        max-width: none; width: 85vw; margin-left: calc(50% - 42.5vw);
        display: grid; gap: clamp(0.9rem, 2vw, 1.5rem);
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .view-grid .feed .post { border-radius: 14px; }
    .view-grid .feed .post-head,
    .view-grid .feed .post-actions,
    .view-grid .feed .post-link,
    .view-grid .feed .post-caption .post-text { display: none; }
    .view-grid .feed .post-body { padding: 0.65rem 0.8rem 0.85rem; }
    .view-grid .feed .post-caption { font-size: 0.92rem; line-height: 1.3; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
    .view-grid .feed .post-tags { margin-top: 0.4rem; font-size: 0.8rem; }
}
/* Weergave-knoppen weg op mobiel: grid is daar uitgeschakeld. */
@media (max-width: 700px) {
    .view-toggle { display: none; }
}

/* ---------- Feed-filter ---------- */
.feed-filter {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem;
    margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}
.feed-filter a {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 44px; padding: 0.5rem 1.15rem; border-radius: 999px; border: 1px solid var(--line);
    background: var(--card); color: var(--muted); font-weight: 600; font-size: 0.9rem;
    text-align: center; white-space: nowrap; line-height: 1.1;
    text-transform: uppercase; letter-spacing: 0.03em;
    transition: transform .15s, border-color .15s, color .15s, background .15s;
}
.feed-filter .lbl-m { display: none; }   /* korte mobiele labels (ALLES/PREMIUM/GRATIS) */
/* Mobiel: korte CAPS-labels, gecentreerd */
@media (max-width: 560px) {
    .feed-filter { gap: 0.35rem; }
    .feed-filter a { padding: 0.5rem 0.85rem; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.02em; }
    .feed-filter .lbl-d { display: none; }
    .feed-filter .lbl-m { display: inline; }
}
.feed-filter a:hover { border-color: var(--red); color: var(--red); transform: translateY(-1px); }
.feed-filter a.is-active { background: var(--red); color: #fff; border-color: var(--text); }
/* Sorteer-knoppen (pornosterren): 3 even grote knoppen op 1 lijn. */
.sort-filter { max-width: 520px; margin-inline: auto; flex-wrap: nowrap; }
.sort-filter a { flex: 1 1 0; min-width: 0; padding-inline: 0.6rem; }

/* ---------- Social feed (/videos) ---------- */
.feed {
    width: min(660px, 100%); margin-inline: auto;
    display: flex; flex-direction: column; gap: clamp(1.6rem, 3.5vw, 2.6rem);
}
.post {
    position: relative;
    background: var(--card); border: 1px solid var(--line); border-radius: 20px;
    box-shadow: var(--shadow-sm); overflow: hidden;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
    animation: hpFadeUp .6s cubic-bezier(.2,.7,.2,1) both;
}
.post:nth-child(2) { animation-delay: .09s; }
.post:nth-child(3) { animation-delay: .18s; }
.post:hover {
    transform: translateY(-6px);
    border-color: #dcdce0;
    box-shadow: 0 24px 50px -28px rgba(9, 9, 11, 0.32);
}
@keyframes hpFadeUp { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .post { animation: none; } }

.post-head { display: flex; align-items: center; gap: 0.85rem; padding: clamp(0.85rem,2vw,1.15rem) clamp(1rem,2.5vw,1.35rem); }
.post-avatar {
    width: 54px; height: 54px; border-radius: 50%; object-fit: cover; flex: none;
    padding: 0; border: 1px solid var(--line); background: var(--bg-soft);
}
.post-id { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.post-name { font-weight: 700; font-size: 1.08rem; color: var(--text); display: inline-flex; align-items: center; gap: 0.35rem; }
.post-name .verified {
    width: 18px; height: 18px; flex: none; border-radius: 50%;
    background: var(--red); color: #fff;
    font-size: 0.66rem; font-weight: 800; display: inline-grid; place-items: center;
}
.post-handle { font-size: 0.88rem; color: var(--muted); }
.post-more { margin-left: auto; color: var(--muted); font-weight: 700; align-self: flex-start; letter-spacing: 1px; font-size: 1.1rem; }

.post-media {
    position: relative; display: block; aspect-ratio: 16 / 9;
    background: var(--bg-soft); overflow: hidden;
}
.media-link { position: absolute; inset: 0; display: block; z-index: 1; }
.post-media img, .vid-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-media:hover img, .vid-media:hover img { transform: scale(1.04); }
.post-trailer {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    background: #000; opacity: 0; transition: opacity .25s ease; pointer-events: none;
}
.playing .post-trailer { opacity: 1; }
/* Play-hint, alleen op hover-apparaten (desktop) */
@media (hover: hover) and (pointer: fine) {
    .has-trailer::after {
        content: "▶"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
        width: 54px; height: 54px; display: grid; place-items: center;
        background: rgba(var(--ink-rgb), 0.5); color: #fff; border-radius: 50%;
        font-size: 1rem; padding-left: 3px; backdrop-filter: blur(2px);
        transition: opacity .2s ease; pointer-events: none; z-index: 2;
    }
    .playing::after { opacity: 0; }
}
.post-cast-pills {
    position: absolute; top: 0.7rem; left: 0.7rem; z-index: 3;
    display: flex; flex-wrap: wrap; gap: 0.35rem;
    max-width: calc(100% - 5.5rem);
}
.cast-pill {
    display: inline-flex; align-items: center; min-height: 30px;
    background: rgba(var(--ink-rgb), 0.55); color: #fff; text-decoration: none;
    font-weight: 600; font-size: 0.78rem; letter-spacing: -0.01em;
    padding: 0.3rem 0.72rem; border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    transition: background .15s, transform .15s, border-color .15s;
}
a.cast-pill:hover { background: var(--red); border-color: rgba(255, 255, 255, 0.4); transform: translateY(-1px); }
a.cast-pill:active { transform: scale(0.96); }
.cast-premium {
    background: linear-gradient(135deg, #ffb800, #ff7a00); color: #3a2300;
    border-color: rgba(255, 255, 255, 0.55); text-transform: uppercase; letter-spacing: .03em;
}
.cast-free {
    background: var(--red); color: #fff;
    border-color: rgba(255, 255, 255, 0.3); text-transform: uppercase; letter-spacing: .03em;
}
.pill-clip { display: none; }   /* toon "Gratis" i.p.v. "Gratis clip", overal */
/* Grotere tap-targets op touch */
@media (pointer: coarse) {
    .cast-pill { min-height: 40px; font-size: 0.88rem; padding: 0.5rem 0.95rem; }
    .post-cast-pills { gap: 0.45rem; }
}
/* Mobiel: de overlay-pills op de videokaarten compacter. */
@media (max-width: 700px) {
    .post-cast-pills { gap: 0.3rem; max-width: calc(100% - 4.5rem); }
    .post-cast-pills .cast-pill { min-height: 26px; font-size: 0.7rem; padding: 0.24rem 0.58rem; }
    .post-dur { font-size: 0.66rem; padding: 0.2rem 0.5rem; }
}
.post-dur {
    position: absolute; top: 0.7rem; right: 0.7rem; z-index: 3;
    background: rgba(var(--ink-rgb), 0.55); color: #fff; font-weight: 600;
    font-size: 0.74rem; padding: 0.28rem 0.62rem; border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
}

.post-actions { display: flex; align-items: center; gap: 0.25rem; padding: clamp(0.7rem,1.6vw,1rem) clamp(0.7rem,1.6vw,1rem) 0.1rem; }
.post-actions .act {
    font: inherit; font-size: 1.6rem; line-height: 1; cursor: pointer;
    background: none; border: 0; padding: 0.4rem 0.5rem; border-radius: 14px;
    transition: background .15s, transform .15s;
}
.post-actions .act:hover { background: var(--bg-soft); transform: translateY(-2px) scale(1.14); }
.post-actions .act.like:hover { filter: saturate(1.4); }
.post-actions .save { margin-left: auto; }

.post-body { padding: 0.45rem clamp(1rem,2.5vw,1.35rem) clamp(1.1rem,2.5vw,1.45rem); }
.post-caption { font-size: 1.05rem; line-height: 1.55; color: var(--text); }
.post-caption b { font-weight: 700; margin-right: 0.25rem; }
.post-caption .post-text { color: var(--muted); }
.post-tags {
    margin-top: 0.6rem; font-size: 0.98rem; font-weight: 600; word-spacing: 0.15rem;
    color: var(--red); display: flex; flex-wrap: wrap; gap: 0.1rem 0.5rem;
}
.post-tags a { color: var(--red); }
.post-tags a:hover { text-decoration: underline; }
.post-link {
    display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.9rem;
    font-weight: 600; font-size: 1rem; color: #fff;
    background: var(--red);
    padding: 0.6rem 1.1rem; border-radius: 999px;
    transition: transform .18s ease, background .18s ease;
}
.post-link:hover { transform: translateY(-2px); background: var(--red); }

/* ---------- Empty / error state ---------- */
.notice {
    text-align: center; padding: 2.5rem 1rem; border: 1px dashed var(--line);
    border-radius: var(--radius); color: var(--muted); background: var(--bg-soft);
}

/* ---------- Paginering ---------- */
.pagination { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.4rem; margin-top: clamp(1.8rem, 4vw, 2.8rem); }
.pg {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 44px; height: 44px; padding: 0 0.75rem; border-radius: 12px;
    border: 1px solid var(--line); background: var(--card); color: var(--text);
    font-weight: 600; font-size: 0.95rem;
    transition: transform .15s, border-color .15s, color .15s, background .15s;
}
.pg:hover { border-color: var(--red); color: var(--red); transform: translateY(-1px); }
.pg-current, .pg-current:hover { background: var(--red); color: #fff; border-color: var(--text); }
.pg-arrow { font-weight: 700; }
.pg-ellipsis { padding: 0 0.3rem; color: var(--muted); font-weight: 600; }

/* ---------- Intro copy block (SEO) ---------- */
.intro { background: var(--bg-soft); }
.intro .wrap { max-width: 760px; text-align: center; }
.intro p { color: var(--muted); }
.intro p + p { margin-top: 0.8rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); margin-top: 2rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 1.5rem; padding: 2.4rem 0 1.4rem; flex-wrap: wrap; }
.footer-brand .brand-text { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
.footer-brand p { color: var(--muted); margin-top: 0.4rem; max-width: 38ch; font-size: 0.95rem; }
.footer-nav { display: flex; gap: 1.2rem; align-items: flex-start; }
.footer-nav a { color: var(--muted); font-weight: 500; }
.footer-nav a:hover { color: var(--red); }
.footer-bottom { display: flex; align-items: center; gap: 0.8rem; padding: 1rem 0 2rem; border-top: 1px solid var(--line); }
.footer-bottom p { font-size: 0.82rem; color: var(--muted); }
.age-badge {
    flex: none; font-weight: 700; font-size: 0.8rem; color: #fff;
    background: var(--red); padding: 0.3rem 0.55rem; border-radius: 8px;
}

@media (max-width: 560px) {
    .cta { display: none; }
    .header-inner { gap: 0.5rem; }
    .brand { font-size: 1.08rem; }
    .site-nav { gap: 0.1rem; }
    .site-nav a { padding: 0.4rem 0.5rem; font-size: 0.72rem; letter-spacing: 0.03em; }
    .footer-inner { flex-direction: column; }
}

/* ---------- Modelpagina (/pornoster/...) ---------- */
.profile {
    position: relative; overflow: hidden;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: clamp(2.4rem, 5.5vw, 3.8rem) 0 clamp(1rem, 2.5vw, 1.5rem);
}
.model-videos { padding-top: clamp(1rem, 2.5vw, 1.6rem); }
.profile-inner { display: flex; align-items: center; gap: clamp(1.2rem, 4vw, 2.6rem); flex-wrap: wrap; }
.profile-avatar {
    width: clamp(120px, 30vw, 184px); height: clamp(120px, 30vw, 184px);
    aspect-ratio: 1; border-radius: 50%;
    object-fit: cover; padding: 0; flex: none; align-self: center;
    border: 1px solid var(--line); background: var(--card);
    box-shadow: var(--shadow);
}
.profile-avatar.is-fallback {
    display: grid; place-items: center; background: var(--bg-soft);
    font-family: var(--font-display); font-weight: 700; color: var(--blue-ink); line-height: 1;
    font-size: clamp(3rem, 9vw, 5rem);
}
/* Studio-icoon (logo) in de ronde avatar: niet bijsnijden, met wat lucht eromheen. */
.profile-avatar.studio-avatar {
    object-fit: contain; padding: clamp(1.2rem, 4vw, 2rem);
    background: radial-gradient(120% 120% at 50% 0%, #20202b 0%, var(--card) 100%);
}
.profile-main { min-width: 240px; flex: 1; }
.profile-main h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5.4vw, 3.4rem); letter-spacing: 0.01em; line-height: 1.04; font-weight: 700;
    display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap;
}
.profile-main h1 .verified {
    width: 26px; height: 26px; font-size: 0.85rem; border-radius: 50%;
    background: var(--red); color: #fff;
    display: inline-grid; place-items: center;
}
.profile-tag { color: var(--muted); font-weight: 500; margin-top: 0.25rem; }
.flag { display: inline-flex; flex: none; align-self: center; }
.flag svg { width: clamp(26px, 3.4vw, 34px); height: auto; border-radius: 3px; box-shadow: 0 0 0 1px rgba(9, 9, 11, 0.12); display: block; }
.profile-stats { display: flex; flex-wrap: wrap; align-items: center; row-gap: 0.6rem; margin-top: 1.1rem; }
.stat {
    display: inline-flex; flex-direction: column; line-height: 1.15;
    background: none; border: 0; box-shadow: none; padding: 0 1.1rem; position: relative;
}
.stat:first-child { padding-left: 0; }
.stat:not(:last-child)::after {
    content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 1px; height: 22px; background: var(--line);
}
.stat .k { font-size: 0.66rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.stat .v { font-size: 1.02rem; font-weight: 700; color: var(--blue-ink); }
.profile-bio { max-width: 72ch; margin-top: 1.3rem; color: var(--text); line-height: 1.6; font-size: 0.8rem; }
.profile-bio a, .bio-link { color: var(--red); font-weight: 600; }
.profile-bio a:hover { text-decoration: underline; }
.profile-bio.is-clamped { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden; }
.profile-cta { margin-top: 1.3rem; }
.bio-toggle { display: none; margin-top: 0.5rem; padding: 0; background: none; border: 0; color: var(--red); font-weight: 600; font-size: 0.82rem; cursor: pointer; }
.bio-toggle.is-visible { display: inline-block; }
.bio-toggle:hover { text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--muted); font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; }
.back-link:hover { color: var(--red); }

.breadcrumb { border-bottom: 1px solid var(--line); background: var(--card); }
.breadcrumb .wrap { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; padding: 0.7rem 0; font-size: 0.86rem; font-weight: 500; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: #c2c8d6; }
.breadcrumb .current { color: var(--text); }

.vid-grid {
    display: grid; gap: clamp(1.1rem, 2.5vw, 1.6rem);
    grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
}
/* Desktop: breder uitbreken (85vw) op de modelpagina; de titel erboven
   krijgt dezelfde uitbraak zodat hij links uitlijnt met het grid. */
@media (min-width: 900px) {
    .vid-grid,
    .model-videos .section-head {
        max-width: none; width: 85vw; margin-left: calc(50% - 42.5vw);
    }
    .vid-grid { grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); }
}
.vid {
    position: relative; background: var(--card); border: 1px solid var(--line);
    border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease;
}
.vid:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.vid-media { position: relative; display: block; aspect-ratio: 16 / 10; background: var(--bg-soft); overflow: hidden; }
.vid-niche {
    position: absolute; top: 0.6rem; left: 0.6rem; z-index: 3;
    background: rgba(var(--ink-rgb), 0.55); color: #fff; border: 1px solid rgba(255,255,255,.2);
    font-weight: 600; font-size: 0.72rem; text-transform: capitalize;
    padding: 0.26rem 0.62rem; border-radius: 999px; backdrop-filter: blur(6px);
}
.vid-premium {
    position: absolute; top: 0.6rem; left: 0.6rem; z-index: 3;
    display: inline-flex; align-items: center; gap: 0.25rem;
    background: linear-gradient(135deg, #ffb800, #ff7a00); color: #3a2300;
    font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: .03em;
    padding: 0.26rem 0.62rem; border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 18px -8px rgba(255, 138, 0, 0.85);
}
.vid-4k {
    position: absolute; top: 0.6rem; right: 0.6rem; z-index: 3;
    background: rgba(var(--ink-rgb), 0.65); color: #fff; border: 1px solid rgba(255,255,255,.2);
    font-weight: 700; font-size: 0.68rem; letter-spacing: .04em;
    padding: 0.24rem 0.5rem; border-radius: 8px; backdrop-filter: blur(6px);
}
.section-head-2 { margin-top: clamp(2rem, 4vw, 2.8rem); }
.vid-body { padding: 0.85rem 0.95rem 1rem; }
.vid-body h3 { font-size: 1.02rem; line-height: 1.3; letter-spacing: -0.01em; }
.vid:hover .vid-body h3 { color: var(--red); }
.vid-date { margin-top: 0.45rem; font-size: 0.82rem; color: var(--muted); }

/* ---------- Pornosterren-index ---------- */
.star-grid {
    display: grid; gap: clamp(1.1rem, 2.6vw, 1.7rem);
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
}
/* Desktop: breder uitbreken (85vw) + vast kolom-aantal dat 48 netjes deelt
   (6 of 8 kolommen) zodat de onderste rij altijd vol is. */
@media (min-width: 900px) {
    .star-grid {
        max-width: none; width: 85vw; margin-left: calc(50% - 42.5vw);
        grid-template-columns: repeat(6, 1fr);
        gap: clamp(1.1rem, 1.8vw, 1.6rem);
    }
}
@media (min-width: 1200px) {
    .star-grid { grid-template-columns: repeat(8, 1fr); }
}
.star { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.55rem; transition: transform .18s ease; }
.star:hover { transform: translateY(-5px); }
.star-avatar {
    width: 100%; aspect-ratio: 1; border-radius: 50%; padding: 0; overflow: hidden;
    border: 1px solid var(--line); background: var(--bg-soft); box-shadow: var(--shadow-sm);
}
.star-avatar img, .star-fallback { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
.star-avatar img { transition: transform .4s ease; }
.star:hover .star-avatar img { transform: scale(1.07); }
.star-fallback {
    display: grid; place-items: center; background: var(--bg-soft);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 6vw, 2.6rem); font-weight: 700; color: var(--blue-ink);
}
.star-name { font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; color: var(--text); }
.star:hover .star-name { color: var(--red); }
.star-meta { font-size: 0.82rem; color: var(--muted); }

/* ---------- Studio-index (/studios) ---------- */
.studio-grid {
    display: grid; gap: clamp(1.1rem, 2.4vw, 1.6rem);
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
@media (min-width: 900px) {
    .studio-grid {
        max-width: none; width: 85vw; margin-left: calc(50% - 42.5vw);
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1200px) { .studio-grid { grid-template-columns: repeat(5, 1fr); } }
.studio-card {
    display: flex; flex-direction: column; overflow: hidden;
    background: var(--card); border: 1px solid var(--line); border-radius: 16px;
    box-shadow: var(--shadow-sm); transition: transform .18s ease, border-color .18s ease;
}
.studio-card:hover { transform: translateY(-5px); border-color: var(--red); }
.studio-thumb {
    position: relative; aspect-ratio: 16 / 10; overflow: hidden;
    display: grid; place-items: center; padding: 1.4rem;
    background: radial-gradient(120% 120% at 50% 0%, #20202b 0%, var(--bg-soft) 100%);
}
.studio-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; transition: transform .4s ease; }
.studio-card:hover .studio-thumb img { transform: scale(1.06); }
.studio-fallback {
    display: grid; place-items: center; width: 100%; height: 100%;
    font-family: var(--font-display); font-size: 3rem; color: var(--text);
}
.studio-meta { padding: 0.85rem 1rem 1rem; display: flex; flex-direction: column; gap: 0.15rem; }
.studio-name {
    font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em;
    font-size: 1.15rem; color: var(--text);
}
.studio-card:hover .studio-name { color: var(--red); }
.studio-count { font-size: 0.82rem; color: var(--muted); }

@media (max-width: 560px) {
    .profile-inner { flex-direction: column; text-align: center; }
    .profile-main h1, .profile-stats { justify-content: center; }
    .profile-bio { margin-inline: auto; }
    /* Studio-icoon (logo) op mobiel verbergen; de naam volstaat. */
    .profile-avatar.studio-avatar { display: none; }
    /* Stats op 1 lijn houden op mobiel. */
    .profile-stats { flex-wrap: nowrap; }
    .stat { padding: 0 0.5rem; }
    .stat .k { font-size: 0.56rem; letter-spacing: .03em; }
    .stat .v { font-size: 0.9rem; }
    .stat:not(:last-child)::after { height: 18px; }
}

/* ---------- Watchpagina gratis clip (/clip/...) ---------- */
.watch-section { padding-top: clamp(1.4rem, 3vw, 2.2rem); }
.watch {
    display: grid; gap: clamp(1.2rem, 3vw, 2rem); align-items: start;
    grid-template-columns: minmax(0, 1fr) clamp(360px, 42%, 560px);
}
.watch-player .player,
.watch-player .player-off {
    width: 100%; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden;
    background: #000; display: block;
}
.player-off {
    display: grid; place-items: center; color: #fff; text-align: center; padding: 1rem;
    background-size: cover; background-position: center; font-weight: 600;
}
.player-off span { background: rgba(var(--ink-rgb), 0.6); padding: 0.6rem 1rem; border-radius: 999px; }
.watch-info { min-width: 0; }
.watch-badge { position: static; margin-bottom: 0; }
.watch-badges { display: flex; gap: 0.5rem; margin-bottom: 0.8rem; }
.watch-badges > * {
    flex: 1 1 0; min-width: 0; min-height: 40px;
    display: inline-flex; align-items: center; justify-content: center; text-align: center;
}
.watch-fullbtn {
    background: #16a34a; color: #fff; border: 1px solid #16a34a;
    font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: .03em;
    border-radius: 999px; padding: 0.26rem 0.62rem; text-decoration: none;
    transition: background .15s, transform .15s;
}
.watch-fullbtn:hover { background: #15803d; transform: translateY(-1px); }
.watch-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.12; letter-spacing: -0.03em; font-weight: 700;
}
.watch-meta {
    display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
    margin-top: 0.6rem; color: var(--muted); font-size: 0.92rem; font-weight: 500;
}
.watch-meta .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: #c7ccda; display: inline-block; }
.watch-block { margin-top: 1.4rem; }
.watch-h {
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: .06em;
    color: var(--muted); font-weight: 600; margin-bottom: 0.6rem;
}
.watch-cast, .watch-niches { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.cast-solid {
    background: var(--bg-soft); color: var(--text);
    border: 1px solid var(--line); backdrop-filter: none; box-shadow: none;
}
a.cast-solid:hover { background: var(--red); color: #fff; border-color: var(--red); }
.watch-desc { color: var(--text); line-height: 1.6; font-size: 0.8rem; }
.watch-player { position: relative; }
.player-tag {
    position: absolute; top: 0.7rem; left: 0.7rem; z-index: 3;
    background: rgba(var(--ink-rgb), 0.55); color: #fff; backdrop-filter: blur(6px);
    font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: .04em;
    padding: 0.26rem 0.62rem; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.2);
}
.watch-cta {
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    margin-top: 1.5rem; padding: 0.9rem 1.2rem; border-radius: 999px;
    background: var(--red); color: #fff; font-weight: 700; font-size: 1rem;
    transition: transform .18s ease, background .18s ease;
}
.watch-cta:hover { transform: translateY(-2px); background: var(--red); }
.player-play {
    position: absolute; inset: 0; margin: auto; width: 76px; height: 76px; padding: 0;
    display: grid; place-items: center; z-index: 4;
    background: rgba(var(--ink-rgb), 0.55); color: #fff; border: 0; border-radius: 50%;
    cursor: pointer; backdrop-filter: blur(4px);
    transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.player-play svg { width: 34px; height: 34px; fill: currentColor; margin-left: 3px; }
.player-play:hover { background: var(--red); transform: scale(1.06); }
.watch-player.is-playing .player-play,
.watch-player.show-cta .player-play { opacity: 0; pointer-events: none; transform: scale(0.7); }
/* CTA-overlay: premium tijdens spelen, clip in de laatste 10s en bij pauze. */
.player-cta {
    position: absolute; inset: 0; z-index: 5; display: none;
    place-items: center; text-align: center; padding: 1rem;
    background: rgba(var(--ink-rgb), 0.45); pointer-events: none;
}
.watch-player.show-cta .player-cta { display: grid; }
.player-cta-inner { pointer-events: auto; display: grid; gap: 0.7rem; justify-items: center; }
.player-cta-inner p { margin: 0; color: #fff; font-weight: 600; font-size: 0.9rem; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5); }
.player-cta-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: #16a34a; color: #fff; font-weight: 700; font-size: 1rem;
    padding: 0.7rem 1.4rem; border-radius: 999px; text-decoration: none;
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.5);
    transition: background .15s, transform .15s;
}
.player-cta-btn:hover { background: #15803d; transform: translateY(-2px); }
/* Desktop: CTA flink groter (mobiel blijft compact). */
@media (min-width: 701px) {
    .player-cta-inner { gap: 1.1rem; }
    .player-cta-inner p { font-size: clamp(1.3rem, 1.8vw, 1.7rem); }
    .player-cta-btn { font-size: clamp(1.2rem, 1.6vw, 1.5rem); padding: 0.95rem 2rem; }
}
.watch-related { padding-top: clamp(1.4rem, 3vw, 2rem); }
/* Desktop: zelfde 85vw-uitbraak als de grids eronder, zodat alles uitlijnt. */
@media (min-width: 900px) {
    .watch { max-width: none; width: 85vw; margin-left: calc(50% - 42.5vw); }
}
@media (max-width: 820px) {
    .watch { grid-template-columns: 1fr; }
}

/* ---------- Zoekbalk (typeahead) ---------- */
.hp-search { position: relative; flex: 1 1 auto; min-width: 0; max-width: 420px; }
.hp-search-input {
    width: 100%; height: 42px; border: 1px solid var(--line); border-radius: 999px;
    background: var(--bg-soft) url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='16'%20height='16'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%2371717a'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Ccircle%20cx='11'%20cy='11'%20r='7'/%3E%3Cline%20x1='21'%20y1='21'%20x2='16.65'%20y2='16.65'/%3E%3C/svg%3E") no-repeat 0.9rem center;
    background-size: 16px;
    padding: 0 1rem 0 2.5rem; font: inherit; font-size: 0.92rem; color: var(--text);
    transition: border-color .15s, background-color .15s;
}
.hp-search-input::placeholder { color: var(--muted); }
.hp-search-input:focus { outline: none; border-color: var(--red); background-color: var(--card); }
.hp-search-list {
    position: absolute; top: calc(100% + 0.4rem); left: 0; right: 0; z-index: 60;
    margin: 0; padding: 0.3rem; list-style: none;
    background: var(--card); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
    max-height: 70vh; overflow: auto;
}
.hp-search-list[hidden] { display: none; }
.hp-s-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.45rem 0.55rem; border-radius: 10px; cursor: pointer; }
.hp-s-item.is-active { background: var(--bg-soft); }
.hp-s-thumb { width: 48px; height: 32px; border-radius: 6px; object-fit: cover; flex: none; background: var(--bg-soft); display: block; }
.hp-s-thumb.is-round { width: 34px; height: 34px; border-radius: 50%; }
.hp-s-main { min-width: 0; display: flex; flex-direction: column; line-height: 1.2; }
.hp-s-label { font-weight: 600; font-size: 0.9rem; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hp-s-type { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.search-toggle {
    display: none; flex: none; width: 42px; height: 42px; padding: 0;
    background: none; border: 0; border-radius: 12px; cursor: pointer; color: var(--text);
    align-items: center; justify-content: center; transition: background .15s;
}
.search-toggle:hover { background: var(--bg-soft); }
.search-toggle svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
/* Mobiel: search niet inline maar als uitklap-paneel onder de header (via icoon). */
@media (max-width: 700px) {
    .search-toggle { display: inline-flex; order: 2; margin-left: auto; }
    .nav-toggle { order: 3; margin-left: 0; }
    .brand { order: 1; }
    .hp-search {
        position: absolute; top: 100%; left: 0; right: 0; z-index: 55;
        max-width: none; margin: 0; padding: 0.6rem clamp(1.2rem, 4vw, 1.5rem);
        background: var(--card); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
        display: none;
    }
    .site-header.search-open .hp-search { display: block; }
    /* 16px voorkomt dat iOS Safari inzoomt bij focus (anders kun je de pagina daarna pannen). */
    .hp-search-input { font-size: 16px; }
}

/* ---------- Hamburger-menu (mobiel) ---------- */
.nav-toggle {
    display: none; flex: none; margin-left: 0.3rem;
    width: 42px; height: 42px; padding: 0;
    background: none; border: 0; border-radius: 12px; cursor: pointer;
    align-items: center; justify-content: center; color: var(--text);
    transition: background .15s;
}
.nav-toggle:hover { background: var(--bg-soft); }
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
    content: ""; display: block; width: 22px; height: 2px; border-radius: 2px;
    background: currentColor; transition: transform .2s ease, background .2s ease;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before { position: absolute; left: 0; top: -7px; }
.nav-toggle-bars::after  { position: absolute; left: 0; top: 7px; }
.nav-open .nav-toggle-bars { background: transparent; }
.nav-open .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle-bars::after  { transform: translateY(-7px) rotate(-45deg); }

/* Modelpagina: breder (85vw) + grotere avatar + bio over 2 kolommen,
   zodat de rechterkant niet leeg blijft. */
@media (min-width: 900px) {
    .profile .wrap { width: 85vw; max-width: none; }
    .profile-avatar { width: clamp(180px, 18vw, 250px); height: clamp(180px, 18vw, 250px); }
    .profile-bio { max-width: none; columns: 2; column-gap: clamp(2rem, 3.5vw, 3.5rem); }
}

@media (max-width: 700px) {
    .nav-toggle { display: inline-flex; }
    .cta { display: none; }
    .site-nav {
        position: absolute; top: 100%; left: 0; right: 0; margin: 0;
        flex-direction: column; gap: 0.15rem;
        background: rgba(9, 9, 12, 0.97); backdrop-filter: saturate(180%) blur(12px);
        border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
        padding: 0.5rem clamp(1.2rem, 4vw, 1.5rem) 0.85rem;
        display: none;
    }
    .site-header.nav-open .site-nav { display: flex; }
    .site-nav a {
        width: 100%; border-radius: 12px;
        padding: 0.9rem 1rem; font-size: 0.95rem; letter-spacing: 0.04em;
    }
    .site-nav a.is-active { background: var(--bg-pink); color: var(--red); }
}

/* ---------- Homepage ---------- */
.section-soft { background: var(--bg-soft); }
.home-grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.6rem); grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.home-stars { display: grid; gap: clamp(1.1rem, 2.6vw, 1.7rem); grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.home-cats .chip { font-size: 0.9rem; padding: 0.5rem 1rem; }
.intro h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.03em; margin-bottom: 0.7rem; color: var(--text); }
/* Vaste kolommen die de 12 nieuwste items altijd in volle rijen leggen (4 of 3),
   zodat de onderste rij nooit half leeg is. 12 deelt netjes op 4, 3, 2 en 1. */
@media (min-width: 1080px) {
    .home-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 700px) and (max-width: 1079px) {
    .home-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .home-grid { grid-template-columns: 1fr; gap: 1.1rem; }   /* 1 scene per rij op mobiel */
}
@media (max-width: 560px) {
    .home-stars { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Homepage: content op 85vw (media-secties), tekstblok blijft leesbaar. */
@media (min-width: 900px) {
    .page-home .section:not(.intro) > .wrap { width: 85vw; max-width: none; }
}
/* 8 pornosterren in volle rijen, net als op de modelpagina: 6 kolommen tonen er
   6, 8 kolommen tonen er 8. */
@media (min-width: 900px) and (max-width: 1199px) {
    .home-stars { grid-template-columns: repeat(6, 1fr); }
    .home-stars .star:nth-child(n+7) { display: none; }
}
@media (min-width: 1200px) {
    .home-stars { grid-template-columns: repeat(8, 1fr); }
}

/* Categorieen alleen in het mobiele menu (verbergen op desktop). */
@media (min-width: 701px) {
    .site-nav .nav-mobile-only { display: none; }
}

/* Homepage intro op desktop 85vw, titel op 1 regel, tekst leesbaar gecapt. */
@media (min-width: 900px) {
    .page-home .intro .wrap { width: 85vw; max-width: none; }
    .page-home .intro h2 { white-space: nowrap; }
    .page-home .intro p { max-width: 860px; margin-inline: auto; }
}

/* ---------- Vergelijkbare pornosterren (modelpagina) ---------- */
/* Titel + grid breken op desktop uit naar 85vw en lijnen links uit met de
   video's erboven, net als de rest van de modelpagina. */
@media (min-width: 900px) {
    .similar-stars .section-head {
        max-width: none; width: 85vw; margin-left: calc(50% - 42.5vw);
    }
}
/* Houd de rij vol: 6 kolommen tonen er 6, 8 kolommen tonen er 8. */
@media (min-width: 900px) and (max-width: 1199px) {
    .similar-grid .star:nth-child(n+7) { display: none; }
}

/* ---------- FAQ (modelpagina) ---------- */
.faq-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.03em; margin-bottom: 1.1rem; color: var(--text); }
.faq { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; list-style: none; padding: 1rem 2rem 1rem 0; font-weight: 600; font-size: 1.02rem; position: relative; color: var(--text); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0.2rem; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--muted); font-weight: 400; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-a { padding: 0 0 1.1rem; margin: 0; color: var(--muted); line-height: 1.65; }

/* ---------- Fotosets ---------- */
.photoset-card { display: block; }
.photoset-card .vid-niche.photoset-count { text-transform: none; }
/* Detailpagina gebruikt de .watch-layout (links preview, rechts .watch-info), exact
   dezelfde rechterkant-stijl als de clip/video-watchpagina. */
.fotoset-hero { position: relative; display: block; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); }
.fotoset-hero img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .3s ease; }
.fotoset-hero:hover img { transform: scale(1.02); }
.fotoset-hero-badge {
    position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2;
    background: rgba(var(--ink-rgb), 0.6); color: #fff; font-weight: 600; font-size: 0.8rem;
    padding: 0.3rem 0.7rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(6px);
}
/* 2 rijen van 8 thumbs (16), gelijkmatig over de hele set gesampled. Mobiel 4 breed. */
.fotoset-grid {
    margin-top: clamp(0.9rem, 2vw, 1.3rem);
    display: grid; gap: clamp(0.4rem, 1.2vw, 0.8rem);
    grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 700px) {
    .fotoset-grid { grid-template-columns: repeat(8, 1fr); }
}
.fotoset-thumb {
    margin: 0; padding: 0; border: 0; font: inherit; cursor: pointer; display: block; width: 100%;
    border-radius: 12px; overflow: hidden; background: var(--bg-soft); box-shadow: var(--shadow-sm);
}
.fotoset-thumb img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; transition: transform .25s ease; }
.fotoset-thumb:hover img { transform: scale(1.05); }
/* De fotoset-upsell-knop rechts gebruikt de groene watch-fullbtn-stijl van de clip-pagina. */
.fotoset-watch .watch-fullbtn { font-size: 0.72rem; }
/* Layout. DESKTOP: hero + thumbs links, alle info (titel + knoppen + metadata) samen in
   de rechterkolom (clip-stijl). MOBIEL: alleen titel + knoppen onder de grote foto, en de
   overige metadata onder de thumbs. De info-kolom wordt op mobiel via display:contents
   opengesplitst zodat head en details los geplaatst kunnen worden. */
.fotoset-watch-grid {
    display: grid; gap: clamp(1.2rem, 3vw, 2rem); align-items: start;
    grid-template-columns: 1fr;
    grid-template-areas: "hero" "head" "thumbs" "details";
}
.fotoset-watch-grid > .fotoset-hero { grid-area: hero; }
.fotoset-watch-grid > .fotoset-grid { grid-area: thumbs; margin-top: 0; }
/* Mobiel: info-kolom opensplitsen; head -> onder de foto, details -> onder de thumbs. */
.fotoset-info-col { display: contents; }
.fotoset-head    { grid-area: head; min-width: 0; }
.fotoset-details { grid-area: details; min-width: 0; }
/* Detailblok (mobiel) onder de thumbs: meta + beschrijving + blokken, met scheidingslijn. */
.fotoset-details { padding-top: clamp(0.6rem, 1.5vw, 1rem); border-top: 1px solid var(--line); }
.fotoset-details .watch-meta { margin-top: 0; }
.fotoset-details .watch-desc { max-width: 760px; margin-top: 0.6rem; }
.fotoset-detail-blocks { display: flex; flex-wrap: wrap; gap: 1.2rem 2.6rem; margin-top: 1.2rem; }
.fotoset-detail-blocks .watch-block { margin-top: 0; }

@media (min-width: 821px) {
    /* Desktop: alles terug in één rechterkolom, head + details onder elkaar (clip-stijl). */
    .fotoset-watch-grid {
        grid-template-columns: minmax(0, 1fr) clamp(360px, 42%, 560px);
        grid-template-areas: "hero info" "thumbs info";
    }
    .fotoset-info-col { display: block; grid-area: info; min-width: 0; }
    .fotoset-details { border-top: 0; padding-top: 0; }
    .fotoset-details .watch-desc { max-width: none; }
    .fotoset-detail-blocks { display: block; margin-top: 0; }
    .fotoset-detail-blocks .watch-block { margin-top: 1.4rem; }
}
@media (min-width: 900px) {
    .fotoset-watch-grid { max-width: none; width: 85vw; margin-left: calc(50% - 42.5vw); }
}

/* ---------- Lightbox (fotoset) ---------- */
html.lb-open { overflow: hidden; }
.lightbox {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: center; gap: clamp(0.4rem, 2vw, 1rem);
    background: rgba(8, 8, 11, 0.93); padding: clamp(1rem, 3vw, 2.5rem);
}
.lightbox[hidden] { display: none; }
.lb-stage { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; max-width: 100%; }
.lb-img {
    max-width: min(92vw, 680px); max-height: 72vh; width: auto; height: auto;
    border-radius: 12px; background: #111; box-shadow: 0 24px 70px -20px rgba(0, 0, 0, 0.85);
}
.lb-bar { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.lb-count { color: rgba(255, 255, 255, 0.75); font-size: 0.9rem; font-weight: 600; }
.lb-cta {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: var(--red); color: #fff; font-weight: 600; font-size: 0.9rem;
    padding: 0.55rem 1.1rem; border-radius: 999px; transition: background .15s, transform .15s;
}
.lb-cta:hover { background: var(--red-soft); transform: translateY(-1px); }
.lb-close {
    position: absolute; top: 1rem; right: 1.1rem; z-index: 2;
    width: 44px; height: 44px; border: 0; border-radius: 50%; cursor: pointer;
    background: rgba(255, 255, 255, 0.12); color: #fff; font-size: 1.7rem; line-height: 1;
    transition: background .15s;
}
.lb-nav {
    flex: none; width: 48px; height: 48px; border: 0; border-radius: 50%; cursor: pointer;
    background: rgba(255, 255, 255, 0.12); color: #fff; font-size: 1.9rem; line-height: 1;
    transition: background .15s;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255, 255, 255, 0.25); }
@media (max-width: 600px) {
    .lb-nav { position: absolute; bottom: 1.3rem; }
    .lb-prev { left: 1.3rem; }
    .lb-next { right: 1.3rem; }
    .lb-img { max-height: 66vh; }
}

/* ---------- Scene-thumbs op de videopagina (rij van 10, geen lightbox) ---------- */
.scene-shots-section { padding: clamp(1rem, 2.5vw, 1.8rem) 0; }
.scene-strip {
    display: grid; grid-auto-flow: column; grid-auto-columns: minmax(86px, 1fr);
    gap: clamp(0.4rem, 1vw, 0.7rem); overflow-x: auto; padding-bottom: 0.2rem;
}
@media (min-width: 900px) {
    .scene-shots-section { padding-top: 0; }
    .scene-strip { max-width: none; width: 85vw; margin-left: calc(50% - 42.5vw); overflow-x: visible; }
}
.scene-thumb { display: block; border-radius: 10px; overflow: hidden; background: var(--bg-soft); box-shadow: var(--shadow-sm); }
.scene-thumb img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }

/* ---------- 18+ leeftijdsmodal (site-breed) ---------- */
html:not(.age-ok) { overflow: hidden; }
.age-gate {
    position: fixed; inset: 0; z-index: 2000;
    display: grid; place-items: center; padding: 1.4rem;
    background: rgba(8, 8, 11, 0.86); backdrop-filter: blur(10px);
}
html.age-ok .age-gate { display: none; }
.age-box {
    background: var(--card); border-radius: 22px; max-width: 30rem; width: 100%;
    padding: clamp(1.6rem, 4vw, 2.6rem); text-align: center;
    border: 1px solid var(--line); box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}
.age-mark { margin-bottom: 1.1rem; }
.age-mark .dot { animation: none; }   /* animatie blijft alleen op het header-logo */
.age-box h2 {
    font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2rem);
    letter-spacing: -0.03em; color: var(--text); margin-bottom: 0.7rem;
}
.age-box > p { color: var(--muted); line-height: 1.6; font-size: 0.98rem; }
.age-box strong { color: var(--text); }
.age-actions { display: flex; flex-direction: column; gap: 0.7rem; margin: 1.5rem 0 1.1rem; }
.age-actions .btn { width: 100%; }
.age-no { color: var(--muted); }
.age-fine { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* ---------- Dark fetish restyle: vet font, caps, accenten ---------- */
body { font-weight: 500; }
::selection { background: var(--red); color: #fff; }
html { scrollbar-color: var(--red) var(--bg-soft); }

/* Vette caps-koppen in het display-font (Anton). */
.hero h1, .section-head h2, .intro h2, .watch-title, .faq-title,
.fotoset-title, .brand, .splash-logo {
    text-transform: uppercase;
    letter-spacing: 0.01em;
}
.hero h1 { letter-spacing: 0.005em; }
.brand { letter-spacing: 0.04em; font-weight: 400; }   /* Anton is al zwaar */

/* Knoppen vet + caps. */
.btn, .cta, .watch-fullbtn, .fotoset-cta-btn, .lb-cta, .age-actions .btn {
    text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700;
}

/* Kaart-titels dikker (blijven leesbaar, geen caps). */
.vid-body h3, .post-caption, .star-name { font-weight: 700; }

/* Zoekveld donker. */
.hp-search-input {
    background: var(--card); color: var(--text); border: 1px solid var(--line);
}
.hp-search-input::placeholder { color: var(--muted); }
.hp-search-item:hover, .hp-search-item.is-active { background: var(--bg-soft); }

/* Subtiele rode gloed op het merk-accent in de hero. */
.hero h1 .brand-accent, .section-head h2 .em { text-shadow: 0 0 24px rgba(var(--red-rgb), 0.45); }

/* Cards iets meer contrast tegen de zwarte achtergrond. */
.vid, .post, .card { background: var(--card); }
.section-soft { background: var(--bg-soft); }

/* Hero-knoppen op mobiel naast elkaar (elk halve breedte i.p.v. wrappen). */
@media (max-width: 600px) {
    .hero-actions { flex-wrap: nowrap; gap: 0.5rem; }
    .hero-actions .btn { flex: 1 1 0; min-width: 0; padding-inline: 0.7rem; font-size: 0.82rem; text-align: center; }
}

/* Post-avatar als Pervout-merkicoon (twee stippen) i.p.v. een externe vlag. */
.post-avatar-mark { display: inline-flex; align-items: center; justify-content: center; gap: 4px; }
.post-avatar-mark .dot { width: 11px; height: 11px; border-radius: 50%; }
