:root {
    --ink: #08060d;
    --plum: #17101f;
    --plum-soft: #21172d;
    --violet: #9b62ff;
    --violet-bright: #b78cff;
    --lilac: #e8d6ff;
    --white: #f7f3fa;
    --muted: #aaa0b3;
    --line: rgba(232, 214, 255, 0.14);
    --line-strong: rgba(232, 214, 255, 0.27);
    --display: "Bodoni Moda", Didot, "Times New Roman", serif;
    --body: "Manrope", Arial, sans-serif;
    --mono: "IBM Plex Mono", monospace;
    --page: min(1440px, calc(100vw - 96px));
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    background: var(--ink);
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 4%, rgba(114, 62, 168, .13), transparent 28rem),
        var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 50;
    pointer-events: none;
    opacity: .045;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

body.menu-open,
body.gate-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    border: 0;
    cursor: pointer;
}

::selection {
    color: var(--ink);
    background: var(--lilac);
}

:focus-visible {
    outline: 2px solid var(--violet-bright);
    outline-offset: 4px;
}

.section {
    width: var(--page);
    margin-inline: auto;
    padding-block: clamp(100px, 12vw, 190px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--lilac);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 24px;
    height: 1px;
    content: "";
    background: var(--violet);
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .035em;
    line-height: 1;
    transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}

.button i,
.text-link i {
    font-size: 18px;
    transition: transform .35s var(--ease);
}

.button:hover {
    transform: translateY(-3px);
}

.button:hover i,
.text-link:hover i {
    transform: translate(3px, -2px);
}

.button--primary {
    color: var(--white);
    background: var(--violet);
    box-shadow: 0 14px 44px rgba(117, 62, 214, .25);
}

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

.button--outline {
    border-color: var(--line-strong);
    background: transparent;
}

.button--outline:hover {
    border-color: var(--lilac);
    color: var(--ink);
    background: var(--lilac);
}

.button--light {
    color: var(--ink);
    background: var(--white);
}

.button--light:hover {
    background: var(--lilac);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-block: 8px;
    border-bottom: 1px solid var(--line-strong);
    font-size: 13px;
    font-weight: 700;
    transition: border-color .3s ease, color .3s ease;
}

.text-link:hover {
    border-color: var(--violet-bright);
    color: var(--lilac);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 40;
    border-bottom: 1px solid transparent;
    transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(8, 6, 13, .82);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: grid;
    width: var(--page);
    height: 86px;
    margin-inline: auto;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.brand {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 12px;
}

.brand__mark,
.age-gate__mark {
    width: 38px;
    fill: none;
    stroke: var(--lilac);
    stroke-width: 2;
}

.brand__mark path,
.age-gate__mark path {
    opacity: .55;
}

.brand__mark .brand__core,
.age-gate__mark .brand__core {
    fill: var(--violet);
    stroke: none;
}

.brand__word {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: .15em;
    line-height: 1;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 42px;
}

.desktop-nav a {
    position: relative;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    transition: color .3s ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--violet-bright);
    transform: scaleX(0);
    transition: transform .3s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
    transform: scaleX(1);
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.age-chip {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--lilac);
    font-family: var(--mono);
    font-size: 9px;
}

.header-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
}

.header-contact i {
    font-size: 17px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    margin: 5px 0;
    background: var(--white);
    transition: transform .3s ease;
}

.menu-toggle.is-active span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.menu-toggle.is-active span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 86px 0 0;
    display: none;
    padding: 40px 24px 28px;
    background: rgba(8, 6, 13, .98);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(36px, 10vw, 58px);
    line-height: 1.1;
}

.mobile-menu__foot {
    display: flex;
    margin-top: 36px;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
}

.mobile-menu__foot a {
    color: var(--lilac);
}

/* Age gate */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    padding: 24px;
    place-items: center;
    background: rgba(5, 3, 9, .88);
    backdrop-filter: blur(24px);
}

.age-gate[hidden] {
    display: none;
}

.age-gate__dialog {
    position: relative;
    width: min(560px, 100%);
    padding: clamp(38px, 7vw, 68px);
    border: 1px solid var(--line-strong);
    background:
        radial-gradient(circle at 90% 0%, rgba(155, 98, 255, .2), transparent 40%),
        var(--plum);
    text-align: center;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .55);
}

.age-gate__mark {
    display: block;
    width: 58px;
    margin: 0 auto 26px;
}

.age-gate__dialog .eyebrow::before {
    display: none;
}

.age-gate__dialog h2 {
    margin: 18px 0 16px;
    font-family: var(--display);
    font-size: clamp(40px, 7vw, 62px);
    font-weight: 400;
    line-height: 1.04;
}

.age-gate__dialog p {
    max-width: 420px;
    margin: 0 auto 30px;
    color: var(--muted);
    font-size: 14px;
}

.age-gate__dialog .button {
    width: 100%;
}

.age-gate__leave {
    display: inline-block;
    margin-top: 18px;
    border-bottom: 1px solid var(--line-strong);
    color: var(--muted);
    font-size: 11px;
}

/* Home hero */
.home-hero {
    position: relative;
    display: grid;
    width: var(--page);
    min-height: max(800px, 100svh);
    margin-inline: auto;
    padding: 120px 0 70px;
    grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
    align-items: center;
    gap: clamp(30px, 4vw, 80px);
}

.home-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.home-hero__copy {
    position: relative;
    z-index: 3;
    padding-left: clamp(0px, 2vw, 34px);
}

.home-hero h1 {
    max-width: 720px;
    margin: 28px 0 26px;
    font-family: var(--display);
    font-size: clamp(76px, 8.5vw, 142px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .82;
}

.home-hero h1 em {
    display: block;
    margin-left: clamp(20px, 6vw, 94px);
    color: var(--lilac);
    font-weight: 400;
}

.home-hero__lead {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.8;
}

.home-hero__actions {
    display: flex;
    margin-top: 36px;
    align-items: center;
    gap: 28px;
}

.home-hero__note {
    display: flex;
    max-width: 400px;
    margin-top: 68px;
    align-items: flex-start;
    gap: 16px;
}

.home-hero__note p {
    margin: 0;
    color: #817788;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .06em;
    line-height: 1.8;
    text-transform: uppercase;
}

.hero-note__line {
    width: 44px;
    height: 1px;
    margin-top: 8px;
    flex: 0 0 auto;
    background: var(--line-strong);
}

.home-hero__stage {
    position: relative;
    min-height: 650px;
    isolation: isolate;
    perspective: 1200px;
}

.home-hero__stage::before {
    position: absolute;
    top: 14%;
    left: 50%;
    z-index: -2;
    width: 86%;
    height: 72%;
    border: 1px solid rgba(200, 170, 255, .09);
    border-radius: 50%;
    content: "";
    transform: translateX(-50%) rotate(-12deg);
}

.hero-spotlight {
    position: absolute;
    top: -120px;
    left: 42%;
    z-index: -1;
    width: 380px;
    height: 780px;
    opacity: .68;
    background: linear-gradient(180deg, rgba(213, 188, 255, .22), rgba(119, 65, 201, .06) 48%, transparent 78%);
    filter: blur(10px);
    clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
    transform: translateX(-50%) rotate(4deg);
}

.hero-profile {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(236, 224, 255, .18);
    background: var(--plum);
    box-shadow: 0 40px 90px rgba(0, 0, 0, .45);
    transition: z-index 0s, transform .7s var(--ease), filter .7s var(--ease);
}

.hero-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease), filter .6s ease;
}

.hero-profile__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(7, 5, 12, .9));
}

.hero-profile__name,
.hero-profile__meta {
    position: absolute;
    z-index: 2;
    left: 24px;
}

.hero-profile__name {
    bottom: 34px;
    font-family: var(--display);
    font-size: 30px;
    line-height: 1;
}

.hero-profile__meta {
    bottom: 16px;
    color: var(--lilac);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero-profile--left {
    top: 170px;
    left: 0;
    width: 32%;
    height: 390px;
    filter: brightness(.63) saturate(.75);
    transform: rotate(-6deg) translateZ(-20px);
}

.hero-profile--center {
    top: 66px;
    left: 28%;
    z-index: 2;
    width: 42%;
    height: 525px;
    transform: rotate(2deg);
}

.hero-profile--right {
    top: 205px;
    right: 0;
    width: 33%;
    height: 390px;
    filter: brightness(.68) saturate(.8);
    transform: rotate(6deg) translateZ(-20px);
}

.hero-profile:hover {
    z-index: 4;
    filter: brightness(1) saturate(1);
    transform: rotate(0) translateY(-14px) scale(1.025);
}

.hero-profile:hover img {
    transform: scale(1.04);
}

.hero-stage__caption {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #766b80;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .16em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.scroll-cue {
    position: absolute;
    bottom: 31px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #756c7c;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .16em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-cue i {
    color: var(--lilac);
    font-size: 14px;
    animation: scroll-nudge 1.8s ease-in-out infinite;
}

@keyframes scroll-nudge {
    0%, 100% { transform: translateY(-2px); }
    50% { transform: translateY(4px); }
}

/* Section heading */
.section-heading {
    display: grid;
    margin-bottom: 58px;
    grid-template-columns: 1.3fr .7fr;
    align-items: end;
    gap: 60px;
}

.section-heading h2 {
    max-width: 880px;
    margin: 22px 0 0;
    font-family: var(--display);
    font-size: clamp(54px, 6vw, 98px);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .98;
}

.section-heading h2 em {
    color: var(--lilac);
    font-weight: 400;
}

.section-heading > p {
    max-width: 420px;
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 14px;
}

.section-heading--compact {
    grid-template-columns: 1fr;
}

/* Models */
.model-showcase {
    position: relative;
}

.model-showcase::before {
    position: absolute;
    top: 0;
    right: -10vw;
    width: 38vw;
    height: 38vw;
    border-radius: 50%;
    content: "";
    background: rgba(90, 48, 139, .13);
    filter: blur(120px);
    pointer-events: none;
}

.filter-row {
    display: flex;
    margin-bottom: 42px;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
    display: none;
}

.filter-row button {
    flex: 0 0 auto;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: transparent;
    font-size: 11px;
    font-weight: 600;
    transition: color .3s ease, border-color .3s ease, background .3s ease;
}

.filter-row button:hover,
.filter-row button.is-active {
    border-color: var(--violet);
    color: var(--white);
    background: rgba(155, 98, 255, .13);
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px 24px;
}

.model-card {
    min-width: 0;
}

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

.model-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: .78;
    background: var(--plum);
}

.model-card:nth-child(3n + 2) {
    transform: translateY(38px);
}

.model-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.84) contrast(1.03);
    transition: transform 1s var(--ease), filter .6s ease;
}

.model-card__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 6, 13, .08), transparent 48%, rgba(8, 6, 13, .8)),
        linear-gradient(120deg, rgba(140, 78, 230, .08), transparent 60%);
    transition: background .6s ease;
}

.model-card__image:hover img {
    filter: saturate(1) contrast(1);
    transform: scale(1.045);
}

.model-card__image:hover .model-card__veil {
    background: linear-gradient(180deg, transparent 50%, rgba(8, 6, 13, .7));
}

.model-card__index {
    position: absolute;
    top: 18px;
    left: 20px;
    z-index: 2;
    color: rgba(255, 255, 255, .72);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .14em;
}

.model-card__availability {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    background: rgba(8, 6, 13, .48);
    backdrop-filter: blur(12px);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.model-card__availability i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #8ef2b4;
    box-shadow: 0 0 0 4px rgba(142, 242, 180, .1);
}

.model-card__body {
    display: flex;
    padding: 18px 2px 12px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.model-card__body h3 {
    margin: 0 0 5px;
    font-family: var(--display);
    font-size: clamp(28px, 2.5vw, 40px);
    font-weight: 400;
    line-height: 1;
}

.model-card__body p {
    margin: 0;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.circle-link {
    display: grid;
    width: 43px;
    height: 43px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s var(--ease);
}

.circle-link:hover {
    border-color: var(--lilac);
    color: var(--ink);
    background: var(--lilac);
    transform: rotate(8deg);
}

.model-card__services {
    display: flex;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    gap: 14px;
    overflow: hidden;
}

.model-card__services span {
    position: relative;
    flex: 0 0 auto;
    color: #7e7486;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.model-card__services span + span::before {
    position: absolute;
    top: 50%;
    left: -8px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    content: "";
    background: var(--violet);
}

.section-end {
    display: flex;
    margin-top: 98px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
    align-items: center;
    justify-content: space-between;
}

.section-end p {
    margin: 0;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Experience */
.experience {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(50px, 9vw, 150px);
}

.experience__visual {
    position: relative;
    min-height: 720px;
}

.experience__visual::before {
    position: absolute;
    inset: 8% -9% -8% 24%;
    z-index: -1;
    border: 1px solid var(--line);
    content: "";
}

.experience__visual img {
    width: 80%;
    height: 650px;
    object-fit: cover;
    object-position: center;
    filter: saturate(.72) contrast(1.06);
}

.experience__word {
    position: absolute;
    right: -4%;
    bottom: 12%;
    color: transparent;
    font-family: var(--display);
    font-size: clamp(64px, 8vw, 130px);
    letter-spacing: -.05em;
    line-height: 1;
    -webkit-text-stroke: 1px rgba(232, 214, 255, .24);
    transform: rotate(-90deg) translateX(100%);
    transform-origin: right bottom;
}

.experience__seal {
    position: absolute;
    right: 2%;
    bottom: -2%;
    display: flex;
    width: 132px;
    height: 132px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--lilac);
    background: rgba(23, 16, 31, .86);
    font-family: var(--display);
    font-size: 39px;
    line-height: .9;
    text-align: center;
    backdrop-filter: blur(14px);
}

.experience__seal small {
    display: block;
    max-width: 70px;
    font-family: var(--mono);
    font-size: 6px;
    letter-spacing: .08em;
    line-height: 1.5;
    text-transform: uppercase;
}

.experience__copy h2 {
    margin: 22px 0 28px;
    font-family: var(--display);
    font-size: clamp(62px, 6.5vw, 104px);
    font-weight: 400;
    letter-spacing: -.05em;
    line-height: .9;
}

.experience__copy h2 em {
    display: block;
    color: var(--lilac);
    font-weight: 400;
}

.experience__copy > p {
    max-width: 600px;
    color: var(--muted);
    font-size: 15px;
}

.experience__steps {
    margin: 45px 0 36px;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.experience__steps li {
    display: grid;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 54px 1fr;
    align-items: start;
}

.experience__steps li > span {
    color: var(--violet-bright);
    font-family: var(--mono);
    font-size: 9px;
}

.experience__steps strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.experience__steps p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

/* Channels */
.channels {
    padding-top: 80px;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.channel-card {
    position: relative;
    min-height: 380px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .45s var(--ease), transform .45s var(--ease);
}

.channel-card:hover {
    z-index: 2;
    background: var(--plum-soft);
    transform: translateY(-8px);
}

.channel-card > span {
    color: #756a7d;
    font-family: var(--mono);
    font-size: 9px;
}

.channel-card > i {
    display: block;
    margin: 72px 0 28px;
    color: var(--lilac);
    font-size: 34px;
}

.channel-card h3 {
    margin: 0 0 14px;
    font-family: var(--display);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.1;
}

.channel-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.channel-card b {
    position: absolute;
    right: 28px;
    bottom: 24px;
    left: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    letter-spacing: .04em;
}

.channel-card b i {
    font-size: 17px;
}

/* Contact teaser */
.contact-teaser {
    position: relative;
    display: grid;
    min-height: 560px;
    overflow: hidden;
    grid-template-columns: 1.25fr .75fr;
    align-items: center;
    gap: 80px;
}

.contact-teaser::before,
.contact-teaser::after {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
}

.contact-teaser::before {
    background: radial-gradient(circle at 52% 50%, rgba(144, 83, 238, .24), transparent 42%);
}

.contact-teaser::after {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contact-teaser__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 470px;
    height: 470px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.contact-teaser__orbit::after {
    position: absolute;
    top: 14%;
    left: 6%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    background: var(--violet-bright);
    box-shadow: 0 0 24px var(--violet);
}

.contact-teaser h2 {
    max-width: 850px;
    margin: 22px 0 0;
    font-family: var(--display);
    font-size: clamp(64px, 7vw, 112px);
    font-weight: 400;
    letter-spacing: -.05em;
    line-height: .9;
}

.contact-teaser h2 em {
    color: var(--lilac);
    font-weight: 400;
}

.contact-teaser__right p {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 14px;
}

/* Support & footer */
.support-band {
    position: relative;
    display: grid;
    width: var(--page);
    min-height: 250px;
    margin: 80px auto 0;
    padding: clamp(36px, 5vw, 70px);
    overflow: hidden;
    grid-template-columns: 1.1fr .7fr auto;
    align-items: center;
    gap: 50px;
    background: linear-gradient(105deg, #8d55ed, #5e30a4 65%, #3c2167);
}

.support-band__glow {
    position: absolute;
    top: -190px;
    right: 13%;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
}

.support-band .eyebrow {
    color: var(--white);
}

.support-band .eyebrow::before {
    background: rgba(255, 255, 255, .5);
}

.support-band h2 {
    margin: 14px 0 0;
    font-family: var(--display);
    font-size: clamp(42px, 4vw, 66px);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: .95;
}

.support-band h2 em {
    display: block;
    color: var(--lilac);
    font-weight: 400;
}

.support-band > p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.site-footer {
    width: var(--page);
    margin-inline: auto;
    padding: 95px 0 34px;
}

.site-footer__top {
    display: flex;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--line);
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.footer-wordmark {
    font-family: var(--display);
    font-size: clamp(72px, 13vw, 190px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .65;
}

.site-footer__statement {
    max-width: 310px;
}

.site-footer__statement span,
.footer-label {
    display: block;
    margin-bottom: 15px;
    color: var(--lilac);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.site-footer__statement p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.site-footer__grid {
    display: grid;
    padding: 55px 0 70px;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 80px;
}

.site-footer__grid > div,
.site-footer__grid nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer__grid a {
    margin: 4px 0;
    color: var(--muted);
    font-size: 12px;
    transition: color .25s ease;
}

.site-footer__grid a:hover {
    color: var(--white);
}

.site-footer__grid p {
    max-width: 360px;
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.site-footer__bottom {
    display: grid;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    color: #756c7c;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-footer__bottom button {
    justify-self: end;
    padding: 0;
    color: #82768b;
    background: transparent;
    font-family: var(--mono);
    font-size: 8px;
    text-transform: uppercase;
}

.site-footer__bottom button i {
    margin-left: 7px;
    color: var(--lilac);
}

.footer-age {
    color: var(--lilac);
}

.floating-support {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 30;
    display: flex;
    height: 50px;
    padding: 0 18px;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: var(--ink);
    background: var(--lilac);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .38);
    font-size: 11px;
    font-weight: 700;
    transition: transform .35s var(--ease), background .35s ease;
}

.floating-support:hover {
    background: var(--white);
    transform: translateY(-5px);
}

.floating-support i {
    font-size: 20px;
}

/* Shared inner pages */
.page-main {
    min-height: 70vh;
    padding-top: 86px;
}

.inner-hero {
    position: relative;
    display: grid;
    width: var(--page);
    min-height: 580px;
    margin-inline: auto;
    padding: 90px 0;
    grid-template-columns: 1fr .72fr;
    align-items: center;
    gap: 80px;
    border-bottom: 1px solid var(--line);
}

.inner-hero::before {
    position: absolute;
    top: 10%;
    right: 8%;
    z-index: -1;
    width: 420px;
    height: 420px;
    border: 1px solid var(--line);
    border-radius: 50%;
    content: "";
}

.inner-hero h1 {
    max-width: 900px;
    margin: 24px 0;
    font-family: var(--display);
    font-size: clamp(72px, 9vw, 140px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .84;
}

.inner-hero h1 em {
    display: block;
    color: var(--lilac);
    font-weight: 400;
}

.inner-hero p {
    max-width: 580px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.inner-hero__aside {
    justify-self: end;
    max-width: 390px;
    padding: 34px;
    border: 1px solid var(--line);
    background: rgba(23, 16, 31, .45);
}

.inner-hero__aside strong {
    display: block;
    margin-bottom: 14px;
    color: var(--lilac);
    font-family: var(--display);
    font-size: 32px;
    font-weight: 400;
}

.inner-hero__aside p {
    font-size: 12px;
}

.page-models {
    padding-top: 90px;
}

.page-models .model-card:nth-child(3n + 2) {
    transform: none;
}

.empty-state {
    padding: 80px 30px;
    border: 1px solid var(--line);
    color: var(--muted);
    text-align: center;
}

/* Information */
.info-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: clamp(50px, 8vw, 130px);
}

.info-layout__nav {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.info-layout__nav span {
    display: block;
    margin-bottom: 24px;
    color: var(--lilac);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.info-layout__nav a {
    display: flex;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 12px;
    transition: color .3s ease;
}

.info-layout__nav a:hover {
    color: var(--white);
}

.info-layout__nav i {
    color: var(--violet-bright);
}

.info-list {
    border-top: 1px solid var(--line);
}

.info-item {
    display: grid;
    padding: 36px 0;
    grid-template-columns: 56px minmax(180px, .6fr) 1fr 42px;
    align-items: start;
    gap: 28px;
    border-bottom: 1px solid var(--line);
    transition: background .35s ease, padding .35s var(--ease);
}

.info-item:hover {
    padding-right: 20px;
    padding-left: 20px;
    background: rgba(155, 98, 255, .06);
}

.info-item > span {
    color: #716678;
    font-family: var(--mono);
    font-size: 9px;
}

.info-item h2 {
    margin: 0;
    font-family: var(--display);
    font-size: 34px;
    font-weight: 400;
    line-height: 1.05;
}

.info-item p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.info-item > i {
    color: var(--lilac);
    font-size: 18px;
}

.safety-panel {
    display: grid;
    margin-top: 100px;
    padding: clamp(36px, 6vw, 75px);
    grid-template-columns: auto 1fr .7fr;
    align-items: center;
    gap: 48px;
    border: 1px solid var(--line);
    background: var(--plum);
}

.safety-panel__age {
    display: grid;
    width: 100px;
    height: 100px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--lilac);
    font-family: var(--display);
    font-size: 34px;
}

.safety-panel h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(40px, 4vw, 64px);
    font-weight: 400;
    line-height: 1;
}

.safety-panel p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

/* Model detail */
.model-detail {
    width: var(--page);
    margin-inline: auto;
    padding: 80px 0 150px;
}

.model-detail__back {
    display: inline-flex;
    margin-bottom: 36px;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.model-detail__back:hover {
    color: var(--white);
}

.model-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, .75fr);
    align-items: start;
    gap: clamp(50px, 8vw, 130px);
}

.model-gallery {
    position: sticky;
    top: 110px;
}

.model-gallery__main {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: .88;
    background: var(--plum);
}

.model-gallery__main::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 70%, rgba(8, 6, 13, .35));
    pointer-events: none;
}

.model-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-gallery__expand {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    background: rgba(8, 6, 13, .5);
    backdrop-filter: blur(10px);
}

.model-gallery__thumbs {
    display: grid;
    margin-top: 12px;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.model-gallery__thumb {
    position: relative;
    overflow: hidden;
    padding: 0;
    aspect-ratio: 1;
    border: 1px solid transparent;
    background: var(--plum);
    opacity: .55;
    transition: opacity .3s ease, border-color .3s ease;
}

.model-gallery__thumb.is-active,
.model-gallery__thumb:hover {
    border-color: var(--violet-bright);
    opacity: 1;
}

.model-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-profile__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a9e7be;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.status-live i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8ef2b4;
    box-shadow: 0 0 0 5px rgba(142, 242, 180, .08);
}

.model-profile h1 {
    margin: 24px 0 10px;
    font-family: var(--display);
    font-size: clamp(78px, 8vw, 128px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .8;
}

.model-profile__location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.model-profile__intro {
    margin: 36px 0;
    padding: 26px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

.model-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.model-stat {
    min-height: 94px;
    padding: 17px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.model-stat span {
    display: block;
    margin-bottom: 6px;
    color: #756a7d;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.model-stat strong {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.1;
}

.model-services {
    margin-top: 34px;
}

.model-services h2,
.model-about h2 {
    margin: 0 0 16px;
    color: var(--lilac);
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.model-services__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.model-services__tags span {
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 9px;
}

.model-about {
    margin-top: 34px;
}

.model-about p {
    color: var(--muted);
    font-size: 13px;
}

.model-profile__cta {
    display: grid;
    margin-top: 38px;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.model-profile__cta .button--primary {
    width: 100%;
}

.model-profile__cta .circle-link {
    width: 54px;
    height: 54px;
}

.model-profile__fineprint {
    margin: 14px 0 0;
    color: #746a7b;
    font-size: 9px;
}

.related-models {
    padding-top: 100px;
    border-top: 1px solid var(--line);
}

/* Contact */
.contact-page {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
    gap: clamp(60px, 10vw, 160px);
}

.contact-page__copy h2 {
    margin: 22px 0 28px;
    font-family: var(--display);
    font-size: clamp(62px, 6vw, 98px);
    font-weight: 400;
    letter-spacing: -.05em;
    line-height: .9;
}

.contact-page__copy h2 em {
    display: block;
    color: var(--lilac);
    font-weight: 400;
}

.contact-page__copy > p {
    color: var(--muted);
    font-size: 14px;
}

.contact-methods {
    margin-top: 48px;
    border-top: 1px solid var(--line);
}

.contact-method {
    display: grid;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 14px;
}

.contact-method > i {
    color: var(--lilac);
    font-size: 21px;
}

.contact-method span {
    display: block;
    color: #756a7d;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-method strong {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    font-weight: 500;
}

.contact-method > .ph-arrow-up-right {
    color: var(--muted);
    font-size: 16px;
}

.contact-form {
    padding: clamp(32px, 5vw, 64px);
    border: 1px solid var(--line);
    background: var(--plum);
}

.contact-form__heading {
    display: flex;
    margin-bottom: 36px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.contact-form__heading h3 {
    margin: 0;
    font-family: var(--display);
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
}

.contact-form__heading span {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 8px;
    text-transform: uppercase;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.field {
    margin-bottom: 20px;
}

.field label {
    display: block;
    margin-bottom: 9px;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line-strong);
    border-radius: 0;
    outline: 0;
    color: var(--white);
    background: transparent;
    transition: border-color .3s ease;
}

.field input,
.field select {
    height: 48px;
}

.field textarea {
    min-height: 120px;
    padding-top: 12px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--violet-bright);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #675e6e;
}

.field--trap {
    position: absolute;
    left: -9999px;
}

.form-consent {
    display: flex;
    margin: 6px 0 24px;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 9px;
}

.form-consent input {
    margin-top: 4px;
    accent-color: var(--violet);
}

.contact-form .button {
    width: 100%;
}

.form-status {
    display: none;
    margin: 18px 0 0;
    padding: 12px 14px;
    border: 1px solid var(--line);
    font-size: 11px;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    border-color: rgba(142, 242, 180, .25);
    color: #a9e7be;
}

.form-status.is-error {
    border-color: rgba(255, 137, 170, .25);
    color: #ff9ab5;
}

/* Article and 404 */
.article-shell {
    display: grid;
    max-width: 1100px;
    margin-inline: auto;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 90px;
}

.article-shell__meta {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: .1em;
    line-height: 1.8;
    text-transform: uppercase;
}

.article-shell__content {
    color: #b8afbf;
    font-size: 15px;
}

.article-shell__content h2,
.article-shell__content h3 {
    color: var(--white);
    font-family: var(--display);
    font-weight: 400;
    line-height: 1.05;
}

.article-shell__content h2 {
    margin: 50px 0 20px;
    font-size: 48px;
}

.article-shell__content a {
    color: var(--lilac);
    border-bottom: 1px solid var(--line-strong);
}

.not-found {
    display: grid;
    width: var(--page);
    min-height: calc(100svh - 86px);
    margin-inline: auto;
    place-items: center;
    text-align: center;
}

.not-found__number {
    display: block;
    color: transparent;
    font-family: var(--display);
    font-size: clamp(150px, 28vw, 420px);
    letter-spacing: -.08em;
    line-height: .65;
    -webkit-text-stroke: 1px var(--line-strong);
}

.not-found h1 {
    margin: -10px 0 14px;
    font-family: var(--display);
    font-size: 52px;
    font-weight: 400;
}

.not-found p {
    margin: 0 0 28px;
    color: var(--muted);
}

/* Responsive */
@media (max-width: 1180px) {
    :root {
        --page: min(100% - 48px, 1080px);
    }

    .home-hero {
        grid-template-columns: .85fr 1.15fr;
    }

    .home-hero h1 {
        font-size: clamp(70px, 8.5vw, 110px);
    }

    .home-hero__stage {
        min-height: 560px;
    }

    .hero-profile--center {
        height: 460px;
    }

    .hero-profile--left,
    .hero-profile--right {
        height: 335px;
    }

    .experience__visual,
    .experience__visual img {
        min-height: 0;
        height: 570px;
    }

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

    .support-band {
        grid-template-columns: 1fr auto;
    }

    .support-band > p {
        grid-column: 1 / -1;
        grid-row: 2;
        max-width: 540px;
    }
}

@media (max-width: 900px) {
    :root {
        --page: calc(100% - 36px);
    }

    .desktop-nav,
    .header-contact,
    .age-chip {
        display: none;
    }

    .site-header__inner {
        height: 76px;
        grid-template-columns: 1fr auto;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu.is-open {
        position: absolute;
        inset: 76px 0 auto;
        display: flex;
        width: 100vw;
        height: calc(100svh - 76px);
        flex-direction: column;
        justify-content: space-between;
        background: var(--ink);
    }

    .page-main {
        padding-top: 76px;
    }

    .home-hero {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 100px;
        grid-template-columns: 1fr;
    }

    .home-hero__copy {
        padding: 0;
    }

    .home-hero h1 {
        max-width: 680px;
        font-size: clamp(74px, 15vw, 120px);
    }

    .home-hero__stage {
        min-height: 610px;
    }

    .scroll-cue {
        display: none;
    }

    .section-heading,
    .experience,
    .contact-teaser,
    .inner-hero,
    .contact-page,
    .model-detail__grid,
    .info-layout {
        grid-template-columns: 1fr;
    }

    .section-heading {
        gap: 24px;
    }

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

    .model-card:nth-child(3n + 2) {
        transform: none;
    }

    .experience__visual {
        width: min(620px, 100%);
    }

    .contact-teaser {
        padding-block: 110px;
        gap: 35px;
    }

    .contact-teaser__right {
        max-width: 560px;
    }

    .inner-hero {
        min-height: auto;
        padding-block: 100px;
        gap: 50px;
    }

    .inner-hero__aside {
        justify-self: stretch;
        max-width: none;
    }

    .info-layout__nav {
        position: static;
    }

    .safety-panel {
        grid-template-columns: auto 1fr;
    }

    .safety-panel p {
        grid-column: 1 / -1;
    }

    .model-detail__grid {
        gap: 65px;
    }

    .model-gallery {
        position: static;
    }

    .model-gallery__main {
        max-height: 820px;
    }

    .article-shell {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 640px) {
    :root {
        --page: calc(100% - 28px);
    }

    .section {
        padding-block: 88px;
    }

    .brand__word {
        font-size: 19px;
    }

    .brand__mark {
        width: 32px;
    }

    .home-hero {
        padding-top: 125px;
        padding-bottom: 80px;
    }

    .home-hero h1 {
        margin-top: 22px;
        font-size: clamp(64px, 20vw, 88px);
        line-height: .86;
    }

    .home-hero h1 em {
        margin-left: 12px;
    }

    .home-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .home-hero__note {
        margin-top: 44px;
    }

    .home-hero__stage {
        min-height: 470px;
        margin-inline: -8px;
    }

    .hero-profile__name {
        bottom: 28px;
        left: 14px;
        font-size: 22px;
    }

    .hero-profile__meta {
        bottom: 12px;
        left: 14px;
    }

    .hero-profile--center {
        top: 30px;
        left: 19%;
        width: 60%;
        height: 390px;
    }

    .hero-profile--left {
        top: 125px;
        left: -3%;
        width: 36%;
        height: 260px;
    }

    .hero-profile--right {
        top: 145px;
        right: -3%;
        width: 36%;
        height: 250px;
    }

    .section-heading h2,
    .experience__copy h2,
    .contact-teaser h2 {
        font-size: clamp(52px, 16vw, 74px);
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .model-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .model-card__image {
        aspect-ratio: .84;
    }

    .section-end {
        margin-top: 64px;
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .experience {
        gap: 70px;
    }

    .experience__visual,
    .experience__visual img {
        height: 490px;
    }

    .experience__visual img {
        width: 86%;
    }

    .experience__seal {
        width: 102px;
        height: 102px;
        font-size: 30px;
    }

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

    .channel-card {
        min-height: 310px;
    }

    .channel-card > i {
        margin-top: 40px;
    }

    .contact-teaser__orbit {
        width: 310px;
        height: 310px;
    }

    .support-band {
        min-height: 0;
        margin-top: 30px;
        padding: 38px 28px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .support-band > p {
        grid-column: auto;
        grid-row: auto;
    }

    .support-band .button {
        width: 100%;
    }

    .site-footer {
        padding-top: 75px;
    }

    .site-footer__top {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-wordmark {
        font-size: 23vw;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 28px;
    }

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

    .site-footer__bottom {
        grid-template-columns: 1fr auto;
        gap: 15px;
    }

    .footer-age {
        display: none;
    }

    .floating-support {
        right: 14px;
        bottom: 14px;
        width: 48px;
        padding: 0;
        justify-content: center;
    }

    .floating-support span {
        display: none;
    }

    .inner-hero {
        padding-block: 75px;
    }

    .inner-hero h1 {
        font-size: clamp(66px, 20vw, 96px);
    }

    .info-item {
        grid-template-columns: 34px 1fr 24px;
        gap: 14px;
    }

    .info-item p {
        grid-column: 2 / -1;
    }

    .safety-panel {
        grid-template-columns: 1fr;
    }

    .safety-panel__age {
        width: 76px;
        height: 76px;
    }

    .model-detail {
        padding-top: 50px;
    }

    .model-profile h1 {
        font-size: clamp(74px, 24vw, 105px);
    }

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

    .contact-page {
        gap: 55px;
    }

    .contact-form {
        margin-inline: -14px;
        padding: 30px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .article-shell__content h2 {
        font-size: 38px;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
