:root {
  --navy: #0a1b26;
  --navy-deep: #061117;
  --steel: #659dbf;
  --steel-light: #93bcd6;
  --mist: #d5e2f2;
  --gold: #db802a;
  --off-white: #f6f8fb;
  --white: #ffffff;
  --ink: #1c2b35;
  --ink-soft: #4d5c68;
  --border: #e3e9f0;
  --serif: 'Cinzel', Georgia, serif;
  --sans: 'Roboto Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8, 17, 25, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo { height: 34px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--mist);
  transition: color 0.2s ease;
}

.main-nav a:hover { color: var(--white); }

.nav-cta {
  padding: 9px 18px;
  border: 1px solid var(--steel);
  border-radius: 4px;
  color: var(--white) !important;
}

.nav-cta:hover { background: var(--steel); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--mist);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at top right, #14293650 0%, transparent 55%), linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  overflow: hidden;
  padding-top: 76px;
}

.hero-skyline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background-image: repeating-linear-gradient(90deg, rgba(111,157,195,0.08) 0 40px, transparent 40px 80px);
  mask-image: linear-gradient(to top, black, transparent);
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-mark {
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  opacity: 0.95;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 16px;
}

.eyebrow-dark { color: var(--steel); }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--mist);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--steel);
  color: var(--navy-deep) !important;
}

.btn-primary:hover { background: var(--steel-light); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white) !important;
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn-large { padding: 18px 36px; font-size: 1.05rem; }

/* Sections */
.section {
  padding: 100px 0;
}

.section-alt { background: var(--off-white); }

.section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--navy);
}

.section-lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 56px;
}

/* Approach cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.value-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.value-card h3, .focus-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.value-card p, .focus-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.focus-card {
  padding: 32px 28px;
  border-radius: 8px;
  background: var(--white);
  border-top: 3px solid var(--steel);
}

/* Stat bar */
.stat-bar {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  padding: 28px 12px;
  text-align: center;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat:first-child { border-left: none; }

.stat-value {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

/* Projects */
.project-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-card {
  display: flex;
  gap: 28px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  align-items: flex-start;
}

.project-photo-group {
  flex-shrink: 0;
  display: flex;
  gap: 6px;
}

.project-photo {
  width: 170px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.project-photo-single { width: 280px; }

.project-loc {
  color: var(--steel);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.project-body h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); margin-bottom: 4px; }
.project-body p:last-child { color: var(--ink-soft); }

.pipeline-note {
  margin-top: 32px;
  color: var(--ink-soft);
  font-style: italic;
  font-size: 0.95rem;
}

/* Institutional transactions */
.transactions {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}

.transactions-heading {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.transactions-sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.transaction-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.transaction-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.transaction-main h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.transaction-detail {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.transaction-detail em {
  color: var(--ink);
}

/* Bio */
.bio-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 72px;
}

.bio-photo {
  width: 160px;
  height: 160px;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: var(--steel-light);
  font-family: var(--serif);
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-title { color: var(--steel); font-weight: 600; margin-bottom: 16px; }
.bio-body h3 { font-family: var(--serif); font-size: 1.6rem; color: var(--navy); }
.bio-body p { color: var(--ink-soft); margin-bottom: 14px; }

.bio-credentials {
  font-size: 0.88rem;
  color: var(--steel);
  font-weight: 600;
}

.linkedin-link {
  display: inline-block;
  font-weight: 600;
  color: var(--navy) !important;
  border-bottom: 2px solid var(--steel);
  padding-bottom: 2px;
  margin-top: 8px;
}

/* Contact */
.contact-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  text-align: center;
}

.contact-section h2 { color: var(--white); }

.contact-lede { color: var(--mist); margin-left: auto; margin-right: auto; }

.contact-inner { display: flex; flex-direction: column; align-items: center; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-mark { width: 32px; height: 32px; opacity: 0.85; }

.footer-inner p {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.25s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .main-nav.open { transform: translateY(0); }

  .nav-toggle { display: flex; }

  .grid-3 { grid-template-columns: 1fr; }

  .stat-bar { grid-template-columns: repeat(2, 1fr); }

  .stat:nth-child(3) { border-left: none; }

  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--border); }

  .project-card { flex-direction: column; }

  .project-photo-group { width: 100%; }

  .project-photo, .project-photo-single { width: 100%; height: 220px; }

  .bio-grid { grid-template-columns: 1fr; }

  .bio-photo { width: 100px; height: 100px; font-size: 1.6rem; }

  .transaction-row { grid-template-columns: 1fr; gap: 8px; }

  .section { padding: 72px 0; }
}
