:root {
  --navy: #0a2540;
  --navy-light: #1e4976;
  --slate: #3d4e60;
  --cream: #f5f2ec;
  --paper: #fafaf7;
  --ink: #1a1a1a;
  --muted: #6b7280;
  --rule: #d8d4cc;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 300;
  font-size: 17px;
}
.serif { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; }

/* Nav */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 20px 48px;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
nav .brand .mark {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
}
nav .brand .wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.3px;
}
nav .links a {
  color: var(--slate);
  text-decoration: none;
  margin-left: 32px;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}
nav .links a:hover, nav .links a.active { color: var(--navy); }

/* Hero */
.hero {
  min-height: 92vh;
  padding: 140px 48px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--rule);
}
.hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; }
.hero .eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -1px;
}
.hero h1 em { font-style: italic; color: var(--navy-light); }
.hero .lead {
  font-size: 21px;
  color: var(--slate);
  max-width: 680px;
  font-weight: 300;
  line-height: 1.55;
}

/* Page header (for subpages) */
.page-header {
  padding: 160px 48px 80px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--rule);
}
.page-header .container { max-width: 1100px; margin: 0 auto; }
.page-header .eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 20px;
  font-weight: 500;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

/* Sections */
section {
  padding: 100px 48px;
  border-bottom: 1px solid var(--rule);
}
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy-light);
  font-weight: 500;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 40px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
p { margin-bottom: 20px; color: var(--slate); }
.prose p { max-width: 720px; font-size: 18px; }

/* Approach grid */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}
.approach-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}
.approach-item p { font-size: 16px; }
.approach-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--navy-light);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* Principals */
.principals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}
.person {
  padding-top: 32px;
  border-top: 2px solid var(--navy);
}
.person .role {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 12px;
  font-weight: 500;
}
.person h3 { margin-bottom: 20px; }
.person p { font-size: 16px; }

/* Advisor — elevated treatment */
.advisor-section { background: var(--navy); color: var(--cream); }
.advisor-section h2 { color: var(--cream); }
.advisor-section .section-label { color: #9ec5fe; }
.advisor-section p { color: #c9d1d9; }
.advisor-card {
  margin-top: 40px;
  padding: 48px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid #9ec5fe;
}
.advisor-card .role {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9ec5fe;
  margin-bottom: 12px;
  font-weight: 500;
}
.advisor-card h3 { color: var(--cream); font-size: 36px; margin-bottom: 8px; }
.advisor-card .title {
  font-style: italic;
  color: #9ec5fe;
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
}
.advisor-card p { color: #c9d1d9; font-size: 16px; max-width: 820px; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
}
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat .label {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Contact */
.contact { padding: 120px 48px; background: var(--cream); }
.contact .container { max-width: 680px; }
.contact h2 { margin-bottom: 24px; text-align: center; }
.contact .intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  font-size: 18px;
}
form { display: grid; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 10px;
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ink);
  font-weight: 300;
  transition: border-color 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--navy);
}
.field textarea { resize: vertical; min-height: 80px; font-family: 'Inter', sans-serif; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230a2540' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  cursor: pointer;
}
button[type="submit"] {
  justify-self: start;
  margin-top: 16px;
  background: var(--navy);
  color: var(--cream);
  border: none;
  padding: 16px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
button[type="submit"]:hover { background: var(--navy-light); }
.form-success {
  display: none;
  padding: 32px;
  background: rgba(10, 37, 64, 0.04);
  border-left: 3px solid var(--navy);
  text-align: center;
  font-size: 17px;
  color: var(--navy);
}
.form-success.show { display: block; }
form.hidden { display: none; }

/* CTA strip on home page */
.cta-strip {
  background: var(--cream);
  padding: 80px 48px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.cta-strip h2 { margin-bottom: 16px; }
.cta-strip p { max-width: 560px; margin: 0 auto 32px; font-size: 18px; }
.btn {
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  text-decoration: none;
  padding: 16px 40px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s;
}
.btn:hover { background: var(--navy-light); }

/* Footer */
footer {
  padding: 40px 48px;
  text-align: center;
  background: var(--navy);
  color: #9ec5fe;
  font-size: 13px;
  letter-spacing: 1px;
}
footer .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 8px;
}

/* Hero logo */
.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 16px;
}
.hero-logo .mark {
  width: 72px;
  height: 72px;
  display: block;
}

@media (max-width: 800px) {
  body { font-size: 15px; }
  nav { padding: 12px 18px; flex-wrap: nowrap; }
  nav .brand .wordmark { display: none; }
  nav .brand .mark { width: 28px; height: 28px; }
  nav .links { display: flex; flex-shrink: 0; }
  nav .links a { margin-left: 12px; font-size: 10px; letter-spacing: 1px; }
  .hero { padding: 90px 20px 50px; min-height: auto; }
  .hero h1 { font-size: 32px; letter-spacing: -0.5px; margin-bottom: 20px; }
  .hero .lead { font-size: 15px; }
  .hero .eyebrow { font-size: 10px; letter-spacing: 2px; margin-bottom: 16px; }
  .hero-logo { margin-bottom: 24px; }
  .hero-logo .mark { width: 44px; height: 44px; }
  .page-header { padding: 100px 20px 50px; }
  .page-header h1 { font-size: 32px; }
  .page-header .eyebrow { font-size: 10px; letter-spacing: 2px; margin-bottom: 14px; }
  section { padding: 60px 20px; }
  .contact { padding: 60px 20px; }
  h2 { font-size: 26px; margin-bottom: 24px; }
  h3 { font-size: 22px; }
  .prose p { font-size: 15px; }
  .approach-grid, .principals, .stats { grid-template-columns: 1fr; gap: 32px; }
  .approach-item h4 { font-size: 20px; }
  .approach-item p { font-size: 14px; }
  .person h3 { font-size: 22px; }
  .person p { font-size: 14px; }
  .stat .num { font-size: 40px; }
  .stat .label { font-size: 11px; }
  .stats { margin-top: 40px; padding-top: 32px; }
  .advisor-card { padding: 24px; }
  .advisor-card h3 { font-size: 26px; }
  .advisor-card p { font-size: 14px; }
  .advisor-card .title { font-size: 16px; }
  .cta-strip { padding: 50px 20px; }
  .cta-strip p { font-size: 15px; }
  .btn { padding: 14px 28px; font-size: 11px; }
  form { gap: 18px; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .contact .intro { font-size: 15px; margin-bottom: 32px; }
  footer { padding: 28px 20px; font-size: 11px; }
  footer .brand { font-size: 15px; }
  .section-label { font-size: 10px; letter-spacing: 2px; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}
