:root {
  --ink: #172033;
  --muted: #5f6b7d;
  --paper: #f7f3eb;
  --paper-2: #fffaf1;
  --navy: #0f2742;
  --blue: #244d73;
  --gold: #b88435;
  --gold-2: #d9b36f;
  --line: rgba(23, 32, 51, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(15, 39, 66, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 243, 235, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; letter-spacing: -0.02em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 0.06em;
}
.brand-text { font-size: 17px; }
.nav { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 700; color: var(--navy); }
.nav a { text-decoration: none; opacity: 0.86; }
.nav a:hover { opacity: 1; color: var(--gold); }
.nav-cta { border: 1px solid var(--navy); padding: 9px 14px; border-radius: 999px; }

.section { padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px); }
.compact { padding-top: 68px; }
.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  background:
    radial-gradient(circle at 84% 20%, rgba(184, 132, 53, 0.18), transparent 30%),
    linear-gradient(135deg, var(--paper-2), var(--paper));
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}
h1, h2, h3 { margin: 0; line-height: 1.08; color: var(--navy); }
h1, h2 { font-family: "Libre Baskerville", Georgia, serif; letter-spacing: -0.04em; }
h1 { font-size: clamp(44px, 7vw, 86px); max-width: 930px; }
h2 { font-size: clamp(32px, 4vw, 56px); }
h3 { font-size: 20px; letter-spacing: -0.02em; }
p { margin: 16px 0 0; color: var(--muted); }
.lead { font-size: clamp(18px, 2vw, 22px); max-width: 760px; color: #435066; }
.hero-actions, .contact-actions, .inline-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--gold); color: var(--white); box-shadow: 0 14px 30px rgba(184, 132, 53, 0.25); }
.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.48); color: var(--navy); }
.secondary.light { color: var(--white); border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }

.hero-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--navy);
  color: white;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.hero-card div { padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(255,255,255,.04); }
.hero-card p { color: rgba(255,255,255,.76); margin-top: 8px; }
.metric { display: block; color: var(--gold-2); font-weight: 800; font-size: clamp(28px, 4vw, 48px); line-height: 1; }

.section-heading { max-width: 760px; }
.center { text-align: center; margin: 0 auto 44px; }
.value-grid, .criteria-grid, .process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}
.value-grid article, .criteria-grid article, .process-grid article, .criteria-card {
  padding: 28px;
  background: rgba(255,255,255,.58);
  border: 1px solid var(--line);
  border-radius: 26px;
}
.split {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}
.reverse { grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); align-items: center; }
.sticky-heading { position: sticky; top: 104px; }
.criteria-panel { display: grid; gap: 18px; }
.criteria-card.highlight { background: var(--white); box-shadow: var(--shadow); }
ul { margin: 18px 0 0; padding-left: 20px; color: var(--muted); }
li + li { margin-top: 10px; }
.criteria-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 0; }
.transition { background: #efe7da; }
.process-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.process-grid article span { color: var(--gold); font-weight: 800; letter-spacing: .12em; font-size: 12px; }
.process-grid h3 { margin-top: 14px; }

.investor-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  background: var(--navy);
  color: var(--white);
}
.investor-band h2 { color: var(--white); }
.investor-band p, .investor-band li { color: rgba(255,255,255,.74); }
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-2); font-weight: 900; }

.about { background: var(--paper-2); }
.portrait-card {
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  box-shadow: var(--shadow);
  text-align: center;
}
.portrait-photo {
  width: min(100%, 360px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}
.caption { color: white; font-weight: 800; }
.caption span { color: rgba(255,255,255,.68); font-weight: 500; }
.inline-actions a { color: var(--navy); font-weight: 800; text-decoration-color: var(--gold); text-underline-offset: 5px; }

.contact { background: linear-gradient(135deg, var(--paper), #eadcc8); }
.contact-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px);
  background: var(--white);
  border-radius: 36px;
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-card p { margin-left: auto; margin-right: auto; max-width: 640px; }
.contact-actions { justify-content: center; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: 14px;
}
.footer p { margin: 0; }
.footer a { color: var(--navy); font-weight: 700; }

@media (max-width: 980px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .hero, .split, .reverse, .investor-band { grid-template-columns: 1fr; }
  .sticky-heading { position: static; }
  .value-grid, .criteria-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .brand-text { font-size: 15px; }
  .nav { gap: 14px; font-size: 13px; }
  .hero { min-height: auto; }
  .value-grid, .criteria-grid, .process-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
  h1 { font-size: 42px; }
}
