:root{
  --montage-bg: #120d0a;
  --montage-panel: rgba(36,24,17,.72);
  --montage-panel-strong: #f3e3ce;
  --montage-paper: #efe0cb;
  --montage-paper-2: #ead4b2;
  --montage-ink: #2f1d12;
  --montage-line: rgba(196,155,99,.24);
  --montage-accent: #c49b63;
  --montage-accent-soft: rgba(196,155,99,.16);
  --montage-muted: #b79a74;
  --montage-text: #f2e5d1;
  --montage-text-soft: #d9bfa0;
  --montage-serif: "Source Serif 4", Georgia, serif;
  --montage-sans: "IBM Plex Sans", "Inter", system-ui, sans-serif;
  --montage-mono: "IBM Plex Mono", "JetBrains Mono", ui-monospace, monospace;
}

html{
  scroll-padding-top: 88px;
}

.montage-page{
  background: var(--montage-bg);
  color: var(--montage-text);
  font-family: var(--montage-sans);
}

.montage-topbar{
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--montage-line);
  backdrop-filter: blur(14px);
  background: rgba(18,13,10,.9);
}

.montage-topbar__inner{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 16px;
}

.montage-brand{
  display: inline-block;
}

.montage-brand__eyebrow,
.montage-nav__link,
.montage-hero__overline,
.montage-section__eyebrow,
.montage-route__label,
.montage-route__link,
.margin-note__label,
.project-strip__eyebrow{
  font-family: var(--montage-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.montage-brand__eyebrow{
  color: var(--montage-muted);
}

.montage-nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.montage-nav__link{
  padding-bottom: 4px;
  color: #cfb89a;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.montage-nav__link:hover{
  color: var(--montage-text);
  border-color: var(--montage-accent);
}

.montage-hero{
  padding: calc(var(--sec) + 18px) 0 calc(var(--sec) * .92);
}

.montage-hero__frame{
  display: grid;
  gap: 26px;
  max-width: 78rem;
}

.montage-hero__copy{
  max-width: 63rem;
}

.montage-hero__overline{
  margin: 0 0 22px;
  color: var(--montage-muted);
}

.montage-hero h1{
  margin: 0;
  max-width: 9ch;
  font-family: var(--montage-serif);
  font-size: clamp(3.8rem, 8vw, 7rem);
  line-height: .93;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.montage-hero__subtitle{
  margin: 18px 0 0;
  max-width: 20ch;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.12;
  color: var(--montage-text);
  text-wrap: balance;
}

.montage-hero__divider{
  width: min(220px, 34vw);
  height: 1px;
  margin: 30px 0 0;
  background: var(--montage-line);
}

.montage-hero__lead{
  margin: 28px 0 0;
  max-width: 56ch;
  font-size: 20px;
  line-height: 1.68;
  color: #ead9bf;
}

.montage-hero__lead p{
  margin: 0 0 14px;
}

.montage-hero__lead p:last-child{
  margin-bottom: 0;
}

.montage-hero__index{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--montage-line);
  border-bottom: 1px solid var(--montage-line);
}

.montage-hero__index span{
  padding: 14px 12px 12px;
  color: #d4bc98;
  font-family: var(--montage-mono);
  font-size: 12px;
  letter-spacing: .11em;
  text-transform: uppercase;
  border-right: 1px solid var(--montage-line);
}

.montage-hero__index span:last-child{
  border-right: 0;
}

.montage-route{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}

.montage-route__label{
  color: var(--montage-muted);
}

.montage-route__link{
  position: relative;
  color: #f0dcc0;
  padding-bottom: 4px;
}

.montage-route__link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(196,155,99,.48);
}

.montage-route__link:hover{
  color: #fff2dd;
}

.montage-section{
  padding: var(--sec) 0;
}

.montage-section--light{
  background: var(--montage-paper);
  color: var(--montage-ink);
}

.montage-section__head{
  max-width: 66ch;
  margin-bottom: 34px;
}

.montage-section__head--wide{
  max-width: 76ch;
}

.montage-section__eyebrow{
  display: inline-block;
  margin-bottom: 14px;
  color: var(--montage-muted);
}

.montage-section__title{
  margin: 0;
  font-family: var(--montage-serif);
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.montage-section__intro{
  max-width: 54ch;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--montage-text-soft);
}

.montage-section--light .montage-section__intro{
  color: rgba(61,38,23,.82);
}

.montage-text{
  max-width: 72ch;
  font-size: 18px;
  line-height: 1.7;
}

.montage-text p{
  margin: 0 0 16px;
  color: #dbc5a8;
}

.montage-text p:last-child{
  margin-bottom: 0;
}

.montage-section--light .montage-text p{
  color: rgba(61,38,23,.84);
}

.manifest-composition,
.essay-grid,
.book-spread{
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, .75fr);
  gap: 32px;
  align-items: start;
}

.manifest-panel{
  position: relative;
  padding: 38px;
  border: 1px solid rgba(196,155,99,.18);
  border-radius: 12px;
  background: var(--montage-panel);
  overflow: hidden;
}

.manifest-panel::after{
  content: "01";
  position: absolute;
  right: 24px;
  bottom: 8px;
  font-family: var(--montage-serif);
  font-size: clamp(4.2rem, 8vw, 7.4rem);
  line-height: 1;
  color: rgba(196,155,99,.08);
}

.margin-note{
  align-self: end;
  padding-top: 16px;
  border-top: 1px solid var(--montage-line);
  color: var(--montage-text-soft);
  max-width: 28ch;
}

.margin-note p{
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.68;
}

.margin-note__label{
  color: var(--montage-muted);
}

.margin-note--light{
  max-width: none;
  color: rgba(50,31,19,.86);
  border-top-color: rgba(128,89,53,.2);
}

.margin-note--light .margin-note__label{
  color: #7a4e2b;
}

.essay-grid__aside{
  display: grid;
  gap: 22px;
}

.project-sequence{
  display: grid;
  gap: 22px;
}

.project-strip{
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  width: min(100%, 64rem);
  padding-top: 18px;
  border-top: 1px solid var(--montage-line);
}

.project-strip:nth-child(even){
  width: min(100%, 56rem);
  margin-left: auto;
}

.project-strip__number{
  font-family: var(--montage-serif);
  font-size: 34px;
  line-height: 1;
  color: rgba(196,155,99,.82);
}

.project-strip__body{
  display: grid;
  gap: 8px;
}

.project-strip__eyebrow{
  color: var(--montage-muted);
}

.project-strip h3{
  margin: 0;
  font-family: var(--montage-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.25rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.project-strip p{
  margin: 0;
  max-width: 50ch;
  color: #d8c2a6;
  font-size: 17px;
  line-height: 1.68;
}

.audience-layout{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 18px 42px;
  align-items: start;
}

.audience-layout .montage-section__head{
  grid-column: 1 / -1;
  margin-bottom: 10px;
}

.audience-layout__copy{
  max-width: 72ch;
}

.audience-list{
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 34rem;
}

.audience-list li{
  padding: 14px 0;
  border-top: 1px solid rgba(128,89,53,.2);
  color: rgba(50,31,19,.9);
}

.audience-list__role{
  font-family: var(--montage-serif);
  font-size: 21px;
  line-height: 1.32;
  letter-spacing: -.02em;
}

.audience-list__benefit{
  font-size: 18px;
  line-height: 1.6;
  color: rgba(61,38,23,.82);
  opacity: 0;
  animation: audience-benefit-reveal .8s ease forwards;
}

.audience-list li:nth-child(1) .audience-list__benefit{ animation-delay: .15s; }
.audience-list li:nth-child(2) .audience-list__benefit{ animation-delay: .35s; }
.audience-list li:nth-child(3) .audience-list__benefit{ animation-delay: .55s; }
.audience-list li:nth-child(4) .audience-list__benefit{ animation-delay: .75s; }
.audience-list li:nth-child(5) .audience-list__benefit{ animation-delay: .95s; }
.audience-list li:nth-child(6) .audience-list__benefit{ animation-delay: 1.15s; }

@keyframes audience-benefit-reveal{
  from{
    opacity: 0;
  }

  to{
    opacity: 1;
  }
}

.book-spread__page{
  padding: 34px;
  border-radius: 12px;
  border: 1px solid rgba(128,89,53,.18);
  background: var(--montage-panel-strong);
}

.book-spread__page p{
  color: #3a2314;
}

.book-spread__note{
  align-self: center;
  max-width: 28ch;
  padding-top: 16px;
  border-top: 1px solid var(--montage-line);
  color: var(--montage-text-soft);
}

.book-spread__note p{
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.68;
}

.montage-section--follow{
  padding-top: calc(var(--sec) * .86);
}

.follow-panel{
  padding: 38px;
  border: 1px solid rgba(196,155,99,.18);
  border-radius: 12px;
  background: var(--montage-panel);
}

.follow-panel .montage-section__head{
  margin-bottom: 26px;
}

.follow-links{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.follow-link{
  display: grid;
  gap: 6px;
  min-height: 100%;
  padding: 18px 18px 16px;
  border: 1px solid rgba(196,155,99,.18);
  border-radius: 10px;
  background: rgba(43,28,19,.5);
}

.follow-link:hover{
  border-color: rgba(196,155,99,.42);
  background: rgba(58,37,23,.58);
}

.follow-link--soon{
  color: var(--montage-text-soft);
}

.follow-link__name{
  font-family: var(--montage-serif);
  font-size: 24px;
  line-height: 1.06;
  letter-spacing: -.03em;
}

.follow-link__meta{
  font-family: var(--montage-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--montage-muted);
}

.montage-footer{
  padding: 0 0 calc(var(--sec) * .86);
}

.montage-footer__inner{
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--montage-line);
  color: var(--montage-muted);
  font-size: 14px;
}

@media (max-width: 980px){
  .manifest-composition,
  .essay-grid,
  .book-spread,
  .audience-layout{
    grid-template-columns: 1fr;
  }

  .margin-note,
  .book-spread__note{
    max-width: none;
  }

  .audience-layout .montage-section__head{
    margin-bottom: 18px;
  }

  .project-strip,
  .project-strip:nth-child(even){
    width: 100%;
    margin-left: 0;
  }

  .follow-links{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px){
  .montage-topbar__inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .montage-nav{
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
  }

  .montage-hero{
    padding-top: 74px;
  }

  .montage-hero__index{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .montage-hero__index span:nth-child(2n){
    border-right: 0;
  }

  .montage-route{
    gap: 12px 18px;
  }

  .project-strip{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .project-strip__number{
    font-size: 28px;
  }

  .audience-list__role,
  .audience-list__benefit{
    font-size: 17px;
  }

  .follow-panel,
  .manifest-panel,
  .book-spread__page{
    padding: 24px;
  }

  .follow-links{
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce){
  .audience-list__benefit{
    opacity: 1;
    animation: none;
  }
}
