/* =========================================================
   KingsPeak Partners — Vol. III · Issue I
   Image-led editorial magazine
   Fraunces + DM Sans + JetBrains Mono
   ========================================================= */

:root {
  /* Brand-aligned palette (KingsPeak Brand Guide) */
  --cream:        #EDEDEB;     /* brand neutral paper */
  --cream-deep:   #DCDCDA;
  --ivory:        #F5F5F4;
  --paper:        #FFFFFF;
  --ink:          #0D171A;     /* brand near-black */
  --ink-soft:     #354F4B;
  --moss:         #354F4B;     /* brand primary forest green */
  --moss-deep:    #243A36;     /* darker shade — used only as gradient depth, not as a flat surface */
  --olive:        #4A6256;
  --gold:         #A48843;     /* brand gold master — used everywhere */
  --gold-bright:  #A48843;     /* alias of master (legacy refs) */
  --gold-deep:    #A48843;     /* alias of master (legacy refs) */
  --rule:         rgba(13,23,26,0.16);
  --rule-soft:    rgba(13,23,26,0.10);
  --mute:         rgba(13,23,26,0.55);

  /* Brand fonts — Roboto Slab primary, Source Sans 3 secondary.
     Italic styles are routed to Fraunces below since Roboto Slab has no italic. */
  --display: "Roboto Slab", Georgia, serif;
  --display-italic: "Fraunces", Georgia, serif;
  --sans:    "Source Sans 3", system-ui, sans-serif;
  --mono:    "Source Sans 3", system-ui, sans-serif;

  --max:     1380px;
  --gutter:  clamp(20px, 4vw, 88px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
  color: #1a2a30;
  background: var(--cream);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

/* Roboto Slab — keep weight reasonable on display, dial tracking slightly open */
h1, h2, h3, h4,
.cover-title,
.about-pull,
.holdings-head h2,
.interlude-title,
.contact-type h2,
.values-intro h2,
.partners-head h2,
.mandate-intro h2 {
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "lnum" 1, "ss01" 1;
}

/* Roboto Slab has no italic — route all italic display elements to Fraunces */
em, i, cite, .rot-word, .cs-fig small {
  font-family: var(--display-italic);
  font-style: italic;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "kern", "liga";
  overflow-x: hidden;
}
body.lock { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: .45;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .15 0 0 0 0 .12 0 0 0 0 .08 0 0 0 .14 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* =========================================================
   MASTHEAD
   ========================================================= */
.masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 12px var(--gutter);
  transition: background .4s ease, padding .35s ease, box-shadow .35s;
  color: var(--ivory);
}
.masthead.solid {
  background: rgba(245, 239, 224, 0.92);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  color: var(--ink);
  padding: 8px var(--gutter);
  box-shadow: 0 14px 28px -22px rgba(20,32,30,.3);
}
.masthead-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter .4s, transform .4s, height .4s;
}
.masthead.solid .brand img { filter: none; height: 56px; }
.brand:hover img { transform: scale(1.04); }

.masthead-nav {
  justify-self: center;
  display: flex;
  gap: 28px;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}
.masthead-nav a {
  position: relative;
  padding: 6px 2px;
  transition: color .25s ease;
}
.masthead-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.masthead-nav a:hover { color: var(--gold); }
.masthead-nav a:hover::after { transform: scaleX(1); }

.masthead-meta {
  display: flex; align-items: center; gap: 18px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .85;
}
.status-pill .status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(164,136,67,.22);
  animation: pulse-soft 2.4s ease-in-out infinite;
}
.cta-mail {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .1em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  opacity: .82;
  transition: opacity .25s, color .25s;
}
.cta-mail:hover { opacity: 1; color: var(--gold); border-color: var(--gold); }
.masthead.solid .cta-mail { color: var(--ink); }
.social-icon {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: .8;
  transition: opacity .25s, background .25s, color .25s, border-color .25s, transform .25s;
}
.social-icon svg { width: 14px; height: 14px; }
.social-icon:hover {
  opacity: 1;
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.index-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.masthead.solid .index-btn { color: var(--ink); }
.index-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.ib-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: 18px;
}
.ib-bars span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: width .35s;
}
.ib-bars span:nth-child(1) { width: 100%; }
.ib-bars span:nth-child(2) { width: 70%; }
.ib-bars span:nth-child(3) { width: 90%; }
.index-btn:hover .ib-bars span { width: 100%; }

/* =========================================================
   INDEX MEGAMENU
   ========================================================= */
.index {
  position: fixed; inset: 0;
  z-index: 95;
  visibility: hidden;
  pointer-events: none;
}
.index.open { visibility: visible; pointer-events: auto; }
.index-cover {
  position: absolute; inset: 0;
  background: rgba(20,32,30,0);
  transition: background .5s ease;
}
.index.open .index-cover { background: rgba(20,32,30,0.72); }
.index-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(880px, 96vw);
  height: 100%;
  background: var(--cream);
  padding: 40px 56px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .55s cubic-bezier(.7,.05,.18,1);
  display: flex;
  flex-direction: column;
  box-shadow: -40px 0 80px rgba(20,32,30,.25);
}
.index.open .index-panel { transform: translateX(0); }
.index-close {
  position: absolute;
  top: 28px; right: 28px;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.index-close:hover { background: var(--ink); }
.index-close span {
  position: absolute;
  width: 20px; height: 1px;
  background: var(--ink);
  transition: background .2s;
}
.index-close:hover span { background: var(--cream); }
.index-close span:first-child { transform: rotate(45deg); }
.index-close span:last-child  { transform: rotate(-45deg); }

.index-head { margin-bottom: 24px; }
.index-eyebrow {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.index-head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--moss);
  font-variation-settings: "opsz" 144;
}
.index-head h2 em { font-style: italic; color: var(--gold); font-weight: 400; }

.index-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  flex: 1 1 auto;
  border-top: 1px solid var(--rule);
}
.index-list li {
  flex: 1 1 0;
  display: flex;
  border-bottom: 1px solid var(--rule);
  min-height: 0;
}
.index-list a {
  flex: 1;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  padding: 8px 0;
  align-items: center;
  position: relative;
  transition: padding .3s ease;
}
.index-list a:hover { padding-left: 14px; }

.index-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.index-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  text-align: left;
  transition: color .25s;
}
.index-list a:hover .index-num { color: var(--gold); }
.index-text h3 {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -.012em;
  margin: 0;
  color: var(--moss);
}
.index-list a:hover .index-text h3 { color: var(--gold); }
.index-text p {
  font-size: 12px;
  letter-spacing: .01em;
  color: var(--mute);
  margin: 0;
  font-family: var(--sans);
  line-height: 1.4;
}
.index-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mute, var(--mute));
  white-space: nowrap;
}

.index-foot {
  margin-top: auto;
  padding-top: 18px;
  display: flex; gap: 12px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.index-foot a {
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  color: var(--moss);
}
.index-foot a:hover { color: var(--gold); }
.index-foot .muted { color: var(--mute); }

/* =========================================================
   COVER
   ========================================================= */
.cover {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--ivory);
  overflow: hidden;
  padding: 96px var(--gutter) 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--moss-deep);
  isolation: isolate;
}
.cover-photo {
  position: absolute; inset: 0;
  margin: 0;
  z-index: 0;
  overflow: hidden;
}
.cover-photo img,
.cover-video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.9) brightness(.65);
  transform: scale(1.04);
  animation: ken-burns 22s ease-in-out infinite alternate;
}
.cover-video { display: block; }
@keyframes ken-burns {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1.5%); }
}
.cover-photo-tint {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(900px 600px at 0% 100%, rgba(31,48,45,.7), transparent 60%),
    linear-gradient(180deg, rgba(20,32,30,.55) 0%, rgba(20,32,30,.35) 35%, rgba(20,32,30,.92) 100%);
}
.cover-rail { z-index: 2; }
.cover-grid { z-index: 2; }

.cover-rail {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 56px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 0 48px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,239,224,.7);
  border-right: 1px solid rgba(245,239,224,.1);
}
.rail-mark {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: .12em;
  color: var(--gold);
  font-style: italic;
}
.rail-icon {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .95;
  z-index: 3;
}
.rail-linkedin {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,239,224,.7);
  transition: color .25s, transform .25s;
}
.rail-linkedin svg { width: 18px; height: 18px; }
.rail-linkedin:hover { color: var(--gold); transform: translate(-50%, -2px); }
.rail-rot {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: .4em;
}

.cover-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px 64px;
  align-items: end;
}
.cover-eyebrow {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 16px;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245,239,224,.85);
  margin: 0 0 28px;
}
.eb-rule {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--gold);
}
.cover-title {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 108px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.018em;
  margin: 0;
  color: var(--ivory);
}
.cover-title .ct-1,
.cover-title .ct-2 { display: block; }
.cover-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.cover-title .ct-2 {
  font-size: .86em;
  margin-top: .04em;
  color: rgba(245,239,224,.92);
}

/* Word rotator on the final line */
.last-line { display: block; }
.rotator {
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  height: 1.3em;
  line-height: 1;
  position: relative;
  /* Extra .25em is room for italic ascenders/descenders inside each word box;
     negative margin prevents that extra height from pushing the title's next line down. */
  margin-bottom: -.25em;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 .08em,
    #000 calc(100% - .08em),
    transparent 100%
  );
          mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 .08em,
    #000 calc(100% - .08em),
    transparent 100%
  );
}
.rot-track {
  display: flex;
  flex-direction: column;
  transition: transform .9s cubic-bezier(.6, .04, .18, 1);
  will-change: transform;
}
.rot-word {
  display: block;
  height: 1.3em;
  line-height: 1;
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 60;
  white-space: nowrap;
}

.cover-bottom {
  grid-column: 1;
  padding-top: 32px;
  border-top: 1px solid rgba(245,239,224,.18);
}
.cover-mission {
  font-family: var(--display);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.4;
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  max-width: 44ch;
  margin: 0 0 20px;
}
.cover-signoff {
  margin: 0 0 22px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(245,239,224,.16);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 300;
  color: rgba(245,239,224,.78);
  max-width: 46ch;
}
.cover-signoff em {
  font-style: italic;
  color: var(--ivory);
}
.cover-signoff .signoff-line {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.cover-mission .ms-soft {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(245,239,224,.7);
  margin-top: 12px;
  letter-spacing: .005em;
}
.cover-actions {
  display: flex; gap: 18px; flex-wrap: wrap;
}

.cover-stats {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  padding: 22px 28px 18px;
  background:
    linear-gradient(150deg, rgba(164,136,67,.10), transparent 55%),
    rgba(20,32,30,.55);
  border: 1px solid rgba(164,136,67,.32);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.5);
}
.cover-stats::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(164,136,67,.7), transparent);
  z-index: 3;
}
/* Slow gold shimmer sweep — luxurious light-catching pass across the panel */
.cover-stats::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 235, 185, 0.05) 46%,
    rgba(255, 238, 195, 0.13) 50%,
    rgba(255, 235, 185, 0.05) 54%,
    transparent 62%,
    transparent 100%
  );
  background-size: 240% 100%;
  background-position: 150% 0;
  mix-blend-mode: screen;
  animation: cover-shimmer 11s cubic-bezier(.45, .05, .55, .95) infinite;
  z-index: 2;
}
@keyframes cover-shimmer {
  0%   { background-position: 150% 0; }
  60%  { background-position: -55% 0; }
  100% { background-position: -55% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .cover-stats::after { animation: none; }
}
.cs-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(164,136,67,.22);
}
.cs-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.cs-asof {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,239,224,.55);
}
.cs-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(164,136,67,.15);
  position: relative;
  transition: padding-left .3s ease;
}
.cs-item::before {
  content: "";
  position: absolute;
  left: -28px; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s cubic-bezier(.7,.05,.18,1);
}
.cover-stats.in-view .cs-item:nth-of-type(1)::before { transform: scaleY(1); transition-delay: .15s; }
.cover-stats.in-view .cs-item:nth-of-type(2)::before { transform: scaleY(1); transition-delay: .3s; }
.cover-stats.in-view .cs-item:nth-of-type(3)::before { transform: scaleY(1); transition-delay: .45s; }
.cs-fig {
  font-family: var(--display);
  font-size: clamp(36px, 3.6vw, 50px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.015em;
  color: var(--gold);
  white-space: nowrap;
}
.cs-fig small {
  font-style: italic;
  font-size: .42em;
  margin-left: 4px;
  color: rgba(164,136,67,.9);
}
.cs-lbl {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,239,224,.72);
  line-height: 1.55;
}
.cs-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(164,136,67,.22);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,239,224,.7);
}
.cs-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(164,136,67,.22);
  animation: pulse-soft 2.4s ease-in-out infinite;
}

.cover-scroll {
  grid-column: 1 / -1;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,239,224,.6);
}
.scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(245,239,224,.2);
}
.scroll-line i {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  background: var(--gold);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(100%); opacity: 0; }
}

/* =========================================================
   SHARED BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, color .25s, padding .25s, border-color .25s, transform .25s;
  border: 1px solid transparent;
  min-height: 44px;
}
.btn .arrow { transition: transform .3s; }
.btn-cream {
  background: var(--cream);
  color: var(--moss);
  border-color: var(--cream);
}
.btn-cream:hover { background: var(--gold); border-color: var(--gold); padding-right: 32px; }
.btn-cream:hover .arrow { transform: translate(3px, 3px); }
.btn-bare {
  background: transparent;
  color: var(--ivory);
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  padding: 14px 4px;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}
.btn-bare:hover { color: var(--gold); }
.btn-gold {
  background: var(--gold);
  color: var(--moss);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold); padding-right: 32px; }
.btn-gold:hover .arrow { transform: translate(3px,-3px); }
.btn-gold.large { font-size: 15.5px; padding: 20px 32px; letter-spacing: .04em; }

/* =========================================================
   CHAPTER MARKER
   ========================================================= */
.chapter-marker {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto 64px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.chapter-marker::before {
  content: attr(data-num);
  font-family: var(--display);
  font-style: italic;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.cm-line {
  height: 1px;
  background: var(--gold);
  width: 64px;
}
.cm-name {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.cm-folio {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--mute);
}
.chapter-marker.dark { border-bottom-color: rgba(245,239,224,.16); }
.chapter-marker.dark::before { color: var(--gold); }
.chapter-marker.dark .cm-name { color: var(--ivory); }
.chapter-marker.dark .cm-folio { color: rgba(245,239,224,.65); }
.chapter-marker.light::before { color: var(--gold); }
.chapter-marker.light .cm-name { color: var(--ivory); }
.chapter-marker.light .cm-folio { color: rgba(245,239,224,.65); }

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  padding: 96px var(--gutter);
  background: var(--cream);
}
.about-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto;
  gap: 56px 80px;
  align-items: start;
}
.about-quote { grid-column: 1; grid-row: 1; }
.about-pull {
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.012em;
  margin: 0 0 28px;
  color: var(--moss);
}
.about-pull em {
  font-style: italic;
  color: var(--gold);
}
.dropcap {
  font-family: inherit;
  font-size: 1em;
  font-weight: inherit;
  color: inherit;
  display: inline;
  vertical-align: baseline;
  margin: 0;
  line-height: inherit;
}
.about-body {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 300;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 60ch;
}

.about-figure {
  grid-column: 2; grid-row: 1;
  align-self: center;
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  box-shadow: 0 50px 80px -50px rgba(20,32,30,.5);
}
.about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95);
  transition: transform 2s cubic-bezier(.2,.6,.2,1);
}
.about-figure:hover img { transform: scale(1.04); }
.about-figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,32,30,.4) 100%);
  pointer-events: none;
}
.about-figure figcaption {
  position: absolute;
  left: 22px; bottom: 18px;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ivory);
}
.about-figure figcaption em { color: var(--gold); margin-right: 6px; }

.about-band {
  grid-column: 1; grid-row: 2;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}
.about-band-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.about-band-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s, transform .6s;
}
.about-band.in-view .about-band-list li {
  opacity: 1; transform: translateY(0);
}
.about-band.in-view .about-band-list li:nth-child(1) { transition-delay: .05s; }
.about-band.in-view .about-band-list li:nth-child(2) { transition-delay: .15s; }
.about-band.in-view .about-band-list li:nth-child(3) { transition-delay: .25s; }
.about-band.in-view .about-band-list li:nth-child(4) { transition-delay: .35s; }
.abl-num {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  font-weight: 300;
  color: var(--moss);
  letter-spacing: -.02em;
}
.abl-num small {
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  margin-left: 4px;
}
.abl-cap {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mute);
}

/* =========================================================
   VALUES
   ========================================================= */
.values {
  padding: 128px var(--gutter);
  background: var(--moss);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.values::before {
  content: "";
  position: absolute;
  right: -200px; top: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(164,136,67,.15), transparent 70%);
  pointer-events: none;
}
.values-intro {
  max-width: var(--max);
  margin: 0 auto 56px;
}
.values-h {
  font-family: var(--display);
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: 1.0;
  font-weight: 300;
  letter-spacing: -.022em;
  margin: 0;
  max-width: 24ch;
  font-variation-settings: "opsz" 144;
}
.values-h em { font-style: italic; color: var(--gold); }

.values-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.virtue {
  position: relative;
  padding: 40px 36px;
  background: rgba(245,239,224,0.04);
  border: 1px solid rgba(164,136,67,.16);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  cursor: default;
  transition:
    opacity .8s ease,
    transform .8s ease,
    background .45s cubic-bezier(.2,.7,.2,1),
    border-color .45s ease,
    color .45s ease;
}
.virtue.in-view { opacity: 1; transform: translateY(0); }
.virtue.in-view.v-2 { transition-delay: .1s; }
.virtue.in-view.v-3 { transition-delay: .2s; }
.virtue.in-view.v-4 { transition-delay: .3s; }

/* Hover / mobile tap state — flips card to cream with dark ink */
.virtue:hover,
.virtue:focus-within,
.virtue.is-active {
  background: var(--cream);
  border-color: var(--moss);
}
.virtue::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.virtue:hover::before,
.virtue:focus-within::before,
.virtue.is-active::before { transform: scaleX(1); }

.v-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  font-weight: 400;
  transition: color .45s ease;
}
.virtue:hover .v-num,
.virtue:focus-within .v-num,
.virtue.is-active .v-num { color: var(--gold); }

.virtue h3 {
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.018em;
  margin: 8px 0 16px;
  color: var(--cream);
  transition: color .45s ease;
}
.virtue:hover h3,
.virtue:focus-within h3,
.virtue.is-active h3 { color: var(--moss); }

.virtue p {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 300;
  color: rgba(245,239,224,.78);
  max-width: 48ch;
  margin: 0 0 32px;
  transition: color .45s ease;
}
.virtue:hover p,
.virtue:focus-within p,
.virtue.is-active p { color: var(--ink); }

.v-stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(164,136,67,.25);
  transition: border-color .45s ease;
}
.virtue:hover .v-stat,
.virtue:focus-within .v-stat,
.virtue.is-active .v-stat { border-top-color: rgba(53,79,75,.25); }

.v-stat strong {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  font-weight: 400;
  transition: color .45s ease;
}
.virtue:hover .v-stat strong,
.virtue:focus-within .v-stat strong,
.virtue.is-active .v-stat strong { color: var(--gold); }

.v-stat span {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,239,224,.65);
  transition: color .45s ease;
}
.virtue:hover .v-stat span,
.virtue:focus-within .v-stat span,
.virtue.is-active .v-stat span { color: var(--ink-soft); }

/* =========================================================
   PARTNERS
   ========================================================= */
.partners {
  padding: 128px var(--gutter);
  background: var(--ivory);
}
.partners-head {
  max-width: var(--max);
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}
.partners-head h2 {
  font-family: var(--display);
  font-size: clamp(48px, 5.6vw, 88px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.022em;
  margin: 0;
  color: var(--moss);
  font-variation-settings: "opsz" 144;
}
.partners-head h2 em { font-style: italic; color: var(--gold); }
.partners-head p {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 300;
  color: var(--ink-soft);
  border-left: 1px solid var(--gold);
  padding-left: 22px;
  margin: 0;
  max-width: 42ch;
}

.partner {
  max-width: var(--max);
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s, transform .9s;
}
.partner.in-view { opacity: 1; transform: translateY(0); }
.partner:last-of-type { border-bottom: 0; }
.partner.reversed {
  grid-template-columns: 1fr 480px;
}
.partner.reversed .p-portrait { order: 2; }

.p-portrait {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: 0 40px 60px -40px rgba(20,32,30,.4);
}
.p-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(.9);
  transition: transform 1.5s cubic-bezier(.2,.6,.2,1), filter .35s;
}
.p-portrait:hover img { transform: scale(1.04); filter: saturate(1.05); }
.p-portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(20,32,30,.35) 100%);
  pointer-events: none;
}
.p-portrait figcaption {
  position: absolute;
  left: 16px; bottom: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ivory);
}

.p-body { padding-top: 12px; }
.p-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
}
.p-name {
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 80px);
  line-height: .96;
  font-weight: 400;
  letter-spacing: -.018em;
  margin: 8px 0 4px;
  color: var(--moss);
}
.p-name em { font-style: italic; color: var(--gold); font-weight: 400; }
.p-role {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.p-bio {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 62ch;
}
.p-bio strong { color: var(--gold); font-weight: 600; }
.p-contact {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.p-contact a {
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color .2s;
}
.p-contact a:hover { color: var(--gold); }
.p-contact .dot { color: var(--gold); }

/* =========================================================
   HOLDINGS
   ========================================================= */
.holdings {
  padding: 128px var(--gutter);
  background: var(--cream);
}
.holdings-head {
  max-width: var(--max);
  margin: 0 auto 64px;
}
.holdings-head h2 {
  font-family: var(--display);
  font-size: clamp(48px, 5.6vw, 88px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.022em;
  margin: 0;
  color: var(--moss);
}
.holdings-head em { font-style: italic; color: var(--gold); }

.holding {
  max-width: var(--max);
  margin: 0 auto 80px;
  background: var(--ivory);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: auto auto auto;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s, transform .9s;
}
.holding.in-view { opacity: 1; transform: translateY(0); }
.holding { position: relative; isolation: isolate; }
.holding.alt {
  background: var(--moss);
  color: var(--ivory);
  border: 0;
}

.h-visit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  transition: background .25s, color .25s, padding .25s, border-color .25s;
}
.h-visit .arrow { font-size: 13px; transition: transform .3s; }
.h-visit:hover {
  background: var(--gold);
  color: var(--ivory);
  padding-right: 24px;
  border-color: var(--gold);
}
.h-visit:hover .arrow { transform: translate(3px, -3px); }
.holding.alt .h-visit { color: var(--gold); border-color: rgba(164,136,67,.5); }
.holding.alt .h-visit:hover { background: var(--gold); color: var(--moss-deep); border-color: var(--gold); }
.h-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
  border-bottom: 1px solid var(--rule);
}
.holding.alt .h-meta { border-bottom-color: rgba(164,136,67,.2); }
.h-meta-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.h-logo {
  width: 88px; height: 88px;
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: 50%;
  padding: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .35s, box-shadow .35s;
}
.h-logo:hover { transform: scale(1.04); box-shadow: 0 16px 36px -16px rgba(20,32,30,.35); }
.h-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

.h-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 2px;
  font-weight: 600;
}
.tag-active {
  color: #2e7d4e;
  background: rgba(46,125,78,.10);
  border: 1px solid rgba(46,125,78,.3);
}
.tag-exit {
  color: var(--gold);
  background: rgba(164,136,67,.10);
  border: 1px solid rgba(164,136,67,.35);
}
.holding.alt .tag-active {
  color: #6FCF97;
  background: rgba(111,207,151,.1);
  border-color: rgba(111,207,151,.3);
}
.holding.alt .tag-exit {
  color: var(--gold);
  background: rgba(164,136,67,.1);
  border-color: rgba(164,136,67,.32);
}
.h-since {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--mute);
  margin: 6px 0 0;
}
.holding.alt .h-since { color: rgba(245,239,224,.65); }

.h-tags {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
  max-width: 320px;
  justify-content: flex-end;
}
.h-tags li {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 9px;
  border: 1px solid var(--rule);
  color: var(--mute);
  border-radius: 2px;
}
.holding.alt .h-tags li {
  color: rgba(245,239,224,.65);
  border-color: rgba(164,136,67,.25);
}

.h-figure {
  grid-column: 1;
  grid-row: 2 / span 2;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.h-figure img {
  width: 100%; height: 100%;
  min-height: 480px;
  object-fit: cover;
  filter: saturate(.95);
  transition: transform 1.8s cubic-bezier(.2,.6,.2,1);
}
.holding:hover .h-figure img { transform: scale(1.04); }
.h-figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,32,30,.5) 100%);
  pointer-events: none;
}
.h-figure figcaption {
  position: absolute;
  left: 22px; bottom: 16px;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ivory);
}
.h-figure figcaption em { color: var(--gold); margin-right: 6px; }

.h-body {
  grid-column: 2;
  grid-row: 2;
  padding: 40px 36px;
}
.h-name {
  font-family: var(--display);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.018em;
  margin: 0 0 24px;
  color: var(--moss);
}
.holding.alt .h-name { color: var(--ivory); }
.h-body p {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.holding.alt .h-body p { color: rgba(245,239,224,.82); }

.h-quote {
  grid-column: 2;
  grid-row: 3;
  margin: 0;
  padding: 32px 36px 40px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: start;
  background: rgba(164,136,67,.05);
  border-top: 1px solid var(--rule);
}
.holding.alt .h-quote {
  background: rgba(0,0,0,.18);
  border-top-color: rgba(164,136,67,.25);
}
.hq-portrait {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
  flex-shrink: 0;
}
.holding.alt .hq-portrait { border-color: var(--gold); }
.h-quote p {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--moss);
  margin: 0 0 14px;
  font-weight: 300;
}
.holding.alt .h-quote p { color: var(--ivory); }
.h-quote cite {
  display: flex; flex-direction: column; gap: 2px;
  font-style: normal;
}
.h-quote cite strong {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--gold);
}
.holding.alt .h-quote cite strong { color: var(--gold); }
.h-quote cite span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mute);
}
.holding.alt .h-quote cite span { color: rgba(245,239,224,.6); }

/* =========================================================
   TORONTO INTERLUDE
   ========================================================= */
.interlude {
  position: relative;
  height: 86vh;
  min-height: 620px;
  overflow: hidden;
  color: var(--ivory);
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gutter) 80px;
  background: var(--moss-deep);
  isolation: isolate;
}
.interlude-video,
.interlude-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(.92) contrast(1.04);
  animation: interlude-zoom 24s ease-in-out infinite alternate;
}
@keyframes interlude-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.interlude-tint {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(1200px 800px at 0% 80%, rgba(13,23,26,.85), rgba(13,23,26,.35) 45%, transparent 70%),
    linear-gradient(180deg, rgba(13,23,26,.55) 0%, rgba(13,23,26,.45) 30%, rgba(13,23,26,.85) 100%),
    linear-gradient(90deg, rgba(13,23,26,.55) 0%, rgba(13,23,26,.15) 45%, rgba(13,23,26,0) 70%);
  pointer-events: none;
}
.interlude-grid { position: relative; z-index: 2; }
.interlude-grid {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 28px 80px;
  align-items: end;
}
.interlude-eyebrow {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245,239,224,.78);
}
.interlude-eyebrow .bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(164,136,67,.22);
  animation: pulse-soft 2.4s ease-in-out infinite;
}
@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 0 0 4px rgba(164,136,67,.22); }
  50%      { box-shadow: 0 0 0 10px rgba(164,136,67,.0); }
}
.interlude-title {
  font-family: var(--display);
  font-size: clamp(48px, 5.4vw, 92px);
  line-height: .95;
  font-weight: 300;
  letter-spacing: -.025em;
  margin: 0;
  grid-column: 1;
  font-variation-settings: "opsz" 144;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}
.interlude-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.interlude-sub {
  grid-column: 1;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: rgba(245,239,224,.78);
  max-width: 42ch;
  margin: 0;
  font-weight: 300;
}
.interlude-coords {
  grid-column: 2;
  grid-row: 2 / span 2;
  list-style: none;
  margin: 0;
  padding: 24px 28px;
  background: rgba(20,32,30,.5);
  border: 1px solid rgba(164,136,67,.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.interlude-coords li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.interlude-coords span {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.interlude-coords em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,239,224,.6);
}

/* =========================================================
   MANDATE
   ========================================================= */
.mandate {
  padding: 128px var(--gutter);
  background: var(--moss);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.mandate::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto auto;
  width: 700px; height: 700px;
  background: radial-gradient(circle at 60% 40%, rgba(164,136,67,.18), transparent 70%);
  pointer-events: none;
}
.mandate-intro {
  max-width: var(--max);
  margin: 0 auto 56px;
}
.mandate-intro h2 {
  font-family: var(--display);
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.022em;
  margin: 0;
  max-width: 24ch;
  font-variation-settings: "opsz" 144;
}
.mandate-intro em { font-style: italic; color: var(--gold); }
.mandate-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.m-col {
  padding: 36px 32px;
  background: rgba(245,239,224,.04);
  border: 1px solid rgba(164,136,67,.16);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity .8s,
    transform .8s,
    background .45s cubic-bezier(.2,.7,.2,1),
    border-color .45s ease;
}
.m-col.in-view { opacity: 1; transform: translateY(0); }
.m-col:nth-child(2).in-view { transition-delay: .1s; }
.m-col:nth-child(3).in-view { transition-delay: .2s; }

/* Hover / focus / mobile-tap state — flip to cream with dark ink (matches .virtue) */
.m-col:hover,
.m-col:focus-within,
.m-col.is-active {
  background: var(--cream);
  border-color: var(--moss);
}

.m-num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .12em;
  color: var(--gold);
  background: rgba(164,136,67,.12);
  padding: 4px 8px;
  border-radius: 2px;
  display: inline-block;
  transition: background .45s ease;
}
.m-col:hover .m-num,
.m-col:focus-within .m-num,
.m-col.is-active .m-num { background: rgba(164,136,67,.18); }

.m-col h3 {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.015em;
  margin: 16px 0 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(164,136,67,.2);
  color: var(--ivory);
  transition: color .45s ease, border-color .45s ease;
}
.m-col:hover h3,
.m-col:focus-within h3,
.m-col.is-active h3 {
  color: var(--moss);
  border-bottom-color: rgba(53,79,75,.25);
}

.m-col ul {
  list-style: none;
  margin: 0; padding: 0;
}
.m-col li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid rgba(164,136,67,.12);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 300;
  color: rgba(245,239,224,.85);
  transition: color .45s ease, border-color .45s ease;
}
.m-col:hover li,
.m-col:focus-within li,
.m-col.is-active li {
  color: var(--ink);
  border-bottom-color: rgba(53,79,75,.15);
}
.m-col li:last-child { border-bottom: 0; }
.m-col li::before {
  content: "◇";
  position: absolute;
  left: 0; top: 12px;
  color: var(--gold);
  font-size: 12px;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: 0 var(--gutter) 128px;
  background: var(--cream);
}
.contact .chapter-marker { margin-top: 128px; }
.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  background: linear-gradient(135deg, var(--moss) 0%, var(--moss-deep) 100%);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(20,32,30,.5);
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .9s, transform .9s;
}
.contact-grid.in-view { opacity: 1; transform: translateY(0); }
.contact-grid::before {
  content: "";
  position: absolute;
  right: -200px; bottom: -200px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(164,136,67,.2), transparent 70%);
  pointer-events: none;
}
.contact-grid::after {
  content: "";
  position: absolute;
  right: 32px; bottom: 24px;
  width: 240px; height: 327px;
  background: url("./assets/kp-mark.png") no-repeat center / contain;
  opacity: .14;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
.contact-type {
  padding: 72px 56px;
  color: var(--ivory);
  position: relative; z-index: 1;
}
.contact-type h2 {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: .96;
  font-weight: 300;
  letter-spacing: -.028em;
  margin: 0 0 24px;
  color: var(--ivory);
  font-variation-settings: "opsz" 144;
}
.contact-type h2 em { font-style: italic; color: var(--gold); }
.contact-type > p {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
  color: rgba(245,239,224,.82);
  max-width: 50ch;
  margin: 0 0 36px;
}
.contact-secondary {
  margin-top: 24px;
  display: flex; gap: 14px; align-items: center;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,239,224,.65);
}
.contact-secondary a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(164,136,67,.4);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.contact-secondary a:hover { color: var(--gold); border-color: var(--gold); }
.contact-secondary .dot { color: var(--gold); }

/* Inline icon — picks up text color, no layout shift */
.kp-ico {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: var(--gold);
  transition: color .2s, transform .2s;
}
a:hover > .kp-ico { color: var(--gold); transform: translateY(-1px); }
.contact-secondary .kp-ico { width: 13px; height: 13px; flex-basis: 13px; }
.p-contact a { display: inline-flex; align-items: center; gap: 7px; }
.p-contact .kp-ico { color: var(--gold); }
.p-contact a:hover .kp-ico { color: var(--gold); }

.contact-card {
  padding: 56px 40px;
  background: rgba(0,0,0,.22);
  border-left: 1px solid rgba(164,136,67,.2);
  color: var(--ivory);
  position: relative; z-index: 1;
}
.cc-label {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 18px 0 14px;
  font-weight: 600;
}
.cc-label:first-child { margin-top: 0; }
.contact-card ul {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid rgba(164,136,67,.18);
}
.contact-card li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 18px 0;
  align-items: center;
  border-bottom: 1px solid rgba(164,136,67,.18);
}
.cc-name {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  color: var(--ivory);
}
.cc-role {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,239,224,.6);
  margin-top: 2px;
}
.contact-card li a {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold);
  border-bottom: 1px solid rgba(164,136,67,.3);
  padding-bottom: 2px;
}
.contact-card li a:hover { color: var(--cream); border-color: var(--cream); }
.cc-text {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: rgba(245,239,224,.78);
  line-height: 1.5;
  margin: 0;
}

/* =========================================================
   COLOPHON
   ========================================================= */
.colophon {
  background: var(--moss);
  color: rgba(245,239,224,.78);
  padding: 0 var(--gutter) 32px;
}
.colo-skyline {
  position: relative;
  margin: 0 calc(var(--gutter) * -1) 64px;
  height: clamp(420px, 50vh, 560px);
  overflow: hidden;
}
.colo-skyline img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.9) brightness(.85);
  transform: scale(1.02);
  animation: skyline-drift 28s ease-in-out infinite alternate;
}
@keyframes skyline-drift {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1.5%, -1%); }
}
.colo-skyline::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,32,30,.0) 0%, rgba(20,32,30,.25) 40%, rgba(31,48,45,.95) 100%);
  pointer-events: none;
}
.colo-skyline figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 22px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245,239,224,.82);
  z-index: 1;
}
.cs-mark {
  font-family: var(--display);
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0;
}
.colophon { padding-top: 0; }
.colo-top { padding-top: 24px; }
.colo-top {
  max-width: var(--max);
  margin: 0 auto 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(164,136,67,.2);
  flex-wrap: wrap;
  gap: 18px;
}
.colo-logo {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 1;
}
.colo-tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: rgba(245,239,224,.7);
  margin: 0;
}
.colo-grid {
  max-width: var(--max);
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.colo-grid h4 {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 600;
}
.colo-grid ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.colo-grid a, .colo-grid p {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: rgba(245,239,224,.75);
  font-weight: 300;
  line-height: 1.55;
}
.colo-grid a { transition: color .2s; }
.colo-grid a:hover { color: var(--gold); }
.colo-grid em { color: var(--gold); font-style: italic; }
.colo-foot {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(164,136,67,.18);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,239,224,.5);
}
.colo-foot a { color: var(--gold); }

/* Built by Smola Designs */
.built-by {
  position: relative;
  z-index: 96;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(245,239,224,.42);
}
.built-by-link {
  position: relative;
  z-index: 96;
  display: inline-block;
  padding: 10px 14px;
  margin: -10px -14px;
  color: var(--gold);
  text-decoration: none;
  isolation: isolate;
}

/* Warm gold halo behind the wordmark on hover */
.built-by-link::before {
  content: "";
  position: absolute;
  inset: 2px -4px;
  border-radius: 999px;
  background: radial-gradient(
    closest-side,
    rgba(201, 169, 97, .42),
    rgba(201, 169, 97, .12) 55%,
    rgba(201, 169, 97, 0) 78%
  );
  opacity: 0;
  transform: scale(.78);
  transition:
    opacity .55s ease,
    transform .7s cubic-bezier(.22, 1, .36, 1);
  z-index: -1;
  pointer-events: none;
}
.built-by-link:hover::before,
.built-by:hover .built-by-link::before {
  opacity: 1;
  transform: scale(1);
}

/* Hairline gold underline draws from center on hover */
.built-by-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(201, 169, 97, 0),
    var(--gold) 50%,
    rgba(201, 169, 97, 0)
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .75s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}
.built-by-link:hover::after,
.built-by:hover .built-by-link::after {
  transform: scaleX(1);
}

/* Brushed-gold shimmer sweep across the letters */
.built-by-link .bb-label {
  position: relative;
  background-image: linear-gradient(
    100deg,
    var(--gold) 0%,
    var(--gold) 38%,
    #f5e8be 50%,
    var(--gold) 62%,
    var(--gold) 100%
  );
  background-size: 260% 100%;
  background-position: 100% 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  transition:
    background-position 1.1s cubic-bezier(.22, 1, .36, 1),
    letter-spacing .55s ease,
    filter .55s ease;
}
.built-by-link:hover .bb-label,
.built-by:hover .bb-label {
  background-position: 0 0;
  letter-spacing: .02em;
  filter: drop-shadow(0 0 6px rgba(201, 169, 97, .35));
}

@media (prefers-reduced-motion: reduce) {
  .built-by-link::before,
  .built-by-link::after,
  .built-by-link .bb-label {
    transition: none;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .cover-rail { display: none; }
  .masthead-nav { display: none; }
  .issue { display: none; }
  .cover-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cover-bottom,
  .cover-stats { grid-column: 1; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-figure { grid-column: 1; grid-row: auto; }
  .about-band { grid-column: 1; grid-row: auto; }
  .values-grid { grid-template-columns: 1fr; }
  .partners-head { grid-template-columns: 1fr; gap: 24px; }
  .partner, .partner.reversed { grid-template-columns: 1fr; gap: 32px; }
  .partner.reversed .p-portrait { order: 0; }
  .holding { grid-template-columns: 1fr; }
  .h-figure { grid-column: 1; }
  .h-body, .h-quote { grid-column: 1; }
  .h-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .h-tags { justify-content: flex-start; max-width: none; }
  .mandate-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { border-left: 0; border-top: 1px solid rgba(164,136,67,.2); }
  .colo-top { flex-direction: column; align-items: flex-start; }
  .colo-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .cover { padding: 120px 24px 56px; }
  .about, .values, .partners, .holdings, .mandate { padding: 80px 24px; }
  .contact-type { padding: 48px 28px; }
  .contact-card { padding: 36px 24px; }
  .h-meta { padding: 24px; }
  .h-body { padding: 28px 24px; }
  .h-quote { padding: 24px; grid-template-columns: 1fr; }
  .colo-grid { grid-template-columns: 1fr; }
  .colo-foot { flex-direction: column; gap: 10px; }
  .cover-stats { padding: 22px; }
}

/* =========================================================
   CONTACT FORM & PARTNER LINKS
   ========================================================= */
.contact-partners { margin: 28px 0 0; }
.contact-partners .cc-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(164,136,67,.2);
}
.contact-partners .cc-list li {
  border-bottom: 1px solid rgba(164,136,67,.12);
}
.contact-partners .cc-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 2px;
  position: relative;
  transition: padding .35s cubic-bezier(.2,.7,.2,1), color .25s;
}
.contact-partners .cc-list a::before {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.contact-partners .cc-list a:hover { padding-left: 14px; }
.contact-partners .cc-list a:hover::before { transform: scaleX(1); }
.contact-partners .cc-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.005em;
  color: var(--ivory);
  transition: color .25s;
}
.contact-partners .cc-list a:hover .cc-name { color: var(--gold); }
.contact-partners .cc-arrow {
  font-family: var(--display);
  font-size: 18px;
  color: rgba(164,136,67,.45);
  transition: color .35s, transform .45s cubic-bezier(.2,.7,.2,1);
  display: inline-block;
}
.contact-partners .cc-list a:hover .cc-arrow {
  color: var(--gold);
  transform: translate(4px, -4px);
}
.cc-office {
  margin: 20px 0 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: rgba(245,239,224,.55);
}

/* The form */
.kp-form {
  padding: 44px 40px 40px;
  background:
    linear-gradient(160deg, rgba(245,239,224,.06), transparent 50%),
    rgba(0,0,0,.22);
  border-left: 1px solid rgba(164,136,67,.2);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 1;
}
.form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.eb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(164,136,67,.22);
}
.form-h {
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -.015em;
  color: var(--ivory);
  margin: 0 0 8px;
}

.field {
  position: relative;
  padding-top: 24px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 10px 0 12px;
  font-family: var(--display);
  font-size: 19.5px;
  font-weight: 300;
  color: var(--ivory);
  appearance: none;
  -webkit-appearance: none;
  border-bottom: 1px solid rgba(245,239,224,.22);
  border-radius: 0;
  transition: border-color .3s;
}
.field textarea { resize: vertical; min-height: 96px; line-height: 1.55; }
.field select { cursor: pointer; padding-right: 36px; }
.field select::-ms-expand { display: none; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: transparent; }

.field label {
  position: absolute;
  left: 0;
  top: 28px;
  font-family: var(--mono);
  font-size: 13.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,239,224,.62);
  pointer-events: none;
  transition: top .25s cubic-bezier(.2,.6,.2,1),
              font-size .25s, color .25s, letter-spacing .25s;
}
/* Float label up when focused, filled, or for selects with non-empty value */
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label,
.field-select.has-value label,
.field-select:focus-within label {
  top: 0;
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--gold);
}

.field .line {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.2,.6,.2,1);
}
.field:focus-within .line { transform: scaleX(1); }

.field .chev {
  position: absolute;
  right: 4px;
  top: 32px;
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  pointer-events: none;
  transition: transform .25s;
}
.field-select:focus-within .chev { transform: translateY(2px); }

.field select option {
  background: var(--moss-deep);
  color: var(--ivory);
}

.form-foot {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-submit { align-self: flex-start; cursor: pointer; }
.form-note {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,239,224,.6);
}

/* =========================================================
   PARTNER POPUP MODAL
   ========================================================= */
.partner-modal {
  position: fixed; inset: 0;
  z-index: 110;
  visibility: hidden;
  pointer-events: none;
}
.partner-modal.open { visibility: visible; pointer-events: auto; }
.pm-backdrop {
  position: absolute; inset: 0;
  background: rgba(20,32,30,0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background .4s, backdrop-filter .4s;
}
.partner-modal.open .pm-backdrop {
  background: rgba(20,32,30,.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pm-panel {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% + 16px));
  width: min(680px, 94vw);
  max-height: 92vh;
  overflow-y: auto;
  background:
    radial-gradient(circle at 0% 0%, rgba(164,136,67,.18), transparent 55%),
    linear-gradient(160deg, rgba(245,239,224,.04), transparent 50%),
    var(--moss-deep);
  border: 1px solid rgba(164,136,67,.4);
  color: var(--ivory);
  padding: 48px 48px 40px;
  opacity: 0;
  transition: opacity .35s ease, transform .45s cubic-bezier(.2,.6,.2,1);
  box-shadow:
    0 50px 100px -30px rgba(0,0,0,.7),
    0 0 0 1px rgba(0,0,0,.2),
    inset 0 1px 0 rgba(245,239,224,.06);
}
.pm-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold), var(--gold));
  z-index: 2;
}
.pm-panel::after {
  content: "";
  position: absolute;
  right: 24px; bottom: 20px;
  width: 160px; height: 218px;
  background: url("./assets/kp-mark.png") no-repeat center / contain;
  opacity: .16;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
.pm-head, .pm-form { position: relative; z-index: 1; }
.partner-modal.open .pm-panel {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.pm-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid rgba(245,239,224,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ivory);
  transition: background .25s, border-color .25s;
}
.pm-close:hover { background: var(--gold); border-color: var(--gold); color: var(--moss-deep); }
.pm-close span {
  position: absolute;
  width: 14px; height: 1px;
  background: currentColor;
}
.pm-close span:first-child { transform: rotate(45deg); }
.pm-close span:last-child  { transform: rotate(-45deg); }

.pm-head {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 26px;
  align-items: center;
  padding-bottom: 26px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(164,136,67,.25);
}
.pm-photo {
  width: 104px; height: 104px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  border: 1px solid rgba(164,136,67,.5);
  box-shadow:
    0 0 0 4px rgba(20,32,30,.6),
    0 0 0 5px rgba(164,136,67,.45),
    0 18px 32px -12px rgba(0,0,0,.6);
  filter: saturate(.92) contrast(1.02);
}
.pm-eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pm-name {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 8px;
  color: var(--ivory);
  letter-spacing: -.015em;
}
.pm-email {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: .06em;
  color: rgba(245,239,224,.82);
  border-bottom: 1px solid rgba(164,136,67,.4);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.pm-email:hover { color: var(--gold); border-bottom-color: var(--gold); }

.pm-form { display: flex; flex-direction: column; gap: 22px; }

/* Responsive */
@media (max-width: 900px) {
  .kp-form { border-left: 0; border-top: 1px solid rgba(164,136,67,.2); padding: 32px 28px; }
  .contact-partners .cc-list { flex-direction: column; gap: 16px; }
  .pm-panel { padding: 36px 24px 28px; }
  .pm-head { grid-template-columns: 84px 1fr; gap: 18px; padding-bottom: 20px; margin-bottom: 22px; }
  .pm-photo { width: 84px; height: 84px; }
  .pm-name { font-size: 28px; }
  .pm-eyebrow { font-size: 12px; letter-spacing: .22em; }
}

/* =========================================================
   GLOBAL ANIMATION SYSTEM
   ========================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 2px;
  background: transparent;
  z-index: 200; pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  width: var(--p, 0%);
  background: linear-gradient(to right, var(--gold), var(--gold));
  transition: width .12s linear;
  box-shadow: 0 0 8px rgba(164,136,67,.4);
}

/* Hero staggered entrance on load */
.cover-eyebrow, .cover-title, .cover-bottom, .cover-stats {
  animation: hero-in .95s cubic-bezier(.2,.6,.2,1) both;
}
.cover-eyebrow { animation-delay: .15s; }
.cover-title   { animation-delay: .28s; }
.cover-bottom  { animation-delay: .62s; }
.cover-stats   { animation-delay: .82s; }
@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rail-icon { animation: rail-icon-in 1.2s cubic-bezier(.2,.6,.2,1) both; animation-delay: .4s; }
.rail-rot, .rail-linkedin { animation: fade-in 1s ease both; animation-delay: .8s; }
@keyframes rail-icon-in {
  from { opacity: 0; transform: translate(-50%, -14px); }
  to   { opacity: .95; transform: translate(-50%, 0); }
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

/* =========================================================
   REVEAL SYSTEM — bidirectional scroll-in / scroll-out
   ========================================================= */
:root {
  --rv-ease: cubic-bezier(.22, 1, .36, 1);
  --rv-dur: 1.05s;
  --rv-y: 36px;
  --rv-x: 36px;
}

.reveal,
.chapter-marker,
.about-quote,
.about-figure,
.about-band,
.values-intro,
.virtue,
.partners-head,
.partner,
.holdings-head,
.holding,
.mandate-intro,
.m-col,
.interlude-grid > *,
.contact-grid {
  opacity: 0;
  transform: translate3d(0, var(--rv-y), 0);
  transition:
    opacity var(--rv-dur) var(--rv-ease),
    transform var(--rv-dur) var(--rv-ease),
    filter var(--rv-dur) var(--rv-ease);
  will-change: opacity, transform;
}

/* Horizontal entries on alternating blocks */
.partner          { transform: translate3d(calc(var(--rv-x) * -1), 12px, 0); }
.partner.reversed { transform: translate3d(var(--rv-x), 12px, 0); }
.holding.alt      { transform: translate3d(var(--rv-x), var(--rv-y), 0); }

/* In-view — entered state */
.in-view {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* Image breathing — scale + brightness wash on figure entries */
.about-figure img,
.p-portrait img,
.h-figure img {
  transform: scale(1.05);
  filter: brightness(.95) saturate(.9);
  transition: transform 1.4s var(--rv-ease), filter 1.4s var(--rv-ease);
}
.about-figure.in-view img,
.partner.in-view .p-portrait img,
.holding.in-view .h-figure img {
  transform: scale(1);
  filter: brightness(1) saturate(1);
}

/* Chapter-marker line draw */
.chapter-marker .cm-line {
  width: 0;
  transition: width .9s var(--rv-ease) .12s;
}
.chapter-marker.in-view .cm-line { width: 64px; }

/* Stagger groups — virtue grid and mandate cols */
.values-grid .virtue:nth-child(1) { transition-delay: .04s; }
.values-grid .virtue:nth-child(2) { transition-delay: .14s; }
.values-grid .virtue:nth-child(3) { transition-delay: .24s; }
.values-grid .virtue:nth-child(4) { transition-delay: .34s; }
.mandate .m-col:nth-child(1) { transition-delay: .04s; }
.mandate .m-col:nth-child(2) { transition-delay: .14s; }
.mandate .m-col:nth-child(3) { transition-delay: .24s; }
.mandate .m-col:nth-child(4) { transition-delay: .34s; }

/* Hover lifts */
.partner       { transition: transform .5s cubic-bezier(.2,.6,.2,1), opacity 1s, transform 1s; }
.partner:hover { transform: translateY(-6px); }
.holding:not(.alt):hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 70px -32px rgba(20,32,30,.45);
  transition: transform .5s, box-shadow .5s;
}
.m-col       { transition: transform .35s, background .35s, border-color .35s; }
.m-col:hover { transform: translateY(-4px); }
.virtue      { transition: transform .35s, background .45s cubic-bezier(.2,.7,.2,1), border-color .45s ease, color .45s ease; }
.about-figure       { transition: transform .8s; }
.about-figure:hover { transform: translateY(-6px); }

/* Idle gold shimmer on footer banner */
.colo-skyline::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(164,136,67,.12) 50%, transparent 70%);
  animation: shimmer 9s ease-in-out infinite;
  z-index: 1; pointer-events: none;
}
@keyframes shimmer {
  0%, 100% { left: -100%; }
  50%      { left: 100%; }
}

/* CTA arrow idle micro-pulse */
@keyframes btn-pulse {
  0%, 88%, 100% { transform: translate(0,0); }
  92%           { transform: translate(3px,-3px); }
  96%           { transform: translate(0,0); }
}
.btn-cream .arrow,
.btn-gold .arrow { animation: btn-pulse 7s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
