/* Veritas Partners - ultra-minimal */

:root {
  --ink: #14171c;        /* near-black headings */
  --body: #41474f;       /* body text */
  --muted: #8a929c;      /* captions, eyebrows */
  --line: #e8eaed;        /* hairline rules */
  --line-strong: #d7dadf;
  --navy: #002d62;        /* restrained accent */
  --navy-hover: #003b80;
  --bg: #ffffff;
  --max: 1080px;
  --text-max: 660px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin: 0;
}

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy-hover); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
}

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
/* Drop your logo here later (recommended height ~34px). */
.brand-logo { height: 34px; width: auto; display: none; }   /* show when you add a logo */
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand-sub {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--navy); }
.nav-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Sections ---------- */
section { padding: 116px 0; }
.section-sm { padding: 84px 0; }

.hero { padding: 150px 0 130px; }
.hero h1 {
  font-size: clamp(40px, 6.2vw, 76px);
  font-weight: 300;
  max-width: 15ch;
  margin-bottom: 32px;
}
.hero h1 .accent { color: var(--navy); }
.hero .lede {
  font-size: 20px;
  line-height: 1.7;
  color: var(--body);
  max-width: 56ch;
  font-weight: 300;
}

.lede { font-size: 19px; font-weight: 300; }

.measure { max-width: var(--text-max); }

/* arrow link */
.arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 36px;
}
.arrow span { transition: transform .25s ease; }
.arrow:hover span { transform: translateX(5px); }

/* two-column text */
.cols {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 64px;
  align-items: start;
}
.cols h2 { font-size: clamp(26px, 3.4vw, 38px); max-width: 16ch; }

/* quiet positioning row */
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid var(--line-strong);
  padding-top: 56px;
}
.fact .k {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.fact .v {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 300;
  font-size: 30px;
  color: var(--ink);
  line-height: 1.2;
}

/* numbered principles */
.principles { display: grid; gap: 0; }
.principle {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}
.principle:last-child { border-bottom: 1px solid var(--line); }
.principle .n {
  font-family: "Newsreader", serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--navy);
}
.principle h3 { font-size: 24px; margin-bottom: 10px; }
.principle p { font-size: 16px; max-width: 60ch; }

/* commitment - quiet, hairline accent */
.note {
  border-left: 2px solid var(--navy);
  padding-left: 26px;
  max-width: 56ch;
}
.note .lede { color: var(--ink); }

.invite {
  margin-top: 30px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 64px 0 56px; }
.footer-row { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-end; }
.footer .brand-name { font-size: 18px; }
.footer .tag { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.legal { margin-top: 48px; color: var(--muted); font-size: 12.5px; line-height: 1.6; }
.legal p { margin-bottom: 0.6em; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  body { font-size: 16px; }
  section { padding: 72px 0; }
  .hero { padding: 96px 0 80px; }
  .cols { grid-template-columns: 1fr; gap: 24px; }
  .facts { grid-template-columns: 1fr; gap: 36px; }
  .nav { height: 66px; padding: 0 22px; }
  .wrap, .nav { padding-left: 22px; padding-right: 22px; }
  .nav-links { gap: 22px; }
  .nav-tag { display: none; }
}
