:root {
  --navy: #0B1D3A;
  --navy-light: #112445;
  --gold: #C9A84C;
  --gold-light: #E0C068;
  --white: #FFFFFF;
  --off-white: #F5F4F0;
  --gray-100: #EBEBEB;
  --gray-400: #8A8A8A;
  --gray-600: #4A4A4A;
  --font-display: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* HERO */
.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  line-height: 1.7;
  font-weight: 300;
}

/* DEAL CARD */
.hero-visual {
  position: relative;
  z-index: 1;
}
.deal-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 32px;
  backdrop-filter: blur(8px);
  max-width: 380px;
  margin-left: auto;
}
.deal-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.deal-address {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 24px;
}
.deal-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.metric { display: flex; flex-direction: column; gap: 4px; }
.metric-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); }
.metric-val { font-size: 16px; font-weight: 600; color: var(--white); }
.metric-val.highlight { color: var(--gold); }
.deal-spread { font-size: 13px; color: var(--off-white); }
.deal-spread strong { color: var(--gold-light); font-weight: 600; }

/* STATS */
.stats {
  background: var(--navy-light);
  padding: 60px 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 48px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 10px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.12);
}

/* SERVICES */
.services {
  padding: 100px 64px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  margin-bottom: 60px;
  font-weight: 400;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 40px;
}
.service-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 400;
}
.service-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-weight: 300;
}

/* BUYERS */
.buyers {
  background: var(--navy-light);
  padding: 100px 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.buyers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.buyers-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}
.criteria-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.criteria-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.criteria-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  padding-left: 20px;
  position: relative;
  font-weight: 400;
}
.criteria-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* PROCESS */
.process {
  padding: 100px 64px;
  background: var(--navy);
}
.process-flow {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 16px;
}
.process-step {
  flex: 0 0 160px;
  text-align: center;
}
.step-num {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold);
  margin: 0 auto 16px;
}
.step-text {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  font-weight: 400;
}
.process-arrow {
  flex: 0 0 32px;
  height: 1px;
  background: rgba(201,168,76,0.3);
  position: relative;
  margin: -8px 0 0;
}
.process-arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: rgba(201,168,76,0.3);
}

/* CLOSING */
.closing {
  padding: 100px 64px 80px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-statement {
  font-family: var(--font-display);
  font-size: 24px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 32px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .navbar { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; min-height: auto; }
  .deal-card { max-width: 100%; margin: 0; }
  .stats { padding: 48px 24px; }
  .stat-row { flex-direction: column; gap: 40px; }
  .stat-divider { width: 64px; height: 1px; }
  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .buyers { padding: 60px 24px; }
  .buyers-content { grid-template-columns: 1fr; gap: 40px; }
  .process { padding: 60px 24px; }
  .closing { padding: 60px 24px 40px; }
  .closing-statement { font-size: 20px; }
  footer { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .deal-metrics { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat { padding: 0 16px; }
  .stat-number { font-size: 36px; }
}