:root {
  color-scheme: light dark;
  --paper: #eef0e8;
  --paper-deep: #dfe4da;
  --ink: #123e33;
  --ink-soft: #507068;
  --forest: #123e33;
  --forest-deep: #09271f;
  --chalk: #f7f8f2;
  --amber: #d9952f;
  --line: color-mix(in srgb, var(--ink) 24%, transparent);
  --shadow: 0 24px 70px rgb(7 34 27 / 16%);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #0b241e;
    --paper-deep: #133029;
    --ink: #edf1e9;
    --ink-soft: #a8bcb4;
    --forest: #e5eee7;
    --forest-deep: #061914;
    --chalk: #f5f7f1;
    --line: color-mix(in srgb, var(--ink) 23%, transparent);
    --shadow: 0 24px 70px rgb(0 0 0 / 34%);
  }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 1px 1px, color-mix(in srgb, var(--ink) 8%, transparent) 1px, transparent 1.4px) 0 0 / 19px 19px,
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  content: "";
  opacity: .12;
  background-image: linear-gradient(96deg, transparent 0 48%, rgb(255 255 255 / 28%) 49%, transparent 50% 100%);
  background-size: 7px 11px;
  mix-blend-mode: soft-light;
}

body.menu-open { overflow: hidden; }

img {
  display: block;
  width: 100%;
  height: auto;
}

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .22em; }
a:hover { color: var(--amber); }
button, summary, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 5px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 120;
  padding: .65rem .9rem;
  color: var(--forest-deep);
  background: var(--amber);
  font-family: var(--mono);
  font-size: .76rem;
  transform: translateY(-180%);
}

.skip-link:focus { transform: none; }

.workbench-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  padding: 0 clamp(18px, 3vw, 48px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(16px);
}

.chapter-mark,
.drawer-trigger {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.chapter-mark { color: var(--ink-soft); }

.workbench-brand {
  display: flex;
  align-items: center;
  justify-self: center;
  text-decoration: none;
}

.workbench-brand img {
  width: 100px;
  height: 48px;
  object-fit: contain;
  filter: none;
}

@media (prefers-color-scheme: dark) {
  .workbench-brand img,
  .drawer-mark img,
  .footer-wordmark img { filter: invert(1); }
}

.drawer-trigger {
  justify-self: end;
  display: inline-flex;
  gap: .7rem;
  align-items: center;
  padding: .7rem 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.drawer-trigger::before {
  width: 25px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transition: transform .35s var(--ease);
}

.drawer-trigger:hover::before { transform: translateX(-5px); }

.workshop-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(280px, 42vw) 1fr;
  visibility: hidden;
  pointer-events: none;
}

.drawer-sheet {
  position: relative;
  z-index: 2;
  display: flex;
  overflow: auto;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(24px, 4vw, 64px);
  color: var(--chalk);
  background:
    linear-gradient(130deg, rgb(255 255 255 / 4%), transparent 45%),
    var(--forest-deep);
  transform: translateX(-102%);
  transition: transform .65s var(--ease);
}

.drawer-scrim {
  min-width: 0;
  padding: 0;
  border: 0;
  background: rgb(2 18 14 / 58%);
  opacity: 0;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Cpath stroke='white' d='m6 6 16 16M22 6 6 22'/%3E%3C/svg%3E") 14 14, pointer;
  transition: opacity .45s ease;
}

.workshop-drawer[data-open="true"] {
  visibility: visible;
  pointer-events: auto;
}

.workshop-drawer[data-open="true"] .drawer-sheet { transform: none; }
.workshop-drawer[data-open="true"] .drawer-scrim { opacity: 1; }

.drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.drawer-mark img {
  width: 112px;
  height: 52px;
  object-fit: contain;
}

.drawer-close {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 28%);
  color: var(--chalk);
  background: transparent;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.drawer-nav {
  display: grid;
  gap: 0;
  margin: clamp(56px, 10vh, 120px) 0 48px;
}

.drawer-nav a {
  display: block;
  padding: .7rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  color: var(--chalk);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 3.7rem);
  line-height: 1.05;
  text-decoration: none;
}

.drawer-nav a:hover,
.drawer-nav a[aria-current="page"] { color: var(--amber); }

.drawer-foot {
  margin-top: auto;
  color: rgb(247 248 242 / 60%);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
}

main { min-height: calc(100svh - 76px); }

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(12rem, .72fr) auto;
  gap: clamp(2.5rem, 7vw, 8rem);
  width: min(calc(100% - 40px), 1480px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.footer-signature {
  display: grid;
  gap: 1.35rem;
  align-content: start;
}

.footer-wordmark {
  display: block;
  width: clamp(150px, 17vw, 250px);
  height: clamp(74px, 8.5vw, 118px);
  overflow: hidden;
  text-decoration: none;
}

.footer-wordmark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.footer-signature p {
  max-width: 34ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.35;
}

.footer-paths {
  display: grid;
  gap: .3rem;
  align-content: start;
}

.footer-paths a,
.footer-fineprint a {
  width: fit-content;
  color: var(--ink);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .07em;
  text-decoration-color: var(--line);
  text-transform: uppercase;
}

.footer-paths a {
  padding-block: .36rem;
}

.footer-fineprint {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: .55rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .04em;
  white-space: nowrap;
}

.footer-fineprint span {
  margin-top: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.is-visible { opacity: 1; transform: none; }

.index-number,
.folio,
.caption,
.field-label,
.ledger-index,
.store-meta,
.error-code {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Entry sheet */
.entry-page { background: var(--forest-deep); }
.entry-page .workbench-header { display: none; }
.entry-page .site-footer {
  border-color: rgb(247 248 242 / 24%);
  color: rgb(247 248 242 / 68%);
}
.entry-page .footer-wordmark img { filter: invert(1); }
.entry-page .footer-signature p,
.entry-page .footer-paths a,
.entry-page .footer-fineprint a { color: var(--chalk); }

.entry-sheet {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .74fr);
  min-height: 100svh;
  color: var(--chalk);
  background: var(--forest-deep);
}

.entry-sheet::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 16% 28%, rgb(217 149 47 / 18%), transparent 26%);
}

.entry-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 5.5vw, 88px);
}

.entry-copy .entry-logo {
  width: clamp(130px, 14vw, 210px);
  height: 94px;
  object-fit: contain;
  object-position: left center;
  filter: invert(1);
}

.entry-titles { max-width: 740px; }

.entry-titles h1 {
  margin: 0 0 .25rem;
  color: var(--amber);
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.entry-titles h2 {
  max-width: 5ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 11vw, 11rem);
  font-weight: 400;
  line-height: .73;
  letter-spacing: -.07em;
}

.entry-titles p {
  max-width: 29ch;
  margin: clamp(36px, 7vh, 86px) 0 0 17%;
  color: rgb(247 248 242 / 76%);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.55rem);
  line-height: 1.38;
}

.entry-continue {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  width: max-content;
  color: var(--chalk);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.entry-continue::before {
  width: 46px;
  height: 46px;
  border: 1px solid var(--amber);
  border-radius: 50%;
  content: "→";
  display: grid;
  place-items: center;
  color: var(--amber);
  font-size: 1rem;
  transition: transform .35s var(--ease), background .35s ease;
}

.entry-continue:hover::before { transform: rotate(-12deg) scale(1.06); background: rgb(217 149 47 / 15%); }

.entry-visual { position: relative; min-height: 100svh; }
.entry-visual img { height: 100%; object-fit: cover; object-position: center; }

.entry-sample {
  position: absolute;
  right: 9%;
  bottom: 8%;
  width: min(240px, 35%);
  padding: 10px 10px 30px;
  background: var(--chalk);
  box-shadow: var(--shadow);
  transform: rotate(5deg);
}

.entry-sample img { aspect-ratio: 1 / 1.25; object-fit: cover; }

/* Start notebook */
.notebook-start { padding: 76px 0 0; }

.opening-spread {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  min-height: calc(100svh - 76px);
}

.opening-photo {
  position: relative;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  clip-path: polygon(0 0, 94% 0, 100% 91%, 82% 100%, 0 96%);
}

.opening-photo img { height: 100%; object-fit: cover; }

.opening-photo::after {
  position: absolute;
  inset: auto 8% 6% auto;
  width: 88px;
  height: 88px;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 8px rgb(18 62 51 / 35%);
}

.opening-notes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(48px, 8vw, 130px) clamp(28px, 6vw, 96px);
}

.opening-notes h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.6rem, 10vw, 10.5rem);
  font-weight: 400;
  line-height: .77;
  letter-spacing: -.08em;
}

.opening-notes p {
  max-width: 24ch;
  margin: 3rem 0 2rem 18%;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
}

.underlined-link {
  align-self: flex-end;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--amber);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

/* About folios */
.about-folios { padding: 76px 0 0; }

.about-head {
  display: grid;
  grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr);
  width: min(calc(100% - 40px), 1480px);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 160px) 0 80px;
}

.about-head h1 {
  margin: 0;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-head p {
  max-width: 35ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 3.25rem);
  line-height: 1.13;
}

.about-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  min-height: 1050px;
  width: min(calc(100% - 40px), 1480px);
  margin: 0 auto clamp(80px, 12vw, 170px);
}

.about-image-card {
  grid-column: 2 / span 5;
  grid-row: 1;
  align-self: start;
  margin: 0;
  padding: 12px 12px 46px;
  background: var(--chalk);
  box-shadow: var(--shadow);
  transform: rotate(-2.5deg);
}

.about-image-card img { aspect-ratio: .67; object-fit: cover; }

.about-manifesto {
  z-index: 2;
  grid-column: 6 / span 7;
  grid-row: 1;
  align-self: center;
  margin: 190px 0 0;
  padding: clamp(36px, 6vw, 86px);
  color: var(--chalk);
  background: var(--forest-deep);
  box-shadow: var(--shadow);
}

.about-manifesto p {
  margin: 0 0 1.3rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 3.8rem);
  line-height: 1.05;
}

.about-manifesto p:last-child { margin-bottom: 0; color: var(--amber); }

.about-closing-note {
  z-index: 3;
  grid-column: 1 / span 5;
  grid-row: 1;
  align-self: end;
  margin: 0 0 30px;
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  box-shadow: 10px 10px 0 var(--amber);
}

.about-closing-note p { margin: 0; }

/* Collection cabinet */
.collection-cabinet { padding: 76px 0 0; }

.cabinet-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: min(calc(100% - 40px), 1480px);
  margin: 0 auto;
  padding: clamp(70px, 10vw, 150px) 0 clamp(52px, 7vw, 100px);
}

.cabinet-head h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.3rem, 10vw, 10rem);
  font-weight: 400;
  line-height: .8;
  letter-spacing: -.07em;
}

.sample-drawers { border-top: 1px solid var(--line); }

.sample-drawer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, .8fr) minmax(0, 1.2fr);
  min-height: 640px;
  border-bottom: 1px solid var(--line);
}

.sample-drawer > * { min-width: 0; }

.sample-drawer:nth-child(even) .drawer-image { order: 2; }

.drawer-image { overflow: hidden; }
.drawer-image img { height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.sample-drawer:hover .drawer-image img { transform: scale(1.025); }

.drawer-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 110px);
}

.drawer-copy .sample-no { color: var(--amber); font-family: var(--mono); font-size: .7rem; }
.drawer-copy h2 { margin: .8rem 0 2rem; font-family: var(--serif); font-size: clamp(3.4rem, 7vw, 7.5rem); font-weight: 400; line-height: .88; letter-spacing: -.06em; }
.drawer-copy h2 a { text-decoration: none; }
.drawer-copy p { max-width: 52ch; margin: 0; color: var(--ink-soft); }

/* Earth field study */
.earth-study { padding: 76px 0 0; }

.earth-title-block {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(300px, .7fr);
  align-items: end;
  width: min(calc(100% - 40px), 1480px);
  margin: 0 auto;
  padding: clamp(70px, 12vw, 180px) 0 50px;
}

.earth-title-block h1 { margin: 0; font-family: var(--serif); font-size: clamp(5rem, 13vw, 13rem); font-weight: 400; line-height: .7; letter-spacing: -.085em; }
.earth-title-block p { max-width: 44ch; margin: 0 0 0 auto; padding-left: 2rem; color: var(--ink-soft); }

.earth-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(14px, 2vw, 32px);
  width: min(calc(100% - 40px), 1600px);
  margin: 0 auto clamp(100px, 13vw, 190px);
}

.earth-shot { margin: 0; }
.earth-shot img { height: 100%; object-fit: cover; }
.earth-shot--one { grid-column: 1 / span 7; grid-row: 1; }
.earth-shot--two { grid-column: 8 / span 5; grid-row: 1; padding-top: 32%; }
.earth-shot--three { grid-column: 3 / span 5; grid-row: 2; margin-top: -12%; }
.earth-note { grid-column: 8 / span 5; grid-row: 2; align-self: center; padding: clamp(26px, 4vw, 58px); border-left: 5px solid var(--amber); font-family: var(--serif); font-size: clamp(1.35rem, 2.1vw, 2.35rem); line-height: 1.25; }

/* Plain horizon study */
.plain-study { padding: 76px 0 0; }

.horizon-band {
  position: relative;
  min-height: 78svh;
  color: var(--chalk);
  background: var(--forest-deep);
}

.horizon-title {
  position: absolute;
  inset: 8% auto auto 4vw;
  z-index: 3;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 400;
  line-height: .76;
  letter-spacing: -.08em;
}

.horizon-photo {
  position: absolute;
  inset: 0 0 0 38%;
  margin: 0;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.horizon-photo img { height: 100%; object-fit: cover; }

.plain-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 7vw, 120px);
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto;
  padding: clamp(75px, 11vw, 170px) 0;
}

.plain-text p { margin: 0; }
.plain-text p:first-child { font-family: var(--serif); font-size: clamp(1.4rem, 2.3vw, 2.4rem); line-height: 1.25; }
.plain-text p:last-child { color: var(--ink-soft); }

.plain-strips {
  display: grid;
  grid-template-columns: 1fr .68fr;
  gap: clamp(18px, 2vw, 34px);
  width: min(calc(100% - 40px), 1480px);
  margin: 0 auto clamp(100px, 13vw, 190px);
}

.plain-strips figure { margin: 0; overflow: hidden; }
.plain-strips figure:first-child img { aspect-ratio: 1.45; object-fit: cover; }
.plain-strips figure:last-child { margin-top: 22%; }
.plain-strips figure:last-child img { aspect-ratio: .66; object-fit: cover; }

/* Product ledger */
.product-ledger { padding: 76px 0 0; }

.ledger-head {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(35px, 7vw, 110px);
  width: min(calc(100% - 40px), 1480px);
  margin: 0 auto;
  padding: clamp(70px, 11vw, 170px) 0 clamp(65px, 8vw, 120px);
}

.ledger-head h1 { margin: 0; font-family: var(--serif); font-size: clamp(4.2rem, 9vw, 9rem); font-weight: 400; line-height: .8; letter-spacing: -.07em; }
.ledger-head p { max-width: 54ch; margin: .5rem 0 0; color: var(--ink-soft); }

.ledger {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto clamp(100px, 13vw, 180px);
  border-top: 1px solid var(--line);
}

.ledger-row {
  display: grid;
  grid-template-columns: minmax(210px, .6fr) minmax(0, 1.4fr);
  gap: 2rem;
  padding: clamp(28px, 4vw, 58px) 0;
  border-bottom: 1px solid var(--line);
}

.ledger-row h2 { margin: 0; font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.7rem); font-weight: 400; line-height: 1.1; }
.ledger-row p { margin: 0; color: var(--ink-soft); }
.ledger-row ul { margin: 1rem 0 0; padding-left: 1.2rem; color: var(--ink-soft); }

/* FAQ shelf */
.faq-shelf { padding: 76px 0 0; }

.faq-heading {
  width: min(calc(100% - 40px), 1480px);
  margin: 0 auto;
  padding: clamp(70px, 11vw, 170px) 0 55px;
}

.faq-heading h1 { margin: 0; font-family: var(--serif); font-size: clamp(6rem, 15vw, 14rem); font-weight: 400; line-height: .65; letter-spacing: -.08em; }

.question-stack { width: min(calc(100% - 40px), 1120px); margin: 0 auto clamp(100px, 14vw, 200px); }

.question-card { border-top: 1px solid var(--line); }
.question-card:last-child { border-bottom: 1px solid var(--line); }

.question-card summary {
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 1rem;
  align-items: baseline;
  padding: 2rem 0;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2.55rem);
  line-height: 1.18;
  cursor: pointer;
}

.question-card summary::-webkit-details-marker { display: none; }
.question-card summary::after { justify-self: end; content: "+"; font-family: var(--mono); font-size: 1rem; }
.question-card[open] summary::after { content: "−"; }
.question-card p { max-width: 67ch; margin: 0 0 2.3rem; color: var(--ink-soft); }

/* Sales pinboard */
.sales-pinboard { padding: 76px 0 0; }

.pinboard-head {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: end;
  width: min(calc(100% - 40px), 1480px);
  margin: 0 auto;
  padding: clamp(75px, 11vw, 170px) 0 80px;
}

.pinboard-head h1 { margin: 0; font-family: var(--serif); font-size: clamp(5.4rem, 12vw, 12rem); font-weight: 400; line-height: .7; letter-spacing: -.08em; }
.pinboard-head p { max-width: 42ch; margin: 0 0 .5rem auto; color: var(--ink-soft); }

.store-notices {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(28px, 6vw, 100px);
  width: min(calc(100% - 40px), 1300px);
  margin: 0 auto clamp(120px, 15vw, 220px);
}

.store-notice {
  position: relative;
  padding: clamp(18px, 2vw, 28px) clamp(18px, 2vw, 28px) clamp(38px, 5vw, 70px);
  color: #123e33;
  background: #f7f8f2;
  box-shadow: var(--shadow);
}

.store-notice:first-child { transform: rotate(-1.8deg); }
.store-notice:last-child { margin-top: 18%; transform: rotate(2.4deg); }
.store-notice::before { position: absolute; top: -10px; left: 50%; width: 18px; height: 18px; border-radius: 50%; background: var(--amber); box-shadow: 0 3px 7px rgb(0 0 0 / 28%); content: ""; }
.store-notice img { aspect-ratio: 1.25; object-fit: contain; background: #edf0e8; }
.store-notice:first-child img { aspect-ratio: 1.7; }
.store-notice h2 { margin: 2rem 0 1rem; font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 3.8rem); font-weight: 400; line-height: 1; }
.store-notice h2 a { text-decoration: none; }
.store-notice p { margin: 0; }

/* Store location sheets */
.location-sheet { padding: 76px 0 0; }

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(370px, .9fr);
  min-height: calc(100svh - 76px);
}

.location-visual { position: relative; overflow: hidden; margin: 0; background: var(--paper-deep); }
.location-visual img { height: 100%; min-height: 680px; object-fit: contain; padding: clamp(32px, 6vw, 90px); }

.location-visual::after {
  position: absolute;
  inset: auto 7% 7% auto;
  width: 84px;
  height: 84px;
  border: 1px solid var(--amber);
  border-radius: 50%;
  content: "";
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 110px);
  color: var(--chalk);
  background: var(--forest-deep);
}

.location-copy h1 { margin: 0 0 3rem; font-family: var(--serif); font-size: clamp(3.4rem, 6vw, 7rem); font-weight: 400; line-height: .86; letter-spacing: -.055em; }
.location-copy > p { max-width: 51ch; color: rgb(247 248 242 / 72%); }
.location-copy a { color: inherit; }
.location-copy a:hover { color: var(--amber); }

.address-ticket {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: clamp(45px, 7vh, 90px);
  padding-top: 2rem;
  border-top: 1px solid rgb(247 248 242 / 24%);
  color: var(--chalk);
  font-family: var(--mono);
  font-size: .72rem;
  font-style: normal;
  letter-spacing: .04em;
}

.address-ticket p { margin: 0 0 1rem; }
.address-ticket a { color: var(--amber); }

/* Legal note */
.legal-notebook { padding: 76px 0 0; }

.legal-paper {
  width: min(calc(100% - 40px), 960px);
  margin: clamp(60px, 10vw, 150px) auto clamp(100px, 13vw, 180px);
  padding: clamp(34px, 7vw, 100px);
  color: #123e33;
  background:
    repeating-linear-gradient(to bottom, transparent 0 31px, rgb(18 62 51 / 11%) 32px 33px),
    #f7f8f2;
  box-shadow: var(--shadow);
}

.legal-paper h1 { margin: 0 0 4rem; font-family: var(--serif); font-size: clamp(4.3rem, 9vw, 8.5rem); font-weight: 400; line-height: .78; letter-spacing: -.07em; }
.legal-paper h2 { margin: 3.4rem 0 .8rem; font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 2.2rem); font-weight: 400; line-height: 1.15; }
.legal-paper p { margin: 0; line-height: 2.05; }

/* 404 offcut */
.offcut-page { padding: 76px 0 0; }
.offcut {
  display: grid;
  place-items: center;
  min-height: calc(100svh - 76px);
  padding: 60px 20px;
  text-align: center;
}
.offcut-inner { max-width: 700px; }
.error-code { color: var(--amber); }
.offcut h1 { margin: 1.3rem 0 2rem; font-family: var(--serif); font-size: clamp(4rem, 10vw, 9rem); font-weight: 400; line-height: .78; letter-spacing: -.07em; }
.offcut p { max-width: 55ch; margin: 0 auto 2.3rem; color: var(--ink-soft); }
.offcut a { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 900px) {
  .workbench-header { grid-template-columns: 1fr auto; height: 68px; }
  .chapter-mark { display: none; }
  .workbench-brand { justify-self: start; }
  .workbench-brand img { width: 82px; height: 40px; }
  .workshop-drawer { grid-template-columns: minmax(280px, 86vw) 1fr; }
  .entry-sheet { grid-template-columns: 1fr; }
  .entry-copy { min-height: 66svh; }
  .entry-visual { min-height: 48svh; }
  .entry-titles p { margin-left: 0; }
  .opening-spread { grid-template-columns: 1fr; }
  .opening-photo { min-height: 62svh; }
  .opening-notes { min-height: 60svh; }
  .about-head { grid-template-columns: 1fr; gap: 2.4rem; }
  .about-collage { min-height: 980px; }
  .about-image-card { grid-column: 1 / span 7; }
  .about-manifesto { grid-column: 5 / span 8; margin-top: 260px; }
  .about-closing-note { grid-column: 1 / span 7; }
  .sample-drawer { min-height: auto; }
  .earth-title-block { grid-template-columns: 1fr; gap: 3rem; }
  .earth-title-block p { margin: 0; padding-left: 0; }
  .ledger-head { grid-template-columns: 1fr; }
  .ledger-row { grid-template-columns: minmax(210px, .6fr) minmax(0, 1.4fr); }
  .location-layout { grid-template-columns: 1fr; }
  .location-visual img { min-height: 520px; }
}

@media (max-width: 660px) {
  .drawer-trigger { font-size: 0; }
  .drawer-trigger::before { width: 29px; height: 11px; }
  .workshop-drawer { grid-template-columns: 100% 0; }
  .drawer-scrim { display: none; }
  .drawer-sheet { padding: 24px; }
  .drawer-nav { margin-top: 52px; }
  .drawer-nav a { font-size: clamp(1.75rem, 9vw, 2.8rem); }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    width: min(calc(100% - 40px), 1480px);
    padding-block: 3.25rem 2.5rem;
  }
  .footer-wordmark { width: 158px; height: 78px; }
  .footer-paths { grid-template-columns: 1fr 1fr; gap: .25rem 1.5rem; }
  .footer-paths a { max-width: 100%; overflow-wrap: anywhere; }
  .footer-fineprint { align-items: flex-start; white-space: normal; }
  .footer-fineprint span { margin-top: .85rem; }
  .entry-copy { min-height: 68svh; padding: 24px; }
  .entry-titles h2 { font-size: clamp(4.3rem, 24vw, 7.5rem); }
  .entry-titles p { margin-top: 2.2rem; }
  .entry-visual { min-height: 42svh; }
  .entry-sample { display: none; }
  .opening-spread { min-height: auto; }
  .opening-photo { min-height: 52svh; clip-path: polygon(0 0, 100% 0, 100% 94%, 78% 100%, 0 96%); }
  .opening-notes { min-height: auto; padding: 70px 22px 95px; }
  .opening-notes h1 { max-width: 100%; font-size: clamp(3.8rem, 18vw, 6.5rem); line-height: .83; }
  .opening-notes p { margin-left: 0; }
  .about-head { padding-top: 76px; }
  .about-head p { font-size: 1.65rem; }
  .about-collage { display: flex; min-height: auto; flex-direction: column; gap: 34px; }
  .about-image-card { width: 86%; }
  .about-manifesto { margin: -84px 0 0 13%; padding: 30px; }
  .about-manifesto p { font-size: 1.75rem; }
  .about-closing-note { margin: 0 10px 70px 0; }
  .cabinet-head { display: block; }
  .cabinet-head h1 { font-size: clamp(3.6rem, 17vw, 5rem); }
  .sample-drawer { grid-template-columns: 1fr; }
  .sample-drawer:nth-child(even) .drawer-image { order: 0; }
  .drawer-image { min-height: 52svh; }
  .drawer-copy { padding: 42px 20px 72px; }
  .earth-title-block { padding-top: 84px; }
  .earth-gallery { display: flex; flex-direction: column; }
  .earth-shot--one img, .earth-shot--two img { aspect-ratio: 1.2; object-fit: cover; }
  .earth-shot--two { width: 74%; margin-left: auto; padding-top: 0; }
  .earth-shot--three { width: 68%; margin-top: -18%; }
  .earth-note { margin: 20px 0 60px; }
  .horizon-band { min-height: 68svh; }
  .horizon-photo { inset-inline-start: 18%; }
  .plain-text { grid-template-columns: 1fr; }
  .plain-strips { display: flex; flex-direction: column; }
  .plain-strips figure:last-child { width: 70%; margin: -9% 0 0 auto; }
  .ledger-head { padding-top: 86px; }
  .ledger-head h1 { overflow-wrap: anywhere; }
  .ledger-row { grid-template-columns: 1fr; gap: 1rem; }
  .question-card summary { grid-template-columns: 1fr 20px; }
  .pinboard-head { grid-template-columns: 1fr; gap: 2.5rem; }
  .pinboard-head p { margin-left: 0; }
  .store-notices { grid-template-columns: 1fr; gap: 20px; }
  .store-notice:last-child { margin-top: 0; }
  .location-visual img { min-height: 400px; }
  .location-copy { padding: 60px 22px 82px; }
  .address-ticket { grid-template-columns: 1fr; gap: 1rem; }
  .legal-paper { margin-top: 50px; }
}

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