@font-face {
  font-family: Barlow;
  src: url('/static/fonts/barlow-condensed-black.ttf') format('truetype');
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: Barlow;
  src: url('/static/fonts/barlow-condensed-black-italic.ttf') format('truetype');
  font-style: italic;
  font-weight: 900;
  font-display: swap;
}

:root,
.dark {
  --background: #090909;
  --foreground: #efeee8;
  --card: #111;
  --card-foreground: #efeee8;
  --popover: #151515;
  --popover-foreground: #efeee8;
  --primary: #e93138;
  --primary-foreground: #fff;
  --secondary: #191919;
  --secondary-foreground: #efeee8;
  --muted: #171717;
  --muted-foreground: #92918e;
  --accent: #262626;
  --accent-foreground: #efeee8;
  --border: #292929;
  --input: #333;
  --ring: #e93138;
  --radius: 0;
  --red: #e93138;
  --subtle: #96948e;
  --display: Barlow, 'Arial Narrow', Impact, sans-serif;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 16px;
}
body {
  margin: 0;
  background: #050505;
  color: var(--foreground);
  font-family: Arial, 'Microsoft YaHei', sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
  font: inherit;
  color: inherit;
}
button:focus-visible,
a:focus-visible,
video:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}
button {
  border: 0;
  padding: 0;
  background: none;
}
a {
  color: inherit;
  text-decoration: none;
}
::selection {
  background: var(--red);
  color: white;
}
.roster-page {
  width: 100%;
  max-width: 720px;
  margin: auto;
  background: var(--background);
  border-inline: 1px solid #1e1e1e;
}
.masthead {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.brand {
  font: 900 22px var(--display);
  letter-spacing: 4px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand i {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px #e9313833;
}
.edition {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--subtle);
  font-size: 11px;
  letter-spacing: 1px;
}
.edition b {
  color: #eeede9;
  font-weight: 400;
  margin-right: 5px;
}
.edition > span:last-child {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 2px;
}
.hero {
  padding: 52px 34px 0;
}
.hero-kicker {
  font-size: 9px;
  letter-spacing: 2px;
  color: #81817a;
}
.hero-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.hero h1 {
  font: italic 900 104px/0.83 var(--display);
  letter-spacing: -2px;
  margin: 0 0 22px;
}
.hero h1 span {
  display: block;
}
.hero h1 span:last-child {
  color: transparent;
  -webkit-text-stroke: 1px #6c6b64;
  margin-top: 5px;
}
.edition-mark {
  font: 900 17px/1 var(--display);
  letter-spacing: 2px;
  color: var(--red);
  display: grid;
  gap: 3px;
  transform: rotate(90deg);
  margin-right: 2px;
}
.edition-mark svg {
  width: 22px;
  height: 22px;
  margin-top: 6px;
}
.hero > p {
  font-size: 13px;
  line-height: 1.9;
  max-width: 430px;
  color: #9a9892;
  margin: 0 0 32px;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding: 17px 0;
  font: 900 11px var(--display);
  letter-spacing: 2px;
  color: #8c8b86;
}
.models {
  border-top: 1px solid var(--border);
}
.model-section {
  padding: 0 22px 22px;
  border-bottom: 1px solid var(--border);
}
.model-index {
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #71716a;
  font: 900 9px var(--display);
  letter-spacing: 1.5px;
}
.model-index > span:first-child {
  color: var(--red);
  font-size: 12px;
}
.model-index > span:last-child {
  opacity: 0.55;
}
.model-layout {
  display: grid;
  grid-template-columns: 45% minmax(0, 55%);
}
.gallery {
  min-width: 0;
  padding-right: 20px;
  border-right: 1px solid var(--border);
}
.model-info {
  min-width: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}
.reversed .model-layout {
  grid-template-columns: minmax(0, 55%) 45%;
}
.reversed .gallery {
  order: 2;
  border-right: 0;
  border-left: 1px solid var(--border);
  padding-left: 20px;
  padding-right: 0;
}
.reversed .model-info {
  order: 1;
  padding-left: 0;
  padding-right: 20px;
}
.photo-carousel {
  position: relative;
  overflow: hidden;
  background: #191917;
}
.photo-track {
  margin-left: 0 !important;
}
.photo-slide {
  padding-left: 0 !important;
  aspect-ratio: 3/4.7;
  overflow: hidden;
  min-width: 0;
}
.portrait {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: filter 0.3s ease;
  user-select: none;
}
.portrait.detail {
  transform: scale(1.38);
  object-position: 50% 22%;
}
.portrait.mono {
  filter: grayscale(1);
  transform: scale(1.1);
}
.portrait.wide {
  object-position: 40% 60%;
  transform: scale(1.2);
  filter: saturate(0.55);
}
.photo-arrow {
  position: absolute;
  top: 46%;
  width: 34px;
  height: 44px;
  display: grid;
  place-items: center;
  z-index: 1;
}
.photo-arrow:before {
  content: '';
  position: absolute;
  inset: 8px 3px;
  background: #08080888;
  border: 1px solid #ffffff44;
  transition: background 0.2s;
}
.photo-arrow:hover:before {
  background: #e93138;
}
.photo-arrow svg {
  position: relative;
}
.photo-arrow.prev {
  left: 3px;
}
.photo-arrow.next {
  right: 3px;
}
.photo-counter {
  position: absolute;
  left: 10px;
  bottom: 12px;
  display: flex;
  gap: 9px;
  align-items: center;
  background: #090909b3;
  padding: 5px 8px;
  font: italic 900 12px var(--display);
  letter-spacing: 1px;
}
.photo-counter span {
  color: #888;
}
.photo-caption {
  position: absolute;
  right: 8px;
  bottom: 17px;
  font: 900 8px var(--display);
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  color: #ffffffa8;
}
.thumbnails {
  display: flex;
  gap: 7px;
  margin-top: 10px;
  overflow-x: auto;
  padding: 2px 0 3px;
  scrollbar-width: thin;
  scrollbar-color: #444 transparent;
}
.thumbnail {
  position: relative;
  flex: 0 0 calc((100% - 21px) /4);
  aspect-ratio: 3/4;
  min-width: 0;
  overflow: hidden;
  opacity: 0.45;
  border: 1px solid transparent;
  padding: 2px;
  transition: opacity 0.2s;
}
.thumbnail.selected {
  border-color: var(--red);
  opacity: 1;
}
.thumbnail:hover {
  opacity: 1;
}
.thumbnail .portrait {
  max-height: 100%;
}
.thumbnail span {
  position: absolute;
  left: 5px;
  bottom: 3px;
  font: 900 8px var(--display);
  text-shadow: 0 1px 3px #000;
}
.model-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 6px;
}
.agency {
  padding: 6px 8px;
  border: 1px solid #3a3a36;
  font: 900 11px var(--display);
  letter-spacing: 1.3px;
  white-space: nowrap;
  color: #c1c0b7;
}
.availability {
  color: #64d989;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  white-space: nowrap;
}
.availability i {
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: currentColor;
}
.availability.booked {
  color: #bca276;
}
.city {
  align-self: flex-end;
  margin: 17px 0 15px;
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  color: var(--red);
}
.reversed .city {
  color: #cab765;
}
.model-name {
  font: 900 clamp(32px, 6vw, 56px)/0.86 var(--display);
  margin: 0;
  letter-spacing: -0.3px;
  overflow-wrap: anywhere;
}
.model-name span {
  display: block;
}
.model-name span:last-child {
  color: #75756e;
  font-size: 0.78em;
  margin-top: 6px;
}
.name-line {
  width: 31px;
  height: 3px;
  background: var(--red);
  margin: 18px 0;
}
.model-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
  margin: 0;
}
.model-stats dt {
  font-size: 10px;
  line-height: 1.5;
  color: #aaa89f;
  margin-bottom: 5px;
}
.model-stats dd {
  font: 900 21px var(--display);
  margin: 0;
  white-space: nowrap;
}
.model-stats small {
  font:
    400 9px Arial,
    sans-serif;
  margin-left: 1px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.tags span {
  font-size: 10px;
  line-height: 1;
  padding: 6px 8px;
  background: #1a1a18;
  color: #c8c6bb;
  border: 1px solid #30302b;
}
.video-section {
  margin-top: auto;
  padding-top: 20px;
}
.section-rule {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  font-size: 9px;
  color: #83817b;
  letter-spacing: 2px;
}
.section-rule:before,
.section-rule:after {
  content: '';
  height: 1px;
  background: var(--border);
  flex: 1;
}
.video-frame {
  aspect-ratio: 16/9;
  position: relative;
  background: #161616;
  overflow: hidden;
}
.video-cover {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  text-align: left;
}
.video-cover > .portrait {
  filter: grayscale(0.7) brightness(0.7);
  object-position: center 35%;
  transition:
    filter 0.25s,
    transform 0.4s;
}
.video-cover:hover > .portrait {
  filter: grayscale(0) brightness(0.85);
  transform: scale(1.04);
}
.film-label {
  position: absolute;
  left: 8px;
  top: 7px;
  font-size: 9px;
  background: #080808b0;
  padding: 3px 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.film-label i {
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
}
.play-circle {
  width: 43px;
  height: 43px;
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  border: 1px solid #efeee8a0;
  border-radius: 50%;
  background: #11111135;
  display: grid;
  place-items: center;
}
.play-circle svg {
  margin-left: 3px;
}
.play-label {
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  white-space: nowrap;
  letter-spacing: 1px;
}
.duration {
  position: absolute;
  right: 7px;
  bottom: 7px;
  font: italic 900 11px var(--display);
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video-error {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background: #111;
  font-size: 12px;
}
.video-error button {
  border: 1px solid #888;
  padding: 5px 15px;
}
.photo-fallback {
  height: 100%;
  width: 100%;
  background: #1c1c1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.photo-fallback span {
  font: 900 30px/0.9 var(--display);
  color: #555;
}
.photo-fallback small {
  font-size: 8px;
  color: #999;
}
.footer {
  padding: 25px 28px max(22px, env(safe-area-inset-bottom));
  color: #8b8982;
}
.footer > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font: 900 10px var(--display);
  letter-spacing: 1.5px;
}
.footer p {
  font-size: 10px;
  color: #66655e;
  margin: 15px 0 0;
}
.empty-message {
  padding: 60px 20px;
  text-align: center;
  color: var(--subtle);
}
@media (max-width: 520px) {
  .roster-page {
    border: 0;
  }
  .masthead {
    height: 54px;
    padding-inline: 19px;
  }
  .brand {
    font-size: 16px;
    letter-spacing: 2.8px;
    gap: 8px;
  }
  .brand i {
    width: 4px;
    height: 4px;
  }
  .edition {
    gap: 12px;
    font-size: 8px;
    letter-spacing: 0.5px;
  }
  .edition > span:last-child {
    letter-spacing: 1px;
  }
  .hero {
    padding: 36px 22px 0;
  }
  .hero-kicker {
    font-size: 7px;
    letter-spacing: 1.4px;
  }
  .hero-title-row {
    margin-top: 15px;
  }
  .hero h1 {
    font-size: 76px;
    margin-bottom: 20px;
  }
  .edition-mark {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .edition-mark svg {
    width: 16px;
    height: 16px;
  }
  .hero > p {
    font-size: 11px;
    line-height: 1.9;
    max-width: 290px;
    margin-bottom: 24px;
  }
  .hero-bottom {
    font-size: 9px;
    padding: 12px 0;
    letter-spacing: 1.4px;
  }
  .model-section {
    padding: 0 12px 15px;
  }
  .model-index {
    height: 23px;
    font-size: 7px;
  }
  .model-index > span:first-child {
    font-size: 10px;
  }
  .gallery {
    padding-right: 12px;
  }
  .model-info {
    padding-left: 12px;
  }
  .reversed .gallery {
    padding-left: 12px;
  }
  .reversed .model-info {
    padding-right: 12px;
  }
  .photo-slide {
    aspect-ratio: 3/5.6;
  }
  .model-meta {
    gap: 7px;
    padding-top: 3px;
  }
  .agency {
    font-size: 8px;
    letter-spacing: 0.7px;
    padding: 5px;
  }
  .availability {
    font-size: 8px;
    gap: 3px;
  }
  .availability i {
    width: 3px;
    height: 3px;
  }
  .city {
    font-size: 12px;
    margin: 12px 0 19px;
  }
  .model-name {
    font-size: 34px;
  }
  .model-name span:last-child {
    font-size: 0.76em;
    margin-top: 4px;
  }
  .name-line {
    width: 24px;
    height: 2px;
    margin: 12px 0;
  }
  .model-stats {
    gap: 3px;
  }
  .model-stats dt {
    font-size: 8px;
    margin-bottom: 5px;
  }
  .model-stats dd {
    font-size: 16px;
  }
  .model-stats small {
    font-size: 7px;
    margin-left: 0;
  }
  .tags {
    margin-top: 12px;
    gap: 5px;
  }
  .tags span {
    font-size: 8px;
    padding: 5px 6px;
  }
  .video-section {
    padding-top: 12px;
  }
  .section-rule {
    font-size: 7px;
    margin-bottom: 7px;
    gap: 4px;
  }
  .film-label {
    left: 5px;
    top: 5px;
    font-size: 7px;
    padding: 2px 4px;
  }
  .play-circle {
    width: 32px;
    height: 32px;
  }
  .play-circle svg {
    width: 14px;
    height: 14px;
  }
  .play-label {
    font-size: 7px;
  }
  .duration {
    font-size: 9px;
    bottom: 5px;
    right: 5px;
  }
  .thumbnails {
    gap: 5px;
    margin-top: 7px;
  }
  .thumbnail {
    flex-basis: calc((100% - 15px) /4);
    padding: 2px;
  }
  .photo-counter {
    font-size: 10px;
    left: 6px;
    bottom: 7px;
    padding: 4px 6px;
    gap: 5px;
  }
  .photo-caption {
    display: none;
  }
  .photo-arrow {
    width: 30px;
  }
  .footer {
    padding: 23px 20px;
  }
  .footer > div {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .footer p {
    font-size: 9px;
  }
}
@media (max-width: 359px) {
  .masthead {
    padding-inline: 14px;
  }
  .brand {
    font-size: 14px;
    letter-spacing: 2px;
  }
  .edition {
    gap: 8px;
    font-size: 7px;
  }
  .hero {
    padding-inline: 18px;
  }
  .hero h1 {
    font-size: 67px;
  }
  .model-section {
    padding-inline: 10px;
  }
  .gallery {
    padding-right: 9px;
  }
  .model-info {
    padding-left: 9px;
  }
  .reversed .gallery {
    padding-left: 9px;
  }
  .reversed .model-info {
    padding-right: 9px;
  }
  .model-meta {
    gap: 5px;
  }
  .agency {
    font-size: 7px;
    padding: 4px;
  }
  .availability {
    font-size: 7px;
  }
  .model-name {
    font-size: 29px;
  }
  .city {
    margin: 10px 0 15px;
  }
  .model-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 7px;
  }
  .model-stats dt {
    margin-bottom: 0;
  }
  .model-stats dd {
    font-size: 15px;
  }
  .photo-slide {
    aspect-ratio: 3/6.7;
  }
  .tags span {
    padding: 4px 5px;
  }
  .film-label {
    font-size: 6px;
  }
  .play-label {
    top: 73%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
/* Photo viewing: discourage casual saving, without claiming DRM protection. */
.portrait {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.photo-enlarge {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: pan-y pinch-zoom;
  -webkit-touch-callout: none;
}
.expand-hint {
  position: absolute;
  right: 8px;
  bottom: 9px;
  background: #090909aa;
  border: 1px solid #ffffff40;
  padding: 5px;
  display: grid;
  place-items: center;
}
.photo-caption {
  bottom: 45px;
  pointer-events: none;
}
.gallery,
.video-cover {
  -webkit-touch-callout: none;
  user-select: none;
}
.image-lightbox[data-slot='dialog-content'] {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  border: 0;
  border-radius: 0;
  padding: 64px 60px;
  gap: 0;
  background: rgba(0, 0, 0, 0.94);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}
.lightbox-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.lightbox-image .portrait {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: none;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid #ffffff30;
  background: #151515bb;
  z-index: 2;
}
.lightbox-close {
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
}
.lightbox-prev {
  top: calc(50% - 22px);
  left: 8px;
}
.lightbox-next {
  top: calc(50% - 22px);
  right: 8px;
}
.lightbox-count {
  position: absolute;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  color: #c9c9c9;
  font-size: 13px;
  letter-spacing: 3px;
}
.load-more {
  display: flex;
  justify-content: center;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.load-more button {
  padding: 12px 24px;
  border: 1px solid #41413b;
  color: var(--subtle);
  font-size: 12px;
}
@media (max-width: 520px) {
  .image-lightbox[data-slot='dialog-content'] {
    padding: 64px 12px;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 36px;
  }
}
.lightbox-image {
  pointer-events: auto;
}
.model-layout.without-photos {
  grid-template-columns: minmax(0, 1fr);
}
.model-layout.without-photos .model-info {
  padding: 0;
}
.model-layout.without-photos .video-section {
  max-width: 360px;
  width: 100%;
}

/* Native HTML replacements for the former React UI primitives. */
[hidden] { display:none !important; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.photo-slide { position:relative; }
.photo-slide .photo-enlarge { position:absolute; inset:0; }
.photo-arrow { font-size:24px; }
.photo-arrow::before { z-index:-1; }
#lightbox { inset:0; margin:auto; width:100vw; max-width:100vw; height:100vh; height:100dvh; max-height:100dvh; border:0; padding:64px 60px; background:#000e; color:#fff; overflow:hidden; }
#lightbox[open] { display:flex; align-items:center; justify-content:center; }
#lightbox::backdrop { background:#000b; }
#lightbox .lightbox-image { width:100%; height:100%; }
#lightbox .portrait { object-fit:contain; }
#lightbox button { font-size:32px; }
.zoom-open { overflow:hidden; }
.image-failed { background:#222; font-size:12px; color:#aaa; }
.load-more { gap:15px; flex-wrap:wrap; font-size:12px; }
.load-more button:disabled { opacity:.5; }
.play-circle { font-size:15px; padding-left:2px; }
@media(max-width:520px) { #lightbox { padding:64px 12px; } }

.model-remarks {
  margin-top: 14px;
  color: #c8c6bb;
  font-size: 13px;
  line-height: 1.8;
  white-space: pre-wrap;
  white-space: break-spaces;
  overflow-wrap: anywhere;
  min-width: 0;
}
@media (max-width: 520px) {
  .model-remarks { margin-top: 10px; font-size: 11px; }
}
