:root {
  --bg: #f5ede0;
  --bg-warm: #ede3d3;
  --ink: #1a1a2e;
  --ink-soft: #2d2d2d;
  --brass: #b8860b;
  --brass-light: #d4a82a;
  --leather: #6b3a2a;
  --cream: #faf6ef;
  --mist: rgba(245, 237, 224, 0.7);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(26,26,46,0.6) 0%, transparent 100%);
  backdrop-filter: blur(4px);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.nav-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--brass-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(184, 134, 11, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(107, 58, 42, 0.3) 0%, transparent 50%),
    linear-gradient(160deg, #1a1a2e 0%, #2d1a0e 50%, #1a1a2e 100%);
}
.hero-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8860b' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 120px 80px 100px;
  max-width: 760px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 32px;
}
.hero-headline em {
  color: var(--brass-light);
  font-style: italic;
}
.hero-sub {
  font-family: 'Crimson Text', serif;
  font-size: 22px;
  color: rgba(250, 246, 239, 0.75);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 48px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brass);
}
.hero-meta-sep { color: rgba(184,134,11,0.4); }
.hero-scroll-indicator {
  position: absolute;
  bottom: 48px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brass);
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--brass) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Story Section */
.story-section {
  background: var(--bg);
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin-bottom: 24px;
}
.story-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 32px;
}
.story-headline em {
  color: var(--leather);
  font-style: italic;
}
.story-body p {
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}
.story-visual {
  position: relative;
}
.quote-block {
  background: var(--ink);
  color: var(--cream);
  padding: 48px;
  border-left: 3px solid var(--brass);
}
.quote-block blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 20px;
}
.quote-block cite {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass-light);
  font-style: normal;
}

/* Stage Section */
.stage-section {
  background: var(--ink);
  padding: 120px 80px;
}
.stage-header {
  margin-bottom: 80px;
}
.stage-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin-bottom: 20px;
}
.stage-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
}
.stage-headline em {
  color: var(--brass-light);
  font-style: italic;
}
.stage-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}
.stage-feature {}
.stage-feature-icon {
  font-size: 24px;
  color: var(--brass);
  margin-bottom: 16px;
}
.stage-feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.stage-feature p {
  font-size: 17px;
  color: rgba(250,246,239,0.65);
  line-height: 1.6;
}
.stage-specs {
  border-top: 1px solid rgba(184,134,11,0.25);
  padding-top: 40px;
}
.spec-row {
  display: flex;
  gap: 40px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(184,134,11,0.1);
}
.spec-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brass);
  min-width: 160px;
}
.spec-value {
  font-size: 16px;
  color: rgba(250,246,239,0.75);
}

/* Manifesto */
.manifesto-section {
  background: var(--leather);
  padding: 120px 80px;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto-number {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass-light);
  margin-bottom: 32px;
}
.manifesto-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 40px;
}
.manifesto-headline em {
  color: var(--bg);
  font-style: italic;
}
.manifesto-body {
  font-size: 20px;
  color: rgba(250,246,239,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Testimonials */
.testimonials-section {
  background: var(--bg-warm);
  padding: 100px 80px;
}
.testimonials-header { margin-bottom: 48px; }
.testimonials-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--cream);
  padding: 40px;
  border-top: 3px solid var(--brass);
}
.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
}
.testimonial-card cite {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brass);
  font-style: normal;
}

/* Worlds */
.worlds-section {
  background: var(--bg);
  padding: 100px 80px;
}
.worlds-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin-bottom: 24px;
}
.worlds-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 24px;
}
.worlds-headline em { color: var(--leather); font-style: italic; }
.worlds-body {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 64px;
}
.worlds-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.world-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--brass);
}
.world-desc {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Closing */
.closing-section {
  background: var(--ink);
  padding: 140px 80px;
  text-align: center;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 32px;
}
.closing-sub {
  font-size: 20px;
  color: rgba(250,246,239,0.65);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.closing-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--brass-light);
  line-height: 1.5;
}

/* Footer */
.footer {
  background: #0f0f1a;
  padding: 48px 80px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 6px;
}
.footer-location {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brass);
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250,246,239,0.45);
  text-decoration: none;
}
.footer-links a:hover { color: var(--brass-light); }
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(250,246,239,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero-inner { padding: 100px 24px 80px; }
  .hero-scroll-indicator { display: none; }
  .story-section { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
  .stage-section { padding: 80px 24px; }
  .stage-features { grid-template-columns: 1fr; }
  .manifesto-section { padding: 80px 24px; }
  .testimonials-section { padding: 80px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .worlds-section { padding: 80px 24px; }
  .worlds-list { grid-template-columns: 1fr; }
  .closing-section { padding: 100px 24px; }
  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .spec-row { flex-direction: column; gap: 4px; }
}