:root {
    color-scheme: dark;
    --bg: #101014;
    --surface: #18181e;
    --surface-2: #202028;
    --surface-3: #292932;
    --text: #f7f4f5;
    --muted: #aaa5ad;
    --muted-strong: #d1cbd1;
    --line: rgba(255, 255, 255, 0.1);
    --accent: #ff4d7d;
    --accent-hover: #ff6a92;
    --accent-ink: #19070d;
    --success: #3bd68a;
    --warning: #ffc86a;
    --danger: #ff8b8b;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --shell: 1240px;
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0 0 auto;
    height: 340px;
    z-index: -1;
    background: radial-gradient(circle at 18% 0%, rgba(255, 77, 125, 0.12), transparent 44%);
    pointer-events: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.16em;
}

a:hover {
    color: var(--accent-hover);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    margin-bottom: 1.2rem;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

p:last-child {
    margin-bottom: 0;
}

code {
    padding: 0.15em 0.38em;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface-2);
    color: var(--muted-strong);
    font-size: 0.9em;
}

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.narrow {
    max-width: 760px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-160%);
    padding: 0.7rem 1rem;
    border-radius: var(--radius-sm);
    background: var(--text);
    color: var(--bg);
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(16, 16, 20, 0.9);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.brand:hover {
    color: var(--text);
}

.brand__mark {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 13px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.brand__text {
    font-size: 1.08rem;
}

.brand--footer {
    margin-bottom: 1rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-left: auto;
}

.site-nav a {
    color: var(--muted-strong);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--text);
}

.adult-badge {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--muted-strong);
    font-size: 0.78rem;
    font-weight: 900;
}

.hero {
    padding: clamp(70px, 11vw, 140px) 0 clamp(60px, 9vw, 110px);
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.55fr);
    align-items: end;
    gap: clamp(40px, 8vw, 110px);
}

.hero__copy {
    max-width: 850px;
}

.hero__lead {
    max-width: 760px;
    margin-bottom: 2rem;
    color: var(--muted-strong);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero__actions,
.profile-actions,
.continue-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero__panel {
    min-height: 250px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero__panel::before {
    content: "";
    width: 12px;
    height: 12px;
    margin-bottom: auto;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 7px rgba(59, 214, 138, 0.12);
}

.hero__panel-label {
    margin-bottom: 0.1rem;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__panel strong {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.hero__panel > span:not(.hero__panel-label) {
    color: var(--muted-strong);
}

.hero__panel small {
    margin-top: 0.75rem;
    color: var(--muted);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.9rem;
    color: var(--accent-hover);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(59, 214, 138, 0.12);
}

.section {
    padding: clamp(64px, 9vw, 110px) 0;
}

.section--soft {
    border-block: 1px solid var(--line);
    background: var(--surface);
}

.section--tight {
    padding-top: 28px;
}

.section--centered {
    min-height: 60vh;
    display: grid;
    align-items: center;
    text-align: center;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading > p:not(.eyebrow) {
    color: var(--muted);
}

.section-heading--split {
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
}

.results-summary {
    flex: 0 0 auto;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 0.86rem;
    font-weight: 750;
}

.button {
    display: inline-flex;
    min-height: 50px;
    padding: 0.78rem 1.15rem;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-weight: 850;
    line-height: 1.15;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
    color: inherit;
}

.button:focus-visible,
.text-link:focus-visible,
.text-button:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
.model-card a:focus-visible,
.preview-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(255, 77, 125, 0.45);
    outline-offset: 3px;
}

.button--primary {
    background: var(--accent);
    color: var(--accent-ink);
}

.button--primary:hover {
    background: var(--accent-hover);
    color: var(--accent-ink);
}

.button--quiet {
    border-color: var(--line);
    background: var(--surface-2);
    color: var(--text);
}

.button--quiet:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--surface-3);
    color: var(--text);
}

.button--small {
    min-height: 40px;
    padding: 0.55rem 0.85rem;
    font-size: 0.86rem;
}

.button--wide {
    min-width: 210px;
}

.text-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
}

.text-link:hover {
    color: var(--accent-hover);
}

.text-button {
    padding: 0;
    border: 0;
    background: none;
    color: var(--accent-hover);
    cursor: pointer;
    font-weight: 800;
}

.filters {
    display: grid;
    grid-template-columns: minmax(240px, 1.5fr) repeat(2, minmax(160px, 0.6fr)) auto;
    align-items: end;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.field {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
}

.field > span,
.check-field > span {
    color: var(--muted-strong);
    font-size: 0.84rem;
    font-weight: 750;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface-2);
    color: var(--text);
}

.field input,
.field select {
    padding: 0 0.9rem;
}

.field textarea {
    min-height: 180px;
    padding: 0.85rem 0.9rem;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #77727a;
}

.field small {
    color: var(--muted);
    font-size: 0.78rem;
}

.check-field {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    gap: 0.7rem;
}

.check-field input {
    width: 18px;
    height: 18px;
    margin: 0.15rem 0 0;
    accent-color: var(--accent);
}

.filters__reset {
    white-space: nowrap;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.model-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.model-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
    transition: transform 180ms ease, border-color 180ms ease;
}

.model-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.18);
}

.model-card[hidden] {
    display: none;
}

.model-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--surface-2);
}

.model-card__media img,
.model-card__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease, opacity 180ms ease;
}

.model-card__media video {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: var(--surface-2);
}

.model-card__media.is-previewing video {
    opacity: 1;
}

.model-card__media.is-previewing img {
    opacity: 0;
}

.model-card:hover .model-card__media img {
    transform: scale(1.025);
}

.live-badge,
.preview-hint {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(16, 16, 20, 0.78);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1;
    backdrop-filter: blur(10px);
}

.live-badge {
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.55rem 0.65rem;
}

.live-badge > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
}

.live-badge--large {
    top: 1rem;
    left: 1rem;
    padding: 0.65rem 0.8rem;
    font-size: 0.78rem;
}

.preview-hint {
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.55rem 0.65rem;
    color: var(--muted-strong);
}

.model-card__body {
    padding: 1rem;
}

.model-card__title-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 0.8rem;
}

.model-card__title-row h3 {
    min-width: 0;
    margin: 0;
    font-size: 1.08rem;
}

.model-card__title-row h3 a {
    display: block;
    overflow: hidden;
    color: var(--text);
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rating {
    flex: 0 0 auto;
    color: var(--warning);
    font-size: 0.78rem;
    font-weight: 800;
}

.model-card__meta {
    min-height: 1.5em;
    margin: 0.45rem 0 0.9rem;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.model-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--line);
}

.model-card__footer .text-link {
    flex: 0 0 auto;
    font-size: 0.78rem;
}

.availability {
    min-width: 0;
    overflow: hidden;
    color: var(--success);
    font-size: 0.76rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notice {
    margin-bottom: 1.5rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface-2);
    color: var(--muted-strong);
    font-size: 0.9rem;
}

.notice--muted {
    border-color: rgba(255, 200, 106, 0.2);
}

.notice--important {
    border-color: rgba(255, 200, 106, 0.35);
    background: rgba(255, 200, 106, 0.08);
}

.notice--error {
    border-color: rgba(255, 139, 139, 0.4);
    background: rgba(255, 139, 139, 0.08);
}

.notice ul {
    margin: 0;
    padding-left: 1.2rem;
}

.empty-state {
    padding: clamp(50px, 8vw, 90px) 20px;
    border: 1px dashed var(--line);
    border-radius: var(--radius-lg);
    text-align: center;
}

.empty-state--visible {
    display: block;
}

.empty-state h3 {
    font-size: 1.6rem;
}

.empty-state p {
    max-width: 620px;
    margin: 0 auto 1.4rem;
    color: var(--muted);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.step {
    padding: 1.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg);
}

.step__number {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    margin-bottom: 2.3rem;
    border-radius: 50%;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 900;
}

.step p {
    color: var(--muted);
}

.split-callout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: clamp(30px, 8vw, 100px);
    align-items: start;
}

.split-callout p {
    color: var(--muted-strong);
    font-size: 1.08rem;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.breadcrumbs a {
    color: var(--muted-strong);
    text-decoration: none;
}

.profile-section {
    padding-top: 38px;
}

.profile-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
    gap: clamp(34px, 7vw, 90px);
    align-items: start;
}

.profile-media {
    position: sticky;
    top: 98px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.profile-media img,
.profile-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-media video {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 180ms ease;
}

.profile-media.is-previewing video {
    opacity: 1;
}

.profile-media.is-previewing img {
    opacity: 0;
}

.preview-toggle {
    position: absolute;
    z-index: 3;
    right: 1rem;
    bottom: 1rem;
    min-height: 44px;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(16, 16, 20, 0.82);
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.profile-content {
    padding-top: clamp(12px, 4vw, 70px);
}

.profile-content h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
}

.profile-location {
    margin-top: -0.5rem;
    color: var(--muted);
    font-size: 1.1rem;
}

.profile-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 1.4rem 0;
}

.profile-chips span {
    padding: 0.45rem 0.68rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted-strong);
    font-size: 0.78rem;
    font-weight: 750;
}

.profile-intro {
    max-width: 720px;
    color: var(--muted-strong);
    font-size: 1.08rem;
}

.profile-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 2rem 0;
    border-top: 1px solid var(--line);
}

.profile-facts div {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.profile-facts div:nth-child(odd) {
    padding-right: 1rem;
}

.profile-facts div:nth-child(even) {
    padding-left: 1rem;
    border-left: 1px solid var(--line);
}

.profile-facts dt {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.profile-facts dd {
    margin: 0.25rem 0 0;
    color: var(--text);
    font-weight: 700;
}

.microcopy {
    color: var(--muted);
    font-size: 0.78rem;
}

.profile-actions + .microcopy {
    margin-top: 0.8rem;
}

.message-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
    gap: clamp(36px, 8vw, 100px);
    align-items: start;
}

.message-form {
    display: grid;
    gap: 1rem;
    padding: clamp(1.2rem, 4vw, 2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg);
    box-shadow: var(--shadow);
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.continue-card {
    text-align: left;
}

.continue-card > h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.continue-card__lead {
    color: var(--muted-strong);
    font-size: 1.08rem;
}

.draft-box {
    margin: 2rem 0 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.draft-box__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 750;
}

.draft-box blockquote {
    margin: 0;
    padding: 1.2rem;
    color: var(--text);
    font-size: 1.02rem;
    white-space: normal;
}

.mobile-profile-cta {
    display: none;
}

.legal-hero {
    padding-bottom: 30px;
}

.legal-hero h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
}

.legal-updated {
    color: var(--muted);
    font-size: 0.85rem;
}

.legal-layout {
    display: grid;
    grid-template-columns: 210px minmax(0, 760px);
    justify-content: center;
    gap: clamp(36px, 8vw, 90px);
    align-items: start;
}

.legal-nav {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.legal-nav a {
    color: var(--muted-strong);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 700;
}

.legal-content {
    color: var(--muted-strong);
}

.legal-content h2 {
    margin-top: 2.5rem;
    color: var(--text);
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-content h2:first-child,
.legal-content .notice + h2 {
    margin-top: 0;
}

.legal-content a {
    color: var(--accent-hover);
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
}

th,
td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--text);
    font-size: 0.8rem;
}

td {
    color: var(--muted-strong);
    font-size: 0.88rem;
}

tr:last-child td {
    border-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-card {
    padding: clamp(1.5rem, 4vw, 2.2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.contact-card__icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 2.4rem;
    border-radius: 14px;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 950;
}

.contact-card p {
    color: var(--muted);
}

.contact-details {
    margin-top: 3rem;
}

.age-page::before {
    height: 100%;
    background: radial-gradient(circle at 50% 20%, rgba(255, 77, 125, 0.15), transparent 40%);
}

.age-page .site-footer {
    display: none;
}

.age-gate {
    min-height: calc(100vh - 73px);
    padding: 50px 20px;
    display: grid;
    place-items: center;
}

.age-gate__card {
    width: min(100%, 600px);
    padding: clamp(1.5rem, 5vw, 3rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
    text-align: center;
}

.age-gate__badge {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 1.35rem;
    font-weight: 950;
}

.age-gate__card .eyebrow {
    justify-content: center;
}

.age-gate__card h1 {
    font-size: clamp(2.2rem, 7vw, 3.8rem);
}

.age-gate__card > p:not(.eyebrow, .microcopy) {
    color: var(--muted-strong);
}

.age-gate__actions {
    display: grid;
    gap: 0.7rem;
    margin: 1.8rem 0 1rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #0c0c0f;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(180px, 0.6fr));
    gap: clamp(32px, 7vw, 80px);
    padding-block: 60px;
}

.site-footer__heading {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0;
}

.site-footer__note {
    max-width: 580px;
    color: var(--muted);
    font-size: 0.84rem;
}

.footer-links {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: var(--muted-strong);
    text-decoration: none;
    font-size: 0.86rem;
}

.site-footer__bottom {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.76rem;
}

@media (max-width: 1060px) {
    .model-grid,
    .model-grid--compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .filters {
        grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(150px, 0.6fr));
    }

    .filters__reset {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .profile-layout {
        grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
        gap: 40px;
    }
}

@media (max-width: 820px) {
    html {
        scroll-padding-top: 76px;
    }

    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .site-header__inner {
        min-height: 64px;
        gap: 1rem;
    }

    .site-nav {
        display: none;
    }

    .adult-badge {
        margin-left: auto;
    }

    .hero__inner,
    .profile-layout,
    .message-layout,
    .split-callout,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .hero__panel {
        min-height: 210px;
    }

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

    .field--search {
        grid-column: 1 / -1;
    }

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

    .steps {
        grid-template-columns: 1fr;
    }

    .step__number {
        margin-bottom: 1.6rem;
    }

    .profile-media {
        position: relative;
        top: auto;
        width: min(100%, 620px);
        margin-inline: auto;
    }

    .profile-content {
        padding-top: 0;
    }

    .legal-nav {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__grid > div:first-child {
        grid-column: 1 / -1;
    }

    .mobile-profile-cta {
        position: fixed;
        right: 10px;
        bottom: 10px;
        left: 10px;
        z-index: 90;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0.7rem;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: rgba(24, 24, 30, 0.94);
        box-shadow: var(--shadow);
        backdrop-filter: blur(15px);
    }

    .mobile-profile-cta span {
        min-width: 0;
        overflow: hidden;
        color: var(--muted);
        font-size: 0.78rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-profile-cta strong {
        color: var(--text);
    }

    .profile-page .site-footer {
        padding-bottom: 84px;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: clamp(2.4rem, 13vw, 3.7rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero {
        padding-top: 58px;
    }

    .hero__actions,
    .profile-actions,
    .continue-actions {
        display: grid;
    }

    .hero__actions .button,
    .profile-actions .button,
    .continue-actions .button {
        width: 100%;
    }

    .section-heading--split {
        align-items: start;
        flex-direction: column;
        gap: 0.4rem;
    }

    .filters {
        grid-template-columns: 1fr;
    }

    .field--search {
        grid-column: auto;
    }

    .model-grid,
    .model-grid--compact {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .model-card {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 150px;
    }

    .model-card__media {
        height: 100%;
        aspect-ratio: auto;
        border-radius: 0;
    }

    .model-card__body {
        display: flex;
        min-width: 0;
        flex-direction: column;
        justify-content: center;
        padding: 0.8rem;
    }

    .model-card__title-row {
        display: block;
    }

    .rating {
        display: inline-block;
        margin-top: 0.35rem;
    }

    .model-card__meta {
        white-space: normal;
    }

    .model-card__footer {
        display: block;
    }

    .model-card__footer .text-link {
        display: inline-block;
        margin-top: 0.35rem;
    }

    .preview-hint {
        display: none;
    }

    .live-badge {
        top: 0.45rem;
        left: 0.45rem;
        padding: 0.45rem 0.5rem;
        font-size: 0.64rem;
    }

    .profile-facts {
        grid-template-columns: 1fr;
    }

    .profile-facts div:nth-child(odd),
    .profile-facts div:nth-child(even) {
        padding-inline: 0;
        border-left: 0;
    }

    .contact-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__grid > div:first-child {
        grid-column: auto;
    }

    .site-footer__bottom {
        padding-block: 1.2rem;
        align-items: flex-start;
        flex-direction: column;
    }

    .legal-nav {
        grid-template-columns: 1fr;
    }

    .draft-box__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .mobile-profile-cta span {
        display: none;
    }

    .mobile-profile-cta .button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
