@font-face {
  font-family: "PP Neue Montreal";
  src: local("PP Neue Montreal Book"), local("PP Neue Montreal");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: local("PP Neue Montreal Medium");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: local("PP Neue Montreal Bold");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: local("PP Neue Montreal Italic");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: local("PP Neue Montreal SemiBold italic");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: "Aburo";
  src: url("../fonts/Aburo-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --linen: #ece9e1;
  --ink: #06070e;
  --pine: #29524a;
  --sea-glass: #6a8e7f;
  --orange: #e23d10;
  --gold: #efb11f;
  --paper: #f7f5ef;
  --line: rgba(6, 7, 14, 0.72);
  --pad: clamp(1rem, 2vw, 2.25rem);
  --footer-height: 3.35rem;
  --rail-height: 3.4rem;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: "PP Neue Montreal", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

button, a { color: inherit; }
button { font: inherit; }
a { text-decoration-thickness: 1px; text-underline-offset: .18em; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

button:focus-visible, a:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -5rem;
  background: var(--ink);
  color: var(--paper);
  padding: .75rem 1rem;
}
.skip-link:focus { top: 1rem; }

body.has-wayfinding main { padding-top: var(--rail-height); }

.wayfinding {
  position: fixed;
  z-index: 70;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: var(--rail-height) 5.5rem minmax(0, 1fr) auto auto;
  min-height: var(--rail-height);
  background: rgba(236, 233, 225, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.wayfinding[hidden] { display: none; }
.wayfinding button {
  min-width: 0;
  padding: 0 .9rem;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.wayfinding button:hover { background: var(--gold); }
.wayfinding__back { padding: 0 !important; font-size: 1.2rem; }
.wayfinding__home { display: flex; align-items: center; justify-content: center; }
.wayfinding__home img { width: 3rem; height: auto; object-fit: contain; filter: brightness(0); }
.wayfinding__current { display: flex; align-items: center; min-width: 0; margin: 0; padding: 0 1rem; overflow: hidden; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.wayfinding__current [data-current-short],
.wayfinding__contact-short { display: none; }
.wayfinding__explore { display: flex; align-items: center; gap: .55rem; border-left: 1px solid var(--line) !important; }
.wayfinding__explore[aria-expanded="true"] { background: var(--gold); }
.wayfinding__contact { border-right: 0 !important; background: var(--orange) !important; }
.wayfinding__contact:hover { background: var(--gold) !important; }

.explore-shell {
  position: fixed;
  z-index: 65;
  top: var(--rail-height);
  right: 0;
  width: min(40rem, calc(100% - 1rem));
  max-height: calc(100svh - var(--rail-height) - 1rem);
  overflow-y: auto;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, .34);
  border-top: 0;
  box-shadow: -1rem 1.25rem 3rem rgba(6, 7, 14, .22);
}
.explore-shell[hidden] { display: none; }
.explore-panel { min-width: 0; }
.explore-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.explore-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 7.25rem;
  padding: 1rem;
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .34);
  border-bottom: 1px solid rgba(255, 255, 255, .34);
  background: var(--ink);
  color: var(--paper);
  text-align: left;
  cursor: pointer;
}
.explore-card:nth-child(2n) { border-right: 0; }
.explore-card:nth-last-child(-n + 2) { border-bottom: 0; }
.explore-card > span { font-size: .68rem; letter-spacing: .12em; }
.explore-card strong { max-width: 13ch; margin: auto 0 .25rem; font-size: clamp(1.55rem, 2.3vw, 2.65rem); font-weight: 400; line-height: .9; letter-spacing: -.055em; }
.explore-card small { font-size: .76rem; }
.explore-card:hover strong,
.explore-card:focus-visible strong { font-style: italic; }
.explore-card:hover,
.explore-card:focus-visible { background: rgba(255, 255, 255, .09); }
.explore-card.is-current { box-shadow: inset 0 0 0 2px var(--gold); }
.explore-card.is-current::after { content: "You are here"; position: absolute; top: .75rem; right: .75rem; padding: .25rem .4rem; background: var(--gold); color: var(--ink); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; }

.site-footer {
  display: grid;
  align-items: center;
  min-height: var(--footer-height);
  background: var(--linen);
  position: relative;
  z-index: 20;
}

.site-footer button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.view[hidden] { display: none; }
.view { min-height: calc(100svh - var(--footer-height)); }
body.has-wayfinding .view { min-height: calc(100svh - var(--footer-height) - var(--rail-height)); }
body.has-wayfinding .clare-intro,
body.has-wayfinding .chapter-hero,
body.has-wayfinding .notes-intro,
body.has-wayfinding .side-hero { min-height: calc(100svh - var(--rail-height)); }

.door-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(18rem, calc((100svh - var(--footer-height)) / 2)));
}

.door {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--pad);
  text-align: left;
  isolation: isolate;
  cursor: default;
}

.door:nth-child(3n) { border-right: 0; }
.door:nth-last-child(-n + 3) { border-bottom: 0; }

.door h2,
.door__title {
  display: block;
  max-width: 13ch;
  margin: auto 0 0;
  font-size: clamp(2.1rem, 3vw, 4.15rem);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.05em;
  transition: transform .45s var(--ease), letter-spacing .45s var(--ease), font-style .15s ease;
}

.door__eyebrow,
.section-label {
  margin: 0;
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.door__dek { max-width: 25rem; margin: 1.2rem 0 0; font-size: clamp(.9rem, 1.2vw, 1.08rem); }
.door__symbol { position: absolute; right: var(--pad); bottom: calc(var(--pad) * .75); font-size: clamp(2.4rem, 4vw, 4.5rem); font-weight: 300; line-height: 1; transition: transform .45s var(--ease); }

.door--brand { background: var(--linen); }
.idle-lockup {
  display: grid;
  gap: clamp(.9rem, 1.3vw, 1.35rem);
  width: min(76%, 25rem);
  transform: translate(-.02em, .05em);
}
.idle-lockup img { width: 100%; height: auto; object-fit: contain; filter: brightness(0); }
.brand-paper-mark { position: absolute; right: var(--pad); bottom: var(--pad); width: clamp(3.9rem, 5vw, 5.4rem); height: auto; object-fit: contain; }
.door__whisper { position: absolute; left: var(--pad); bottom: var(--pad); max-width: 15rem; margin: 0; padding-right: 1rem; font-size: .78rem; }

.door--theory { display: flex; flex-direction: column; background: var(--sea-glass); }
.door--ways { display: flex; flex-direction: column; background: var(--pine); color: var(--paper); }
.door--side { display: flex; flex-direction: column; background: var(--orange); color: var(--ink); }
.door--interactive-text { cursor: pointer; }
.door--interactive-text .door__title { margin: auto 0 0; }

.door--interactive { cursor: pointer; color: var(--paper); }
.door--interactive > img:first-child,
.door--notes > img:first-child { position: absolute; inset: 0; z-index: -2; transition: transform .7s var(--ease), filter .7s var(--ease); }
.door__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6,7,14,.12), rgba(6,7,14,.8)); }
.door--interactive .door__title { position: absolute; left: var(--pad); bottom: var(--pad); padding-right: 3rem; }
.door--interactive .door__eyebrow {
  width: fit-content;
  background: rgba(6, 7, 14, .86);
  box-shadow: .35rem 0 0 rgba(6, 7, 14, .86), -.35rem 0 0 rgba(6, 7, 14, .86);
}
.door--interactive .door__eyebrow { padding-block: .25rem; }
.door--interactive .door__title {
  max-width: 11.5ch;
  padding: .32rem .45rem .42rem;
  padding-right: .55rem;
  background: var(--gold);
  color: var(--ink);
}
.door--interactive .door__symbol { top: var(--pad); bottom: auto; }
.door--interactive:hover > img:first-child,
.door--interactive:focus-visible > img:first-child { transform: scale(1.045); filter: saturate(.7) contrast(1.08); }

.door--notes { display: flex; flex-direction: column; background: var(--ink); color: var(--paper); }
.door--notes .door__shade { background: linear-gradient(180deg, rgba(6,7,14,.1), rgba(6,7,14,.68)); }
.door__symbol--paper { width: clamp(2.8rem, 4.2vw, 4.8rem); height: clamp(2.8rem, 4.2vw, 4.8rem); }
.door__symbol--paper img { position: static; width: 100%; height: 100%; object-fit: contain; }
.door__symbol--eye img { filter: invert(1); }

@media (hover: hover) and (pointer: fine) {
  .door--theory:hover .door__title {
    font-style: italic;
    letter-spacing: -.065em;
    transform: translateX(.35rem);
  }

  .door--theory:hover .door__symbol { transform: rotate(90deg); }

  .door--interactive:hover .door__title,
  .door--interactive:focus-visible .door__title {
    font-style: italic;
    transform: translate(.25rem, -.15rem);
  }

  .door--ways:hover .door__title {
    font-style: italic;
    letter-spacing: -.065em;
    transform: translateY(-.35rem);
  }

  .door--ways:hover .door__symbol { transform: rotate(-12deg) scale(1.08); }

  .door--notes:hover > img:first-child { transform: scale(1.06) translateX(-1.2%); }
  .door--notes:hover .door__title { font-style: italic; transform: translateX(.3rem); }

  .door--side:hover .door__title { font-style: italic; transform: translateX(.35rem); }
  .door--side:hover .door__symbol { transform: translate(.3rem, -.3rem); }
}

.clare-intro {
  display: grid;
  grid-template-columns: 1.25fr .9fr .85fr;
  min-height: 100svh;
  border-bottom: 1px solid var(--line);
}

.clare-intro > * { border-right: 1px solid var(--line); }
.clare-intro > *:last-child { border-right: 0; }

.clare-intro__statement {
  display: flex;
  flex-direction: column;
  padding: var(--pad);
  background: var(--linen);
}

.clare-intro__statement h1 {
  max-width: 10ch;
  margin: auto 0;
  font-size: clamp(4rem, 6.6vw, 8rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.07em;
}

.clare-intro__statement em {
  font-family: "PP Neue Montreal", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.045em;
}

.text-link { align-self: flex-start; padding: .35rem 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; }

.clare-intro__portrait { position: relative; margin: 0; min-height: 31rem; overflow: hidden; }
.clare-intro__portrait img { filter: grayscale(1) contrast(1.05); }
.clare-intro__portrait figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: .45rem .65rem;
  background: var(--paper);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.clare-intro__note { display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; padding: var(--pad); background: var(--gold); }
.clare-intro__note p { max-width: 26rem; margin: 0; }
.large-copy { margin-top: auto !important; font-size: clamp(1.7rem, 3vw, 3.6rem); line-height: 1; letter-spacing: -.045em; }

.thread-section,
.scrapbook-section { border-bottom: 1px solid var(--line); }

.section-heading {
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: var(--pad);
  padding: calc(var(--pad) * 1.6) var(--pad);
  border-bottom: 1px solid var(--line);
}
.section-heading h2 { max-width: 20ch; margin: 0; font-size: clamp(2.5rem, 5vw, 6.5rem); font-weight: 400; line-height: .95; letter-spacing: -.06em; }

.thread-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.thread-card { min-height: 24rem; padding: var(--pad); border-right: 1px solid var(--line); }
.thread-card:last-child { border-right: 0; }
.thread-card span { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.thread-card h3 { margin: 7rem 0 1rem; font-size: clamp(1.7rem, 2.5vw, 3rem); font-weight: 400; line-height: 1; letter-spacing: -.045em; }
.thread-card p { max-width: 20rem; }
.thread-card--dark { background: var(--ink); color: var(--paper); }

.section-heading--split { grid-template-columns: 1fr auto; align-items: end; }
.section-heading--split p:last-child { max-width: 13rem; margin: 0; font-size: 1.5rem; font-style: italic; }

.scrapbook-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 27rem 27rem;
  background: var(--paper);
}

.scrap-card { position: relative; min-width: 0; margin: 0; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.scrap-card figcaption { position: absolute; left: .75rem; bottom: .75rem; padding: .45rem .6rem; background: var(--paper); font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; }
.scrap-card--bike { grid-column: 1 / span 4; grid-row: 1 / span 2; }
.scrap-card--bike img { object-position: 48% 64%; }
.scrap-card--belief { grid-column: 5 / span 5; grid-row: 1; display: flex; flex-direction: column; justify-content: space-between; padding: var(--pad); background: var(--sea-glass); }
.scrap-card--belief p { max-width: 12ch; margin: 0; font-size: clamp(2.4rem, 4.2vw, 5.4rem); line-height: .95; letter-spacing: -.06em; }
.scrap-card--belief cite { font-size: .72rem; font-style: normal; text-transform: uppercase; letter-spacing: .1em; }
.scrap-card--daisies { grid-column: 10 / span 3; grid-row: 1; border-right: 0; }
.scrap-card--record { grid-column: 5 / span 3; grid-row: 2; padding: var(--pad); background: var(--linen); }
.scrap-card--record ul { margin: 3.5rem 0 0; padding: 0; list-style: none; }
.scrap-card--record li { padding: .7rem 0; border-top: 1px solid var(--line); }
.scrap-card--swap { grid-column: 8 / span 2; grid-row: 2; cursor: crosshair; }
.swap-frame { position: absolute; inset: 0; display: block; }
.swap-image { position: absolute; inset: 0; transition: clip-path .7s var(--ease), transform .7s var(--ease); }
.swap-image--back { clip-path: inset(100% 0 0 0); transform: scale(1.08); }
.scrap-card--swap:hover .swap-image--back,
.scrap-card--swap:focus-visible .swap-image--back { clip-path: inset(0); transform: scale(1); }
.scrap-card--swap:hover .swap-image--front,
.scrap-card--swap:focus-visible .swap-image--front { transform: scale(.97); }
.swap-caption { display: none; }
.scrap-card--swap:hover figcaption > span:first-child,
.scrap-card--swap:focus-visible figcaption > span:first-child { display: none; }
.scrap-card--swap:hover .swap-caption,
.scrap-card--swap:focus-visible .swap-caption { display: inline; }
.scrap-card--place { grid-column: 10 / span 3; grid-row: 2; border-right: 0; }

.closing-panel {
  display: grid;
  grid-template-columns: .4fr 1.4fr auto;
  gap: var(--pad);
  align-items: end;
  padding: clamp(4rem, 9vw, 10rem) var(--pad) var(--pad);
  background: var(--orange);
  color: var(--ink);
}
.closing-panel > p:nth-child(2) { max-width: 18ch; margin: 0; font-size: clamp(2.2rem, 4.6vw, 5.8rem); line-height: .94; letter-spacing: -.055em; }
.closing-panel a { white-space: nowrap; }

.place-keeper {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  border-bottom: 1px solid var(--line);
}
.place-keeper figure { min-height: 35rem; margin: 0; overflow: hidden; border-right: 1px solid var(--line); }
.place-keeper > div { display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; min-height: 35rem; padding: var(--pad); }
.place-keeper h2 { margin: auto 0 0; font-size: clamp(3rem, 5.4vw, 7rem); font-weight: 400; line-height: .9; letter-spacing: -.065em; }
.place-keeper p { max-width: 27rem; }
.quiet-link { width: fit-content; padding-bottom: .25rem; border-bottom: 1px solid currentColor; color: rgba(6, 7, 14, .55); }

.link-strip {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.link-strip > * { margin: 0; padding: 1rem var(--pad); border: 0; background: var(--linen); text-align: left; }
.link-strip button { cursor: pointer; }
.link-strip button:hover { background: var(--gold); }

.chapter-hero {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  min-height: 100svh;
  border-bottom: 1px solid var(--line);
}
.chapter-hero__main { display: flex; flex-direction: column; padding: var(--pad); border-right: 1px solid var(--line); }
.chapter-hero__main h1 {
  max-width: 10ch;
  margin: auto 0;
  font-size: clamp(4.5rem, 8.2vw, 10rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.075em;
}
.chapter-hero__artifact,
.chapter-hero__aside { display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; padding: var(--pad); }
.chapter-hero__artifact { background: var(--sea-glass); }
.chapter-hero__artifact img { width: min(80%, 22rem); height: auto; margin: auto; object-fit: contain; }
.chapter-hero__artifact p,
.chapter-hero__aside p { max-width: 25rem; margin: 0; font-size: clamp(1.4rem, 2.2vw, 2.8rem); line-height: 1; letter-spacing: -.04em; }

.live-question {
  display: grid;
  grid-template-columns: .35fr 1.4fr auto;
  gap: var(--pad);
  align-items: end;
  padding: clamp(4rem, 8vw, 9rem) var(--pad) var(--pad);
  background: var(--gold);
  border-bottom: 1px solid var(--line);
}
.live-question h2 { max-width: 18ch; margin: 0; font-size: clamp(3rem, 6.2vw, 8rem); font-weight: 400; line-height: .9; letter-spacing: -.065em; }
.live-question button,
.chapter-close button { padding: .4rem 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; white-space: nowrap; }

.theory-canvas,
.signal-section,
.ways-section,
.latest-section { border-bottom: 1px solid var(--line); }
.theory-cells { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.theory-cell { min-height: 24rem; padding: var(--pad); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.theory-cell:nth-child(4n) { border-right: 0; }
.theory-cell--intro { grid-column: span 2; display: flex; align-items: end; background: var(--pine); color: var(--paper); }
.theory-cell--intro p { max-width: 20ch; margin: 0; font-size: clamp(2.1rem, 3.5vw, 4.6rem); line-height: .96; letter-spacing: -.055em; }
.theory-cell--figure { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: var(--pad); align-items: center; margin: 0; background: var(--paper); border-right: 0; }
.theory-cell--figure img { width: min(100%, 12rem); height: auto; margin: auto; object-fit: contain; }
.theory-cell--figure figcaption { max-width: 18rem; }
.theory-cell span,
.signal-grid span,
.ways-grid span,
.notes-portal > span,
.notes-portal > div > span,
.latest-card > span { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.theory-cell h3,
.signal-grid h3,
.ways-grid h3 { margin: 8rem 0 1rem; font-size: clamp(1.8rem, 2.7vw, 3.4rem); font-weight: 400; line-height: .98; letter-spacing: -.05em; }

.chapter-close {
  display: grid;
  grid-template-columns: .35fr 1.4fr auto;
  gap: var(--pad);
  align-items: end;
  padding: clamp(5rem, 10vw, 11rem) var(--pad) var(--pad);
  background: var(--orange);
}
.chapter-close--gold { background: var(--gold); }
.chapter-close > p:nth-child(2) { max-width: 19ch; margin: 0; font-size: clamp(2.6rem, 5.3vw, 6.6rem); line-height: .92; letter-spacing: -.06em; }

.chapter-hero--ways .chapter-hero__main { background: var(--linen); }
.chapter-hero__aside { background: var(--pine); color: var(--paper); }
.chapter-hero__aside img { width: min(55%, 12rem); height: auto; margin: auto; object-fit: contain; }

.human-signal { overflow: hidden; background: var(--ink); color: var(--paper); border-bottom: 1px solid var(--line); }
.human-signal__marquee { overflow: hidden; border-bottom: 1px solid rgba(247,245,239,.5); }
.human-signal__marquee span {
  display: block;
  width: max-content;
  padding: .4rem 0 .7rem;
  font-size: clamp(5rem, 12vw, 14rem);
  font-style: italic;
  line-height: .85;
  letter-spacing: -.075em;
  white-space: nowrap;
  animation: humanMarquee 22s linear infinite;
}
@keyframes humanMarquee { to { transform: translateX(-50%); } }
.human-signal__notes { display: grid; grid-template-columns: repeat(3, 1fr); }
.human-signal__notes p { min-height: 8rem; margin: 0; padding: var(--pad); border-right: 1px solid rgba(247,245,239,.5); }
.human-signal__notes p:last-child { border-right: 0; }

.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.signal-grid article { min-height: 25rem; padding: var(--pad); border-right: 1px solid var(--line); }
.signal-grid article:last-child { border-right: 0; }

.ways-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.ways-grid article { min-height: 27rem; padding: var(--pad); border-right: 1px solid var(--line); }
.ways-grid article:last-child { border-right: 0; }
.ways-grid h3 { margin-top: 10rem; }
.ways-grid p { max-width: 24rem; }

.company-section { display: grid; grid-template-columns: .9fr 1.1fr; background: var(--gold); border-bottom: 1px solid var(--line); }
.company-section__title,
.company-section__manifesto { min-height: 42rem; padding: var(--pad); border-right: 1px solid var(--line); }
.company-section__manifesto { border-right: 0; }
.company-section__title h2 { margin: 8rem 0 0; font-size: clamp(4rem, 7.4vw, 9rem); font-weight: 400; line-height: .82; letter-spacing: -.075em; }
.company-section__title em { font-weight: 400; }
.company-section__manifesto { display: flex; flex-direction: column; justify-content: end; gap: 2rem; }
.company-section__manifesto p:first-child { max-width: 18ch; margin: 0; font-size: clamp(2rem, 3.4vw, 4.4rem); line-height: .96; letter-spacing: -.055em; }
.company-section__manifesto p:last-child { max-width: 36rem; }
.company-tags { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: .6rem; padding: var(--pad); border-top: 1px solid var(--line); }
.company-tags span { padding: .55rem .8rem; border: 1px solid var(--line); border-radius: 999px; }
.company-photo { position: relative; grid-column: 1 / -1; min-height: clamp(24rem, 54vw, 50rem); margin: 0; overflow: hidden; border-top: 1px solid var(--line); }
.company-photo figcaption { position: absolute; right: 1rem; bottom: 1rem; padding: .45rem .65rem; background: var(--paper); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }

.notes-intro { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 100svh; border-bottom: 1px solid var(--line); }
.notes-intro__statement { display: flex; flex-direction: column; padding: var(--pad); border-right: 1px solid var(--line); }
.notes-intro__statement h1 { max-width: 11ch; margin: auto 0; font-size: clamp(4.2rem, 7.7vw, 9.5rem); font-weight: 400; line-height: .86; letter-spacing: -.075em; }
.notes-intro__image { position: relative; min-height: 34rem; margin: 0; overflow: hidden; }
.notes-intro__image figcaption,
.contact-photo figcaption { position: absolute; right: 1rem; bottom: 1rem; padding: .45rem .65rem; background: var(--paper); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }

.notes-portals { display: grid; grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid var(--line); }
.notes-portal { position: relative; min-height: 42rem; overflow: hidden; border-right: 1px solid var(--line); color: inherit; text-decoration: none; }
.notes-portal:last-child { border-right: 0; }
.notes-portal--photo > img { position: absolute; inset: 0; z-index: -1; filter: saturate(.8); transition: transform .7s var(--ease); }
.notes-portal--photo > div { position: absolute; inset: auto 0 0; padding: var(--pad); background: linear-gradient(transparent, rgba(6,7,14,.9)); color: var(--paper); }
.notes-portal h2 { max-width: 10ch; margin: 1rem 0; font-size: clamp(4rem, 7vw, 8.5rem); font-weight: 400; line-height: .86; letter-spacing: -.075em; }
.notes-portal p { max-width: 25rem; }
.notes-portal--words { display: flex; flex-direction: column; justify-content: space-between; padding: var(--pad); background: var(--orange); }
.notes-portal:hover h2 { font-style: italic; }
.notes-portal--photo:hover > img { transform: scale(1.04); }

.latest-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.latest-card { min-height: 27rem; padding: var(--pad); border-right: 1px solid var(--line); }
.latest-card { color: inherit; text-decoration: none; }
.latest-card:last-child { border-right: 0; }
.latest-card--image { position: relative; padding: 0; overflow: hidden; }
.latest-card--image > span { position: absolute; left: .75rem; bottom: .75rem; padding: .45rem .6rem; background: var(--paper); }
.latest-card h3 { margin: 8rem 0 1rem; font-size: clamp(2rem, 3vw, 3.8rem); font-weight: 400; line-height: .95; letter-spacing: -.055em; }
.latest-card--fragment { display: flex; flex-direction: column; justify-content: space-between; background: var(--sea-glass); }
.latest-card--fragment p { margin: auto 0 0; font-size: clamp(2rem, 3vw, 3.8rem); line-height: .95; letter-spacing: -.055em; }

.side-hero { display: grid; grid-template-columns: 1.65fr .75fr; min-height: 100svh; background: var(--orange); border-bottom: 1px solid var(--line); }
.side-hero__main { display: flex; flex-direction: column; padding: var(--pad); border-right: 1px solid var(--line); }
.side-hero__main h1 { max-width: 10ch; margin: auto 0; font-size: clamp(5rem, 9.5vw, 12rem); font-weight: 400; line-height: .84; letter-spacing: -.08em; }
.side-hero__note { display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; padding: var(--pad); }
.side-hero__note img { width: min(70%, 14rem); height: auto; margin: auto; object-fit: contain; }
.side-hero__note p { max-width: 13ch; margin: 0; font-size: clamp(1.8rem, 3vw, 3.8rem); line-height: .96; letter-spacing: -.05em; }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.contact-grid > * { min-height: 34rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-grid > *:nth-child(2n) { border-right: 0; }
.contact-form { display: grid; grid-template-columns: 9rem 1fr; align-content: start; gap: 0; padding: var(--pad); }
.contact-form .section-label { grid-column: 1 / -1; margin-bottom: 4rem; }
.contact-form label { padding: 1rem 1rem 1rem 0; border-top: 1px solid var(--line); }
.contact-form input,
.contact-form textarea { width: 100%; padding: 1rem 0; border: 0; border-top: 1px solid var(--line); border-radius: 0; outline: 0; background: transparent; font: inherit; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus { background: rgba(239,177,31,.22); }
.contact-form button { grid-column: 2; justify-self: start; margin-top: 1rem; padding: .6rem 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; }
.form-note { grid-column: 2; max-width: 28rem; color: rgba(6,7,14,.6); font-size: .78rem; }
.currently-card { display: flex; flex-direction: column; justify-content: space-between; padding: var(--pad); background: var(--gold); }
.currently-card h2 { max-width: 14ch; margin: auto 0 1rem; font-size: clamp(2.8rem, 5vw, 6rem); font-weight: 400; line-height: .9; letter-spacing: -.065em; }
.currently-card p:last-child { max-width: 26rem; }
.contact-photo { position: relative; margin: 0; overflow: hidden; }
.elsewhere-card { display: flex; flex-direction: column; padding: var(--pad); background: var(--ink); color: var(--paper); }
.elsewhere-card a { display: flex; justify-content: space-between; padding: 1rem 0; border-top: 1px solid rgba(247,245,239,.5); font-size: clamp(1.7rem, 3vw, 3.5rem); text-decoration: none; }
.elsewhere-card .section-label { margin-bottom: auto; }

.site-footer {
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  padding: 0 var(--pad);
  font-size: .75rem;
}
.site-footer button { justify-self: start; padding: 0; }
.site-footer button img { display: block; width: 2.8rem; height: auto; filter: brightness(0); }
.site-footer span:nth-child(2) { justify-self: center; }
.site-footer span:last-child { justify-self: end; }

.transition-panel { position: fixed; z-index: 80; pointer-events: none; opacity: 0; background: var(--gold); }

.reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .door-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(3, minmax(26rem, auto)); }
  .door:nth-child(3n) { border-right: 1px solid var(--line); }
  .door:nth-child(2n) { border-right: 0; }
  .door:nth-last-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .door:nth-last-child(-n + 2) { border-bottom: 0; }
  .idle-lockup { width: min(76%, 27rem); }
  .clare-intro { grid-template-columns: 1.2fr .8fr; }
  .clare-intro__statement { grid-column: 1 / -1; min-height: 70svh; border-right: 0; border-bottom: 1px solid var(--line); }
  .thread-grid { grid-template-columns: repeat(2, 1fr); }
  .thread-card:nth-child(2) { border-right: 0; }
  .thread-card:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .scrapbook-grid { grid-template-rows: 24rem 24rem 24rem; }
  .scrap-card--bike { grid-column: 1 / span 5; grid-row: 1 / span 2; }
  .scrap-card--belief { grid-column: 6 / span 7; grid-row: 1; border-right: 0; }
  .scrap-card--daisies { grid-column: 6 / span 4; grid-row: 2; }
  .scrap-card--record { grid-column: 10 / span 3; grid-row: 2; border-right: 0; }
  .scrap-card--swap { grid-column: 1 / span 4; grid-row: 3; }
  .scrap-card--place { grid-column: 5 / span 8; grid-row: 3; }
  .closing-panel { grid-template-columns: .5fr 1.5fr; }
  .closing-panel a { grid-column: 2; }
  .theory-cells, .signal-grid, .latest-grid { grid-template-columns: repeat(2, 1fr); }
  .theory-cell:nth-child(4n) { border-right: 1px solid var(--line); }
  .theory-cell:nth-child(2n), .signal-grid article:nth-child(2n), .latest-card:nth-child(2n) { border-right: 0; }
  .signal-grid article:nth-child(-n + 2), .latest-card:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .theory-cell--intro, .theory-cell--figure { grid-column: span 1; }
  .theory-cell--figure { border-right: 0; }
  .ways-grid { grid-template-columns: 1fr; }
  .ways-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .ways-grid article:last-child { border-bottom: 0; }
  .ways-grid h3 { margin-top: 6rem; }
  .company-section__title, .company-section__manifesto { min-height: 34rem; }
  .notes-portals { grid-template-columns: 1fr; }
  .notes-portal { min-height: 36rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .notes-portal:last-child { border-bottom: 0; }
}

@media (max-width: 640px) {
  :root { --footer-height: auto; }
  .wayfinding { grid-template-columns: 2.85rem 4.5rem minmax(0, 1fr) 3.25rem auto; }
  .wayfinding button { padding-inline: .7rem; }
  .wayfinding__home img { width: 2.7rem; }
  .wayfinding__current { justify-content: center; padding-inline: .4rem; }
  .wayfinding__current [data-current-route],
  .wayfinding__explore-label,
  .wayfinding__contact-long { display: none; }
  .wayfinding__current [data-current-short],
  .wayfinding__contact-short { display: inline; }
  .wayfinding__explore { justify-content: center; gap: 0; border-left: 1px solid var(--line) !important; }
  .wayfinding__contact { white-space: nowrap; }
  .explore-shell { left: 0; right: 0; width: 100%; max-height: calc(100svh - var(--rail-height)); }
  .explore-card { min-height: 8.25rem; }
  .explore-card strong { font-size: clamp(1.65rem, 8vw, 2.5rem); }
  .explore-card.is-current::after { content: "Here"; }
  .door-grid { display: block; }
  .door { display: flex; min-height: 62svh; border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .door--interactive { display: block; }
  .door:last-child { border-bottom: 0 !important; }
  .door h2, .door__title { font-size: clamp(2.85rem, 13vw, 5.2rem); }
  .idle-lockup { width: min(82%, 24rem); gap: 1rem; }
  .brand-paper-mark { width: 4rem; }
  .clare-intro { display: block; }
  .clare-intro > * { border-right: 0; border-bottom: 1px solid var(--line); }
  .clare-intro__statement { min-height: 80svh; }
  .clare-intro__statement h1 { font-size: clamp(3.7rem, 17vw, 6rem); }
  .clare-intro__portrait { min-height: 72svh; }
  .clare-intro__note { min-height: 55svh; }
  .section-heading, .section-heading--split { grid-template-columns: 1fr; }
  .thread-grid { display: block; }
  .thread-card { min-height: 21rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .thread-card:last-child { border-bottom: 0; }
  .scrapbook-grid { display: block; }
  .scrap-card { min-height: 65svh; border-right: 0; }
  .scrap-card--belief, .scrap-card--record { min-height: 50svh; }
  .closing-panel { display: block; }
  .closing-panel > * { margin-bottom: 2rem !important; }
  .place-keeper, .chapter-hero, .notes-intro, .side-hero { grid-template-columns: 1fr; }
  .place-keeper figure, .place-keeper > div { min-height: 70svh; border-right: 0; border-bottom: 1px solid var(--line); }
  .link-strip { grid-template-columns: 1fr; }
  .chapter-hero__main, .notes-intro__statement, .side-hero__main { min-height: 82svh; border-right: 0; border-bottom: 1px solid var(--line); }
  .chapter-hero__main h1, .notes-intro__statement h1, .side-hero__main h1 { font-size: clamp(3.8rem, 17vw, 6.5rem); }
  .chapter-hero__artifact, .chapter-hero__aside, .side-hero__note { min-height: 55svh; }
  .live-question, .chapter-close { display: block; }
  .live-question > *, .chapter-close > * { margin-bottom: 2rem !important; }
  .live-question h2 { font-size: clamp(3.2rem, 15vw, 5.5rem); }
  .theory-cells, .signal-grid, .latest-grid { display: block; }
  .theory-cell, .signal-grid article, .latest-card { min-height: 58svh; border-right: 0; border-bottom: 1px solid var(--line); }
  .theory-cell--figure { grid-template-columns: 1fr; }
  .theory-cell h3, .signal-grid h3 { margin-top: 5rem; }
  .human-signal__notes { grid-template-columns: 1fr; }
  .human-signal__notes p { border-right: 0; border-bottom: 1px solid rgba(247,245,239,.5); }
  .company-section { display: block; }
  .company-section__title, .company-section__manifesto { min-height: 65svh; border-right: 0; border-bottom: 1px solid var(--line); }
  .company-section__title h2 { margin-top: 6rem; font-size: clamp(4rem, 18vw, 6.7rem); }
  .notes-intro__image { min-height: 75svh; }
  .notes-portal { min-height: 75svh; }
  .notes-portal h2 { font-size: clamp(4rem, 18vw, 7rem); }
  .contact-grid { display: block; }
  .contact-grid > * { min-height: 68svh; border-right: 0; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label, .contact-form input, .contact-form textarea, .contact-form button, .form-note { grid-column: 1; }
  .contact-form .section-label { margin-bottom: 3rem; }
  .contact-form label { padding-bottom: .35rem; border-top: 1px solid var(--line); }
  .contact-form input, .contact-form textarea { border-top: 0; }
  .site-footer { grid-template-columns: 1fr 1fr; row-gap: .55rem; padding-block: .8rem; }
  .site-footer span:nth-child(2) { display: none; }
  .site-footer span:last-child { justify-self: end; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  .human-signal__marquee span { animation: none; }
}
