/* ============================================
   XJKT — Asia's New Wave
   Aesthetic: Luxury editorial, dark, cinematic
============================================ */

:root {
  --black: #080808;
  --off-black: #0e0e0e;
  --deep: #111111;
  --white: #f5f0ea;
  --cream: #e8dfd3;
  --gold: #c9a96e;
  --gold-pale: #d4b98a;
  --muted: #5a5550;
  --line: rgba(255,255,255,0.07);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ============ NOISE ============ */
.noise {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ============ CURSOR ============ */
.cursor {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-out), width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

body:hover .cursor { opacity: 1; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}

.nav.scrolled {
  border-color: var(--line);
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 3rem 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.line1 { animation: fadeUp 0.9s var(--ease-out) 0.4s forwards; }
.line2 { 
  animation: fadeUp 0.9s var(--ease-out) 0.55s forwards;
  padding-left: 5vw;
  color: var(--gold);
}
.line2 em { font-style: italic; }
.line3 { 
  animation: fadeUp 0.9s var(--ease-out) 0.7s forwards;
  padding-left: 10vw;
  color: rgba(245,240,234,0.25);
  -webkit-text-stroke: 1px rgba(245,240,234,0.3);
  color: transparent;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(245,240,234,0.6);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.05s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--cream);
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(245,240,234,0.2);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 7rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============ MARQUEE ============ */
.hero-marquee {
  position: absolute;
  bottom: 2rem;
  left: 0; right: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
}

.marquee-inner {
  display: flex;
  gap: 2rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-slow {
  animation-duration: 40s;
}

.marquee-inner span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ ROSTER ============ */
.roster {
  padding: 8rem 0 4rem;
}

.roster-header {
  padding: 0 3rem;
  margin-bottom: 6rem;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.roster-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
}

/* ============ MODEL CARD ============ */
.model-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.model-card.reverse {
  direction: rtl;
}

.model-card.reverse > * {
  direction: ltr;
}

.model-visual {
  position: relative;
  overflow: hidden;
}

.model-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.model-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.6s var(--ease-out);
}

.model-card:hover .model-placeholder {
  transform: scale(1.04);
}

.model-silhouette {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 220px;
  opacity: 0.4;
}

.model-initials {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  position: relative;
  z-index: 2;
}

.model-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.5) 0%, transparent 60%);
}

.model-num {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  z-index: 5;
}

/* ============ MODEL INFO ============ */
.model-info {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
  position: relative;
}

.model-card.reverse .model-info {
  border-left: none;
  border-right: 1px solid var(--line);
}

.model-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.model-origin {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.model-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.25rem 0.75rem;
}

.model-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.model-desc {
  font-size: 0.95rem;
  color: rgba(245,240,234,0.6);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.model-stats {
  display: flex;
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.model-credits {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.model-credits span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.model-book {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}

.model-book:hover {
  gap: 1rem;
}

/* ============ AGENCY ============ */
.agency {
  padding: 8rem 0 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.agency-inner {
  padding: 0 3rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.agency-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.agency-text p {
  font-size: 0.95rem;
  color: rgba(245,240,234,0.6);
  line-height: 1.9;
  max-width: 480px;
  margin-bottom: 1.25rem;
}

.agency-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  margin-top: 4rem;
}

.a-stat {
  padding: 2.5rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.a-stat:nth-child(even) {
  border-right: none;
}

.a-stat:nth-child(3),
.a-stat:nth-child(4) {
  border-bottom: none;
}

.a-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.a-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.agency-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

/* ============ CONTACT ============ */
.contact {
  padding: 8rem 3rem;
  border-top: 1px solid var(--line);
}

.contact-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  margin: 1rem 0 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  margin-bottom: 4rem;
}

.contact-block {
  padding: 2.5rem;
  border-right: 1px solid var(--line);
}

.contact-block:last-child {
  border-right: none;
}

.c-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.c-email {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.c-email:hover {
  color: var(--gold);
}

.contact-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.contact-social > span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 2rem;
}

.social-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s, color 0.2s;
}

.social-links a:hover {
  opacity: 1;
  color: var(--gold);
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 3rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-copy, .footer-cities {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav { padding: 1.25rem 1.5rem; }
  .nav-tag { display: none; }
  
  .hero { padding: 8rem 1.5rem 6rem; }
  .hero-scroll { display: none; }
  
  .roster-header { padding: 0 1.5rem; }
  
  .model-card {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }
  
  .model-card.reverse > * { direction: ltr; }
  
  .model-info {
    padding: 2.5rem 1.5rem;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid var(--line);
  }
  
  .model-img-wrap { min-height: 420px; }
  
  .model-stats { gap: 1.5rem; }

  .agency-inner {
    grid-template-columns: 1fr;
    padding: 0 1.5rem 4rem;
    gap: 3rem;
  }
  
  .agency-stats { margin-top: 0; }

  .contact { padding: 5rem 1.5rem; }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-block {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  
  .contact-block:last-child { border-bottom: none; }
  
  .contact-social { flex-direction: column; gap: 1.5rem; align-items: flex-start; }

  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
