@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600&display=swap');

:root {
  --bg: #090909;
  --bg-soft: #101010;
  --panel: rgba(255,255,255,0.045);
  --panel-strong: rgba(255,255,255,0.07);
  --text: #f4efe4;
  --text-soft: #e3dccf;
  --muted: #b6ae9d;
  --gold: #c89b3c;
  --gold-soft: rgba(200,155,60,0.11);
  --gold-line: rgba(200,155,60,0.18);
  --white-line: rgba(255,255,255,0.07);
  --shadow: 0 28px 80px rgba(0,0,0,0.38);
  --radius: 22px;
  --radius-lg: 30px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 0%, rgba(200,155,60,0.13), transparent 26%),
    radial-gradient(circle at 0% 20%, rgba(255,255,255,0.04), transparent 18%),
    linear-gradient(180deg, #080808 0%, #0d0d0e 42%, #090909 100%);
  min-height: 100vh;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 44px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(8,8,8,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}
.brand { display: flex; flex-direction: column; gap: 4px; }
.brand-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.86rem;
  letter-spacing: 0.04em;
}
.brand-sub {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.nav-links a {
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: 0.24s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.btn, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn {
  background: linear-gradient(135deg, #e0bc66 0%, #b8831f 100%);
  color: #171109;
  box-shadow: 0 16px 34px rgba(200,155,60,0.25);
}
.btn:hover, .btn-ghost:hover { transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}

.hero { padding: 92px 0 58px; }
.page-hero { padding: 78px 0 34px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(200,155,60,0.12);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: end;
  margin-top: 28px;
}
.hero h1, .page-hero h1, .section-head h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -0.02em;
}
.hero h1, .page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  line-height: 0.94;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(2.15rem, 3vw, 3.4rem);
  line-height: 1;
}
.lead {
  max-width: 860px;
  color: var(--text-soft);
  font-size: clamp(1.08rem, 1.34vw, 1.26rem);
  line-height: 1.95;
  font-weight: 500;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-card, .card, .panel, .venture-card, .stat, .story-chapter {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.026));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.hero-card, .panel { border-radius: var(--radius-lg); }
.hero-card { padding: 30px; }
.meta-list { display: grid; gap: 16px; }
.meta-item { padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.meta-item:last-child { border-bottom: 0; padding-bottom: 0; }
.meta-label {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.19em;
  margin-bottom: 8px;
}
.meta-value {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.section-lg { padding: 74px 0; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  margin-bottom: 30px;
}
.section-head p {
  margin: 0;
  max-width: 740px;
  color: var(--muted);
  line-height: 1.82;
}
.grid-3, .grid-2, .venture-grid, .stats { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.venture-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .venture-card, .story-chapter {
  padding: 28px;
  border-radius: var(--radius);
}
.card h3, .venture-card h3, .story-chapter h3 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.05;
}
.card p, .card li, .venture-card p, .roadmap-item, .contact-card p {
  color: var(--text-soft);
  line-height: 1.88;
}
.card ul { margin: 14px 0 0; padding-left: 18px; }
.stat {
  padding: 24px;
  border-radius: 18px;
}
.stat strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.3rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat span { color: var(--muted); line-height: 1.65; font-size: 0.95rem; }
.quote {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(200,155,60,0.13), rgba(255,255,255,0.03));
  border: 1px solid rgba(200,155,60,0.16);
  box-shadow: var(--shadow);
}
.quote p {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.65rem, 2.5vw, 2.6rem);
  line-height: 1.28;
}
.venture-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.venture-card .top { display: flex; justify-content: space-between; gap: 16px; align-items: start; }
.venture-card .tag {
  font-size: 0.73rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.venture-card a.link, .contact-list a {
  color: #efd896;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(200,155,60,0.08);
  color: #ead8a8;
  border: 1px solid rgba(200,155,60,0.15);
  font-size: 0.84rem;
}
.roadmap-list { display: grid; gap: 14px; }
.roadmap-item {
  padding: 18px 20px;
  border-left: 2px solid rgba(200,155,60,0.35);
  background: rgba(255,255,255,0.03);
  border-radius: 0 18px 18px 0;
}
.contact-card { max-width: 780px; }
.divider {
  height: 1px;
  margin: 10px 0 22px;
  background: linear-gradient(90deg, transparent, rgba(200,155,60,0.25), transparent);
}
.contact-list { display: grid; gap: 14px; }

.story-shell { padding-top: 18px; }
.story-intro {
  padding: 32px;
  margin-bottom: 26px;
}
.story-intro p,
.story-chapter p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-soft);
}
.story-prose {
  display: grid;
  gap: 22px;
}
.story-chapter {
  position: relative;
  overflow: hidden;
}
.story-chapter::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(200,155,60,0.7), rgba(200,155,60,0.06));
}
.chapter-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.story-chapter h3 {
  font-size: clamp(1.8rem, 2.4vw, 2.35rem);
  margin-bottom: 14px;
}
.story-chapter p + p { margin-top: 14px; }
.story-divider {
  width: 92px;
  height: 1px;
  margin: 10px 0 0;
  background: linear-gradient(90deg, rgba(200,155,60,0.55), rgba(200,155,60,0));
}

.footer {
  padding: 34px 0 52px;
  margin-top: 62px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}
.footer p, .footer a { color: var(--muted); line-height: 1.7; }
.small { font-size: 0.95rem; }

@media (max-width: 980px) {
  .hero-grid, .grid-3, .grid-2, .venture-grid, .stats { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav { flex-direction: column; align-items: flex-start; padding: 16px 0; }
  .nav-links { width: 100%; }
  .hero { padding-top: 58px; }
  .hero h1, .page-hero h1 { line-height: 1.02; }
  .story-intro, .card, .venture-card, .story-chapter, .hero-card, .quote { padding: 24px; }
}
