/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #090909;
  color: #d8d8d8;
  line-height: 1.65;
}
a { color: #c9a84c; text-decoration: none; }
a:hover { color: #d4b560; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Serif headings (Noir Luxe) ───────────────────────────── */
h1, h2, h3,
.site-logo,
.actress-title,
.actress-name,
.card-title,
.section-title,
.page-hero h1,
.age-gate h2 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  background: #0d0d0d;
  border-bottom: 1px solid #1e1e1e;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-logo-wrap { display: flex; flex-direction: column; gap: 2px; }
.site-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #c9a84c;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.site-logo:hover { color: #d4b560; text-decoration: none; }
.site-tagline {
  font-size: 0.62rem;
  color: #555;
  letter-spacing: 0.3px;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 600px) { .site-tagline { display: none; } }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
}
.site-nav a { color: #aaa; }
.site-nav a:hover, .site-nav a.active { color: #c9a84c; }

/* Genre dropdown */
.genre-dropdown-wrap { position: relative; }
.genre-toggle {
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 0.88rem;
  padding: 0;
  letter-spacing: 0.3px;
}
.genre-toggle:hover { color: #c9a84c; }
.genre-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #111;
  border: 1px solid #252525;
  min-width: 150px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.genre-dropdown-wrap:hover .genre-dropdown,
.genre-dropdown-wrap.open .genre-dropdown { display: block; }
.genre-dropdown a {
  display: block;
  padding: 9px 18px;
  color: #aaa;
  font-size: 0.86rem;
  border-bottom: 1px solid #1a1a1a;
}
.genre-dropdown a:last-child { border-bottom: none; }
.genre-dropdown a:hover { background: #181818; color: #c9a84c; }

/* Lang toggle */
.lang-toggle { display: flex; align-items: center; gap: 6px; font-size: 0.83rem; }
.lang-toggle a { color: #666; }
.lang-toggle a.active { color: #c9a84c; font-weight: 600; }

/* ── Main ─────────────────────────────────────────────────── */
.site-main { min-height: calc(100vh - 120px); padding: 40px 0; }

/* ── Page hero ────────────────────────────────────────────── */
.page-hero { margin-bottom: 36px; }
.page-hero h1 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.page-hero p { color: #777; font-size: 0.93rem; }

/* ── PR Banner ────────────────────────────────────────────── */
.pr-banner {
  margin: 28px 0;
  text-align: center;
  background: #0f0f0f;
  padding: 14px;
  border: 1px solid #1e1e1e;
  border-radius: 6px;
}

/* ── Site About Section ────────────────────────────────────── */
.site-about {
  border-left: 3px solid #c9a84c;
  background: #0f0f0f;
  padding: 22px 28px;
  margin-bottom: 36px;
  border-radius: 0 6px 6px 0;
}
.site-about-main {
  font-size: 0.92rem;
  color: #bbb;
  line-height: 1.85;
  margin-bottom: 12px;
}
.site-about-disclaimer {
  font-size: 0.75rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid #191919;
  padding-top: 10px;
}

/* ── Article grid ─────────────────────────────────────────── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}
.article-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.article-card:hover {
  border-color: #c9a84c;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}
.article-card a { display: block; color: inherit; }
.article-card a:hover { text-decoration: none; }

.card-thumb {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #0d0d0d;
}
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.article-card:hover .card-thumb img { transform: scale(1.04); }
.card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 0.8rem;
}

.card-body { padding: 14px; }
.card-title {
  font-size: 0.97rem;
  color: #e0e0e0;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 600;
}

.card-genres { display: flex; flex-wrap: wrap; gap: 4px; }

/* ── Genre tag ────────────────────────────────────────────── */
.genre-tag {
  display: inline-block;
  background: transparent;
  color: #c9a84c;
  font-size: 0.72rem;
  padding: 2px 9px;
  border-radius: 10px;
  border: 1px solid #2e2a1a;
  letter-spacing: 0.3px;
}

/* ── 下書き通知バー ───────────────────────────────────────── */
.draft-notice {
  background: #1e1500;
  border: 1px solid #4a3200;
  color: #ffaa44;
  padding: 10px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 0.88rem;
}
.draft-notice a { color: #ffcc88; margin-left: 12px; }

/* ── Actress page ─────────────────────────────────────────── */
.actress-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
}
.actress-genres { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }

.actress-layout {
  display: flex;
  gap: 44px;
  margin: 28px 0;
}
.actress-thumb-col { flex: 0 0 300px; }
.actress-info-col  { flex: 1; }

.actress-main-thumb {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #222;
}
.thumb-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  border-radius: 8px;
  border: 1px solid #222;
}

.actress-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 8px;
}
.actress-gallery img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 3px;
}

.actress-name {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

.profile-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.profile-table th, .profile-table td {
  padding: 11px 14px;
  border-bottom: 1px solid #1a1a1a;
  text-align: left;
  font-size: 0.9rem;
}
.profile-table th { color: #666; width: 140px; white-space: nowrap; font-weight: normal; }
.profile-table td { color: #d0d0d0; }

.venue-links { list-style: none; padding: 0; }
.venue-links li { margin-bottom: 5px; }
.venue-links a { color: #c9a84c; font-size: 0.9rem; }

.actress-notes {
  background: #0f0f0f;
  border: 1px solid #1e1e1e;
  border-radius: 6px;
  padding: 18px 20px;
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.8;
}

/* ── Videos section ───────────────────────────────────────── */
.videos-section { margin-top: 48px; }
.section-title {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1e1e1e;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.video-count { font-size: 0.88rem; color: #555; font-weight: normal; font-family: sans-serif; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.video-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.video-card:hover {
  border-color: #c9a84c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.video-link { display: block; color: inherit; }
.video-link:hover { text-decoration: none; }

.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.35s;
}
.video-card:hover .video-thumb { transform: scale(1.04); }
.video-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 0.8rem;
}

.video-info { padding: 11px 12px; }
.video-site-name {
  font-size: 0.7rem;
  color: #c9a84c;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.video-title {
  font-size: 0.82rem;
  color: #c8c8c8;
  margin-bottom: 6px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-date { font-size: 0.74rem; color: #555; margin-bottom: 10px; }
.video-watch-btn {
  display: block;
  background: #c9a84c;
  color: #000;
  text-align: center;
  padding: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── Contact / Form page ──────────────────────────────────── */
.form-page { max-width: 640px; margin: 0 auto; }
.form-page h1 { font-size: 1.7rem; color: #fff; margin-bottom: 28px; }
.legal-page { max-width: 800px; }
.legal-updated { color: #888; font-size: 0.85rem; margin-bottom: 32px; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 { font-size: 1.1rem; color: #c9a84c; margin-bottom: 12px; border-bottom: 1px solid #222; padding-bottom: 8px; }
.legal-section p, .legal-section li { color: #bbb; font-size: 0.92rem; line-height: 1.8; margin-bottom: 10px; }
.legal-section ul { padding-left: 20px; }
.legal-section a { color: #c9a84c; text-decoration: underline; }

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.88rem; color: #999; margin-bottom: 6px; letter-spacing: 0.2px; }
.field input, .field textarea, .field select {
  width: 100%;
  background: #111;
  border: 1px solid #252525;
  color: #e0e0e0;
  padding: 11px 14px;
  border-radius: 6px;
  font-size: 0.93rem;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: #c9a84c;
}
.contact-form .field { margin-bottom: 22px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 9px 20px;
  background: #161616;
  color: #bbb;
  border: 1px solid #2e2e2e;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.88rem;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:hover { background: #1e1e1e; border-color: #444; color: #e0e0e0; text-decoration: none; }
.btn-primary { background: #c9a84c; color: #000; border-color: #c9a84c; font-weight: 700; letter-spacing: 0.3px; }
.btn-primary:hover { background: #d4b560; border-color: #d4b560; color: #000; }

/* ── Alerts ───────────────────────────────────────────────── */
.alert { padding: 12px 16px; border-radius: 6px; margin-bottom: 16px; font-size: 0.9rem; }
.alert-success { background: #0f1f0f; border: 1px solid #1e3a1e; color: #5aaf5a; }
.alert-error   { background: #1f0f0f; border: 1px solid #3a1e1e; color: #af5a5a; }

.no-results { color: #555; text-align: center; padding: 48px 0; font-size: 0.95rem; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #0d0d0d;
  border-top: 1px solid #191919;
  padding: 28px 0;
  text-align: center;
  font-size: 0.83rem;
  color: #3e3e3e;
}
.site-footer p { margin-bottom: 4px; }
.footer-disclaimer { margin-top: 6px; font-size: 0.78rem; }
.footer-nav { margin-top: 12px; }
.footer-nav a { color: #4a4a4a; margin: 0 10px; font-size: 0.82rem; }
.footer-nav a:hover { color: #c9a84c; }

/* ── Age Gate ─────────────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-gate-inner {
  max-width: 460px;
  width: 100%;
  text-align: center;
  padding: 52px 44px;
  border: 1px solid #222;
  background: #0d0d0d;
}
.age-gate-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.82rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 40px;
  font-weight: 700;
}
.age-gate h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 400;
  letter-spacing: 1px;
}
.age-gate-text {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.85;
  margin-bottom: 38px;
}
.age-gate-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.age-gate-enter {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: #c9a84c;
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.age-gate-enter:hover { background: #d4b560; color: #000; text-decoration: none; }
.age-gate-exit {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  color: #444;
  font-size: 0.84rem;
  border: 1px solid #222;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.age-gate-exit:hover { color: #777; border-color: #3a3a3a; text-decoration: none; }
.age-gate-fine {
  font-size: 0.7rem;
  color: #2e2e2e;
  line-height: 1.6;
  margin: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .actress-layout { flex-direction: column; gap: 28px; }
  .actress-thumb-col { flex: none; }
  .site-nav { gap: 16px; font-size: 0.82rem; }
  .article-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .video-grid   { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .page-hero h1 { font-size: 1.6rem; }
  .actress-title { font-size: 1.6rem; }
  .age-gate-inner { padding: 40px 28px; }
  .site-about { padding: 18px 20px; }
}
@media (max-width: 480px) {
  .article-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .header-inner { padding: 0 16px; }
  .site-logo { font-size: 1.1rem; }
}
