:root {
  --bg: #1c1c2e;
  --bg-raised: #252540;
  --bg-card: #1e1e33;
  --fg: #f5f2ec;
  --fg-muted: #a09890;
  --accent: #c9843a;
  --accent-dim: rgba(201, 132, 58, 0.15);
  --border: rgba(245, 242, 236, 0.08);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* NAV */
nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 8px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-link:hover {
  color: var(--fg);
  border-color: rgba(245, 242, 236, 0.2);
}

/* HERO */
.hero {
  padding: 80px 48px 72px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}
.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 600px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}
.hero-stat-block {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-stat { border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--accent);
  font-weight: 700;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* MANIFESTO */
.manifesto {
  background: var(--bg-raised);
  padding: 80px 48px;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-label, .engine-label, .asset-label, .locations-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.manifesto h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--fg);
  margin-bottom: 48px;
  max-width: 700px;
}
.manifesto-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.manifesto-col p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ENGINE */
.engine {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.engine h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--fg);
  margin-bottom: 56px;
}
.engine-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
}
.engine-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  min-width: 48px;
  font-weight: 700;
}
.step-body h3 {
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ASSET TYPES */
.asset-types {
  background: var(--bg-raised);
  padding: 80px 48px;
}
.asset-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.asset-types h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--fg);
  margin-bottom: 48px;
}
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.asset-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
}
.asset-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.asset-card h3 {
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 10px;
}
.asset-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* LOCATIONS */
.locations {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.locations h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--fg);
  margin-bottom: 16px;
}
.locations-intro {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 48px;
  max-width: 620px;
  line-height: 1.7;
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.location-block {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  background: var(--bg-raised);
}
.location-block--coming { opacity: 0.65; }
.loc-signal--soon { background: var(--bg-raised) !important; color: var(--fg-muted) !important; }
.locations-coming-soon { margin-top: 16px; }
.loc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.loc-city {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--fg);
  font-weight: 600;
}
.loc-signal {
  font-size: 11px;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.location-block p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.loc-detail {
  font-size: 11px;
  color: var(--accent);
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 10px;
}

/* CLOSING */
.closing {
  background: var(--bg-raised);
  padding: 96px 48px;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--fg);
  line-height: 1.3;
  font-style: italic;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* FOOTER */
footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
}
.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  flex: 1;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stat-block { max-width: 400px; }
  .manifesto-cols { grid-template-columns: 1fr; }
  .engine-steps { grid-template-columns: 1fr; }
  .asset-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  nav, .hero, .manifesto, .engine, .asset-types, .locations, .closing, footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .asset-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}