/* Tandem Venture Partners — homepage
   ink #0B0B0B · olive #303D37 · linen #DAD9C8 · tan #C6B07A · type #F3EEE4 */

:root {
  --ink: #0B0B0B;
  --olive: #303D37;
  --linen: #DAD9C8;
  --sand: #C6B07A; /* military tan */
  --type: #F3EEE4;
  --type-dim: rgba(243, 238, 228, 0.62);
  --hair: rgba(218, 217, 200, 0.14);
  --hair-strong: rgba(218, 217, 200, 0.28);
  --display: "Geist", ui-sans-serif, system-ui, sans-serif;
  --sans: "Geist", ui-sans-serif, system-ui, sans-serif;
  --pad: clamp(1.25rem, 4.2vw, 3.5rem);
  --max: 1360px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
  color: var(--type);
}

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--type);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }
button { cursor: pointer; }
::selection { background: var(--olive); color: var(--type); }

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--sand);
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
}
.skip:focus { top: 1rem; }

/* ---------- film grain ---------- */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.11;
  mix-blend-mode: overlay;
}
.grain svg { width: 100%; height: 100%; display: block; }

/* ---------- cover ---------- */
.cover {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background-color: var(--ink);
  overflow: hidden;
}
.cover-film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
  pointer-events: none;
}
.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(11,11,11,0.18) 0%, rgba(11,11,11,0.08) 38%, rgba(11,11,11,0.55) 78%, #0B0B0B 100%),
    linear-gradient(90deg, rgba(11,11,11,0.35) 0%, rgba(11,11,11,0.05) 46%, transparent 70%);
  box-shadow: inset 0 0 140px rgba(0,0,0,0.42);
}
.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}


header.site-header,
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 100000 !important;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem var(--pad) 0.9rem;
  background: #0B0B0B !important;
  border-bottom: 1px solid rgba(218, 217, 200, 0.18);
}

.brand {
  flex: 0 0 auto;
  display: block;
  width: 7.6rem;
}
.brand img {
  width: 100%;
  height: auto;
  filter: none !important;
  -webkit-filter: none !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(243, 238, 228, 0.28);
  color: #F3EEE4;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 14px;
  height: 1px;
  background: #F3EEE4;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  padding-top: 0.35rem;
}

.nav a {
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  color: #F3EEE4 !important;
  background: transparent !important;
  transition: color 0.2s var(--ease);
}
.nav a:hover { color: #C6B07A !important; }
.nav a.is-current { color: #C6B07A !important; }

.nav a.pill {
  background: #303D37 !important;
  color: #F3EEE4 !important;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}
.nav a.pill:hover { color: #F3EEE4 !important; filter: brightness(1.12); }

.hero {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 0 var(--pad) clamp(3.2rem, 8vh, 5.5rem);
  max-width: 62rem;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.35rem, 5.2vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--type);
}

.hero .dek {
  margin-top: 1.05rem;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  letter-spacing: -0.03em;
  color: rgba(243, 238, 228, 0.78);
  font-weight: 500;
}

.hero .cta {
  display: inline-block;
  margin-top: 1.35rem;
  color: var(--sand);
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 0.12rem;
  transition: opacity 0.2s var(--ease);
}
.hero .cta:hover { opacity: 0.72; }

/* ---------- shared section chrome ---------- */
.section {
  position: relative;
  padding: clamp(4.5rem, 10vh, 7.5rem) var(--pad);
  border-top: 1px solid var(--hair);
}

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

.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  margin-bottom: 1.6rem;
}

/* ---------- how we invest ---------- */
.invest-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2.6rem, 5.5vw, 5.4rem);
  align-items: stretch;
}

.stages {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hair);
}

.stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--type);
  border: 0;
  border-bottom: 1px solid var(--hair);
  padding: 1.35rem 1.15rem;
  cursor: pointer;
  transition: background 0.28s var(--ease), color 0.28s var(--ease);
}

.stage:hover:not(.is-active) {
  background: rgba(218, 217, 200, 0.045);
}

.stage.is-active {
  background: var(--linen);
  color: var(--ink);
}

.stage-meta {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}

.stage-name {
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stage-size {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--type-dim);
  text-transform: none;
}
.stage.is-active .stage-size { color: rgba(11, 11, 11, 0.58); }

.stage-chip {
  flex: 0 0 auto;
  background: var(--olive);
  color: var(--type);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  pointer-events: none;
}
.stage.is-active .stage-chip {
  background: var(--ink);
  color: var(--type);
}
.stage-chip-spv {
  background: transparent;
  color: var(--sand);
  border: 1px solid var(--sand);
}
.stage.is-active .stage-chip-spv {
  background: var(--ink);
  color: var(--sand);
  border-color: var(--sand);
}

.invest-panel {
  position: relative;
  padding: 0.2rem 0 0.2rem 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 18rem;
}

.invest-panel::before {
  content: "";
  position: absolute;
  left: -2.25rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--hair);
}

.panel-index {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--sand);
  margin-bottom: 0.85rem;
}

.panel-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.panel-body {
  color: rgba(243, 238, 228, 0.78);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 34rem;
}
.panel-body p + p { margin-top: 0.9rem; }

/* ---------- companies ---------- */
.companies-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 0;
}

.companies-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.names {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.name-col + .name-col {
  border-left: 1px solid var(--hair);
  padding-left: 1.6rem;
}
.name-col { min-width: 0; }

.name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  letter-spacing: -0.02em;
  padding: 1.05rem 1.25rem 1.05rem 0;
  border-bottom: 1px solid var(--hair);
  color: var(--type);
}

/* ---------- pitch ---------- */
.pitch {
  background-color: var(--ink);
  isolation: isolate;
  border-top: 1px solid rgba(218, 217, 200, 0.22);
  background-image: none;
}
.pitch::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 1px;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--ink);
  background-image:
    linear-gradient(180deg, #0B0B0B 0%, rgba(11,11,11,0.88) 42%, rgba(11,11,11,0.42) 100%),
    url("../assets/mountains.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.pitch > * { position: relative; z-index: 1; }

.pitch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.pitch-copy h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.pitch-copy .lede {
  margin-top: 1rem;
  font-size: 1.12rem;
  color: rgba(243, 238, 228, 0.82);
}

.stable-line {
  margin-top: 4.5rem;
  font-size: 0.92rem;
  color: var(--type-dim);
  max-width: 22rem;
}

.pitch-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 238, 228, 0.78);
  margin-bottom: 0.45rem;
}

.field input[type="text"],
.field input[type="email"],
.field textarea {
  width: 100%;
  background: rgba(243, 238, 228, 0.06);
  border: 1px solid var(--hair-strong);
  color: #F3EEE4;
  padding: 0.85rem 0.95rem;
  font-size: 0.95rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s var(--ease);
  font-family: inherit;
}
.field textarea {
  min-height: 7.2rem;
  resize: vertical;
  line-height: 1.45;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(243, 238, 228, 0.32); }
.field input:focus,
.field textarea:focus { border-color: var(--sand); }

.drop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 8.5rem;
  border: 1px dashed var(--hair-strong);
  background: rgba(243, 238, 228, 0.025);
  color: var(--type-dim);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.drop:hover, .drop.is-drag { border-color: var(--sand); background: rgba(198, 176, 122, 0.10); }
.drop input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.drop .arrow {
  width: 18px;
  height: 18px;
  margin-bottom: 0.2rem;
}
.drop .drop-title { color: var(--type); font-size: 0.92rem; }
.drop .drop-hint { font-size: 0.75rem; color: var(--type-dim); }

.send {
  margin-top: 0.35rem;
  background: var(--olive);
  color: var(--type);
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: filter 0.2s var(--ease), transform 0.2s var(--ease);
}
.send:hover { filter: brightness(1.12); }
.send:active { transform: translateY(1px); }

.thanks {
  display: none;
  padding: 2rem 0;
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.thanks.is-on { display: block; }
.pitch-form.is-sent { display: none; }

/* ---------- focus ---------- */
:focus-visible {
  outline: 1px solid var(--sand);
  outline-offset: 3px;
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 4.6rem;
    right: var(--pad);
    left: var(--pad);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(11, 11, 11, 0.94);
    border: 1px solid var(--hair);
    padding: 0.4rem 0;
    backdrop-filter: blur(12px);
  }
  .nav.is-open { display: flex; }
  .nav a {
    display: block;
    width: 100%;
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid var(--hair);
  }
  .nav a.pill {
    width: calc(100% - 1.4rem);
    margin: 0.7rem 0.7rem 0.85rem;
    text-align: center;
    border-bottom: 0;
  }

  .invest-grid,
  .pitch-grid { grid-template-columns: 1fr; }
  .invest-panel { min-height: 0; padding-top: 0.5rem; }
  .invest-panel::before { display: none; }
  .stable-line { margin-top: 2.4rem; }

  .names { grid-template-columns: 1fr; }
  .name-col + .name-col {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 520px) {
  .brand { width: 6.2rem; }
  .hero h1 { font-size: 2.35rem; }
  .stage { padding: 1.1rem 0.8rem; }
  .stage-chip { font-size: 0.62rem; padding: 0.35rem 0.62rem; }
}

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

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.4rem, 5vw, 5.2rem);
  align-items: center;
}
.story h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--type);
}
.story-body {
  margin-top: 1.8rem;
}
.story-body p {
  color: var(--type);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.55;
  max-width: 28rem;
}
.story-body p + p {
  margin-top: 1.2rem;
  color: var(--type-dim);
}
.story-photo {
  margin: 0;
}
.story-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(1) contrast(1.08);
}
.story-photo figcaption {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--type);
}
.story-photo figcaption em {
  display: block;
  margin-top: 0.22rem;
  font-style: normal;
  letter-spacing: 0.16em;
  color: var(--sand);
  font-weight: 500;
}
@media (max-width: 800px) {
  .story-grid { grid-template-columns: 1fr; }
}

.where {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(5rem, 12vh, 8.5rem);
  padding-bottom: clamp(5rem, 12vh, 8.5rem);
}
.where .wrap {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}
.where-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(2.4rem, 5vw, 4.6rem);
  align-items: center;
  width: 100%;
}
.where h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--type);
}
.where-line {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.03em;
  color: rgba(243, 238, 228, 0.72);
  margin-top: 0.55rem;
  max-width: 16ch;
}
.where-dek {
  margin-top: 1.6rem;
  color: var(--type-dim);
  font-size: 1.02rem;
  max-width: 24rem;
}
.where-markets {
  list-style: none;
  border-top: 1px solid var(--hair);
}
.where-markets li {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--hair);
}
.m-i {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--sand);
  width: 1.6rem;
  flex: 0 0 auto;
}
.m-n {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.where-markets li.is-wide .m-n { color: var(--sand); }
@media (max-width: 800px) {
  .where { min-height: 0; }
  .where-grid { grid-template-columns: 1fr; }
  .where-map img { width: 100%; margin-left: 0; }
}


/* ---------- how we create value ---------- */
.value {
  background: var(--ink);
}
.value h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--type);
  max-width: 18ch;
}
.value-dek {
  margin-top: 1.15rem;
  max-width: 44rem;
  color: var(--type-dim);
  font-size: 1.05rem;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 3.2rem;
  border-top: 1px solid var(--hair);
  align-items: stretch;
}
.value-card {
  position: relative;
  padding: 1.7rem 2.1rem 1.35rem 2.1rem;
  border-right: 0;
}
.value-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.7rem;
  bottom: 0;
  right: 0;
  width: 1px;
  background: var(--hair);
}
.value-card:last-child { padding-right: 0; }
.value-card:first-child { padding-left: 0; }
.value-index {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--sand);
  margin-bottom: 0.85rem;
}
.value-card h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
  color: var(--type);
}
.value-card h3 a,
.value-card h3 a:link,
.value-card h3 a:visited,
.value-card h3 a:hover {
  color: var(--type) !important;
}
.value-card p {
  color: var(--type-dim);
  font-size: 0.95rem;
  max-width: 32ch;
}
@media (max-width: 800px) {
  .value-grid { grid-template-columns: 1fr; }
  .value-card { border-right: 0; border-bottom: 1px solid var(--hair); padding: 1.6rem 0; }
}

.where-points {
  list-style: none;
  margin-top: 2.2rem;
  max-width: 28rem;
}
.where-points li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--hair);
  color: var(--type-dim);
  font-size: 0.98rem;
  line-height: 1.45;
}
.where-points li:last-child { border-bottom: 1px solid var(--hair); }
.where-points strong { color: var(--type); font-weight: 600; }
.where-map {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.where-map img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  margin-left: 0;
}
.where-map figcaption {
  display: flex;
  gap: 1.4rem;
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--type-dim);
}
.leg::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.45rem;
  vertical-align: -1px;
  background: #2a3731;
}
.leg.hot::before { background: #3d5248; }
.leg.mid::before { background: #33443c; }
.leg.low::before { background: #2a3731; }

/* ---------- inner pages (team, etc.) ---------- */
.nav a.is-current { color: var(--sand); }

body { padding-top: 4.6rem; }
body.inner { padding-top: 4.6rem; }
.inner .site-header {
  position: fixed !important;
  background: #0B0B0B !important;
}

.page-head {
  padding: clamp(3.2rem, 8vh, 5.8rem) var(--pad) 1.8rem;
}

.page-head h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--type);
}

.team-section {
  padding: 0 var(--pad) clamp(4.5rem, 10vh, 7.5rem);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
}

.person {
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 2.2rem 2.1rem 1.9rem;
  min-width: 0;
}

.person-open,
.person-static {
  display: block;
  width: 100%;
  background: transparent !important;
  background-color: transparent !important;
  border: 0;
  color: inherit !important;
  text-align: left;
  padding: 0;
  font-family: inherit;
  box-shadow: none !important;
}

.person-open { cursor: pointer; }
.person-open:hover,
.person-open:focus,
.person-open:focus-visible,
.person.is-bio:hover {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.person.is-bio:hover {
  background: rgba(218, 217, 200, 0.035);
}

.person-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--olive);
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  filter: grayscale(1) contrast(1.1) brightness(0.72);
  transition: transform 0.55s var(--ease);
}

.person-meta {
  padding-top: 1.15rem;
}

.person-name {
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--type);
  transition: color 0.2s var(--ease);
  min-width: 0;
}

.person-title {
  margin-top: 0.28rem;
  color: var(--type-dim);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.person.is-bio:hover .person-name,
.person.is-bio:focus-within .person-name { color: var(--sand) !important; }
.person.is-bio:hover .person-title,
.person.is-bio:focus-within .person-title { color: var(--type-dim) !important; }

.person.is-bio:hover .person-photo img,
.person.is-bio:focus-within .person-photo img {
  transform: scale(1.035);
}

body.is-bio-open { overflow: hidden; }

.bio-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(11, 11, 11, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.bio-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.bio-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  width: min(32rem, 100%);
  background: var(--ink);
  border-left: 1px solid var(--hair);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  padding: 1.6rem 2.1rem 3.2rem;
}

.bio-drawer.is-open { transform: translateX(0); }

.bio-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.6rem;
}

.bio-close {
  background: none;
  border: 0;
  color: var(--sand);
  font-family: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0 0 0.12rem;
  border-bottom: 1px solid var(--sand);
  transition: opacity 0.2s var(--ease);
}

.bio-close:hover { opacity: 0.72; }

.bio-photo {
  width: 7.6rem;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--olive);
  margin-bottom: 1.25rem;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  filter: grayscale(1) contrast(1.1) brightness(0.72);
}

.bio-name {
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.bio-name a {
  color: inherit !important;
  pointer-events: auto !important;
  cursor: pointer;
}
.bio-name a:hover { color: var(--sand) !important; }
.bio-title {
  margin-top: 0.35rem;
  color: var(--type-dim);
  font-size: 0.92rem;
}

.bio-quote {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  line-height: 1.32;
  color: var(--sand);
  margin: 1.45rem 0 2rem;
}

.bio-block h3 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.bio-block p {
  color: rgba(243, 238, 228, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
}

.bio-block + .bio-block { margin-top: 1.85rem; }

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .person { padding: 1.8rem 1.5rem 1.6rem; }
}

@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
  .person { padding: 1.7rem 1.35rem 1.5rem; }
  .bio-drawer { width: 100%; border-left: 0; }
}

/* ---------- portfolio catalog ---------- */
.co-filters {
  display: flex;
  gap: 1.7rem;
  margin-top: 1.85rem;
}

.co-filter {
  background: none !important;
  background-color: transparent !important;
  border: 0;
  color: #F3EEE4 !important;
  font-family: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0 0.4rem;
  border-bottom: 1px solid transparent;
  box-shadow: none !important;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.co-filter:hover { color: var(--sand) !important; background: transparent !important; }
.co-filter.is-on {
  color: var(--sand) !important;
  background: transparent !important;
  border-bottom-color: var(--sand) !important;
}

.catalog-section {
  padding: 0 var(--pad) clamp(4.5rem, 10vh, 7.5rem);
}

.catalog {
  border-top: 1px solid var(--hair);
}

.co-item { min-width: 0; }

.co-open {
  display: grid;
  grid-template-columns: 6.2rem minmax(0, 1fr) 4.6rem 10.8rem;
  gap: 1.15rem 1.6rem;
  align-items: center;
  width: 100%;
  background: transparent !important;
  border: 0;
  border-bottom: 1px solid var(--hair);
  color: inherit !important;
  text-align: left;
  font-family: inherit;
  padding: 2.2rem 0.15rem;
  cursor: pointer;
  box-shadow: none !important;
  transition: background 0.28s var(--ease);
}

.co-open:hover,
.co-open:focus-visible {
  background: rgba(198, 176, 122, 0.08) !important;
  color: inherit !important;
}

.co-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 6.2rem;
  height: 2.15rem;
  overflow: hidden;
  background: transparent;
  flex: 0 0 auto;
}
.co-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.05rem 0;
  filter: grayscale(1) brightness(0) invert(1);
  transition: opacity 0.28s var(--ease);
}
.co-open:hover .co-logo img,
.co-open:focus-visible .co-logo img {
  opacity: 1;
}

.co-open:not(.media-open) .co-name { display: none !important; }
.media-title,
.media-source,
.media-open,
.media-open .co-name,
.media-open .co-tag {
  color: #F3EEE4 !important;
}
.media-title { display: block !important; }
.media-open .co-chip {
  color: #F3EEE4 !important;
  background: #303D37 !important;
}

.co-tag {
  color: var(--type-dim);
  font-size: 0.95rem;
  line-height: 1.4;
  max-width: 38rem;
}

.co-year {
  font-size: 0.88rem;
  color: var(--type-dim);
  letter-spacing: 0.02em;
  justify-self: end;
}

.co-chip {
  flex: 0 0 auto;
  justify-self: end;
  background: var(--olive);
  color: var(--type);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid transparent;
}

.co-chip-spv {
  background: transparent;
  color: var(--sand);
  border-color: var(--sand);
}

.co-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-self: end;
  justify-content: flex-end;
}
.co-chip-acquired {
  background: var(--sand);
  color: var(--ink);
  border-color: var(--sand);
}
.co-status {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sand);
}
.co-chip-both {
  background: transparent;
  color: var(--type);
  border-color: var(--hair-strong);
}

.co-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 1.7rem 0 2.05rem;
  border-top: 1px solid var(--hair);
}

.co-meta > div {
  padding: 1.15rem 0 1.2rem;
  border-bottom: 1px solid var(--hair);
}

.co-meta > div:nth-child(odd) {
  padding-right: 1.35rem;
  border-right: 1px solid var(--hair);
}

.co-meta > div:nth-child(even) {
  padding-left: 1.35rem;
}

.co-meta dt {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.co-meta dd {
  color: var(--type);
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.co-meta-tight {
  margin: 0.15rem 0 0;
}

.co-blurb {
  color: rgba(243, 238, 228, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
}

.co-team {
  list-style: none;
  border-top: 1px solid var(--hair);
}

.co-team li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--hair);
  color: var(--type);
  font-size: 0.98rem;
}

.co-links {
  display: flex;
  gap: 0.75rem;
  margin: 0.85rem 0 2.35rem;
}
.co-site {
  display: inline-block;
  border: 1px solid rgba(198, 176, 122, 0.45);
  color: #C6B07A !important;
  background: transparent !important;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
}
.co-site:hover { border-color: #C6B07A; color: #F3EEE4 !important; }
.co-news {
  color: var(--type);
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.co-news a { color: var(--type); border-bottom: 1px solid var(--sand); }
.co-news a:hover { color: var(--sand); }

.co-drawer-logo {
  width: 100%;
  max-width: 14rem;
  height: auto;
  min-height: 2.4rem;
  overflow: visible;
  background: transparent;
  margin: 0 0 1.35rem;
  padding-top: 0.15rem;
}
.co-drawer-logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 3.4rem;
  object-fit: contain;
  object-position: left center;
  padding: 0;
  display: block;
  filter: grayscale(1) brightness(0) invert(1);
}

.co-error {
  padding: 2rem 0;
  color: var(--type-dim);
}

@media (max-width: 800px) {
  .co-open {
    grid-template-columns: 4.4rem 1fr auto;
    grid-template-areas:
      "logo tag chip"
      "logo year year";
    gap: 0.38rem 1rem;
    align-items: start;
    padding: 1.7rem 0;
  }
  .co-logo { grid-area: logo; width: 4.4rem; }
  .co-tag { grid-area: tag; max-width: none; }
  .co-year { grid-area: year; justify-self: start; margin-top: 0.2rem; }
  .co-chips { grid-area: chip; justify-self: end; margin-top: 0.12rem; }
}

@media (max-width: 560px) {
  .co-filters { gap: 1.15rem; }
  .co-meta { grid-template-columns: 1fr; }
  .co-meta > div:nth-child(odd) {
    padding-right: 0;
    border-right: 0;
  }
  .co-meta > div:nth-child(even) { padding-left: 0; }
}


/* ---------- careers / job board ---------- */
.jobs-page { min-height: 100vh; }

.page-head .dek {
  margin-top: 0.85rem;
  max-width: 36rem;
  color: var(--type-dim);
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

.jobs-search {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 1.5rem;
  margin: 0 0 1.45rem;
}
.jobs-search input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hair);
  border-radius: 0;
  color: var(--type);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: 0.62rem 0 0.72rem;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}
.jobs-search input:focus {
  border-bottom-color: var(--sand);
}
.jobs-search input::placeholder {
  color: var(--type-dim);
}

.jobs-count {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  margin: 0 0 1.35rem;
}

.jobs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
}
.jobs-grid[hidden],
.jobs-roles[hidden] { display: none; }

.job-card {
  min-width: 0;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}

.job-card-hit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  font-family: inherit;
  padding: 1.65rem 1.55rem 1.4rem;
  cursor: pointer;
  box-shadow: none;
}
.job-card-hit.is-static { cursor: default; }
.job-card-hit:hover,
.job-card-hit:focus-visible {
  background: rgba(198, 176, 122, 0.06);
}

.job-card-logo {
  width: 3.2rem;
  height: 3.2rem;
  background: var(--ink);
  border: 1px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.05rem;
  flex: 0 0 auto;
}
.job-card-logo img {
  width: 2.15rem;
  height: 2.15rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.job-card-name {
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--type);
}
.job-card-count {
  display: block;
  margin-top: 0.28rem;
  color: var(--type-dim);
  font-size: 0.86rem;
}
.job-card .co-chip {
  margin-top: 0.7rem;
  white-space: normal;
  line-height: 1.3;
  justify-self: start;
}
.job-card-blurb {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 0.75rem;
  color: var(--type-dim);
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 36rem;
}
.job-card-cta {
  display: inline-block;
  margin-top: auto;
  padding-top: 1.15rem;
  color: var(--sand) !important;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--sand);
  line-height: 1.2;
  background: none;
}
.job-card-cta:hover { color: var(--type) !important; }

.jobs-roles {
  border-top: 1px solid var(--hair);
}
.job-role {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr) auto;
  gap: 0.6rem 1.2rem;
  align-items: baseline;
  padding: 1.2rem 0.1rem;
  border-bottom: 1px solid var(--hair);
}
.job-role-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: var(--type);
}
.job-role-co {
  margin-top: 0.22rem;
  color: var(--type-dim);
  font-size: 0.86rem;
}
.job-role-meta {
  color: var(--type-dim);
  font-size: 0.88rem;
}

.job-drawer-roles {
  list-style: none;
  border-top: 1px solid var(--hair);
  margin: 1.7rem 0 0;
}
.job-drawer-roles li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hair);
}
.job-drawer-title {
  color: var(--type);
  font-size: 0.98rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.job-drawer-meta {
  margin-top: 0.28rem;
  color: var(--type-dim);
  font-size: 0.82rem;
}
.job-drawer-roles .co-site,
.job-role .co-site {
  white-space: nowrap;
  align-self: center;
}

@media (max-width: 800px) {
  .jobs-search { grid-template-columns: 1fr; gap: 0.85rem; }
  .jobs-grid { grid-template-columns: 1fr; }
  .job-role {
    grid-template-columns: 1fr auto;
    grid-template-areas: "main apply" "meta apply";
  }
  .job-role-main { grid-area: main; }
  .job-role-meta { grid-area: meta; }
}


/* ---------- media catalog ---------- */
.media-open {
  grid-template-columns: 8.8rem minmax(0, 1fr) 11.5rem 5.6rem;
  align-items: center;
  padding: 1.35rem 0.15rem;
  gap: 1.1rem 1.4rem;
}
.media-thumb {
  display: block;
  width: 8.8rem;
  height: 5rem;
  overflow: hidden;
  background: #0B0B0B;
  flex: 0 0 auto;
}
.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) contrast(1.08) !important;
  transition: filter 0.28s var(--ease);
}
.media-open:hover .media-thumb img,
.media-open:focus-visible .media-thumb img {
  filter: grayscale(1) contrast(1.08) !important;
}
.media-title {
  font-size: 1.14rem;
  letter-spacing: -0.03em;
  line-height: 1.28;
  max-width: 40rem;
}
.media-source {
  justify-self: end;
  text-align: right;
  color: var(--type-dim);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: none;
}
.media-hero {
  width: calc(100% + 4.2rem);
  margin: 0 -2.1rem 1.45rem;
  min-height: 0;
  height: auto;
  overflow: visible;
  background: #0B0B0B;
}
.media-hero img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  filter: grayscale(1) contrast(1.08) !important;
  display: block;
}
.media-body {
  margin-top: 1.45rem;
}
.media-body p {
  color: rgba(243, 238, 228, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
}
.media-body p + p { margin-top: 1.05rem; }

@media (max-width: 800px) {
  .media-open {
    grid-template-columns: 4.8rem 1fr auto;
    grid-template-areas:
      "thumb name chip"
      "thumb tag tag";
    gap: 0.35rem 1rem;
    align-items: center;
  }
  .media-thumb { grid-area: thumb; width: 7.2rem; height: 4.2rem; background: #0B0B0B; }
  .media-title { grid-area: name; font-size: 1.05rem; }
  .media-source { grid-area: tag; justify-self: start; text-align: left; }
}


/* ---------- stable catalog ---------- */
.stable-open {
  display: grid;
  grid-template-columns: 3.4rem 16rem minmax(0, 1fr) 16rem;
  gap: 1.15rem 1.6rem;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid var(--hair);
  padding: 2.2rem 0.15rem;
  transition: background 0.28s var(--ease);
}
.stable-open:hover {
  background: rgba(198, 176, 122, 0.08);
}
.st-thumb {
  display: block;
  width: 3.4rem;
  height: 3.4rem;
  overflow: hidden;
  background: var(--olive);
  flex: 0 0 auto;
}
.st-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.08);
}
.st-name {
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.28rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--type);
}
.st-title,
.st-co {
  color: var(--type-dim);
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 800px) {
  .stable-open {
    grid-template-columns: 3.4rem 1fr;
    grid-template-areas:
      "thumb name"
      "thumb title"
      "thumb co";
    gap: 0.28rem 1rem;
    align-items: center;
    padding: 1.7rem 0;
  }
  .st-thumb { grid-area: thumb; }
  .st-name { grid-area: name; font-size: 1.18rem; }
  .st-title { grid-area: title; }
  .st-co { grid-area: co; }
}


/* ---------- investor reporting ---------- */
.ir-stack {
  padding: 0 var(--pad) clamp(4.5rem, 10vh, 7.5rem);
}

.ir-section {
  padding: clamp(2.35rem, 5vh, 3.4rem) 0;
  border-top: 1px solid var(--hair);
}

.ir-section h2 {
  font-family: var(--display);
  font-weight: 650;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--type);
}

.ir-section .value-dek { margin-top: 0.9rem; }

.ir-section .kicker { margin-bottom: 1.15rem; }

.ir-section .co-links {
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.ir-copy {
  max-width: 44rem;
  color: rgba(243, 238, 228, 0.78);
  font-size: 1.02rem;
  line-height: 1.65;
}

.ir-copy + .ir-copy { margin-top: 1.05rem; }

.ir-copy a {
  color: var(--type);
  border-bottom: 1px solid var(--sand);
}

.ir-copy a:hover { color: var(--sand); }

.ir-line {
  margin-top: 1.15rem;
  max-width: 44rem;
  color: var(--type);
  font-size: 1.02rem;
  line-height: 1.5;
}

.ir-list-kicker {
  margin: 2.6rem 0 0;
}

.ir-list {
  border-top: 1px solid var(--hair);
  margin-top: 1.1rem;
}

.ir-row {
  display: grid;
  gap: 0.45rem 1.6rem;
  align-items: baseline;
  width: 100%;
  padding: 1.45rem 0.15rem;
  border-bottom: 1px solid var(--hair);
  color: inherit;
  transition: background 0.28s var(--ease);
}

.ir-row:hover,
.ir-row:focus-visible {
  background: rgba(218, 217, 200, 0.035);
}

.ir-exp {
  grid-template-columns: 18rem minmax(0, 1fr);
  align-items: baseline;
}

.ir-content {
  grid-template-columns: 5.6rem minmax(14rem, 1.2fr) 12.8rem minmax(0, 1.35fr);
  align-items: center;
  padding: 1.35rem 0.15rem;
}
.ir-thumb {
  display: block;
  width: 5.6rem;
  height: 3.7rem;
  overflow: hidden;
  background: var(--olive);
  flex: 0 0 auto;
}
.ir-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.ir-row:hover .ir-thumb img,
.ir-row:focus-visible .ir-thumb img {
  filter: grayscale(1) contrast(1.08);
}
.ir-hero {
  width: 100%;
  height: 14rem;
  overflow: hidden;
  background: var(--olive);
  margin: 0 0 1.6rem;
}
.ir-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: grayscale(1) contrast(1.08) brightness(0.82);
}
.ir-sharefile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.6rem 2.4rem;
  align-items: center;
  margin: 0 0 clamp(1.6rem, 4vh, 2.4rem);
  padding: clamp(1.6rem, 3.5vw, 2.4rem) clamp(1.4rem, 3vw, 2.2rem);
  background: var(--sand);
  color: var(--ink);
}
.ir-sharefile .kicker { color: var(--ink); opacity: 0.62; }
.ir-sharefile h2 {
  font-family: var(--display);
  font-weight: 650;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 0.35rem;
}
.ir-sharefile p:not(.kicker) {
  margin-top: 0.7rem;
  max-width: 38rem;
  color: rgba(11, 11, 11, 0.78);
  font-size: 1.02rem;
  line-height: 1.55;
}
.ir-sharefile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  background: #0B0B0B !important;
  color: #F3EEE4 !important;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.72rem 1.05rem;
  white-space: nowrap;
  border: 1px solid #0B0B0B;
  line-height: 1;
  height: auto;
  min-height: 0;
}
.ir-sharefile-btn:hover,
.ir-sharefile-btn:focus-visible {
  background: #303D37 !important;
  border-color: #303D37;
  color: #F3EEE4 !important;
}

.ir-row-name {
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.14rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--type);
  transition: color 0.2s var(--ease);
}

.ir-row:hover .ir-row-name,
.ir-row:focus-visible .ir-row-name { color: var(--sand); }

.ir-row-meta {
  justify-self: end;
  text-align: right;
  color: var(--type-dim);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.ir-row-dek {
  color: var(--type-dim);
  font-size: 0.95rem;
  line-height: 1.45;
}

@media (max-width: 800px) {
  .ir-sharefile {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.2rem;
  }
  .ir-sharefile-btn { justify-self: start; }
  .ir-hero { height: 10rem; }
  .ir-exp {
    grid-template-columns: 1fr;
    padding: 1.25rem 0;
  }
  .ir-content {
    grid-template-columns: 4.8rem 1fr;
    grid-template-areas:
      "thumb name"
      "thumb meta"
      "thumb dek";
    padding: 1.25rem 0;
  }
  .ir-content .ir-thumb { grid-area: thumb; width: 4.8rem; height: 3.2rem; }
  .ir-content .ir-row-name { grid-area: name; }
  .ir-content .ir-row-meta { grid-area: meta; }
  .ir-content .ir-row-dek { grid-area: dek; }
  .ir-row-meta {
    justify-self: start;
    text-align: left;
  }
  .ir-row-name { font-size: 1.08rem; }
}

/* hide old Elementor header + admin bar on the front */
.elementor-location-header,
[data-elementor-type="header"] {
  display: none !important;
}
#wpadminbar { display: none !important; }
html.admin-bar { margin-top: 0 !important; }
html.admin-bar .site-header { top: 0; }

.site-footer {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding: 1.6rem var(--pad) 2rem;
  border-top: 1px solid var(--hair);
  background: var(--ink);
}
.site-footer .brand { width: 6.4rem; }
.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.15rem 1.6rem;
}
.footer-nav a {
  font-size: 0.84rem;
  color: rgba(243, 238, 228, 0.88);
}
.footer-nav a:hover { color: var(--sand); }

.elementor-location-header,
.elementor-location-footer,
[data-elementor-type="header"],
[data-elementor-type="footer"],
.elementor-theme-builder-content-header,
.elementor-theme-builder-content-footer {
  display: none !important;
}
#wpadminbar { display: none !important; }
html.admin-bar { margin-top: 0 !important; }
html.admin-bar .site-header { top: 0; }


/* live links — never let overlays eat clicks */
a.co-site, a.ir-sharefile-btn, a.ir-row, .bio-drawer a, .bio-name a, a.job-apply, a.job-card-cta {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative;
  z-index: 6;
}
