/* Fault LP — 仮 */
:root {
  --bg: #0c0a0a;
  --bg-dark: #050404;
  --fg: #e8e2d6;
  --fg-dim: #b8a98c;
  --gold: #c9a96a;
  --gold-light: #e3c98a;
  --crimson: #8b1a1a;
  --border: rgba(201, 169, 106, 0.2);
}

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

body {
  font-family: 'Noto Serif JP', 'Cormorant Garamond', serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

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

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
  font-family: 'Cinzel', serif; font-size: 1.4rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.15em;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--fg-dim); font-size: 0.95rem; }
.nav-cta {
  padding: 8px 20px; border: 1px solid var(--gold);
  border-radius: 2px; color: var(--gold) !important;
}
.nav-cta:hover { background: var(--gold); color: var(--bg) !important; }

/* Hero */
.hero {
  min-height: 100vh;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  text-align: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(12,10,10,0.55) 0%,
    rgba(12,10,10,0.85) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 0 24px; }
.hero-badge {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem; letter-spacing: 0.3em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 24px;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Cinzel', serif; font-weight: 700;
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 0.05em;
  color: var(--fg);
  text-shadow: 0 0 40px rgba(0,0,0,0.7);
  margin-bottom: 24px;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold-light);
  margin-bottom: 32px;
}
.hero-tagline {
  font-size: 1.1rem; color: var(--fg-dim);
  margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold); color: var(--bg);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: transparent; color: var(--gold);
}
.btn-secondary {
  background: transparent; color: var(--fg);
  border: 1px solid var(--fg-dim);
}
.btn-secondary:hover {
  border-color: var(--gold); color: var(--gold);
}

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--fg-dim); font-size: 0.8rem; letter-spacing: 0.2em;
}
.scroll-line {
  width: 1px; height: 40px; background: var(--gold-light);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Sections */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-title {
  font-family: 'Cinzel', serif; font-size: 2.5rem;
  text-align: center; color: var(--gold);
  letter-spacing: 0.1em; margin-bottom: 8px;
}
.section-subtitle {
  text-align: center; color: var(--fg-dim);
  font-size: 0.95rem; margin-bottom: 48px;
  letter-spacing: 0.2em;
}

/* Story */
.story-text {
  max-width: 700px; margin: 0 auto;
  text-align: center; font-size: 1.1rem; line-height: 2.2;
  color: var(--fg);
}
.story-text p { margin-bottom: 24px; }
.quote-line {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.2rem;
  color: var(--gold-light);
  margin-top: 32px !important;
}

/* World */
.world-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 900px; margin: 0 auto;
}
.world-card {
  text-align: center; padding: 40px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all .3s;
}
.world-card:hover {
  border-color: var(--gold);
  background: rgba(201,169,106,0.04);
  transform: translateY(-4px);
}
.world-icon { font-size: 2.5rem; margin-bottom: 16px; }
.world-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.world-card p { color: var(--fg-dim); font-size: 0.95rem; line-height: 1.8; }

/* Status */
.status-card {
  max-width: 700px; margin: 0 auto;
  padding: 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.status-label {
  text-align: center; color: var(--fg-dim);
  font-size: 0.85rem; letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.status-phase {
  text-align: center;
  font-family: 'Cinzel', serif; font-size: 1.5rem;
  color: var(--gold); letter-spacing: 0.05em;
  margin-bottom: 32px;
}
.status-list { list-style: none; padding: 0; max-width: 500px; margin: 0 auto 24px; }
.status-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
  font-size: 0.95rem;
}
.status-list li:last-child { border-bottom: none; }
.status-note {
  text-align: center; color: var(--fg-dim);
  font-size: 0.85rem; font-style: italic;
}

.cta-block {
  display: flex; gap: 16px; justify-content: center;
  margin-top: 48px; flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem; color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
.footer-copy {
  color: var(--fg-dim); font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .section { padding: 64px 0; }
  .section-title { font-size: 2rem; }
  .status-card { padding: 24px; }
}
