/* =========================
   Fonts (same folder paths)
========================= */
@font-face{
  font-family:'00Wagram-Mono';
  src:url('00WagramMonoDisplayNon-Commercial-Thin.otf') format('opentype');
  font-weight:300;
  font-style:normal;
}
@font-face{
  font-family:'00Wagram-Mono';
  src:url('00WagramMonoDisplayNon-Commercial-ThinItalic.otf') format('opentype');
  font-weight:300;
  font-style:italic;
}

@font-face{
  font-family:'00Wagram';
  src:url('00WagramDisplayNon-Commercial-Thin.otf') format('opentype');
  font-weight:300;
  font-style:normal;
}

@font-face{
  font-family:'00Wagram';
  src:url('00WagramDisplayNon-Commercial-ThinItalic.otf') format('opentype');
  font-weight:300;
  font-style:italic;
}

/* =========================
   Tokens + Base
========================= */
:root{
  --bg:#0b0b0b;
  --ink:rgba(255,255,255,.88);

  /* homepage card */
  --homeCard:rgba(255,255,255,.92);
  --homeCardInk:rgba(0,0,0,.72);

  /* archive palette */
  --bg-cream:#ffffff;
  --fade:0.18;
  --olive:#a7b472;

  /* archive overlay card */
  --archiveCard:rgba(149, 138, 144, 0.86);
  --archiveCardText:rgba(255,255,255,.92);
  --archiveRule:rgba(255,255,255,.6);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family:'00Wagram',serif;
  font-weight:300;
}

.layout-hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  background:var(--bg);
  color:var(--ink);
  --navColor: rgba(255,255,255,.88);
}

.hero-bg{
  position:absolute;
  inset:0;
  background-image:url("img/landing.jpg");
  background-size:cover;
  background-position:center 28%;
  background-repeat:no-repeat;
  transform:scale(1);
  z-index:0;
}

.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 700px at 60% 30%, rgba(0,0,0,0) 0%, rgba(0,0,0,.22) 70%, rgba(0,0,0,.32) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.25));
  pointer-events:none;
}

/* Top nav */
.top-nav{
  position:relative;
  font-family: '00Wagram-Mono';
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 34px;
  font-size:12px;
  letter-spacing:.02em;
}

.top-nav a{
  position: relative;
  display: inline-block;
}

.top-nav a::after{
  content: attr(data-text);
  font-style: italic;
  font-family: '00Wagram-Mono';
  position: absolute;
  left: 0;
  top: 0;
  visibility: hidden;
  pointer-events: none;
}

.layout-hero .social-links{
  font-family: '00Wagram-Mono';
  margin-top:12px;
  font-size:11.1px;
}

.layout-hero .social-links a{
  color:inherit;
  text-decoration:none;
  border-bottom:1px dotted rgba(0,0,0,.65);
  padding-bottom:2px;
  opacity:0.6;
  transition:opacity .1s ease;
}

.layout-hero .social-links a:hover{
  opacity:1;
  border-bottom:0px dotted rgba(0,0,0,.65);
}

.layout-hero .info-card{
  font-family: '00Wagram';
  position:absolute;
  left:22px;
  bottom:22px;
  width:280px;
  min-height:240px;
  padding:22px 22px 18px;
  background:var(--homeCard);
  color:var(--homeCardInk);
  box-shadow:0 8px 20px rgba(0,0,0,.18);
  z-index:2;
}

.layout-hero .info-card .mark{
  font-size:24px;
  line-height:1;
  margin-bottom:120px;
  opacity:.87;
}

.layout-hero .info-card p{
  margin:0;
  font-size:13px;
  line-height:1.35;
}

.layout-hero .info-card em,
.layout-hero .info-card .i{
  font-style:italic;
}

@media (max-width:720px){
  .top-nav{
    padding:18px 18px;
    font-size:16px;
    gap:14px;
    flex-wrap:wrap;
    justify-content:flex-start;
  }
  .layout-hero .info-card{
    left:16px;
    right:16px;
    width:auto;
  }
  .layout-hero .info-card .mark{
    margin-bottom:64px;
  }
}


.archive-page{
  margin:0;
  min-height:100vh;
  background:var(--bg-cream);
  overflow:hidden;
  --navColor: rgba(0,0,0,.75);

  --card-x:2;
  --card-y:18;
}

/* top-right dropdown */
.archive-page .collection-topright{
  position:absolute;
  top:60px;
  right:30px;
  z-index:80;
  font-style:italic;
}
.archive-page .collection-topright select{
  font-family:inherit;
  font-size:12px;
  font-weight:100;
  background:transparent;
  border: dotted 0.5pt;
  outline:none;
  cursor: pointer;
}

/* stage */
.archive-page .archive-stage{
  position:relative;
  width:100vw;
  height:100vh;
}

/* collage tiles */
.archive-page .collage{
  position:absolute;
  object-fit:cover;
  opacity:var(--fade);
  z-index:1;
  pointer-events:none;
  transition:opacity .35s ease;
}

/* match your layout */
.archive-page .collage.a{ left:70px; top:60px; width:360px; height:460px; }
.archive-page .collage.b{ left:350px; top:290px; width:420px; height:310px; }
.archive-page .collage.c{ right:60px; top:140px; width:320px; height:200px; }
.archive-page .collage.d{ right:290px; top:400px; width:200px; height:200px; }

/* hotspots */
.archive-page .hotspot{
  position:absolute;
  z-index:20;
  background:transparent;
  border:0;
  padding:0;
  cursor:none;
}
.archive-page .hotspot:focus{
  outline:1px solid rgba(167,180,114,.35);
  outline-offset:2px;
}

.archive-page .hotspot.ha{ left:70px; top:60px; width:360px; height:460px; }
.archive-page .hotspot.hb{ left:350px; top:290px; width:420px; height:310px; }
.archive-page .hotspot.hc{ right:30px; top:200px; width:300px; height:190px;}
.archive-page .hotspot.hd{ right:290px; top:400px; width:200px; height:200px; }


.archive-stage:has(.hotspot.ha:hover) .collage.a,
.archive-stage:has(.hotspot.hb:hover) .collage.b,
.archive-stage:has(.hotspot.hc:hover) .collage.c,
.archive-stage:has(.hotspot.hd:hover) .collage.d{
  opacity: 1;
}

.archive-page .look-label{ display:none; }


.archive-page .look-title{
  position: fixed; /* important */
  left: 0;
  top: 0;
  z-index: 100;

  color: rgba(255,255,255,.9);
  font-style: italic;
  font-size: 18px;
  letter-spacing: .02em;

  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -160%); /* slightly above cursor */
  transition: opacity .2s ease;
}

.archive-page .look-title.align-left{ transform:translate(0,-50%); }
.archive-page .look-title.align-center{ transform:translate(-50%,-50%); }
.archive-page .look-title.align-right{ transform:translate(-100%,-50%); }

.archive-page .archive-card{
  position:absolute;
  top:calc(var(--card-y) * 1%);
  z-index:35;

  width:min(420px, 32vw);
  background:var(--archiveCard);
  color:var(--archiveCardText);
  padding:22px 24px 20px;

  opacity:0;
  pointer-events:none;
  transition:opacity .35s ease;
}

.archive-page .archive-card.anchor-left{
  left:calc(var(--card-x) * 1%);
  right:auto;
}

.archive-page .archive-card.anchor-right{
  right:calc((100 - var(--card-x)) * 1%);
  left:auto;
}

.archive-page.is-hovering .archive-card,
.archive-page.is-hovering .look-title{
  opacity:1;
  pointer-events:auto;
}

.archive-page .archive-num{
  font-style:italic;
  font-size:14px;
  margin-bottom:15px;
}
.archive-page .archive-name{
  font-style:italic;
  font-size:16px;
  margin-bottom:15px;
}
.archive-page .archive-desc{
  margin:0;
  font-size:12px;
  line-height:1.35;
  max-width:58ch;
}
.archive-page .rule{
  height:1px;
  background:var(--archiveRule);
  margin:15px 0;
}
.archive-page .archive-credits{
  font-size:10.5px;
  line-height:1.35;
}
.archive-page .archive-award{
  font-size:9.6px;
  line-height:1.35;
  letter-spacing: -.02em;
}

/* monogram */
.archive-page .monogram-svg{
  position:absolute;
  left:20px;
  bottom:10px;
  width:40px;
  height:auto;
  z-index:40;
}

/* monogram */
.monogram-svg{
  position:fixed;
  left:20px;
  bottom:10px;
  width:40px;
  height:auto;
  z-index:40;
}

@media (max-width:980px){
  .archive-page .collection-topright{ right:24px; top:24px; }

  .archive-page .collage.a{ left:40px; top:120px; width:60vw; height:56vh; }
  .archive-page .collage.b{ left:18vw; top:44vh; width:46vw; height:42vh; }
  .archive-page .collage.c{ right:50px; top:140px; width:44vw; height:74vh; }
  .archive-page .collage.d{ right:40px; top:68vh; width:28vw; height:20vh; }

  .archive-page .hotspot.ha{ left:40px; top:120px; width:60vw; height:56vh; }
  .archive-page .hotspot.hb{ left:18vw; top:44vh; width:46vw; height:42vh; }
  .archive-page .hotspot.hc{ right:40px; top:140px; width:34vw; height:24vh; }
  .archive-page .hotspot.hd{ right:40px; top:68vh; width:28vw; height:20vh; }

  /* card becomes centered on mobile */
  .archive-page .archive-card{
    left:50% !important;
    right:auto !important;
    transform:translateX(-50%) !important;
    width:min(420px, 90vw);
  }
}
.archive-page .collage.is-active{ opacity: 1; }

.archive-page.is-hovering{ cursor: none; }

.cursor-dot{
  position: fixed;
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  pointer-events: none;
  z-index: 200;

  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity .15s ease;
}

.archive-page.is-hovering .cursor-dot{
  opacity: 1;
}


/* =========================
   CONSTRUCTION 
========================= */

.construction-page{
  background: var(--bg-cream);
  --navColor: rgba(0,0,0,.75);

  /* where the cards pin */
  --pinTop: 170px;

  /* stack “fan” offsets */
  --stackShiftY: 14px;
  --stackShiftX: 10px;

  /* card look */
  --cardBg: rgba(149, 138, 144, 0.16); 
  --cardBorder: rgba(0,0,0,.12);
  --cardShadow: 0 14px 40px rgba(0,0,0,.10);
}


.construction-base{
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: auto;
}

.construction-title{
  font-family: '00Wagram', serif;
  font-weight: 300;
  font-size: clamp(64px, 9vw, 100px);
  margin: 60px 0 0;
  text-align: center;
  color: rgba(0,0,0,.92);
}

.construction-copy{
  width: min(730px, 86vw);
  margin: 29px auto 0;
  font-size: 13px;
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: rgba(0,0,0,.90);
  text-align: justify;
  pointer-events: default;
}

.quote-card{
  position: absolute;
  left: 50%;
  bottom: max(35px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  font-size: 11.8px;
  width: min(720px, 96vw);
  border: 1px dotted rgba(0,0,0,.28);
  padding: clamp(73px, 6vw, 18px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: justify;

}


    .sig{
      display:block;
      width:100%;
      text-align:right;
      margin-top: 10px;
      color: rgba(0,0,0,1);
      white-space: nowrap;
    }

.scroll-space {
      height: 3200px;
      position: relative;
      z-index: 0;
    }

    /* stacked pages */
    .floating-page {
      position: fixed;
      left: 50%;
      top: 145px;
      transform: translateX(-50%) translateY(70px) scale(.985);
      width: min(1180px, 88vw);
      height: min(645px, 74vh);
      opacity: 0;
      pointer-events: none;
      transition:
        opacity .55s ease,
        transform .7s cubic-bezier(.2,.8,.2,1);
    }

    .floating-page.is-visible {
      opacity: 1;
      transform: translateX(-50%) translateY(0) scale(1);
      pointer-events: auto;
    }

    .page-inner {
      position: relative;
      width: 100%;
      height: 100%;
    }


    .page-0{
  z-index: 5;
}
    .page-1 { z-index: 5; }
    .page-2 { z-index: 6; }
    .page-3 { z-index: 7; }
    .page-4 { z-index: 8; }
    .page-5 { z-index: 9; }
    .page-6 { z-index:10; }
    .page-7 { z-index:11; }
    .page-8 { z-index:12; }
    .page-9 { z-index:13; }
    .page-10 { z-index:14; }


    .page-0{
  z-index: 5;
}

.page-0 .page-inner.spread-layout{
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.page-0 .spread-page{
  position: relative;
  height: 100%;
  background: rgba(235, 234, 231, 0.27);
  overflow: hidden;
}

.page-0 .spread-left,
.page-0 .spread-right{
  display: grid;
  grid-template-columns: 170px 1fr;
  column-gap: 18px;
  padding: 36px 28px 26px 28px;
}

.page-0 .spread-photo-col{
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.page-0 .spread-photo{
  margin: 0;
}

.page-0 .spread-photo img{
  width: 120px;
  height: 130px;
  object-fit: cover;
  display: block;
  opacity: 80%;
  mix-blend-mode: overlay;
}

.page-0 .spread-photo figcaption{
  margin-top: 4px;
  font-size: 9px;
  line-height: 1;
  color: rgba(0,0,0,.82);
}


.page-0 .spread-copy{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  font-size: 12px;
  line-height: 1.12;
  color: rgba(0,0,0,.32);
}


.page-0 .spread-right::before{
  content: "";
  position: absolute;
  left: -9px;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(0,0,0,.05);
}

/* page 1 */
.page-1 .left-panel {
  position: absolute;
  left: 180px;
  top: 20px;
  width: 800px;
  height: 92%;
  background: rgba(239, 236, 229, 0.77);
  padding: 28px;
  box-shadow: 2px 2px 10px 2px rgba(197, 197, 197, 0.03);
  border: 0.1px solid rgba(147, 147, 147, 0.05);
}

.page-1 .label {
  font-size: 19px;
  margin-bottom: 320px;
  font-style: italic;
}

.page-1 .text {
  position: relative;
  top: -50px;
  width: 295px;
  font-size: 12px;
  line-height: 1.12;
}

    /* page 2 */
    .page-2 .right-panel {
      position: absolute;
      right: 0px;
      top: 20px;
      width: 440px;
      height: 92%;
      background: rgba(177, 190, 120, 0.78);
      padding: 28px;
    }

    .page-2 .label {
      font-size: 20px;
           font-style: italic;
    }

    .page-2 .text {
      position: absolute;
      left: 28px;
      bottom: 48px;
      width: 295px;
      font-size: 12px;
      line-height: 1.12;
    }

    .page-2 .right-panel {
      position: absolute;
      right: 0;
      top: 0;
      width: 600px;
      height: 100%;
      background: rgba(246, 245, 241, 0.209);
      padding: 18px;
    }

    .page-2 .right-panel img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: .65;
    }

/* page 3 background wash */
.page-3 .wash{
  position:absolute;
  inset:0;
  background:rgba(248,247,242,.82);
}

/* small image on left */

.page-3 .center-card{
  position:absolute;
  left:160px;
  top:120px;
  width:260px;
}

.page-3 .right-text{
  position:absolute;
  left:620px;
  top:40px;
  width:520px;
  max-width:48vw;
      font-size: 13px;
      line-height: 1.2;
  color:rgba(0,0,0,1);
}

.page-3 .italic-text {
  font-style: italic;
  font-size: 13.5px;
}

.page-3 .right-text p{
  margin:0 0 18px 0;
}

/* small image container */

.page-3 .center-card{
  position:absolute;
  left:160px;
  top:120px;
  width:400px;
  height:260px;
}


.page-3 .center-card .img-top{
  position:absolute;
  left:181px;
  bottom:-107px;
  width:223px;
  height:125px;
  opacity:.8;
  object-fit:cover;
}

.page-3 .center-card .img-bottom{
  position:absolute;
  left:181px;
  bottom:25px;
  width:223px;
  height:125px;
  opacity:.8;
  object-fit:cover;
}


/* page 4 — full bleed with centered left list */
.page-4{
  z-index: 9;
}

.page-4 .page-inner.full-bleed-layout{
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(248, 247, 242, 0.48);
  overflow: hidden;
}

/* optional paper texture if you want it on this page too */
.page-4 .page-inner.full-bleed-layout::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;

  background-image:url("img/paper.jpg");
  background-size:950px;
  background-repeat:repeat;
  background-position:center;
  mix-blend-mode:soft-light;
  opacity:.45;
}

.page-4 .left-list{
  position: absolute;
  left: 25%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;

  display: flex;
  flex-direction: column;
  gap: 67px;

  text-align: center;
  align-items: center;

  font-size: 13.7px;
  line-height: 1;
  color: rgba(0,0,0,.88);
}

.page-4 .left-list div{
  white-space: nowrap;
}

/* PAGE 4 */

.page-4 .page-inner{
  position:relative;
  width:100%;
  height:100%;
}


/* right text panel */

.page-4 .right-panel{
  position:absolute;
  right:0;
  top:0;

  width:420px;
  height:100%;

  padding:8px 34px 34px 34px; 

  background:#bdcaa9; /* olive tone */
  color:#0a0a0a;

  font-size:11.7px;
  line-height:1.37;
    -webkit-text-stroke: #000 0.2px;
}

.page-4 .right-panel p{
  margin:0 0 16px 0;
}

    .debug {
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 100;
      background: rgba(0,0,0,.7);
      color: #fff;
      font: 12px/1 monospace;
      padding: 8px 10px;
      border-radius: 8px;
    }

.collect-popup{
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgb(0, 0, 0);
}

.collect-popup:hover{
  position: relative;
  display: inline-block;
  cursor: pointer; 
  text-decoration: dotted underline 1.25px;
}

.popup-images{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
  z-index: 50;
}

.collect-popup:hover .popup-images{
  opacity: 1;
}

.popup-images img{
  position: absolute;
  width: 120px;
  height: 150px;
  object-fit: cover;
  display: block;
  background: white;
  box-shadow: 0 7px 13px rgba(0,0,0,.02);
  transform-origin: center center;
}

#floating-images{
  position:fixed;
  top:0;
  left:0;
  width:100vw;
  height:100vh;
  pointer-events:none;
  z-index:200;
}

.floating-img{
  position:absolute;
  width:140px;
  height:170px;
  object-fit:cover;
  opacity:0;
  transform:scale(.9);
  transition:opacity .44s ease, transform .35s ease;
  box-shadow:0 7px 13px rgba(0,0,0,.05);
  background:white;
}




/* =========================
   SOFT PAPER / ARCHIVAL FEEL
========================= */

.page-0::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;

  background-image:url("img/paper.jpg");
  background-size: 1200px;
  background-repeat: repeat;
  background-position: center;

  opacity:.55;
  mix-blend-mode: soft-light;

  -webkit-mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(50% - 14px),
    transparent calc(50% - 6px),
    transparent calc(50% + 6px),
    #000 calc(50% + 14px),
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(50% - 14px),
    transparent calc(50% - 6px),
    transparent calc(50% + 6px),
    #000 calc(50% + 14px),
    #000 100%
  );
}


.page-2 .right-panel::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;

  background-image:url("img/paper.jpg");
  background-size: 800px;
  background-repeat: repeat;
  background-position: right;

  opacity:.55;
  mix-blend-mode: soft-light;

  -webkit-mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(50% - 14px),
    transparent calc(50% - 6px),
    transparent calc(50% + 6px),
    #000 calc(50% + 14px),
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(50% - 14px),
    transparent calc(50% - 6px),
    transparent calc(50% + 6px),
    #000 calc(50% + 14px),
    #000 100%
  );
}

.page-2 .video-wrap{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
  background: #e9e5d8; 
}

.page-2 .video-wrap video{
  width:100%;
  height:100%;
  object-fit:cover;
  display: block;
  opacity: .67;
}

/* paper texture */
.page-2 .video-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  background-image:url("img/paper_texture2.jpg");
  background-size:900px;
  background-repeat:repeat;
  background-position:center;

  mix-blend-mode:overlay;
  opacity:.2;
}

.page-3::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;

  background-image:url("img/paper.jpg");
  background-size: 1200px;
  background-repeat: repeat;
  background-position: center;

  opacity:.75;
  mix-blend-mode: soft-light;

  -webkit-mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(50% - 14px),
    transparent calc(50% - 6px),
    transparent calc(50% + 6px),
    #000 calc(50% + 14px),
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(50% - 14px),
    transparent calc(50% - 6px),
    transparent calc(50% + 6px),
    #000 calc(50% + 14px),
    #000 100%
  );
}

.page-4::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;

  background-image:url("img/paper.jpg");
  background-size: 1200px;
  background-repeat: repeat;
  background-position: center;

  opacity:.35;
  mix-blend-mode: soft-light;

  -webkit-mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(50% - 14px),
    transparent calc(50% - 6px),
    transparent calc(50% + 6px),
    #000 calc(50% + 14px),
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(50% - 14px),
    transparent calc(50% - 6px),
    transparent calc(50% + 6px),
    #000 calc(50% + 14px),
    #000 100%
  );
}

/* page 5 full bleed spread */

.page-5{
  z-index:10;
}

.page-5 .serenity-spread{
  width:100%;
  height:100%;
  background:rgba(240, 238, 233, 0.25);
}

/* large title */

.serenity-title{
    position:absolute;
  left:50%;
  top:45%;
  transform:translate(-50%,-50%);
  font-family:'00Wagram', serif;
  font-size: clamp(45px, 7.3vw, 200px);
  letter-spacing: .02em;
  font-weight:300;
  margin:0;
}

.serenity-sub{
  position:absolute;
  left:80px;
  top:47%;
  transform:translateY(-50%);

  font-size:13px;
  font-style:italic;
  opacity:.9;
    -webkit-text-stroke: #000 0.1px;
}

.page-5 .serenity-spread::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  background-image:url("img/paper.jpg");
  background-size:950px;
  background-repeat:repeat;
  background-position:center;

  mix-blend-mode:soft-light;
  opacity:.45;
}

.page-6 .page-inner.permanence-layout{
  position:relative;
  width:100%;
  height:100%;
  background:rgba(248,247,242,.78);
}


.page-6 .permanence-title{
  position:absolute;
  left:30px;
  top:20px;
  width:420px;
  font-size:40px;
  line-height:1.05;
  letter-spacing:-.01em;
      font-style: italic;
}


.page-6 .permanence-text{
  position:absolute;
  left:30px;
  top:340px;
  width:420px;

  font-size:12px;
  line-height:1.25;
}



.page-6 .permanence-note{
  position:absolute;
  left:30px;
  bottom:20px;
  font-size:13px;
  font-style: italic;
}



.page-6 .permanence-right{
  position:absolute;
  right:0;

  width:420px;
  height:100%;



  background:#d9d7c7;
}

.page-6 .permanence-right p{
  font-size:13px;
  line-height:1.21;
  padding:12px 15px;
  box-sizing:border-box;
}

/* gallery layout */
.page-6 .permanence-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:12px;
  padding:10px;
}

/* images */
.page-6 .permanence-gallery img{
  width:100%;
  height:120px;
  object-fit:cover;
  opacity:.84;
}

/* =========================
PAGE 7 — TRANSPARENCY ESSAY
========================= */

.page-7{
  z-index: 11;
}

.page-7 .page-inner.transparency-layout{
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(247, 245, 238, 0.92);
  overflow: hidden;
}

/* =========================
PAGE 8 VIDEO
========================= */

/* =========================
PAGE 8 VIDEO
========================= */

.page-8 .page-inner.video-scroll-layout{
  position: relative;
  width: 100%;
  height: 100%;
}

/* centered video */
.page-8 .transparency-video{
  position:absolute;
  left:54%;
  top:50%;
  transform:translate(-50%, -50%);

  width:340px;
  height:100%;

  overflow:hidden;
}

.page-8 .transparency-video video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:.85;
}
/* paper texture */
.page-8 .transparency-video::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  background-image:url("img/paper_texture2.jpg");
  background-size:900px;
  background-repeat:repeat;
  background-position:center;

  mix-blend-mode:overlay;
  opacity:.2;
}

.page-8 .page-inner.video-scroll-layout{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}


.page-7 .left-block{
  left: 20px;
  top: 20px;
  width: 420px;
}

.page-7 .left-block p{
  margin: 0 0 18px 0;
  font-size: 13px;
  line-height: 1.2;
}

/* shared text */
.page-7 .transparency-text{
  position: absolute;
  color: rgba(0,0,0,.93);
}

.page-7 .transparency-text p{
  margin: 0 0 18px 0;
  font-size: 13px;
  line-height: 1.2;
}

/* top right block */
.page-7 .top-block{
  left: 845px;
  top: 20px;
  width: 320px;
}

/* centered italic block */
.page-7 .italic-block{
  left: 600px;
  top: 200px;
  width: 560px;
}

.page-7 .italic-block p{
  font-style: italic;
  font-size: 12.7px;
  line-height: 1.28;
}

/* lower right block */
.page-7 .bottom-block{
  left: 845px;
  top: 288px;
  width: 320px;
}

/* optional paper feel */
.page-7::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background-image:url("img/paper.jpg");
  background-size:1200px;
  background-repeat:repeat;
  background-position:center;
  opacity:.68;
  mix-blend-mode:soft-light;
}

/* keep content above texture */
.page-7 .page-inner > *{
  position: absolute;
  z-index: 2;
}

/* =========================
PAGE 9 — TRANSLUCENT GALLERY
========================= */

.page-9 .page-inner.drag-gallery-layout{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(247,245,238,.78);
}

.page-9 .drag-gallery.free-layout{
  position: absolute;
  inset: 0;
}

.page-9 .drag-card{
  position: absolute;
  margin: 0;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(1px);
}

.page-9 .drag-card:active{
  cursor: grabbing;
}

.page-9 .drag-card img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* sizes */
.page-9 .drag-card.size-xs{
  width: 64px;
  height: 72px;
}

.page-9 .drag-card.size-s{
  width: 88px;
  height: 128px;
}

.page-9 .drag-card.size-m{
  width: 170px;
  height: 230px;
}

.page-9 .drag-card.size-m-vert{
  width: 155px;
  height: 255px;
}

.page-9 .drag-card.size-l{
  width: 200px;
  height: 270px;
}

.page-9 .drag-card.size-xl{
  width: 400px;
  height: 180px;
}

/* opacity / blur */
.page-9 .drag-card.blur-0 img{
  opacity: .72;
}

.page-9 .drag-card.blur-1 img{
  opacity: .44;
  filter: blur(.5px);
}

.page-9 .drag-card.blur-2 img{
  opacity: .24;
  filter: blur(.6px);
}

.page-9 .drag-card.blur-3 img{
  opacity: .16;
  filter: blur(.7px);
}

/* veil */
.page-9 .drag-gallery::before{
  content:"";
  position:absolute;
  inset:-20px;
  pointer-events:none;
  background: rgba(232,229,212,.18);
  mix-blend-mode: multiply;
}

/* paper overlay */
.page-9::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background-image:url("img/paper.jpg");
  background-size:1200px;
  background-repeat:repeat;
  background-position:center;
  opacity:.74;
  mix-blend-mode:soft-light;
}


.page-10 .serenity-spread{
  width:100%;
  height:100%;
  background:rgba(240, 238, 233, 0.25);
}

.page-10{
  cursor:none;
}

.page-10 .serenity-spread::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  background-image:url("img/paper.jpg");
  background-size:950px;
  background-repeat:repeat;
  background-position:center;

  mix-blend-mode:soft-light;
  opacity:.45;
}

/* floating text cursor */

.serenity-cursor{
  position:fixed;
  left:0;
  top:0;

  pointer-events:none;
  z-index:300;

  font-family:'00Wagram', serif;
  font-style:italic;
  font-size:13px;
  -webkit-text-stroke: #000 0.1px;

  opacity:.9;

  transform:translate(-160%,-400%);
  white-space:nowrap;
}

.page-10 .serenity-sub2{
  position:absolute;
  left:50%;
  top:31%;
  transform:translate(-50%, -100%);

  font-size:13px;
  font-style:italic;
  opacity:.9;

  -webkit-text-stroke:#000 0.1px;
}

.drag-card{
  position:absolute;
}

.drag-card img{
  display:block;
  width:100%;
}


.drag-label{
  position:absolute;
  left:0;
  bottom:-22px;

  font-family:'00Wagram', serif;
  font-size:10px;
  letter-spacing:.08em;

  color:#000000;

  pointer-events:none;
}





/* =========================
SERENITY PAGE
========================= */

.serenity-page{
  margin:0;
  background:#f6f6f3;
  color:#111;
  font-family:'00Wagram', serif;
  font-weight:300;
  --navColor: rgba(0,0,0,.78);
}

.serenity-page .serenity-main{
  width:min(1420px, calc(100vw - 72px));
  margin:0 auto 20px;
  padding-top:30px;
}
.serenity-page .serenity-hero{
  position:relative;
    margin-bottom: 0px;
  height: calc(100vh + 320px);
    overflow: hidden;
}

.serenity-page .collection-title-wrap{
  position:absolute;
  left:50%;
  top:60px;
  transform:translateX(-50%);
  z-index:20;

  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:15px;

  white-space:nowrap;
  color:#fff;
  text-align:center;

  will-change:transform,color;
  transition:color .28s ease;
}

.serenity-page .collection-title-wrap.is-dark{
  color:#111;
}

.serenity-page .collection-kicker{
  font-size:clamp(34px, 3.8vw, 68px);
  line-height:1;
  margin-top:8.2px;
  opacity:.95;
}

.serenity-page .collection-title{
  margin:0;
  font-size:clamp(88px, 10vw, 180px);
  line-height:.86;
  letter-spacing:-0.045em;
  font-weight:300;
}

.serenity-page .serenity-grid.two-up{
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:min(1040px, 86vw);
  height:100%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;

  will-change:transform, top;
}

.serenity-page .serenity-sticky{
  position:sticky;
  top:0px;
  height:100vh;
  overflow: visible;
}

.serenity-page .serenity-card{
  margin:0;
  height:100%;
  overflow:visible;
  background:#eceae2;
}

#image1 {
  width:100%;
  height:120%;
  object-fit:cover;
  object-position:center 18%;
  display:block;
}

#image2 {
  width:100%;
  height:120%;
  object-fit:cover;
  object-position:center 18%;
  display:block;
}

.serenity-page .serenity-intro{
  position: relative;
  z-index: 20;
  width:min(660px, 58vw);
  margin:-110px auto 60px;
}

.serenity-page .serenity-intro p{
  margin:0;
  font-size:13px;
  line-height:1.22;
  color:rgba(0,0,0,.88);
}

.serenity-page .serenity-hero::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:220px;

  background:linear-gradient(
    to bottom,
    rgba(246,246,243,0) 0%,
    rgba(246,246,243,.75) 55%,
    rgba(246,246,243,1) 100%
  );

  pointer-events:none;
  z-index:15;
}

/* =========================
SERENITY TIMELINE
========================= */

.serenity-page .serenity-timeline{
  width:min(1420px, calc(100vw - 72px));
  margin:120px auto 120px;
  display:flex;
  flex-direction:column;
  gap:140px;
}

.serenity-page .timeline-row{
  display:grid;
  grid-template-columns: 1fr minmax(0, 760px) 1fr;
  column-gap:30px;
  align-items:start;
}

.serenity-page .timeline-meta{
  justify-self:end;
  width:120px;
  position:sticky;
  top:28px;
  display:flex;
  flex-direction:column;
  gap:6px;
  align-self:start;
  text-align:left;
}

.serenity-page .timeline-index{
  font-size:28px;
  line-height:1;
  letter-spacing:-0.04em;
}

.serenity-page .timeline-label{
  font-size:11.5px;
  line-height:1.2;
  text-transform:uppercase;
  letter-spacing:0.08em;
  opacity:.72;
}

.serenity-page .timeline-media{
  width:100%;
  min-width:0;
}

.serenity-page .timeline-media.two-up{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
}

.serenity-page .timeline-media.single{
  display:block;
  width:100%;
}

.serenity-page .timeline-media.offset{
  align-items:start;
}

.serenity-page .timeline-card{
  margin:0;
  background:#eceae2;
  overflow:hidden;
}

.serenity-page .timeline-card img{
  width:100%;
  height:100%;
  min-height:620px;
  object-fit:cover;
  display:block;
}

.serenity-page .timeline-card.tall img{
  min-height:760px;
}

.serenity-page .timeline-text{
  justify-self:start;
  width:230px;
  max-width:300px;
  padding-top:4px;
}

.serenity-page .timeline-text p{
  margin:0;
  font-size:12px;
  line-height:1.24;
  color:rgba(0,0,0,.88);
}

.serenity-page .timeline-row + .timeline-row{
  position:relative;
}

.serenity-page .timeline-row + .timeline-row::before{
  content:"";
  position:absolute;
  top:-70px;
  left:0;
  width:100%;
  height:1px;
  background:rgba(0,0,0,.08);
}

/* responsive */
@media (max-width: 1100px){
  .serenity-page .serenity-timeline{
    gap:110px;
  }

  .serenity-page .timeline-row{
    grid-template-columns:90px minmax(0, 1fr);
    row-gap:24px;
  }

  .serenity-page .timeline-meta{
    justify-self:start;
    width:auto;
    position:relative;
    top:auto;
  }

  .serenity-page .timeline-text{
    grid-column:2;
    width:auto;
    max-width:520px;
  }
}

@media (max-width: 760px){
  .serenity-page .serenity-timeline{
    width:min(100vw - 32px, 680px);
    margin:90px auto 90px;
    gap:80px;
  }

  .serenity-page .timeline-row{
    grid-template-columns:1fr;
    row-gap:18px;
  }

  .serenity-page .timeline-meta{
    justify-self:start;
    width:auto;
    position:relative;
    top:auto;
    flex-direction:row;
    justify-content:space-between;
    align-items:baseline;
  }

  .serenity-page .timeline-media.two-up{
    grid-template-columns:1fr;
  }

  .serenity-page .timeline-card img,
  .serenity-page .timeline-card.tall img{
    min-height:56vw;
  }

  .serenity-page .timeline-text{
    width:auto;
    max-width:none;
    justify-self:start;
  }

  .serenity-page .timeline-row + .timeline-row::before{
    top:-40px;
  }
}