@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap");

/* ============================================================
   PROVENANCE FAMILY ADVISORY — brand stylesheet
   Palette: deep navy / cream / muted gold, drawn from the
   firm's existing working paper, bios, and Insights dispatch.
   ============================================================ */

:root {
  --navy-deep: #16233d;
  --navy: #1b2a4a;
  --navy-soft: #24365a;
  --cream: #f7f4ec;
  --paper: #fdfcf8;
  --ink: #2a2a2a;
  --ink-soft: #5a6478;
  --gold: #b08d42;
  --gold-light: #c6a55c;
  --gold-dim: #b4923f66;
  --rule: #d9cdaa;
  --serif: "EB Garamond", Georgia, serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--serif);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: var(--display); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: var(--navy-deep); color: white; padding: 10px 16px; }
.skip-link:focus { top: 12px; }

a { color: inherit; }

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

/* ---------- eyebrows / tracked labels ---------- */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}
.eyebrow.dark { color: var(--gold); }

/* ---------- diamond divider (brand signature mark) ---------- */
.diamond-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
}
.diamond-rule::before,
.diamond-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.diamond-rule span {
  color: var(--gold);
  font-size: 0.8rem;
}
.diamond-rule.center { justify-content: center; }
.diamond-rule.left { justify-content: flex-start; }
.diamond-rule.left::after { display: none; }
.diamond-rule.left::before { flex: 0 0 40px; }

/* ---------- nav ---------- */
header.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(253,252,248,.94);
  backdrop-filter: saturate(140%) blur(6px);
  color: var(--navy);
  border-bottom: 1px solid var(--gold-dim);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 68px;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.logo-mark-img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}
.brand-text {
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.15;
}
.brand-text small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  margin-top: 2px;
}
nav.links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
nav.links a {
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  opacity: 0.85;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: opacity .15s, border-color .15s;
}
nav.links a:hover,
nav.links a.active {
  opacity: 1;
  border-color: var(--gold);
}
.site-nav ul.links { display: flex; align-items: center; gap: 24px; margin: 0; padding: 0; list-style: none; }
.site-nav ul.links a { color: var(--navy); text-decoration: none; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; border-bottom: 1px solid transparent; }
.site-nav ul.links a:hover, .site-nav ul.links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.site-nav ul.links .btn { padding: 9px 15px; color: white; }

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--navy-deep), var(--navy));
  color: var(--cream);
  padding: 74px 0 66px;
  text-align: center;
}
.hero .wrap { max-width: 760px; }
.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  line-height: 1.18;
  margin: 18px 0 20px;
  font-weight: 400;
}
.hero p.lede {
  font-size: 1.12rem;
  color: #e9e0cb;
  margin: 0 auto 30px;
  max-width: 620px;
}
.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: transform .15s, background .15s, color .15s;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  border: 1px solid var(--gold-dim);
  color: var(--cream);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* ---------- page header (non-home) ---------- */
.page-head {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 54px 0 44px;
  text-align: center;
}
.page-head h1 {
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin: 14px 0 12px;
}
.page-head p {
  color: #e9e0cb;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.02rem;
}

/* ---------- sections ---------- */
section { padding: 62px 0; }
section.alt { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
h2.section-title {
  font-size: 1.7rem;
  font-weight: 400;
  margin: 6px 0 8px;
  color: var(--navy-deep);
}
p.section-lede {
  color: var(--ink-soft);
  /* max-width: 640px; */
  font-size: 1.04rem;
}

/* ---------- drop cap ---------- */
p.drop-cap:first-letter {
  font-size: 3.4rem;
  float: left;
  line-height: 0.82;
  padding: 6px 8px 0 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- pull quote ---------- */
blockquote.pull {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.18rem;
  color: var(--navy-deep);
}
blockquote.pull cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- pillar grid ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--rule);
}
.pillar-card {
  padding: 30px 24px 8px;
  border-left: 1px solid var(--rule);
}
.pillar-card:first-child { border-left: none; }
.pillar-card .numeral {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 10px;
}
.pillar-card h3 {
  margin: 0 0 10px;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--navy-deep);
}
.pillar-card .question {
  display: block;
  font-style: italic;
  color: var(--ink);
  font-size: 0.98rem;
  margin: 0 0 10px;
}
.pillar-card p { margin: 0 0 10px; color: var(--ink-soft); font-size: 0.92rem; }
.pillar-card .outcome {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.pillar-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.pillar-card li { margin-bottom: 4px; }
@media (max-width: 700px) {
  .pillar-card { border-left: none; border-top: 1px solid var(--rule); padding: 26px 24px 8px; }
  .pillar-card:first-child { border-top: none; }
}

/* ---------- continuum ---------- */
.continuum {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 30px;
  border: 1px solid var(--rule);
}
.continuum .stage {
  padding: 22px;
  border-right: 1px solid var(--rule);
  background: var(--cream);
}
/* .continuum .stage:last-child { border-right: none; background: var(--navy-deep); color: var(--cream); }
.continuum .stage:last-child p { color: #ddd2b3; } */
.continuum .stage .num { color: var(--gold); font-weight: 700; margin-bottom: 6px; display:block; }
.continuum .stage h4 { margin: 0 0 8px; font-weight: 400; font-size: 1.02rem; }
.continuum .stage p { margin: 0; font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.step {
  padding: 22px 4px;
  border-top: 1px solid var(--rule);
}
.step .num { color: var(--gold); font-size: 1.3rem; font-weight: 700; }
.step h4 { margin: 8px 0 6px; font-weight: 400; color: var(--navy-deep); }
.step p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- bios ---------- */
.bio-card {
  padding: 50px 0;
  border-top: 1px solid var(--rule);
}
.bio-card:first-of-type { border-top: none; padding-top: 10px; }
.bio-card::after { content: ""; display: block; clear: both; }

.bio-side {
  float: left;
  width: 230px;
  margin: 4px 44px 26px 0;
}
.bio-photo {
  border: 1px solid var(--gold-dim);
  padding: 8px;
  background: var(--cream);
  margin-bottom: 18px;
}
.bio-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  display: block;
}
.bio-side h2 {
  margin: 0 0 6px;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
}
.bio-desk {
  text-align: center;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.bio-side-rule {
  height: 1px;
  background: var(--gold);
  margin-bottom: 22px;
}
.bio-glance p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.bio-glance p:last-child { margin-bottom: 0; }
.bio-glance p strong { color: var(--navy-deep); }

.bio-card > p {
  text-align: justify;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.bio-card blockquote.pull {
  clear: both;
  font-size: 1.22rem;
  margin: 40px 0 0;
}

@media (max-width: 640px) {
  .bio-side { float: none; width: 100%; max-width: 240px; margin: 0 auto 30px; }
  .bio-card > p { text-align: left; }
}

/* ---------- insights / articles ---------- */
.masthead-box {
  border: 1px solid var(--rule);
  padding: 30px 30px 24px;
  background: var(--cream);
  text-align: center;
  margin-bottom: 40px;
}
.masthead-box .title {
  font-size: 2rem;
  letter-spacing: 0.06em;
  margin: 8px 0;
  color: var(--navy-deep);
}
.masthead-box .tag { color: var(--ink-soft); font-style: italic; font-size: 0.95rem; }
.article { padding: 30px 0; border-top: 1px solid var(--rule); }
.article:first-of-type { border-top: none; }
.article .desk { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px; }
.article h3 { font-size: 1.35rem; font-weight: 400; color: var(--navy-deep); margin: 0 0 6px; }
.article .deck { font-style: italic; color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 10px; }
.article .byline { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 14px; font-style: italic; }
.article p { color: var(--ink-soft); margin: 0 0 20px; }

/* ---------- callout boxes ---------- */
.callout-box {
  border: 1px solid var(--gold-dim);
  background: #f1e9d6;
  padding: 22px 26px;
  margin: 28px 0 14px;
}
.callout-box .label {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 10px;
}
.callout-box .callout-text {
  font-style: italic;
  color: var(--navy-deep);
  font-size: 1.05rem;
  margin: 0;
}
.callout-followup { color: var(--ink-soft); font-size: 0.88rem; margin: 0 0 20px; }

/* ---------- briefing grid ---------- */
.brief-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px 44px;
  margin-top: 28px;
}
.brief-item h4 {
  margin: 0 0 8px;
  font-weight: 400;
  font-size: 1.02rem;
  color: var(--navy-deep);
}
.brief-item h4::before { content: "◆ "; color: var(--gold); font-size: 0.7em; }
.brief-item p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- issue footer box ---------- */
.issue-footer-box {
  background: var(--navy-deep);
  color: #cfc4a3;
  padding: 40px 36px;
  margin-top: 50px;
}
.issue-footer-box .eyebrow { color: var(--gold-light); margin-bottom: 12px; display: block; }
.issue-footer-box p { color: #d9d0b6; font-size: 0.92rem; margin: 0 0 16px; }
.issue-footer-box .disclaimer {
  font-size: 0.78rem;
  color: #a89d80;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
}
.issue-footer-box .issue-contact { margin-top: 18px; font-size: 0.86rem; }
.issue-footer-box .issue-contact a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}
.issue-footer-box .issue-contact a:hover { color: var(--gold-light); }
.issue-footer-box .issue-tag {
  margin-top: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a89d80;
  margin-bottom: 0;
}

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 34px;
}
.contact-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--gold);
  padding: 28px 24px;
  text-align: center;
}
.contact-card h3 { margin: 0 0 4px; font-weight: 400; color: var(--navy-deep); }
.contact-card .role { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.contact-card a.email {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--navy-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.contact-card a.email:hover { color: var(--gold); }

/* ---------- footer ---------- */
footer {
  background: var(--navy-deep);
  color: #cfc4a3;
  padding: 34px 0 26px;
  font-size: 0.8rem;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
footer .foot-links a {
  text-decoration: none;
  color: #cfc4a3;
  margin-left: 18px;
  opacity: 0.85;
}
footer .foot-links a:hover { opacity: 1; color: var(--gold-light); }
footer .foot-note { letter-spacing: 0.04em; }

/* ---------- homepage ---------- */
.home-hero { position: relative; min-height: 650px; display: grid; place-items: center; color: var(--cream); text-align: center; padding: 120px 0; background: center/cover no-repeat; }
.home-hero::before, .closing-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(18,28,50,.78), rgba(18,28,50,.9)); }
.home-hero > .wrap, .closing-cta > .wrap { position: relative; }
.home-hero h1 { max-width: 16ch; margin: 0 auto 24px; font-size: clamp(2.4rem, 5vw, 3.5rem); line-height: 1.12; font-weight: 500; }
.home-hero .sub { max-width: 62ch; margin: 0 auto 34px; font-size: 1.18rem; color: #e7ebf2; }
.btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn.solid { background: var(--gold); color: white; border: 1px solid var(--gold); }
.btn.ghost { color: var(--gold-light); border: 1px solid var(--gold-light); }
.btn:hover { transform: translateY(-1px); }
.band-ivory { background: var(--cream); }
.band-navy { background: var(--navy); color: var(--cream); }
.band-navy h2 { color: var(--cream); }
.center { max-width: 760px; margin-inline: auto; text-align: center; }
.center .rule { margin-inline: auto; }
.rule { width: 60px; height: 1px; margin: 0 0 24px; border: 0; background: var(--gold); opacity: .6; }
.lead { font-size: 1.12rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split.rev .imgcol { order: 2; }
.split img { width: 100%; height: 380px; object-fit: cover; border: 1px solid var(--gold-dim); }
.split h3 { margin: 0 0 12px; color: var(--navy); font-size: 1.65rem; font-weight: 600; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 8px; border: 1px solid var(--gold-dim); background: var(--gold-dim); }
.pillar { padding: 32px; background: var(--paper); }
.pillar h3 { margin: 0; color: var(--navy); font-size: 1.55rem; }
.pillar .q { margin: 0 0 10px; color: var(--gold); font-style: italic; }
.tiles { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.tile { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile .tag { position: absolute; inset: auto 0 0; padding: 35px 8px 10px; background: linear-gradient(transparent,rgba(22,35,61,.9)); text-align: center; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.reach { text-align: center; color: var(--gold-light); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; }
.assess { border-block: 2px solid var(--gold); }
.cards2, .pubcards { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.pcard { display: flex; gap: 20px; align-items: flex-start; }
.pcard img { width: 104px; height: 104px; flex: none; object-fit: cover; border: 2px solid var(--gold); }
.pcard h3 { margin: 0; color: var(--navy); font-size: 1.45rem; }
.pcard .role { margin: 0 0 8px; color: var(--gold); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.pcard p { margin: 0 0 8px; font-size: .95rem; }
.pcard a { color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--gold); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.pub { padding: 34px; border: 1px solid var(--gold); background: var(--navy); color: var(--cream); text-align: center; }
.pub .k { color: var(--gold-light); font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; }
.pub .t { font-family: var(--display); font-size: 1.5rem; line-height: 1.2; }
.pub .mono { font-family: var(--display); font-size: 2rem; letter-spacing: .2em; }
.closing-cta { position: relative; padding: 110px 0; background: center/cover no-repeat; color: var(--cream); text-align: center; }
.closing-cta .line { max-width: 22ch; margin: 0 auto 32px; font-family: var(--display); font-size: 1.9rem; font-style: italic; line-height: 1.3; }
.footer-logo { height: 52px; width: auto; }
.footer-links { display: flex; gap: 20px; margin: 0; padding: 0; list-style: none; }

@media (max-width: 860px) {
  .split, .cards2, .pubcards { grid-template-columns: 1fr; }
  .split.rev .imgcol { order: initial; }
  .pillars, .tiles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .wrap { padding-inline: 20px; }
  section { padding-block: 52px; }
  .pillars, .tiles { grid-template-columns: 1fr; }
  .home-hero { min-height: 560px; padding-block: 90px; }
  .site-nav ul.links { justify-content: center; gap: 12px 18px; flex-wrap: wrap; }
  .site-nav ul.links .btn { display: none; }
}

/* ============================================================
   ELEVATED BRAND LAYER
   Archival restraint, cartographic detail, and editorial depth.
   ============================================================ */
:root {
  --navy-night: #0d1729;
  --navy-glow: #263b62;
  --champagne: #d8bd7a;
  --paper-warm: #fbf8f0;
  --shadow-soft: 0 24px 70px rgba(13, 23, 41, .09);
  --shadow-deep: 0 30px 90px rgba(7, 14, 27, .28);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

body {
  background-color: var(--paper-warm);
  background-image:
    radial-gradient(circle at 10% 8%, rgba(176,141,66,.055), transparent 24rem),
    radial-gradient(circle at 90% 30%, rgba(27,42,74,.035), transparent 30rem);
  font-size: 18px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
}

::selection { background: var(--gold); color: white; }

.wrap { width: min(100%, var(--max)); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .69rem;
  letter-spacing: .34em;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .75;
}

.center > .eyebrow { justify-content: center; }

h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }

h2.section-title,
.center h2 {
  letter-spacing: -.018em;
}

/* Navigation becomes a precise floating editorial rail. */
header.site-nav {
  border-bottom: 1px solid rgba(176,141,66,.24);
  box-shadow: 0 10px 35px rgba(13,23,41,.045);
}

.nav-inner { min-height: 76px; }

.brand-mark { position: relative; }
.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  transform: translateX(-50%) rotate(45deg);
  opacity: .7;
}

.logo-mark-img { height: 42px; transition: opacity .25s ease; }
.brand-mark:hover .logo-mark-img { opacity: .72; }

.site-nav ul.links { gap: clamp(14px, 2vw, 27px); }
.site-nav ul.links a {
  position: relative;
  padding-block: 8px;
  border: 0;
  font-size: .75rem;
  letter-spacing: .15em;
}
.site-nav ul.links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transition: left .35s var(--ease), right .35s var(--ease);
}
.site-nav ul.links a:hover::after,
.site-nav ul.links a.active::after { left: 0; right: 0; }
.site-nav ul.links .btn {
  padding: 10px 16px;
  box-shadow: 0 8px 20px rgba(176,141,66,.18);
}

/* Cinematic home hero with a quiet architectural frame. */
.home-hero {
  min-height: min(790px, calc(100svh - 76px));
  isolation: isolate;
  background-attachment: fixed;
}
.home-hero::before {
  background:
    linear-gradient(90deg, rgba(10,18,33,.82), rgba(18,28,50,.48) 50%, rgba(10,18,33,.82)),
    linear-gradient(180deg, rgba(9,17,31,.38), rgba(9,17,31,.88));
}
.home-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 30px;
  border: 1px solid rgba(216,189,122,.35);
  border-bottom-color: rgba(216,189,122,.7);
  pointer-events: none;
}
.home-hero .wrap { z-index: 1; }
.home-hero .eyebrow { animation: rise-in .8s .05s both var(--ease); }
.home-hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  max-width: 17ch;
  letter-spacing: -.025em;
  text-shadow: 0 12px 50px rgba(0,0,0,.28);
  animation: rise-in .9s .13s both var(--ease);
}
.home-hero .sub { animation: rise-in .9s .22s both var(--ease); }
.home-hero .btns { animation: rise-in .9s .3s both var(--ease); }

@keyframes rise-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons gain a tailored, tactile interaction. */
.btn {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transition: color .35s ease, border-color .35s ease, transform .35s var(--ease), box-shadow .35s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.14);
  transform: translateX(-105%) skewX(-18deg);
  transition: transform .55s var(--ease);
}
.btn:hover::before { transform: translateX(105%) skewX(-18deg); }
.btn:hover { box-shadow: 0 14px 32px rgba(13,23,41,.16); transform: translateY(-2px); }

/* Alternating sections read like editorial spreads. */
main > section:not(.home-hero):not(.closing-cta) { position: relative; }
.home main > section:not(.home-hero):not(.closing-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(80px, 15vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  opacity: .55;
}
.split { gap: clamp(44px, 7vw, 92px); }
.split .imgcol { position: relative; }
.split .imgcol::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(176,141,66,.48);
}
.split.rev .imgcol::before { inset: 18px 18px -18px -18px; }
.split img {
  position: relative;
  z-index: 1;
  height: 430px;
  filter: saturate(.78) contrast(1.04);
  box-shadow: var(--shadow-soft);
  transition: filter .6s ease, transform .7s var(--ease);
}
.split:hover img { filter: saturate(.95) contrast(1.02); transform: scale(1.012); }
.split h3 { font-size: clamp(1.8rem, 3vw, 2.35rem); line-height: 1.08; }

.pull {
  position: relative;
  border-left: 0;
  padding: 22px 34px;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
}
.pull::before, .pull::after {
  content: "";
  position: absolute;
  left: 0;
  width: 52px;
  height: 1px;
  background: var(--gold);
}
.pull::before { top: 0; }
.pull::after { bottom: 0; }

/* Framework components feel commissioned rather than templated. */
.pillars { gap: 0; border: 0; background: transparent; box-shadow: var(--shadow-soft); }
.pillar {
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(176,141,66,.28);
  transition: background .4s ease, transform .45s var(--ease), box-shadow .45s ease;
}
.pillar::before {
  content: "◆";
  position: absolute;
  right: 24px;
  top: 21px;
  color: var(--gold);
  font-size: .55rem;
}
.pillar:hover { z-index: 2; background: white; box-shadow: var(--shadow-soft); transform: translateY(-5px); }

.pillar-card, .step, .brief-item, .article, .contact-card, .pcard, .pub, .continuum .stage {
  transition: transform .4s var(--ease), box-shadow .4s ease, border-color .4s ease;
}
.pillar-card:hover, .step:hover, .brief-item:hover { transform: translateY(-4px); }
.contact-card:hover, .pcard:hover, .pub:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--gold); }

.tiles { gap: 10px; }
.tile { box-shadow: 0 14px 36px rgba(6,14,28,.22); }
.tile img { filter: saturate(.66); transition: transform .8s var(--ease), filter .6s ease; }
.tile:hover img { transform: scale(1.055); filter: saturate(.95); }
.tile .tag { padding-bottom: 14px; letter-spacing: .2em; }

.band-navy {
  background:
    radial-gradient(circle at 50% -30%, var(--navy-glow), transparent 52%),
    linear-gradient(135deg, var(--navy-night), var(--navy));
}

.assess {
  background:
    linear-gradient(90deg, rgba(176,141,66,.06) 1px, transparent 1px),
    linear-gradient(rgba(176,141,66,.06) 1px, transparent 1px),
    var(--cream);
  background-size: 40px 40px;
}

.pcard { padding: 24px; border: 1px solid rgba(176,141,66,.22); background: rgba(255,255,255,.45); }
.pcard img { width: 116px; height: 140px; filter: saturate(.7); }
.pub { position: relative; overflow: hidden; padding: 46px 34px; box-shadow: var(--shadow-deep); }
.pub::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(216,189,122,.24); pointer-events: none; }

/* Interior-page mastheads share the same authored signature. */
.page-head {
  position: relative;
  overflow: hidden;
  padding: 82px 0 74px;
  background:
    radial-gradient(circle at 82% 15%, rgba(198,165,92,.17), transparent 22rem),
    linear-gradient(135deg, var(--navy-night), var(--navy));
}
.page-head::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -110px;
  top: -210px;
  border: 1px solid rgba(216,189,122,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(216,189,122,.035), 0 0 0 84px rgba(216,189,122,.025);
}
.page-head .wrap { position: relative; }
.page-head h1 { font-size: clamp(2.65rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -.02em; }

.bio-photo { box-shadow: var(--shadow-soft); }
.bio-photo img { filter: saturate(.72); transition: filter .5s ease; }
.bio-card:hover .bio-photo img { filter: saturate(.95); }
.masthead-box { position: relative; padding: 46px; box-shadow: var(--shadow-soft); }
.masthead-box::before, .masthead-box::after { content: "◆"; position: absolute; top: 50%; color: var(--gold); font-size: .55rem; }
.masthead-box::before { left: 18px; }.masthead-box::after { right: 18px; }
.article { padding-block: 46px; }
.article h3 { font-size: clamp(1.6rem, 3vw, 2rem); }
.callout-box { border-left: 3px solid var(--gold); background: linear-gradient(110deg,#f2ead8,#faf7ee); }
.contact-card { padding: 36px 28px; background: rgba(255,255,255,.58); box-shadow: 0 10px 35px rgba(13,23,41,.05); }

.closing-cta { isolation: isolate; background-attachment: fixed; }
.closing-cta::after { content: ""; position: absolute; z-index: 0; inset: 22px; border: 1px solid rgba(216,189,122,.38); }
.closing-cta .wrap { z-index: 1; }

footer {
  position: relative;
  overflow: hidden;
  padding-block: 44px;
  background: var(--navy-night);
}
footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
footer .foot-note { margin: 0; }
.footer-links a { color: #cfc4a3; text-decoration: none; transition: color .2s ease; }
.footer-links a:hover { color: var(--gold-light); }

@media (max-width: 860px) {
  .home-hero { background-attachment: scroll; }
  .home-hero::after { inset: 16px; }
  .split .imgcol::before, .split.rev .imgcol::before { inset: 12px -10px -12px 10px; }
  .site-nav ul.links { row-gap: 2px; }
  .nav-inner { padding-block: 12px; }
}

@media (max-width: 600px) {
  .home-hero h1 { font-size: clamp(2.55rem, 12vw, 3.4rem); }
  .home-hero::after { display: none; }
  .split img { height: 330px; }
  .page-head { padding-block: 62px 54px; }
  .pcard { flex-direction: column; }
  .pcard img { width: 100%; height: 240px; }
  .footer-links { width: 100%; justify-content: space-between; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero { background-attachment: scroll; }
  .home-hero .eyebrow, .home-hero h1, .home-hero .sub, .home-hero .btns { animation: none; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* ============================================================
   PRIVATE ARCHIVE DETAILS
   A page-wide folio system and a more expressive editorial rhythm.
   ============================================================ */
.page-approach { --folio: "01"; --section-name: "Approach"; }
.page-about { --folio: "02"; --section-name: "Principals"; }
.page-insights { --folio: "03"; --section-name: "Insights"; }
.page-contact { --folio: "04"; --section-name: "Contact"; }

.interior::after {
  content: var(--section-name);
  position: fixed;
  z-index: 30;
  right: 10px;
  top: 50%;
  color: var(--navy);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  opacity: .38;
  pointer-events: none;
}

.interior .page-head::after {
  content: var(--folio);
  position: absolute;
  right: clamp(35px, 8vw, 130px);
  bottom: -38px;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(10rem, 20vw, 17rem);
  font-weight: 500;
  line-height: .75;
  -webkit-text-stroke: 1px rgba(216,189,122,.16);
  opacity: .9;
  pointer-events: none;
}

.interior .page-head .wrap::after {
  content: "PROVENANCE  /  PRIVATE ADVISORY";
  display: block;
  width: fit-content;
  margin: 34px auto 0;
  color: rgba(247,244,236,.5);
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.interior main > section > .wrap {
  position: relative;
}

.interior main > section > .wrap::before {
  content: var(--folio) ".";
  position: absolute;
  left: -58px;
  top: 2px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: .1em;
  opacity: .62;
}

.interior main > section:nth-of-type(even) {
  background-image:
    linear-gradient(90deg, rgba(176,141,66,.035) 1px, transparent 1px),
    linear-gradient(rgba(176,141,66,.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.interior .section-title {
  position: relative;
  width: fit-content;
  padding-bottom: 15px;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.interior .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.subscription-cta .section-title {
  margin-inline: auto;
}

.subscription-cta .section-title::after {
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.interior .section-lede {
  max-width: 780px;
  font-size: 1.12rem;
}

.continuum {
  overflow: hidden;
  border: 0;
  box-shadow: var(--shadow-soft);
}
.continuum .stage {
  position: relative;
  border-color: rgba(176,141,66,.24);
}
.continuum .stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right .45s var(--ease);
}
.continuum .stage:hover { background: white; }
.continuum .stage:hover::after { right: 0; }

.pillar-grid {
  border-top: 0;
  box-shadow: var(--shadow-soft);
}
.pillar-card {
  position: relative;
  padding: 34px 28px 30px;
  background: rgba(255,255,255,.54);
  border-color: rgba(176,141,66,.22);
}
.pillar-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color .4s ease;
}
.pillar-card:hover { z-index: 1; background: white; box-shadow: var(--shadow-soft); }
.pillar-card:hover::after { border-color: rgba(176,141,66,.24); }

.bio-card {
  position: relative;
  padding-block: 72px;
}
.bio-card::before {
  content: attr(id);
  position: absolute;
  right: 0;
  top: 40px;
  color: rgba(176,141,66,.07);
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}
.bio-side { position: relative; z-index: 1; }
.bio-side-rule {
  position: relative;
  overflow: visible;
}
.bio-side-rule::after {
  content: "◆";
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 0 10px;
  background: var(--paper-warm);
  color: var(--gold);
  font-size: .5rem;
  transform: translate(-50%,-50%);
}

.article {
  position: relative;
  padding-inline: clamp(0px, 3vw, 34px);
}
.article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 47px;
  width: 2px;
  height: 0;
  background: linear-gradient(var(--gold), transparent);
  transition: height .65s var(--ease);
}
.article:hover::before { height: calc(100% - 70px); }
.article .desk { display: flex; align-items: center; gap: 10px; }
.article .desk::before { content: "◆"; font-size: .55rem; }

.brief-item {
  position: relative;
  padding: 22px 24px;
  border-top: 1px solid rgba(176,141,66,.28);
  background: rgba(255,255,255,.32);
}
.brief-item:hover { background: white; box-shadow: var(--shadow-soft); }

.contact-grid { gap: 32px; }
.contact-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.contact-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 150px;
  height: 150px;
  right: -90px;
  bottom: -90px;
  border: 1px solid rgba(176,141,66,.24);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(176,141,66,.04), 0 0 0 48px rgba(176,141,66,.025);
  transition: transform .7s var(--ease);
}
.contact-card:hover::before { transform: scale(1.35); }
.contact-card .email { overflow-wrap: anywhere; }

/* The publication becomes a clear destination, not a decorative panel. */
.pub-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--cream);
  text-decoration: none;
  cursor: pointer;
}
.pub-link .k, .pub-link .mono, .pub-link .t { display: block; }
.pub-link .mono { margin-block: 8px; }
.pub-action {
  margin-top: 13px;
  color: #cdd5e2;
  font-family: var(--serif) !important;
  font-size: .88rem !important;
  letter-spacing: .04em;
}
.pub-action span {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold-light);
  transition: transform .35s var(--ease);
}
.pub-link:hover .pub-action span { transform: translate(4px,-4px); }
.pub-link:focus-visible { outline-color: var(--gold-light); outline-offset: 5px; }

@media (max-width: 1220px) {
  .interior main > section > .wrap::before { display: none; }
}

@media (max-width: 860px) {
  .interior::after { display: none; }
  .interior .page-head::after { right: 10px; opacity: .55; }
  .bio-card::before { opacity: .65; }
}

@media (max-width: 600px) {
  .interior .page-head .wrap::after { letter-spacing: .2em; }
  .interior .page-head::after { font-size: 9rem; bottom: -10px; }
  .bio-card { padding-block: 50px; }
  .article { padding-inline: 12px; }
}

/* ---------- branded error page ---------- */
.error-page { min-height: 100vh; display: flex; flex-direction: column; }
.error-main { position: relative; isolation: isolate; flex: 1; display: grid; place-items: center; min-height: 650px; overflow: hidden; padding: 90px 0; color: var(--cream); text-align: center; background: radial-gradient(circle at 50% 50%, rgba(38,59,98,.8), transparent 35%), linear-gradient(135deg, var(--navy-night), var(--navy)); }
.error-content { position: relative; z-index: 2; max-width: 700px; }
.error-content .eyebrow { color: var(--gold-light); }
.error-content h1 { margin: 8px 0 20px; font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 500; line-height: 1; }
.error-content > p:not(.eyebrow):not(.error-code) { max-width: 520px; margin: 0 auto 30px; color: #dfe4ee; font-size: 1.12rem; }
.error-code { position: absolute; z-index: -1; inset: 50% auto auto 50%; margin: 0; color: transparent; font-family: var(--display); font-size: clamp(16rem, 36vw, 31rem); line-height: .7; -webkit-text-stroke: 1px rgba(216,189,122,.1); transform: translate(-50%,-50%); }
.error-orbit { position: absolute; width: min(70vw,700px); aspect-ratio: 1; border: 1px solid rgba(216,189,122,.15); border-radius: 50%; box-shadow: 0 0 0 70px rgba(216,189,122,.025), 0 0 0 140px rgba(216,189,122,.018); }
.error-orbit::before, .error-orbit::after { content: "◆"; position: absolute; color: var(--gold); font-size: .6rem; }
.error-orbit::before { left: 50%; top: -5px; }
.error-orbit::after { left: 50%; bottom: -5px; }
@media (max-width: 600px) { .error-main { min-height: 560px; } .error-orbit { width: 88vw; } }

/* ---------- misc ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; }
  .nav-inner { justify-content: center; text-align: center; }
  nav.links { justify-content: center; }
}
