/* === BASE === */
:root {
  --bg: #FAFAF7;
  --bg-dark: #0B1D35;
  --navy: #0B1D35;
  --gold: #C9A853;
  --gold-light: #D4B96A;
  --cream: #F5F0E8;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

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

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 83, 0.2);
}

.nav-brand { display: flex; align-items: center; gap: 10px; }

.nav-logo {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 15px;
}

.nav-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600; font-size: 18px;
  color: var(--navy);
}

.nav-tagline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* === HERO === */
.hero {
  background: var(--navy);
  padding: 80px 60px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pillar-icon {
  width: 40px; height: 40px;
  background: rgba(201, 168, 83, 0.12);
  border: 1px solid rgba(201, 168, 83, 0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.pillar strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.pillar p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* === HERO ILLUSTRATION === */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-illustration {
  width: 100%;
  max-width: 440px;
}

.hero-label {
  text-align: center;
  margin-top: 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.25);
}

.desk-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
}

.scene-window {
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 55%;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: #1a3a5c;
}

.window-sky {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, #1a3a5c 0%, #2d5a87 50%, #d4a85355 100%);
}

.window-buildings {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 0 12px;
}

.bld {
  background: #0d2540;
  border-radius: 4px 4px 0 0;
}

.bld-1 { width: 18%; height: 70%; }
.bld-2 { width: 22%; height: 90%; }
.bld-3 { width: 14%; height: 55%; }
.bld-4 { width: 20%; height: 80%; }

.scene-desk {
  position: absolute;
  bottom: 18%; left: 0; right: 0;
}

.desk-surface {
  height: 18px;
  background: linear-gradient(180deg, #d4b96a 0%, #b8943f 100%);
  border-radius: 6px 6px 0 0;
  box-shadow: 0 4px 20px rgba(201,168,83,0.3);
}

.desk-leg {
  position: absolute;
  bottom: 0;
  width: 10px; height: 25%;
  background: #b8943f;
  border-radius: 0 0 4px 4px;
}

.desk-leg.left { left: 20%; }
.desk-leg.right { right: 20%; }

.screen {
  position: absolute;
  bottom: 30%;
  left: 15%; right: 15%;
  background: #111827;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}

.screen-header {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}

.dot-1 { background: #ef4444; }
.dot-2 { background: #f59e0b; }
.dot-3 { background: #22c55e; }

.pipeline-col { display: flex; flex-direction: column; gap: 8px; }

.pipeline-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}

.deal-card {
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 8px 10px;
  border-left: 3px solid rgba(255,255,255,0.1);
}

.deal-card.active { border-left-color: var(--gold); }

.deal-price {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
}

.deal-prop {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  margin: 2px 0;
}

.deal-stage {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-bottom-rule {
  margin-top: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,83,0.3), transparent);
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 60px;
  background: var(--cream);
  border-top: 1px solid rgba(201,168,83,0.15);
  border-bottom: 1px solid rgba(201,168,83,0.15);
}

.manifesto-inner { max-width: 760px; margin: 0 auto; }

.manifesto-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 28px;
}

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 36px;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}

.manifesto-response {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* === DEAL FLOW === */
.dealflow {
  padding: 100px 60px;
  background: var(--bg);
}

.dealflow-header {
  margin-bottom: 64px;
}

.section-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  max-width: 600px;
}

.dealflow-stages {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.stage {
  flex: 1;
  padding: 32px 28px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(201,168,83,0.15);
  box-shadow: 0 2px 16px rgba(11,29,53,0.04);
}

.stage-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: rgba(201,168,83,0.2);
  margin-bottom: 12px;
}

.stage h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.stage p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.stage-arrow {
  padding-top: 36px;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

/* === CLIENTS === */
.clients {
  padding: 80px 60px;
  background: var(--navy);
}

.clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.client-profile {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,83,0.15);
  border-radius: 16px;
}

.client-avatar {
  width: 52px; height: 52px;
  background: rgba(201,168,83,0.15);
  border: 1px solid rgba(201,168,83,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}

.client-info strong {
  display: block;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 2px;
}

.client-info span {
  font-size: 12px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.client-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-style: italic;
}

/* === FEATURES === */
.features {
  padding: 100px 60px;
  background: var(--cream);
}

.features-header { margin-bottom: 64px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature {
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(11,29,53,0.06);
  transition: box-shadow 0.2s ease;
}

.feature:hover {
  box-shadow: 0 8px 32px rgba(11,29,53,0.08);
}

.feature-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 120px 60px;
  background: var(--navy);
  text-align: center;
}

.closing-overline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 24px;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.closing-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  padding: 40px 60px;
  background: #060f1d;
  border-top: 1px solid rgba(201,168,83,0.1);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand { display: flex; align-items: center; gap: 10px; }

.footer-logo {
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 13px;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600; font-size: 16px;
  color: var(--white);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .dealflow-stages { flex-direction: column; }
  .stage-arrow { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .nav { padding: 16px 24px; }
  .hero, .manifesto, .dealflow, .features, .closing { padding: 60px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}
