:root {
  --navy: #10202F;
  --navy-deep: #0b1620;
  --navy-mid: #1B2E42;
  --gold: #B48A57;
  --gold-light: #cfa46b;
  --cream: #FCFAF6;
  --sand: #F4F1EA;
  --slate: #5C6B7A;
  --bronze: #8A7150;
  --body-navy: #3a4a5a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  color: var(--navy);
  background: var(--cream);
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

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

.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

.eyebrow-hero {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 6px;
  margin-bottom: 22px;
  display: block;
}

/* Placeholder photo treatment (swap with real <img> tags when photos are available) */
.placeholder-photo {
  position: relative;
  background:
    linear-gradient(135deg, rgba(180,138,87,0.18), rgba(16,32,47,0.05)),
    repeating-linear-gradient(115deg, rgba(180,138,87,0.08) 0 2px, transparent 2px 26px),
    var(--sand);
}
.placeholder-photo::after {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(16,32,47,0.35);
  border: 1px dashed rgba(16,32,47,0.15);
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16,32,47,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 16px; }
.logo-bars { display: flex; align-items: flex-end; gap: 4px; height: 32px; }
.logo-bars-sm { height: 26px; gap: 3px; }
.bar { width: 6px; transform: skewX(-18deg); }
.logo-bars-sm .bar { width: 5px; }
.bar-1 { height: 16px; background: var(--slate); }
.bar-2 { height: 24px; background: var(--bronze); }
.bar-3 { height: 32px; background: var(--gold); }
.logo-bars-sm .bar-1 { height: 13px; }
.logo-bars-sm .bar-2 { height: 19px; }
.logo-bars-sm .bar-3 { height: 26px; }
.logo-text { display: flex; align-items: baseline; gap: 9px; }
.logo-name { font-family: 'Spectral', serif; font-weight: 500; font-size: 22px; color: var(--cream); }
.logo-sub { font-weight: 600; font-size: 10px; letter-spacing: 4px; color: var(--gold); }
.footer-name { font-size: 18px; }
.footer-sub { font-size: 9px; letter-spacing: 3px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 14px;
  letter-spacing: 1px;
}
.nav-links a { color: rgba(255,255,255,0.75); }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(16,32,47,0.96) 0%, rgba(16,32,47,0.82) 42%, rgba(16,32,47,0.35) 100%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: repeating-linear-gradient(72deg, var(--gold) 0 2px, transparent 2px 60px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 40px 120px;
}
.hero-title {
  font-family: 'Spectral', serif;
  font-weight: 500;
  font-size: 74px;
  line-height: 1.02;
  color: var(--cream);
  margin: 0;
  max-width: 800px;
  text-wrap: pretty;
}
.hero-sub {
  font-family: 'Spectral', serif;
  font-size: 22px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin: 28px 0 0;
  max-width: 600px;
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; }

.btn {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 16px 34px;
  border-radius: 4px;
  display: inline-block;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); color: var(--navy); }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: var(--cream); font-weight: 500; }
.btn-outline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* STATS */
.stats { background: var(--navy-mid); }
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat { text-align: center; }
.stat-border { border-left: 1px solid rgba(255,255,255,0.1); }
.stat-num {
  font-family: 'Spectral', serif;
  font-weight: 500;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 10px;
}

/* ABOUT */
.about { background: var(--cream); }
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about-img {
  position: relative;
  height: 440px;
  border-radius: 8px;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.section-tag { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.section-tag-sm { margin-bottom: 20px; }
.section-tag-lg { margin-bottom: 34px; }
.tag-rule { width: 60px; height: 1px; background: rgba(16,32,47,0.15); }

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}
.mv-card {
  background: var(--sand);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  padding: 40px 38px;
}
.mv-text {
  font-family: 'Spectral', serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--body-navy);
  margin: 16px 0 0;
  text-wrap: pretty;
}

.how-we-invest { margin-top: 64px; max-width: 820px; }
.invest-text {
  font-family: 'Spectral', serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--body-navy);
  margin: 0;
  text-wrap: pretty;
}

.what-we-believe { margin-top: 64px; }
.believe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.believe-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid rgba(16,32,47,0.09);
  border-radius: 6px;
  padding: 28px 30px;
}
.believe-num {
  font-family: 'Spectral', serif;
  font-weight: 500;
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
}
.believe-title { font-family: 'Spectral', serif; font-weight: 500; font-size: 21px; color: var(--navy); }
.believe-text {
  font-family: 'Spectral', serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--body-navy);
  margin: 8px 0 0;
}
.section-title {
  font-family: 'Spectral', serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 1.12;
  margin: 0;
  color: var(--navy);
  text-wrap: pretty;
}
.body-text {
  font-family: 'Spectral', serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--body-navy);
  margin: 26px 0 0;
  text-wrap: pretty;
}

/* CRITERIA */
.criteria { background: var(--sand); }
.criteria-inner { max-width: 1200px; margin: 0 auto; padding: 100px 40px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-title-center {
  font-family: 'Spectral', serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.1;
  margin: 14px 0 0;
  color: var(--navy);
}
.section-sub {
  font-family: 'Spectral', serif;
  font-size: 18px;
  color: var(--slate);
  margin: 16px 0 0;
  line-height: 1.55;
}
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.criteria-card {
  background: var(--cream);
  border: 1px solid rgba(16,32,47,0.09);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  padding: 34px 30px;
}
.card-label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
.card-value {
  font-family: 'Spectral', serif;
  font-size: 22px;
  color: var(--navy);
  margin-top: 12px;
  line-height: 1.35;
}
.criteria-card-wide {
  grid-column: span 3;
  background: var(--navy);
  border: none;
  position: relative;
  overflow: hidden;
}
.card-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: repeating-linear-gradient(72deg, var(--gold) 0 2px, transparent 2px 46px);
}
.card-label-dark, .card-value-dark { position: relative; }
.card-value-dark {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

/* APPROACH */
.approach { background: var(--cream); }
.approach-inner { max-width: 1200px; margin: 0 auto; padding: 100px 40px; }
.approach-head { max-width: 640px; margin-bottom: 56px; }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.step-num { font-family: 'Spectral', serif; font-weight: 500; font-size: 34px; color: var(--gold); }
.step-rule { width: 40px; height: 2px; background: var(--gold); margin: 16px 0 18px; }
.step-title { font-family: 'Spectral', serif; font-weight: 500; font-size: 24px; color: var(--navy); }
.step-text {
  font-family: 'Spectral', serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--body-navy);
  margin: 12px 0 0;
}

/* CONTACT */
.contact { background: var(--navy); position: relative; overflow: hidden; }
.contact-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: repeating-linear-gradient(72deg, var(--gold) 0 2px, transparent 2px 60px);
}
.contact-bars {
  position: absolute;
  right: -80px;
  bottom: -120px;
  display: flex;
  align-items: flex-end;
  gap: 30px;
  height: 520px;
  opacity: 0.06;
}
.contact-bars span { width: 70px; background: var(--gold); transform: skewX(-18deg); }
.contact-bars span:nth-child(1) { height: 250px; }
.contact-bars span:nth-child(2) { height: 380px; }
.contact-bars span:nth-child(3) { height: 520px; }
.contact-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}
.contact-title {
  font-family: 'Spectral', serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.08;
  color: var(--cream);
  margin: 16px 0 0;
  text-wrap: pretty;
}
.contact-sub {
  font-family: 'Spectral', serif;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 24px 0 0;
  max-width: 520px;
}
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 40px;
}
.contact-name { font-family: 'Spectral', serif; font-weight: 500; font-size: 26px; color: var(--cream); }
.contact-role { font-size: 12px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-top: 4px; }
.contact-rule { height: 1px; background: rgba(255,255,255,0.12); margin: 26px 0; }
.contact-details { display: flex; flex-direction: column; gap: 18px; font-size: 16px; }
.contact-details a { color: var(--cream); display: flex; align-items: center; gap: 14px; }
.contact-details a:hover { color: var(--gold); }
.detail-label { color: var(--gold); font-size: 12px; letter-spacing: 2px; width: 70px; }

/* FOOTER */
.footer { background: var(--navy-deep); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { gap: 14px; }
.footer-copy { font-size: 12px; letter-spacing: 1px; color: rgba(255,255,255,0.4); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 40px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { max-height: 320px; padding: 20px 40px 28px; }
  .nav-links a { padding: 10px 0; width: 100%; }
  .nav-cta { margin-top: 8px; text-align: center; }

  .hero-title { font-size: 52px; }
  .hero-sub { font-size: 19px; }
  .hero-inner { padding: 90px 24px 80px; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .stat-border:nth-child(3) { border-left: none; }

  .about-container { padding: 70px 24px; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-img { height: 320px; }
  .mission-vision { grid-template-columns: 1fr; margin-top: 48px; }
  .how-we-invest { margin-top: 48px; }
  .what-we-believe { margin-top: 48px; }
  .believe-grid { grid-template-columns: 1fr; }

  .criteria-inner, .approach-inner, .contact-inner { padding: 70px 24px; }
  .criteria-grid, .approach-grid { grid-template-columns: 1fr; }
  .criteria-card-wide { grid-column: span 1; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-title { font-size: 36px; }

  .footer-inner { padding: 30px 24px; justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 38px; }
  .section-title, .section-title-center { font-size: 32px; }
  .btn { padding: 14px 24px; font-size: 14px; }
}
