/* Kimochi Studio — Dark Premium Theme */
:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --gold: #c9964b;
  --gold-dim: #a67c3a;
  --text: #e8e6e3;
  --text-dim: #8a8782;
  --border: #1f1f1f;
  --accent: #d44b5c;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
nav {
  position: fixed; top: 0; width: 100%;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 0 2rem;
}
nav .inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
nav .logo {
  font-size: 1.25rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--gold); text-decoration: none;
}
nav .logo span { color: var(--text); font-weight: 400; }
nav .nav-links { display: flex; gap: 2rem; list-style: none; }
nav .nav-links a {
  color: var(--text-dim); text-decoration: none;
  font-size: 0.875rem; text-transform: uppercase;
  letter-spacing: 0.1em; transition: color 0.2s;
}
nav .nav-links a:hover { color: var(--gold); }

/* Hero */
.hero {
  min-height: 70vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 2rem 4rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 1.5rem;
}
.hero .gold { color: var(--gold); }
.hero p {
  color: var(--text-dim); font-size: 1.15rem;
  max-width: 560px; margin: 0 auto 2rem;
}

/* Gallery Grid */
.gallery {
  max-width: 1200px; margin: 0 auto; padding: 2rem;
}
.gallery h2 {
  text-align: center; font-size: 2rem; margin-bottom: 3rem;
  color: var(--gold); letter-spacing: 0.05em;
}
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.model-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  text-decoration: none; color: inherit; display: block;
}
.model-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.model-card img {
  width: 100%; height: 420px; object-fit: cover; display: block;
}
.model-card .info { padding: 1.5rem; }
.model-card .name {
  font-size: 1.35rem; font-weight: 600; margin-bottom: 0.25rem;
}
.model-card .role {
  color: var(--text-dim); font-size: 0.9rem;
}
.model-card .cta {
  display: inline-block; margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  background: var(--gold); color: #000;
  border-radius: 6px; font-weight: 600; font-size: 0.85rem;
  text-decoration: none; transition: background 0.2s;
}
.model-card .cta:hover { background: #e0a850; }

/* Model Page */
.model-page {
  max-width: 1000px; margin: 0 auto; padding: 6rem 2rem 4rem;
}
.model-header { display: flex; gap: 3rem; align-items: flex-start; margin-bottom: 4rem; }
.model-header img {
  width: 300px; height: 400px; object-fit: cover;
  border-radius: 12px; border: 2px solid var(--border);
}
.model-info h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.model-info .tagline { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.model-info .bio { color: var(--text-dim); max-width: 500px; line-height: 1.8; margin-bottom: 1.5rem; }
.model-info .socials { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.model-info .socials a {
  padding: 0.5rem 1.2rem; border: 1px solid var(--border);
  border-radius: 6px; color: var(--text); text-decoration: none;
  font-size: 0.85rem; transition: border-color 0.2s;
}
.model-info .socials a:hover { border-color: var(--gold); }

.fanvue-cta {
  display: inline-block; padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, var(--accent), #c0392b);
  color: #fff; border-radius: 8px; font-weight: 700;
  font-size: 1.1rem; text-decoration: none; margin-top: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fanvue-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,75,92,0.3);
}

/* Photo Gallery Strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem; margin-top: 3rem;
}
.photo-strip img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--border);
  transition: transform 0.3s;
}
.photo-strip img:hover { transform: scale(1.03); }

/* Gift/Tip Section */
.gift-section {
  text-align: center; margin: 4rem 0 2rem;
  padding: 2rem; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 12px;
}
.gift-section h3 { color: var(--gold); margin-bottom: 1rem; }
.gift-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.gift-links a {
  padding: 0.7rem 1.8rem; background: var(--bg);
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); text-decoration: none; transition: all 0.2s;
}
.gift-links a:hover { border-color: var(--gold); color: var(--gold); }

/* Footer */
footer {
  text-align: center; padding: 3rem 2rem;
  color: var(--text-dim); font-size: 0.85rem;
  border-top: 1px solid var(--border);
}
footer a { color: var(--gold); text-decoration: none; }

/* Mobile */
@media (max-width: 768px) {
  .model-header { flex-direction: column; gap: 1.5rem; }
  .model-header img { width: 100%; height: auto; }
  nav .nav-links { display: none; }
  .hero { min-height: 50vh; padding: 5rem 1rem 3rem; }
}

/* About Page */
.about-page {
  max-width: 700px; margin: 0 auto; padding: 6rem 2rem 4rem;
}
.about-page h1 { color: var(--gold); font-size: 2rem; margin-bottom: 1.5rem; }
.about-page p { color: var(--text-dim); line-height: 1.8; margin-bottom: 1rem; }
