:root{
  --paper:#f2f0e8;
  --paper-alt:#e9e7dd;
  --ink:#f4f2ed;
  --muted:#adafa9;
  --dark:#0d0e0c;
  --dark-line:#343632;
  --brass:#bfac74;
  --gold:#d1c18d;
  --line:#ffffff29;
  --serif:"Newsreader",Georgia,serif;
  --sans:"DM Sans",Arial,sans-serif;
  --gutter:clamp(24px,5vw,88px);
  --space:clamp(52px,5.5vw,82px);
  --header:82px;
}
*{
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body{
  margin: 0;
  background: #131412;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open{
  overflow: hidden;
}
::selection{
  background: #cbb681;
  color: #181e19;
}
a{
  color: inherit;
  text-decoration: none;
}
button{
  font: inherit;
  color: inherit;
}
img{
  display: block;
  max-width: 100%;
  height: auto;
}
svg{
  display: block;
}
p,h1,h2,h3,h4,figure{
  margin: 0;
}
h1,h2,h3{
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.035em;
}
h2{
  font-size: clamp(44px, 4.4vw, 64px);
}
h3{
  font-size: 32px;
}
em{
  font-weight: 400;
}
button,a{
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,button:focus-visible{
  outline: 2px solid var(--brass);
  outline-offset: 6px;
}
.site-header :focus-visible,.investments :focus-visible{
  outline-color: var(--gold);
}
.wrap{
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.eyebrow{
  font-size: 11px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.arrow-icon{
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.text-link{
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid var(--brass);
  padding-block: 9px;
}
.text-link svg,.button svg{
  transition: transform .2s;
}
.text-link:hover svg,.button:hover svg{
  transform: translate(2px, -2px);
}
.button{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 24px;
  background: var(--brass);
  color: #11130f;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}
.button:hover{
  background: #d1c18d;
}
.skip-link{
  color: #252c25;
  position: fixed;
  left: 24px;
  top: -80px;
  padding: 12px 20px;
  background: var(--paper);
  z-index: 100;
  color: #252c25;
}
.skip-link:focus{
  top: 10px;
}
.site-header{
  height: var(--header);
  padding: 0 var(--gutter);
  background: var(--dark);
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #ffffff16;
}
.brand{
  display: block;
  flex-shrink: 0;
}
.brand-original-frame{
  display: block;
  width: 127px;
  height: 54px;
  position: relative;
  overflow: hidden;
}
.brand-original-frame img{
  position: absolute;
  width: 155px;
  max-width: none;
  height: 155px;
  left: -14px;
  top: -51px;
}
.site-nav,.nav-links{
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-link{
  font-size: 12px;
  color: #dbddd4;
  transition: color .2s;
}
.nav-link:hover,.nav-link.is-active{
  color: var(--gold);
}
.button-small{
  background: transparent;
  border: 1px solid #8b8e71;
  color: var(--paper);
  padding: 11px 18px;
  gap: 35px;
  font-size: 11px;
}
.button-small:hover{
  background: #343c30;
}
.menu-toggle{
  display: none;
}
.contact-main{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  padding-bottom: 52px;
}
.contact-main .eyebrow{
  color: var(--gold);
  margin-bottom: 30px;
}
.contact-main h2{
  font-size: clamp(48px, 4.6vw, 64px);
}
.contact-copy{
  padding-top: 44px;
  max-width: 410px;
}
.contact-copy p{
  font-size: 18px;
  color: #c3c8bc;
  margin-bottom: 30px;
}
.contact-email{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #71785f;
  padding-bottom: 14px;
  font-size: clamp(20px, 2.3vw, 32px);
}
.investments{
  background: var(--dark);
  color: var(--paper);
  padding-block: var(--space);
  scroll-margin-top: -1px;
}
.investment-heading{
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  padding-bottom: 62px;
  border-bottom: 1px solid var(--dark-line);
}
.investment-heading .eyebrow{
  color: var(--gold);
  margin-bottom: 26px;
}
.investment-heading h2{
  font-size: clamp(48px, 4.7vw, 68px);
}
.investment-heading > p{
  font-size: 15px;
  line-height: 1.8;
  color: #b9c1b0;
  max-width: 330px;
  width: 40%;
}
.investment-layout{
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 13%;
  align-items: start;
}
.investment-stage{
  position: sticky;
  top: 96px;
  padding-top: 14px;
}
.art-stage{
  position: relative;
  aspect-ratio: 600/380;
  color: var(--gold);
  width: 100%;
}
.art-state{
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
}
.art-state.is-active{
  visibility: visible;
  opacity: 1;
}
.zone-art{
  height: 100%;
  width: 100%;
  color: var(--gold);
}
.investment-index{
  display: flex;
  flex-direction: column;
  padding-inline: 14px;
}
.investment-index a{
  display: grid;
  grid-template-columns: 26px 1fr 14px;
  gap: 8px;
  align-items: center;
  border-top: 1px solid var(--dark-line);
  padding: 10px 0;
  font-size: 12px;
  line-height: 1.3;
  color: #aeb8a4;
  transition: color .2s;
}
.investment-index a span{
  font-size: 9px;
  color: #8e9983;
}
.investment-index i{
  font-style: normal;
  opacity: 0;
}
.investment-index a[aria-current],.investment-index a:hover{
  color: var(--gold);
}
.investment-index a[aria-current] i{
  opacity: 1;
}
.sequence-skip{
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #bcc5b1;
  border-top: 1px solid var(--dark-line);
  margin: 0 14px;
  padding-top: 14px;
}
.investment-chapter{
  min-height: clamp(405px, 58svh, 650px);
  padding: 60px 0;
  border-bottom: 1px solid var(--dark-line);
  scroll-margin-top: 0;
}
.investment-chapter:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}
.chapter-number{
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #aab69c;
  margin-bottom: 25px;
}
.chapter-number > span:first-child{
  color: var(--gold);
}
.investment-chapter h3{
  font-size: clamp(32px, 3vw, 45px);
  max-width: 470px;
  line-height: 1.07;
}
.area-summary{
  font-size: 16px;
  color: #c4ccbc;
  line-height: 1.7;
  max-width: 450px;
  margin-top: 20px;
}
.considerations{
  margin-top: 27px;
}
.considerations h4{
  font: 500 10px var(--sans);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: 10px;
}
.considerations ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.considerations li{
  font-size: 13px;
  line-height: 1.6;
  color: #c4ccbc;
  padding: 5px 0 5px 15px;
  position: relative;
}
.considerations li:before{
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  left: 0;
  top: 14px;
  background: #8c977a;
}
.partnerships{
  margin-top: 28px;
}
.partnerships > p{
  font-size: 10px;
  color: #aeb8a4;
  margin-bottom: 10px;
}
.partnerships > div{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.partnerships a{
  width: calc((100% - 20px)/3);
  min-width: 90px;
  background: var(--paper);
  padding: 12px;
  display: flex;
  align-items: center;
  height: 54px;
}
.partnerships img{
  width: 100%;
  height: 30px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.mobile-art{
  display: none;
}
.media-home{
  padding-top: 34px;
  padding-bottom: var(--space);
}
.media-heading{
  border-top: 1px solid var(--line);
  padding-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 9%;
  align-items: end;
}
.media-heading .eyebrow{
  grid-column: 1/-1;
  color: var(--brass);
}
.media-heading > p:last-child{
  font-size: 15px;
  color: var(--muted);
}
.media-layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  margin-top: 46px;
}
.media-feature-image{
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #090a09;
}
.media-feature-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .4s;
}
.media-feature:hover img{
  transform: scale(1.025);
}
.play-mark{
  color: #222820;
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: var(--paper);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}
.media-feature > .eyebrow{
  margin-top: 25px;
  color: var(--brass);
}
.media-feature h3{
  font-size: 36px;
  margin-top: 14px;
}
.media-feature > p:not(.eyebrow){
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 15px;
  max-width: 470px;
}
.media-feature .text-link{
  margin-top: 14px;
}
.media-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
}
.media-row:first-child{
  padding-top: 0;
  border-top: 0;
}
.media-row .eyebrow{
  font-size: 9px;
  color: var(--brass);
  margin-bottom: 9px;
}
.media-row h3{
  font-size: 24px;
  line-height: 1.15;
  max-width: 400px;
  letter-spacing: -.02em;
}
.media-row-meta{
  display: block;
  font-size: 9px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 10px;
}
.media-row .arrow-icon{
  width: 16px;
  height: 16px;
  transition: transform .2s;
}
.media-row:hover .arrow-icon{
  transform: translate(2px, -2px);
}
.founder-record{
  max-width: 1600px;
  margin: auto;
  padding: 54px var(--gutter) var(--space);
  display: grid;
  grid-template-columns: .8fr 1.15fr;
  column-gap: 13%;
  align-items: start;
}
.founder-record-heading{
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 48px;
}
.founder-page-kicker{
  color: var(--brass);
}
.founder-role{
  font-size: 11px;
  color: var(--muted);
}
.founder-name{
  display: flex;
  flex-direction: column;
}
.founder-name h1{
  font-size: clamp(55px, 6.4vw, 86px);
  order: -2;
  margin-bottom: 22px;
}
.founder-name > p{
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 345px;
  order: -1;
  margin-bottom: 30px;
}
.founder-profile-photo{
  max-width: 375px;
}
.founder-profile-photo img{
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  object-position: center;
}
.founder-profile-photo figcaption{
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--muted);
  margin-top: 9px;
}
.founder-copy{
  padding-top: 10px;
}
.founder-copy p{
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.founder-copy .founder-lead{
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.2;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 27px;
}
.founder-links{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.founder-links .text-link{
  font-size: 11px;
  gap: 15px;
}
.teaching-section{
  max-width: 1600px;
  margin: auto;
  padding: 0 var(--gutter) var(--space);
}
.teaching-heading{
  border-top: 1px solid var(--line);
  padding-top: 45px;
  display: grid;
  gap: 22px;
}
.teaching-heading .eyebrow{
  color: var(--brass);
}
.teaching-summary{
  font-size: 17px;
  line-height: 1.8;
  max-width: 850px;
  color: var(--muted);
  margin-top: 24px;
}
.teaching-gallery{
  margin-top: 42px;
}
.teaching-gallery-images{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
}
.teaching-photo{
  overflow: hidden;
}
.teaching-photo img{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}
.teaching-photo-close img{
  aspect-ratio: 3 / 2;
}
.teaching-gallery figcaption{
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  font-size: 10px;
  color: var(--muted);
}
.gibsons-board-card{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 7%;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 50px;
  padding-block: 38px;
}
.gibsons-board-banner{
  background: #080908;
  display: block;
  padding: 0;
}
.gibsons-board-banner img{
  width: 100%;
}
.gibsons-board-copy{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.meta{
  font: 500 10px/1.6 var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brass);
}
.gibsons-board-copy strong{
  font: 400 36px/1.1 var(--serif);
  letter-spacing: -.025em;
}
.gibsons-board-description{
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.gibsons-board-link{
  font-size: 12px;
  color: var(--ink);
}
.gibsons-board-link i{
  font-style: normal;
  margin-left: 20px;
}
.not-found{
  padding-block: 140px;
  min-height: 65svh;
}
.not-found .eyebrow{
  color: var(--brass);
}
.page-title{
  font-size: 70px;
  max-width: 750px;
  margin-block: 28px;
}
.not-found p:not(.eyebrow){
  margin-bottom: 25px;
}
@media (min-width: 821px) and (max-height: 760px){.investment-stage{
    top: 86px;
  }
.art-stage{
    aspect-ratio: 600/280;
    max-height: 205px;
  }
.investment-index a{
    padding: 8px 0;
  }
.investment-stage .zone-art{
    max-height: 205px;
  }}
@media (min-width: 821px) and (max-height: 560px){.investment-stage{
    position: static;
  }
.art-stage{
    display: none;
  }
.investment-index{
    padding-top: 45px;
  }}
@media (max-width: 1100px){.nav-links,.site-nav{
    gap: 22px;
  }
.investment-layout{
    gap: 8%;
  }
.founder-record{
    column-gap: 8%;
  }}
@media (max-width: 820px){:root{
    --header:72px;
    --space:80px;
  }
h2{
    font-size: 46px;
  }
.site-header{
    padding-inline: 24px;
  }
.brand-original-frame{
    width: 111px;
    height: 47px;
  }
.brand-original-frame img{
    width: 135px;
    height: 135px;
    top: -44px;
    left: -12px;
  }
.menu-toggle{
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #727a62;
    background: none;
    padding: 8px 12px;
    font-size: 12px;
  }
.menu-toggle i{
    width: 10px;
    height: 1px;
    background: var(--gold);
  }
.menu-toggle i:last-child{
    display: none;
  }
.site-nav{
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--dark);
    padding: 28px var(--gutter);
    display: none;
    box-shadow: 0 15px 20px #0002;
    max-height: calc(100svh - 72px);
    overflow: auto;
  }
.site-nav.is-open{
    display: flex;
    align-items: stretch;
    flex-direction: column;
  }
.nav-links{
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
.nav-link{
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--dark-line);
  }
.button-small{
    align-self: start;
  }
.investment-heading{
    padding-bottom: 35px;
  }
.investment-heading > p{
    width: auto;
    font-size: 13px;
  }
.investment-layout{
    grid-template-columns: 1fr;
  }
.investment-stage{
    position: static;
    order: 0;
    padding-top: 22px;
  }
.art-stage{
    display: none;
  }
.investment-index{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    padding: 0;
  }
.investment-index a{
    padding: 12px 0;
    font-size: 11px;
  }
.sequence-skip{
    margin-inline: 0;
    font-size: 11px;
  }
.investment-chapter{
    min-height: 0;
    padding: 45px 0;
    display: grid;
    grid-template-columns: 1fr .65fr;
    column-gap: 24px;
    align-items: start;
  }
.chapter-number{
    grid-column: 1/-1;
    margin-bottom: 18px;
  }
.investment-chapter h3{
    grid-column: 1;
    font-size: 35px;
  }
.area-summary{
    grid-column: 1;
    font-size: 15px;
  }
.considerations{
    grid-column: 1/-1;
    margin-top: 24px;
  }
.mobile-art{
    display: block;
    grid-column: 2;
    grid-row: 2/4;
    height: 190px;
    width: 100%;
    align-self: center;
  }
.partnerships{
    grid-column: 1/-1;
    max-width: 450px;
  }
.media-layout{
    gap: 6%;
  }
.media-row h3{
    font-size: 22px;
  }
.media-feature h3{
    font-size: 32px;
  }
.media-heading{
    gap: 20px 30px;
  }
.media-heading > p:last-child{
    font-size: 14px;
  }
.media-heading br{
    display: none;
  }
.contact-main{
    gap: 7%;
  }
.contact-main h2{
    font-size: 60px;
  }
.contact-copy p{
    font-size: 16px;
  }
.contact-email{
    font-size: 24px;
  }
.founder-record{
    padding-top: 50px;
    column-gap: 7%;
    grid-template-columns: .8fr 1fr;
  }
.founder-name h1{
    font-size: 60px;
  }
.founder-copy .founder-lead{
    font-size: 30px;
  }
.founder-copy p{
    font-size: 15px;
  }
.founder-links{
    gap: 12px;
  }
.teaching-summary{
    font-size: 16px;
  }
.gibsons-board-card{
    gap: 5%;
    grid-template-columns: .8fr 1.3fr;
  }
.gibsons-board-copy strong{
    font-size: 30px;
  }
.gibsons-board-description{
    font-size: 14px;
  }
.gibsons-board-banner{
    padding: 10px;
  }}
@media (max-width: 600px){.investment-heading{
    display: block;
  }
.investment-heading h2{
    font-size: 48px;
  }
.investment-heading > p{
    margin-top: 24px;
    font-size: 14px;
  }
.investment-heading > p br{
    display: none;
  }
.investment-index a{
    font-size: 10px;
    gap: 5px;
    grid-template-columns: 19px 1fr 10px;
  }
.investment-index{
    column-gap: 15px;
  }
.investment-chapter{
    display: block;
    position: relative;
  }
.investment-chapter h3{
    font-size: 35px;
    max-width: 390px;
  }
.mobile-art{
    float: right;
    width: 135px;
    height: 116px;
    margin: -5px -7px 4px 5px;
  }
.area-summary{
    font-size: 15px;
    max-width: none;
  }
.considerations{
    clear: both;
    padding-top: 4px;
  }
.considerations li{
    font-size: 12px;
  }
.media-home{
    padding-top: 0;
  }
.media-heading{
    display: block;
    padding-top: 35px;
  }
.media-heading h2{
    margin-top: 23px;
    font-size: 45px;
  }
.media-heading > p:last-child{
    margin-top: 20px;
    font-size: 15px;
  }
.media-layout{
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 30px;
  }
.media-feature h3{
    font-size: 33px;
  }
.media-row{
    padding-block: 22px;
  }
.media-row:first-child{
    padding-top: 22px;
    border-top: 1px solid var(--line);
  }
.media-row h3{
    font-size: 25px;
  }
.media-row .eyebrow{
    font-size: 10px;
  }
.media-row-meta{
    font-size: 10px;
  }
.contact-main{
    grid-template-columns: 1fr;
    gap: 25px;
    padding-bottom: 50px;
  }
.contact-main h2{
    font-size: clamp(44px, 15vw, 62px);
  }
.contact-main .eyebrow{
    margin-bottom: 24px;
  }
.contact-copy{
    padding: 0;
    max-width: 400px;
  }
.contact-copy p{
    font-size: 16px;
    margin-bottom: 24px;
  }
.contact-email{
    font-size: 27px;
  }
.founder-record{
    grid-template-columns: 1fr;
    padding-top: 35px;
  }
.founder-record-heading{
    display: block;
    margin-bottom: 32px;
    padding-bottom: 20px;
  }
.founder-role{
    margin-top: 8px;
    font-size: 10px;
  }
.founder-name h1{
    font-size: 64px;
    margin-bottom: 16px;
  }
.founder-name > p{
    max-width: 390px;
    font-size: 15px;
    margin-bottom: 24px;
  }
.founder-profile-photo{
    max-width: 100%;
    width: 100%;
  }
.founder-profile-photo img{
    aspect-ratio: 1.18;
    object-position: 50% 36%;
  }
.founder-copy{
    padding-top: 33px;
  }
.founder-copy .founder-lead{
    font-size: 33px;
  }
.founder-copy p{
    font-size: 16px;
  }
.founder-links{
    gap: 24px;
  }
.teaching-heading h2{
    font-size: 43px;
  }
.teaching-gallery-images{
    grid-template-columns: 1fr;
    gap: 16px;
  }
.teaching-photo-close img{
    aspect-ratio: 3 / 2;
  }
.teaching-gallery figcaption{
    display: block;
    font-size: 9px;
  }
.teaching-gallery figcaption a{
    display: block;
    margin-top: 7px;
  }
.gibsons-board-card{
    grid-template-columns: 1fr;
    margin-top: 55px;
    padding-block: 35px;
    gap: 30px;
  }
.gibsons-board-banner{
    max-width: 350px;
    padding: 20px;
  }
.gibsons-board-copy strong{
    font-size: 33px;
  }
.gibsons-board-description{
    font-size: 15px;
  }
.page-title{
    font-size: 50px;
  }}
@media (max-width: 480px){.investment-index{
    gap: 0 12px;
  }
.investment-chapter h3{
    font-size: 32px;
  }
.mobile-art{
    width: 112px;
    height: 100px;
  }
.partnerships a{
    padding: 10px;
  }}
@media (prefers-reduced-motion: reduce){html{
    scroll-behavior: auto;
  }
*,*:before,*:after{
    animation: none !important;
    transition: none !important;
  }
.investment-stage{
    position: static;
  }
.art-stage{
    display: none;
  }
.investment-layout{
    grid-template-columns: 1fr;
  }
.investment-index{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    padding: 20px 0;
  }
.sequence-skip{
    margin-inline: 0;
  }
.investment-chapter{
    min-height: 0;
  }
.investment-chapter{
    display: flow-root;
  }
.mobile-art{
    display: block;
    float: right;
    width: min(32%, 190px);
    height: auto;
    aspect-ratio: 600/420;
    margin-left: 20px;
  }
.considerations{
    clear: both;
  }
.art-state{
    transform: none !important;
  }}
@media print{.site-header,.investment-stage,.mobile-art{
    display: none !important;
  }
body,.investments{
    background: white;
    color: black;
  }
.wrap,.founder-record,.teaching-section{
    padding: 20px;
  }
.investment-layout,.media-layout{
    display: block;
  }
.investment-chapter{
    min-height: 0;
    break-inside: avoid;
  }
.area-summary,.considerations li{
    color: #333;
  }}
@media (max-width: 820px){.investment-index a{
    min-height: 44px;
  }
body:not(.navigation-ready) .site-header{
    height: auto;
    position: static;
    flex-wrap: wrap;
    padding-block: 12px;
  }
body:not(.navigation-ready) .site-nav{
    display: flex;
    position: static;
    box-shadow: none;
    padding: 16px 0 8px;
    flex-basis: 100%;
  }
body:not(.navigation-ready) .nav-links{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
body:not(.navigation-ready) .nav-link{
    font-size: 12px;
    padding: 6px 0;
  }
body:not(.navigation-ready) .button-small,body:not(.navigation-ready) .menu-toggle{
    display: none;
  }}
.investment-heading{ padding-bottom:36px; }
.investment-heading>p{ max-width:390px; }
.investments{ background:#10120f; }
.investment-chapter{ min-height:clamp(360px,50svh,520px);padding-block:42px; }
.media-home{ padding-top:56px; }
.media-heading{ border-top:0;padding-top:0; }
.case-study-card{ --ink:#22261f;--brass:#806a3f;--line:#cdd0c8;display:grid;grid-template-columns:minmax(260px,.6fr) minmax(0,1.4fr);min-height:340px;width:100%;max-width:none;margin-top:clamp(52px,6vw,82px);border:1px solid #f4f2ed2e;color:var(--ink);background:var(--paper);transition:border-color .22s; }
.case-study-card:hover{ border-color:var(--gold); }
.case-study-logo{ display:grid;min-height:100%;place-items:center;padding:clamp(30px,5vw,70px);overflow:hidden;border-right:1px solid var(--line);background:#ececeb; }
.case-study-logo img{ width:100%;height:100%;max-height:250px;object-fit:contain; }
.case-study-copy{ display:flex;min-width:0;flex-direction:column;align-items:flex-start;padding:clamp(34px,5vw,72px); }
.case-study-copy .meta{ color:#566271; }
.case-study-copy strong{ display:block;max-width:820px;margin:clamp(28px,4vw,48px) 0 22px;font-family:var(--serif);font-size:clamp(36px,4.1vw,62px);font-weight:400;letter-spacing:-.045em;line-height:.98; }
.case-study-description{ max-width:700px;color:#555e52;font-size:13px;line-height:1.65; }
.case-study-link{ display:flex;align-items:center;gap:16px;margin-top:auto;padding-top:34px;border-bottom:1px solid var(--ink);font-size:11px;font-weight:700;color:var(--ink); }
@media (max-width:820px){:root{ --space:58px; }
.investment-chapter{ min-height:0;padding-block:36px; }
.case-study-card{ grid-template-columns:1fr; }
.case-study-logo{ min-height:250px;border-right:0;border-bottom:1px solid var(--line); }
.case-study-logo img{ max-height:190px; }}
@media (max-width:600px){.media-home{ padding-top:50px; }
.teaching-gallery-images{ grid-template-columns:1fr; }
.teaching-photo img,.teaching-photo-close img{ aspect-ratio:3 / 2; }
.gibsons-board-banner{ padding:0; }}
@media (max-width:480px){.case-study-card{ min-height:0; }
.case-study-logo{ min-height:200px; }
.case-study-copy{ padding:28px 24px 32px; }
.case-study-copy strong{ font-size:36px; }}
/* Original production hero, journey and footer. Values scoped to these components. */
:is(.home-hero,.story-section,.site-footer) { --paper:#f4f2ed;--white:#fbfaf7;--ink:#171816;--ink-soft:#55564f;--night:#151714;--brass:#a88c4f;--brass-light:#c8ae69;--line:rgba(23,24,22,.2);--line-light:rgba(244,242,237,.22);--serif:"Newsreader","Iowan Old Style",Georgia,serif;--sans:"DM Sans","Helvetica Neue",Arial,sans-serif;--page-pad:clamp(24px,5vw,72px);--header-h:88px;font-size:16px;line-height:1.5; }
.home-hero .button{
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: color 200ms ease, background 200ms ease, transform 200ms var(--ease);
}
.home-hero .button:hover{
  transform: translateY(-2px);
}
.home-hero .button-brass{
  color: var(--night);
  background: var(--brass-light);
}
.home-hero .button-brass:hover{
  background: #d5bd7c;
}
.home-hero .text-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}
.home-hero .text-link .arrow-icon{
  width: 16px;
  transition: transform 200ms var(--ease);
}
.home-hero .text-link:hover .arrow-icon{
  transform: translate(3px, -3px);
}
.home-hero .eyebrow{
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.story-section .section-label{
  display: grid;
  grid-template-columns: 46px 1fr;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.story-section .section-label p{
  margin: 0;
}
.home-hero{
  display: grid;
  min-height: max(820px, 100svh);
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  grid-template-rows: 1fr auto;
  padding: calc(var(--header-h) + clamp(70px, 9vh, 120px)) var(--page-pad) 0;
  color: var(--paper);
  background: var(--night);
}
.hero-main{
  max-width: 820px;
  align-self: center;
  padding: 20px clamp(36px, 6vw, 92px) 80px 0;
}
.hero-kicker{
  margin-bottom: clamp(34px, 5vh, 62px);
  color: var(--brass-light);
}
.hero-title{
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 6.4vw, 100px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.92;
}
.hero-title span{
  display: inline-block;
}
.hero-title > .hero-line{
  display: block;
}
.hero-title > .hero-line:last-child{
  max-width: 880px;
  color: var(--brass-light);
}
.hero-intro{
  max-width: 690px;
  margin: 42px 0 0;
  color: rgba(244, 242, 237, 0.72);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.5;
}
.hero-actions{
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}
.story-section{
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1.32fr);
  padding: clamp(100px, 12vw, 180px) var(--page-pad);
  background: var(--paper);
}
.story-section .chapter-heading{
  min-width: 0;
  align-self: start;
  padding-right: clamp(34px, 5vw, 80px);
  border-right: 1px solid var(--line);
}
.story-section .chapter-heading > h2{
  margin: clamp(54px, 7vw, 94px) 0 0;
  font-family: var(--serif);
  font-size: calc(clamp(52px, 5.5vw, 82px) - 6px);
  font-weight: 300;
  letter-spacing: -0.052em;
  line-height: 0.98;
}
.story-section .chapter-body{
  min-width: 0;
  padding-left: clamp(36px, 6vw, 104px);
}
.story-section .chapter-intro{
  max-width: 760px;
  margin: 0 0 clamp(68px, 9vw, 120px);
  color: var(--ink-soft);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.48;
}
.story-section{
  background: var(--white);
}
.journey-step{
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding-bottom: clamp(64px, 8vw, 108px);
}
.journey-step:last-child{
  padding-bottom: 0;
}
.journey-number{
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
  background: var(--white);
  font-size: 10px;
  font-weight: 700;
}
.journey-step h3{
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(32px, 3.1vw, 48px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.journey-step p{
  max-width: 690px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}
.journey-step small{
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home .journey-number{
  background: transparent;
}
.site-footer{
  padding: clamp(72px, 9vw, 120px) var(--page-pad) 30px;
  color: var(--paper);
  background: #0e0f0d;
}
.brand-footer .brand-original-frame{
  width: auto;
  max-width: 100%;
  height: clamp(96px, 15vw, 240px);
  aspect-ratio: 188 / 72;
}
.brand-footer{
  width: 100%;
  min-width: 0;
  grid-column: auto;
}
.footer-top{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.footer-column:first-of-type{
  grid-column: auto;
}
.footer-column .label{
  margin-bottom: 28px;
  color: rgba(244, 242, 237, 0.42);
}
.footer-column a{
  display: block;
  width: fit-content;
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 27px);
}
.footer-column a:hover{
  color: var(--brass-light);
}
.footer-bottom{
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 110px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
}
.footer-bottom p{
  max-width: 600px;
  margin: 0;
  color: rgba(244, 242, 237, 0.45);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.js-motion [data-hero] .hero-kicker,.js-motion [data-hero] .hero-intro,.js-motion [data-hero] .hero-actions{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 820ms var(--ease), transform 820ms var(--ease);
  transition-delay: var(--hero-delay, 0ms);
}
.js-motion [data-hero].hero-ready .hero-kicker,.js-motion [data-hero].hero-ready .hero-intro,.js-motion [data-hero].hero-ready .hero-actions{
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1100px){.home-hero{
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  }
.hero-title{
    font-size: clamp(58px, 7.2vw, 80px);
  }
.story-section{
    grid-template-columns: minmax(270px, 0.58fr) minmax(0, 1.42fr);
  }}
@media (max-width: 820px){.home-hero{
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: calc(var(--header-h) + 70px);
  }
.hero-main{
    padding: 0 0 68px;
  }
.hero-title{
    font-size: clamp(50px, 13.5vw, 66px);
  }
.hero-intro{
    font-size: 17px;
  }
.hero-actions{
    align-items: stretch;
    flex-direction: column;
  }
.hero-actions .button{
    width: 100%;
  }
.hero-actions .text-link{
    width: fit-content;
  }
.story-section{
    grid-template-columns: 1fr;
    padding-top: 90px;
    padding-bottom: 90px;
  }
.story-section .chapter-heading{
    padding: 0 0 64px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
.story-section .chapter-heading > h2{
    font-size: calc(clamp(48px, 13vw, 68px) - 6px);
  }
.story-section .chapter-body{
    padding: 60px 0 0;
  }
.story-section .chapter-intro{
    margin-bottom: 70px;
  }
.journey-step{
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }
.footer-top{
    grid-template-columns: 1fr;
    gap: 40px;
  }
.brand-footer{
    grid-column: 1;
  }
.brand-footer .brand-original-frame{
    height: clamp(64px, 18vw, 120px);
  }
.footer-column{
    margin: 0;
  }
.footer-column:first-of-type{
    grid-column: auto;
  }
.footer-bottom{
    grid-template-columns: 1fr;
    margin-top: 80px;
  }}
@media (max-width: 480px){.story-section .chapter-heading > h2{
    font-size: 42px;
  }
.journey-step h3{
    font-size: 31px;
  }}
@media (min-width: 821px){.hero-title [data-hero-word]{
    white-space: nowrap;
  }}
@media (prefers-reduced-motion: reduce){.js-motion [data-hero] .hero-kicker,.js-motion [data-hero] .hero-intro,.js-motion [data-hero] .hero-actions{
    opacity: 1;
    transform: none;
  }}
.home-hero{
  position: relative;
  isolation: isolate;
  min-height: max(780px, 100svh);
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.24fr);
  grid-template-rows: 1fr auto;
  background: #101010;
}
.smoke-scene,.hero-atmosphere{
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.smoke-scene{
  z-index: -2;
  overflow: hidden;
  background: radial-gradient(circle at 70% 47%, #4a4a47 0, #171816 34%, #101010 72%);
}
.smoke-scene canvas{
  width: 100%;
  height: 100%;
  opacity: 0.72;
  filter: contrast(1.06);
}
.smoke-scene.is-static canvas{
  display: none;
}
.hero-atmosphere{
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 10, 9, 0.96) 0%, rgba(9, 10, 9, 0.84) 36%, rgba(9, 10, 9, 0.22) 71%, rgba(9, 10, 9, 0.58) 100%),
    linear-gradient(0deg, rgba(9, 10, 9, 0.82) 0%, transparent 34%, rgba(9, 10, 9, 0.16) 78%, rgba(9, 10, 9, 0.62) 100%),
    linear-gradient(rgba(244, 242, 237, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 242, 237, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
}
.hero-main{
  position: relative;
  z-index: 1;
  max-width: 960px;
  padding-right: clamp(40px, 8vw, 130px);
  padding-bottom: clamp(90px, 11vh, 140px);
}
.hero-kicker{
  color: rgba(220, 194, 126, 0.9);
}
.hero-title{
  max-width: 1020px;
  font-size: clamp(64px, 7.15vw, 112px);
  text-wrap: balance;
}
.hero-title > .hero-line:last-child{
  color: #d5bd7c;
}
.hero-intro{
  max-width: 660px;
  color: rgba(245, 245, 245, 0.68);
}
.home .story-section{
  position: relative;
  color: var(--paper);
  background: rgba(16, 17, 16, 0.99);
}
.home .story-section{
  background: #141514;
}
.story-section .home .chapter-heading,.story-section .home .section-label{
  border-color: rgba(244, 242, 237, 0.16);
}
.story-section .home .section-label,.story-section .home .chapter-intro,.home .journey-step p{
  color: rgba(244, 242, 237, 0.61);
}
.home .journey-number{
  color: var(--brass-light);
  background: #141514;
}
.home .journey-step small{
  border-color: rgba(244, 242, 237, 0.16);
  color: rgba(244, 242, 237, 0.58);
}
.story-section .about-page .founder-record-heading .section-label{
  border-color: rgba(244, 242, 237, 0.16);
}
.story-section .about-page .founder-record-heading .section-label{
  color: rgba(244, 242, 237, 0.61);
}
@media (max-width: 820px){.home-hero{
    min-height: max(760px, 100svh);
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    padding-top: calc(var(--header-h) + 76px);
  }
.hero-main{
    align-self: center;
    padding: 24px 0 82px;
  }
.hero-title{
    font-size: clamp(52px, 14vw, 76px);
  }
.hero-atmosphere{
    background:
      linear-gradient(90deg, rgba(9, 10, 9, 0.91) 0%, rgba(9, 10, 9, 0.57) 72%, rgba(9, 10, 9, 0.62) 100%),
      linear-gradient(0deg, rgba(9, 10, 9, 0.86) 0%, transparent 48%, rgba(9, 10, 9, 0.52) 100%),
      linear-gradient(rgba(244, 242, 237, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(244, 242, 237, 0.025) 1px, transparent 1px);
    background-size: auto, auto, 48px 48px, 48px 48px;
  }
.smoke-scene canvas{
    opacity: 0.58;
  }
.story-section .home .chapter-heading{
    border-bottom-color: rgba(244, 242, 237, 0.16);
  }}
@media (max-width: 480px){.hero-title{
    font-size: clamp(48px, 14.5vw, 64px);
  }
.hero-intro{
    margin-top: 30px;
    font-size: 16px;
  }}
@media (prefers-reduced-motion: reduce){.smoke-scene canvas{
    opacity: 0.56;
  }}
.story-section,.home .story-section{
  min-height: 0;
  grid-template-columns: minmax(270px, 0.78fr) minmax(0, 1.22fr);
  column-gap: clamp(56px, 8vw, 140px);
  align-items: start;
}
.story-section,.home .story-section{
  padding-top: 76px;
  padding-bottom: 110px;
  background: #141514;
}
.story-section .chapter-heading{
  grid-column: 1;
  padding: 0;
  border: 0;
}
.story-section .chapter-heading h2{
  max-width: 620px;
  margin-top: 46px;
  font-size: clamp(46px, 4.2vw, 60px);
  line-height: 0.98;
}
.story-section .chapter-body{
  display: contents;
}
.story-section .chapter-intro{
  grid-column: 2;
  max-width: 64ch;
  margin: 78px 0 0;
  color: rgba(244, 242, 237, 0.66);
  font-size: 18px;
  line-height: 1.72;
}
.journey-ledger{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 60px 0 0;
  padding: 0;
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid rgba(244, 242, 237, 0.16);
}
.journey-step{
  min-width: 0;
  min-height: 0;
  display: block;
  grid-template-columns: none;
  gap: 0;
  padding: 26px clamp(18px, 1.8vw, 28px) 28px;
  border-left: 1px solid rgba(244, 242, 237, 0.16);
  background: transparent;
}
.journey-step:first-child{
  border-left: 0;
}
.home .journey-ledger .journey-number{
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 36px;
  border: 0;
  border-radius: 0;
  color: var(--brass-light);
  background: transparent;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}
.journey-step h3{
  max-width: 12ch;
  margin: 0;
  color: var(--paper);
  font-size: clamp(27px, 2.1vw, 32px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.home .journey-step p{
  max-width: 38ch;
  margin: 18px 0 0;
  color: rgba(244, 242, 237, 0.64);
  font-size: 14.25px;
  line-height: 1.57;
}
.home .journey-step small{
  display: none;
}
.brand-footer .brand-original-frame img{
  image-rendering: auto;
}
@media (max-width: 1099px){.story-section,.home .story-section{
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: clamp(88px, 10vw, 112px);
    padding-bottom: clamp(88px, 10vw, 112px);
  }
.story-section .chapter-heading,.story-section .chapter-intro{
    grid-column: 1;
  }
.story-section .chapter-intro{
    margin-top: 38px;
  }
.journey-ledger{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.journey-step:nth-child(3){
    border-left: 0;
  }
.journey-step:nth-child(n + 3){
    border-top: 1px solid rgba(244, 242, 237, 0.16);
  }}
@media (max-width: 719px){.story-section,.home .story-section{
    padding-top: clamp(72px, 18vw, 88px);
    padding-bottom: clamp(72px, 18vw, 88px);
  }
.story-section .chapter-heading h2{
    margin-top: 34px;
    font-size: clamp(42px, 12vw, 58px);
  }
.story-section .chapter-intro{
    margin-top: 28px;
    font-size: 16px;
  }
.journey-ledger{
    grid-template-columns: 1fr;
    margin-top: 54px;
    border-bottom: 0;
  }
.journey-step{
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 14px;
    min-height: 0;
    padding: 28px 0 32px;
    border-top: 1px solid rgba(244, 242, 237, 0.16);
    border-left: 0;
  }
.journey-step:first-child{
    border-top: 0;
  }
.home .journey-ledger .journey-number{
    grid-column: 1;
    grid-row: 1 / span 3;
    margin: 4px 0 0;
  }
.journey-step h3,.journey-step p,.journey-step small{
    grid-column: 2;
  }
.journey-step h3{
    font-size: 30px;
  }
.home .journey-step p{
    margin-top: 16px;
  }
.home .journey-step small{
    margin-top: 18px;
  }}

.story-section .founder-journey-link { display:flex;width:fit-content;margin-top:26px;margin-left:auto;color:var(--paper);border-color:var(--brass); }
.site-header,.site-footer,.site-nav { background:#000; }
.site-header { position:fixed; }
.about-page main,.not-found-page main { padding-top:var(--header); }
.site-footer .footer-column .label { font-size:10px;font-weight:700;letter-spacing:.14em;text-transform:uppercase; }
.site-footer .brand-original-frame { width:auto; }
.site-footer .brand-original-frame img { width:100%;height:100%;object-fit:cover; }
@media(max-width:820px) { :is(.home-hero,.story-section,.site-footer) { --header-h:72px;--page-pad:22px; } }
/* Every media item remains visible in a thumbnail grid, without filters or a carousel. */
.media-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:42px 26px; }
.media-tile { display:flex;flex-direction:column;min-width:0;border-bottom:1px solid var(--line); }
.media-tile-visual { position:relative;aspect-ratio:16/9;background:#000;overflow:hidden; }
.media-tile-visual img { width:100%;height:100%;object-fit:cover;transition:transform .35s; }
.media-tile-visual.contain img { object-fit:contain; }
.media-tile-visual.brand-thumbnail img { object-fit:cover; }
.media-format { position:absolute;left:12px;bottom:12px;padding:5px 9px;background:#000d;color:#f4f2ed;font-size:10px;text-transform:uppercase;letter-spacing:.1em; }
.media-tile-copy { padding:23px 0;display:flex;flex-direction:column;flex:1;align-items:flex-start; }
.media-tile h3 { font-size:clamp(25px,2.1vw,34px);line-height:1.12;margin:12px 0 18px; }
.media-tile-meta { color:var(--muted);font-size:12px;margin-bottom:24px; }
.media-tile .text-link { margin-top:auto;font-size:12px; }
.media-tile:hover .media-tile-visual img { transform:scale(1.035); }
@media(max-width:1000px) { .media-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media(max-width:600px) { .media-grid { grid-template-columns:1fr;gap:30px; } }
@media(prefers-reduced-motion:reduce) { .media-tile-visual img { transition:none; } .media-tile:hover .media-tile-visual img { transform:none; } }

/* The canvas replaces only the sticky artwork; every chapter retains a static projection. */
.investment-canvas { display:block;position:absolute;inset:0;width:100%;height:100%; }
.art-stage.model-ready .art-state { visibility:hidden; }
.art-state .zone-art { width:100%;height:100%;object-fit:contain; }
.mobile-art .zone-art { width:100%;height:auto; }
@media(prefers-reduced-motion:reduce) { .investment-canvas { display:none; } }

.site-header { inset:0 0 auto;width:100%; }
.home-hero .hero-kicker { margin-bottom:clamp(34px,5vh,62px); }
.site-footer .brand-original-frame img { position:static;max-width:100%; }

.site-footer .footer-column .label { line-height:1.4; }
@media(min-width:1100px) {
 .story-section { container-type:inline-size; }
 .story-section .chapter-heading { position:relative; }
 .story-section .founder-journey-link { position:absolute;bottom:-50px;left:auto;right:calc(100% - 100cqw);margin:0; }
}

.media-grid { margin-top:40px; }
@media(min-width:821px) and (min-height:561px) { .investment-chapter:last-child { min-height:calc(100svh - 130px); } }
@media(min-width:821px) and (max-height:560px) {
 .investment-layout { grid-template-columns:1fr; }
 .investment-index { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:0 20px; }
 .investment-chapter { display:flow-root; }
 .mobile-art { display:block;float:right;width:180px;height:auto;margin:0 0 20px 20px; }
 .considerations { clear:both; }
}
body:not(.navigation-ready) .investment-layout { grid-template-columns:1fr; }
body:not(.navigation-ready) .investment-stage { position:static; }
body:not(.navigation-ready) .art-stage { display:none; }
body:not(.navigation-ready) .investment-chapter { display:flow-root; }
body:not(.navigation-ready) .mobile-art { display:block;float:right;width:min(32%,190px);height:auto;margin-left:20px; }
body:not(.navigation-ready) .considerations { clear:both; }
body:not(.navigation-ready) .investment-chapter:last-child { min-height:0; }
@media (prefers-reduced-motion: reduce) { .investment-chapter:last-child { min-height:0; } }
