:root {
  --navy: #0d1b2e;
  --navy-2: #14213a;
  --gold: #c7ad7a;
  --gold-soft: #d8c49a;
  --ivory: #f8f5ee;
  --sand: #e8dfd3;
  --charcoal: #202124;
  --muted: #6f6b63;
  --white: #ffffff;
  --border: rgba(199, 173, 122, 0.28);
  --shadow: 0 20px 60px rgba(13, 27, 46, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 105px 0; position: relative; }
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 700;
}
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.05; }
h1 { font-size: clamp(48px, 7vw, 104px); margin: 0; }
h2 { font-size: clamp(38px, 4vw, 62px); margin: 0 0 24px; color: var(--navy); }
h3 { font-size: 30px; margin: 0 0 10px; color: var(--navy); }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 34px;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(13,27,46,.76), rgba(13,27,46,.15));
  backdrop-filter: blur(10px);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-soft);
  font-size: 28px;
  letter-spacing: .05em;
}
.brand-text { text-transform: uppercase; font-size: 12px; letter-spacing: .16em; font-weight: 700; }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.site-nav a { opacity: .9; transition: .25s; }
.site-nav a:hover { color: var(--gold-soft); opacity: 1; }
.nav-cta { border: 1px solid var(--gold); padding: 9px 15px; border-radius: 999px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--white); font-size: 28px; }

.hero { min-height: 100vh; display: grid; place-items: center; color: var(--white); overflow: hidden; position: relative; }
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.hero-overlay { background: linear-gradient(90deg, rgba(13,27,46,.82), rgba(13,27,46,.45) 50%, rgba(13,27,46,.72)), linear-gradient(to top, rgba(13,27,46,.75), transparent 42%); }
.hero-content { position: relative; width: min(1100px, calc(100% - 40px)); padding-top: 70px; }
.eyebrow { color: var(--gold-soft); text-transform: uppercase; letter-spacing: .25em; font-size: 13px; font-weight: 700; }
.hero-tagline { max-width: 780px; font-size: clamp(20px, 2.1vw, 32px); margin: 22px 0 32px; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 13px 22px;
  border-radius: 999px; font-size: 13px; text-transform: uppercase; letter-spacing: .09em; font-weight: 700;
  transition: .25s ease;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-secondary { border: 1px solid var(--gold); color: var(--gold-soft); background: rgba(13,27,46,.25); }
.btn-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.35); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.scroll-cue { position: absolute; bottom: 28px; right: 40px; color: rgba(255,255,255,.65); text-transform: uppercase; font-size: 11px; letter-spacing: .2em; }

.two-col { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.lead-text { color: var(--muted); font-size: 18px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.stat-card { background: var(--white); border: 1px solid var(--border); padding: 28px; min-height: 150px; box-shadow: var(--shadow); }
.stat-card span { display: block; font-family: 'Cormorant Garamond', serif; color: var(--navy); font-size: 46px; line-height: 1; margin-bottom: 12px; }
.stat-card p { margin: 0; color: var(--muted); }

.section-heading { max-width: 780px; margin-bottom: 48px; }
.centered { text-align: center; }
.centered p { margin-left: auto; margin-right: auto; color: var(--muted); }
.companies { background: var(--white); }
.company-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.company-card { background: var(--ivory); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); transition: .3s ease; }
.company-card:hover { transform: translateY(-8px); }
.company-card.featured { background: #fbf7ef; }
.company-logo-wrap { height: 150px; padding: 24px; display: grid; place-items: center; background: var(--white); }
.company-logo-wrap img { max-height: 112px; object-fit: contain; }
.company-image img { width: 100%; height: 250px; object-fit: cover; }
.company-body { padding: 28px; }
.company-subtitle { color: var(--gold); font-weight: 700; margin-top: 0; }
.company-body p:last-child { color: var(--muted); }

.investment { min-height: 760px; display: flex; align-items: center; overflow: hidden; color: var(--white); }
.investment-bg { position: absolute; inset: 0; }
.investment-bg:after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,27,46,.94), rgba(13,27,46,.74), rgba(13,27,46,.30)); }
.investment-bg img { width: 100%; height: 100%; object-fit: cover; }
.investment-panel { position: relative; margin-left: max(20px, calc((100% - 1180px)/2)); max-width: 650px; }
.investment h2 { color: var(--white); }
.investment p { color: rgba(255,255,255,.82); font-size: 18px; }
.investment-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.investment-list span { border: 1px solid rgba(199,173,122,.45); color: var(--gold-soft); padding: 9px 13px; border-radius: 999px; font-size: 13px; }

.leadership { background: var(--sand); }
.leadership-grid { align-items: stretch; }
.portrait-card { background: var(--navy); border: 1px solid var(--border); padding: 14px; box-shadow: var(--shadow); }
.portrait-card img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; filter: grayscale(100%); }
.role { color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }

.team { background: var(--navy); color: var(--white); }
.team h2, .team h3 { color: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-card { border: 1px solid rgba(199,173,122,.28); padding: 28px; background: rgba(255,255,255,.04); min-height: 150px; }
.team-card p { color: var(--gold-soft); margin: 0; }

.career-box, .news-grid article, .contact-form { background: var(--white); border: 1px solid var(--border); padding: 32px; box-shadow: var(--shadow); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.news-grid span { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; }
.news-grid p { color: var(--muted); }

.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.contact-details { display: grid; gap: 10px; margin-top: 30px; color: var(--navy); font-weight: 700; }
.contact-form { display: grid; gap: 14px; }
input, select, textarea { width: 100%; padding: 15px 16px; border: 1px solid rgba(13,27,46,.16); font-family: inherit; font-size: 15px; background: var(--ivory); color: var(--charcoal); }
textarea { resize: vertical; }
button { cursor: pointer; border: 0; }

.site-footer { background: #071120; color: var(--white); padding: 50px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; border-top: 1px solid rgba(199,173,122,.25); padding-top: 30px; }
.site-footer h3 { color: var(--gold-soft); }
.site-footer p, .site-footer a { color: rgba(255,255,255,.72); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav { position: fixed; top: 72px; left: 18px; right: 18px; display: none; flex-direction: column; align-items: stretch; padding: 22px; background: rgba(13,27,46,.96); border: 1px solid var(--border); }
  .site-nav.open { display: flex; }
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .stats-grid, .company-grid, .team-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .company-grid { gap: 18px; }
}
@media (max-width: 640px) {
  .site-header { padding: 14px 18px; }
  .brand-text { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .section { padding: 74px 0; }
  .stats-grid, .company-grid, .team-grid, .news-grid, .footer-grid { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
  .company-image img { height: 220px; }
  .portrait-card img { min-height: 360px; }
}
