:root {
  --black: #030305;
  --panel: #09090d;
  --panel-2: #121118;
  --white: #f7f6f8;
  --muted: #a9a2aa;
  --line: rgba(255, 255, 255, 0.13);
  --pink: #ff1493;
  --pink-2: #ff4eb5;
  --cyan: #3ee7ff;
  --acid: #ccff3a;
  --shadow-pink: 0 0 18px rgba(255, 20, 147, 0.62), 0 0 42px rgba(255, 20, 147, 0.26);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 20, 147, 0.07), transparent 420px),
    var(--black);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

html[lang="zh-CN"] body {
  font-family: "Noto Sans SC", Inter, Arial, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

body.age-locked {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 46px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 3, 5, 0.84);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 164px;
  height: 112px;
}

.brand img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 14px rgba(255, 20, 147, 0.72));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a:not(.nav-cta) {
  color: rgba(247, 246, 248, 0.78);
}

.site-nav a:hover {
  color: var(--pink-2);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(3, 3, 5, 0.58);
}

.language-switch button {
  min-width: 42px;
  height: 34px;
  border: 0;
  border-radius: 3px;
  color: rgba(247, 246, 248, 0.76);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.is-active {
  color: #09000a;
  background: var(--pink);
  box-shadow: 0 0 14px rgba(255, 20, 147, 0.58);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--pink);
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 20, 147, 0.12);
  box-shadow: var(--shadow-pink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 148px clamp(18px, 5vw, 64px) 48px;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(0.85) contrast(1.15);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 20, 147, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(3, 3, 5, 0.96), rgba(3, 3, 5, 0.62) 46%, rgba(3, 3, 5, 0.8)),
    linear-gradient(0deg, var(--black), transparent 44%);
}

.hero-layout,
.intro,
.models,
.bookings,
.locations,
.casting,
.apply,
.site-footer {
  width: min(var(--max), calc(100vw - 36px));
  margin-inline: auto;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(340px, 500px);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--pink-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 0 12px rgba(255, 20, 147, 0.8);
}

h1,
h2,
h3,
p,
li {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 740px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
  white-space: pre-line;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 0.94;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(247, 246, 248, 0.82);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-width: 160px;
  min-height: 52px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.button-primary {
  color: #09000a;
  background: var(--pink);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.age-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 20, 147, 0.22), transparent 34%),
    rgba(3, 3, 5, 0.92);
  backdrop-filter: blur(16px);
}

.age-gate.is-hidden {
  display: none;
}

.age-gate-panel {
  width: min(440px, 100%);
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid rgba(255, 20, 147, 0.52);
  border-radius: 6px;
  text-align: center;
  background: linear-gradient(180deg, rgba(18, 17, 24, 0.96), rgba(5, 5, 7, 0.96));
  box-shadow: var(--shadow-pink), 0 24px 80px rgba(0, 0, 0, 0.62);
}

.age-gate-panel img {
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 18px rgba(255, 20, 147, 0.78));
}

.age-gate-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1;
}

.age-gate-panel p:not(.eyebrow) {
  margin-bottom: 24px;
  color: rgba(247, 246, 248, 0.76);
  line-height: 1.55;
}

.age-gate-actions {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 10px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-portrait {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 20, 147, 0.72);
  background: var(--panel-2);
  box-shadow: var(--shadow-pink);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.1);
}

.hero-portrait-main {
  right: 0;
  bottom: 54px;
  width: min(70%, 330px);
  height: 470px;
}

.hero-portrait-small {
  left: 0;
  bottom: 158px;
  width: min(45%, 210px);
  height: 310px;
  border-color: rgba(62, 231, 255, 0.55);
  box-shadow: 0 0 18px rgba(62, 231, 255, 0.34), 0 0 34px rgba(255, 20, 147, 0.18);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 42px;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(9, 9, 13, 0.62);
  backdrop-filter: blur(12px);
}

.hero-panel div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel span {
  display: block;
  color: var(--pink-2);
  font-size: 38px;
  font-weight: 900;
  text-shadow: var(--shadow-pink);
}

.hero-panel p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 20, 147, 0.08), transparent 42%),
    var(--panel);
}

.intro,
.bookings,
.casting {
  width: 100%;
  max-width: none;
  padding: 88px max(18px, calc((100vw - var(--max)) / 2)) 92px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
}

.split > *,
.section-head > *,
.intro-copy,
.casting-list {
  min-width: 0;
}

.intro-copy,
.casting-list {
  color: rgba(247, 246, 248, 0.75);
  font-size: 17px;
  line-height: 1.75;
}

.casting-list ul {
  padding-left: 18px;
}

.casting-list li {
  margin: 12px 0;
}

.models,
.locations,
.apply {
  padding: 92px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head.compact {
  align-items: start;
}

.text-link {
  color: var(--pink-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 1px solid var(--pink-2);
}

.section-copy {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(247, 246, 248, 0.75);
  font-size: 18px;
  line-height: 1.65;
}

.model-grid {
  display: grid;
  grid-template-columns: 1.18fr repeat(3, 1fr);
  gap: 14px;
}

.model-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 20, 147, 0.44);
  background: var(--panel-2);
  box-shadow: 0 0 0 1px rgba(255, 20, 147, 0.08), 0 20px 60px rgba(0, 0, 0, 0.42);
}

.feature-card {
  min-height: 590px;
}

.model-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
  transition: transform 360ms ease, filter 360ms ease;
}

.model-card:hover img {
  transform: scale(1.045);
  filter: saturate(0.98) contrast(1.08);
}

.model-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(3, 3, 5, 0.88));
}

.model-info {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.model-info p,
.model-info span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.model-info h3 {
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: var(--max);
  margin: 34px auto 0;
}

.booking-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 20, 147, 0.09), rgba(255, 255, 255, 0.025));
}

.booking-grid span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.booking-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.location-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(130px, 1fr));
  gap: 12px;
}

.location-strip figure {
  position: relative;
  margin: 0;
  min-height: 176px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel-2);
}

.location-strip img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.75) contrast(1.08);
}

.location-strip figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 6px 9px;
  color: var(--white);
  background: rgba(3, 3, 5, 0.74);
  border-left: 2px solid var(--pink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.destination-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.destination-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 20, 147, 0.36);
  border-radius: 4px;
  color: rgba(247, 246, 248, 0.86);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 16px rgba(255, 20, 147, 0.09);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.apply {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 0.88fr);
  gap: 18px;
  align-items: stretch;
}

.apply-media {
  min-height: 620px;
  border: 1px solid rgba(255, 20, 147, 0.48);
  overflow: hidden;
}

.apply-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apply-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.apply-form h2 {
  margin-bottom: 12px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--white);
  background: #050507;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

.site-footer {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 14px rgba(255, 20, 147, 0.64));
}

.site-footer p {
  margin-bottom: 4px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer span {
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: var(--pink-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
    order: 3;
  }

  .site-nav {
    order: 4;
    position: fixed;
    inset: 126px 14px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(3, 3, 5, 0.96);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .language-switch {
    margin-left: auto;
    order: 2;
  }

  .hero-layout,
  .split,
  .apply {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    align-items: start;
  }

  .hero-visual {
    min-height: 520px;
    max-width: 560px;
  }

  .hero-panel {
    left: 0;
    right: 0;
  }

  .hero-panel div:last-child {
    border-right: 0;
  }

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

  .feature-card {
    min-height: 470px;
  }

  .location-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand,
  .brand img {
    width: 82px;
    height: 82px;
  }

  .site-nav {
    inset-top: 112px;
  }

  .hero {
    min-height: 88svh;
    padding: 112px 18px 34px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 64px);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(34px, 12vw, 54px);
  }

  .hero-panel,
  .model-grid,
  .booking-grid,
  .location-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.66fr);
    gap: 10px;
    min-height: 0;
  }

  .hero-portrait {
    position: relative;
    inset: auto;
  }

  .hero-portrait-main {
    width: 100%;
    height: 390px;
  }

  .hero-portrait-small {
    width: 100%;
    height: 280px;
  }

  .hero-panel {
    grid-column: 1 / -1;
    position: relative;
    margin-top: 18px;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .language-switch button {
    min-width: 36px;
    padding-inline: 6px;
  }

  html[lang="ru"] h1 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .model-card,
  .feature-card {
    min-height: 500px;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .intro,
  .bookings,
  .casting,
  .models,
  .locations,
  .apply {
    padding-top: 70px;
    padding-bottom: 72px;
  }

  .apply-media {
    min-height: 320px;
  }

  .age-gate-actions {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}
