:root {
  color-scheme: light;
  --ink: #11120f;
  --ink-soft: #24262b;
  --paper: #f1eee8;
  --paper-soft: #faf8f2;
  --paper-deep: #ddd5c9;
  --line: rgba(17, 18, 15, 0.16);
  --line-strong: rgba(17, 18, 15, 0.36);
  --white: #fffdf7;
  --green: #385c4d;
  --sage: #5d645f;
  --blue: #4b5568;
  --cobalt: #1e24a8;
  --wine: #702637;
  --skin: #c9a88e;
  --gutter: 1rem;
  --header-height: 4.4rem;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Bodoni 72", Didot, "Times New Roman", Georgia, serif;
}

@media (min-width: 760px) {
  :root {
    --gutter: 2rem;
    --header-height: 5rem;
  }
}

@media (min-width: 1180px) {
  :root {
    --gutter: 3rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-lightbox-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(17, 18, 15, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 15, 0.5) 1px, transparent 1px);
  background-size: 13px 17px;
  mix-blend-mode: multiply;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figure {
  margin: 0;
}

::selection {
  background: var(--wine);
  color: var(--white);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  transition: transform 220ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 var(--gutter);
  color: var(--white);
  mix-blend-mode: difference;
  transition: background 420ms var(--ease), color 420ms var(--ease), border-color 420ms var(--ease), mix-blend-mode 420ms var(--ease);
}

.site-header.is-scrolled,
.site-header.site-header--solid {
  border-bottom: 1px solid rgba(17, 18, 15, 0.08);
  background: rgba(250, 248, 242, 0.9);
  color: var(--ink);
  mix-blend-mode: normal;
  backdrop-filter: blur(18px);
}

.brandmark,
.site-nav__link,
.section-kicker,
.project-card__meta,
.split-link__meta,
.site-footer,
.editorial-button,
.hero-caption,
.quiet-link {
  font-size: 0.72rem;
  line-height: 1.12;
  text-transform: uppercase;
}

.brandmark {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
}

.site-nav__link::after,
.quiet-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 420ms var(--ease);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link.is-active::after,
.quiet-link:hover::after,
.quiet-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-main {
  overflow: hidden;
}

.section-kicker {
  display: block;
  color: currentColor;
  opacity: 0.72;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 96svh;
  align-items: end;
  padding: calc(var(--header-height) + 1rem) var(--gutter) 3.5rem;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(17, 18, 15, 0.12), rgba(17, 18, 15, 0.72)),
    linear-gradient(90deg, rgba(17, 18, 15, 0.42), rgba(17, 18, 15, 0.08));
}

.home-hero__media,
.books-collage {
  position: absolute;
  inset: 0;
}

.hero-frame {
  position: absolute;
  overflow: hidden;
  background: var(--ink-soft);
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.28);
}

.hero-frame img {
  transform: scale(1.02);
}

.hero-frame--main {
  top: 5.8rem;
  left: var(--gutter);
  width: 72%;
  height: 58svh;
}

.hero-frame--main img {
  object-position: 62% center;
}

.hero-frame--dark {
  top: 10rem;
  right: -17%;
  width: 58%;
  height: 38svh;
  opacity: 0.9;
}

.hero-frame--field {
  left: 18%;
  bottom: 0;
  width: 58%;
  height: 32svh;
  opacity: 0.74;
}

.home-hero__content,
.books-hero__content {
  position: relative;
  z-index: 2;
  max-width: 48rem;
}

.hero-title,
.page-title,
.books-title,
.opening-spread h2,
.book-spread h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
}

.hero-title {
  margin-top: 1rem;
  max-width: 7em;
  font-size: 4.1rem;
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.hero-lede,
.page-lede,
.books-copy,
.studio-strip__text p,
.archive-note p,
.book-spread p {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: currentColor;
  opacity: 0.78;
  font-size: 1rem;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.editorial-button {
  display: inline-flex;
  min-height: 3.25rem;
  min-width: 9rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
  border: 1px solid currentColor;
  padding: 0.9rem 1rem;
  transition: background 420ms var(--ease), color 420ms var(--ease), transform 420ms var(--ease);
}

.editorial-button:hover,
.editorial-button:focus-visible {
  background: currentColor;
  color: var(--paper);
  transform: translateY(-2px);
}

.editorial-button--light:hover,
.editorial-button--light:focus-visible {
  color: var(--ink);
}

.editorial-button--wide {
  min-width: 15rem;
}

.hero-caption {
  position: absolute;
  right: var(--gutter);
  bottom: 1rem;
  z-index: 2;
  display: none;
  width: 14rem;
  color: rgba(255, 253, 247, 0.68);
}

.hero-caption span {
  display: block;
}

.hero-caption span + span {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 253, 247, 0.22);
}

.opening-spread {
  display: grid;
  gap: 1rem;
  padding: 4.5rem var(--gutter);
  background: var(--paper-soft);
}

.opening-spread__copy {
  max-width: 44rem;
}

.opening-spread h2 {
  margin-top: 1rem;
  font-size: 3.1rem;
  line-height: 0.96;
}

.opening-spread__image,
.studio-strip__image,
.book-spread__image,
.book-gallery__item,
.page-hero__image,
.project-card__media,
.split-link__media {
  overflow: hidden;
  background: var(--paper-deep);
}

.opening-spread__image--tall {
  min-height: 28rem;
}

.opening-spread__image--sketch {
  min-height: 18rem;
}

.opening-spread__image--sketch img,
.project-card--sketch img {
  object-position: center;
}

.studio-strip {
  display: grid;
  gap: 1.25rem;
  padding: 0 var(--gutter) 5rem;
  background: var(--paper-soft);
}

.studio-strip__image {
  min-height: 26rem;
}

.studio-strip__text {
  align-self: end;
  max-width: 33rem;
}

.studio-strip__text p {
  color: var(--ink);
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
  opacity: 1;
}

.split-links {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-link {
  position: relative;
  display: grid;
  min-height: 20rem;
  align-content: end;
  padding: 2rem var(--gutter);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.split-link + .split-link {
  border-top: 1px solid rgba(255, 253, 247, 0.2);
}

.split-link__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.split-link__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 18, 15, 0.56);
  transition: background 620ms var(--ease);
}

.split-link__media img {
  transform: scale(1.04);
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.split-link:hover .split-link__media::after,
.split-link:focus-visible .split-link__media::after {
  background: rgba(17, 18, 15, 0.22);
}

.split-link:hover .split-link__media img,
.split-link:focus-visible .split-link__media img {
  transform: scale(1);
  filter: saturate(0.86) contrast(1.05);
}

.split-link__title {
  display: block;
  font-family: var(--display);
  font-size: 4rem;
  line-height: 0.9;
}

.split-link__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.page-hero {
  display: grid;
  gap: 2rem;
  min-height: 82svh;
  align-items: end;
  padding: calc(var(--header-height) + 2rem) var(--gutter) 3rem;
  background: var(--paper);
}

.page-hero__copy {
  max-width: 52rem;
}

.page-title {
  margin-top: 1rem;
  max-width: 9em;
  font-size: 3.5rem;
  line-height: 0.94;
}

.page-hero__image {
  min-height: 28rem;
}

.page-hero__image img {
  object-position: center top;
}

.archive-wall {
  display: grid;
  gap: 1.2rem;
  padding: 0 var(--gutter) 5rem;
  background: var(--paper);
}

.project-card {
  display: block;
  width: 100%;
  cursor: zoom-in;
  text-align: left;
}

.project-card__media {
  display: block;
  aspect-ratio: 4 / 5;
}

.project-card--large .project-card__media,
.project-card--wide .project-card__media {
  aspect-ratio: 4 / 3;
}

.project-card--narrow .project-card__media,
.project-card--portrait .project-card__media {
  aspect-ratio: 3 / 4;
}

.project-card--sketch .project-card__media {
  aspect-ratio: 1 / 1;
}

.project-card__media img {
  transform: scale(1.01);
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.project-card:hover .project-card__media img,
.project-card:focus-visible .project-card__media img {
  transform: scale(1.05);
  filter: saturate(0.9) contrast(1.04);
}

.project-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
  color: var(--ink-soft);
}

.archive-note {
  display: grid;
  gap: 1rem;
  padding: 0 var(--gutter) 5rem;
  background: var(--paper);
}

.archive-note::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--line);
}

.archive-note p {
  margin-top: 0;
  color: var(--ink-soft);
}

.books-hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  align-items: end;
  padding: calc(var(--header-height) + 1rem) var(--gutter) 4rem;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.books-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(17, 18, 15, 0.08), rgba(17, 18, 15, 0.76)),
    linear-gradient(90deg, rgba(17, 18, 15, 0.7), rgba(17, 18, 15, 0.1));
}

.books-collage__item {
  position: absolute;
  overflow: hidden;
  background: var(--ink-soft);
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.28);
}

.books-collage__item--one {
  top: 6rem;
  left: -11%;
  width: 78%;
  height: 33svh;
}

.books-collage__item--two {
  top: 12rem;
  right: -18%;
  width: 66%;
  height: 42svh;
}

.books-collage__item--three {
  left: 8%;
  bottom: 8svh;
  width: 62%;
  height: 30svh;
}

.books-collage__item--four {
  right: 10%;
  bottom: 20svh;
  display: none;
  width: 25rem;
  height: 19rem;
}

.books-title {
  margin-top: 0.8rem;
  font-size: 5rem;
  line-height: 0.9;
}

.books-copy {
  max-width: 35rem;
}

.book-spread {
  display: grid;
  gap: 1.2rem;
  padding: 5rem var(--gutter);
  background: var(--paper-soft);
}

.book-spread__image {
  min-height: 24rem;
}

.book-spread__copy {
  align-self: end;
  max-width: 34rem;
}

.book-spread h2 {
  margin-top: 1rem;
  font-size: 3rem;
  line-height: 0.98;
}

.book-gallery {
  display: grid;
  gap: 1rem;
  padding: 0 var(--gutter) 5rem;
  background: var(--paper-soft);
}

.book-gallery__item--tall {
  min-height: 32rem;
}

.book-gallery__item--square {
  aspect-ratio: 1 / 1;
}

.book-gallery__item--poem {
  min-height: 22rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  background: rgba(12, 12, 11, 0.92);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__panel {
  width: min(100%, 78rem);
  max-height: 88svh;
}

.lightbox__image-wrap {
  max-height: 78svh;
  overflow: hidden;
  background: #0d0d0c;
}

.lightbox__image {
  width: 100%;
  height: auto;
  max-height: 78svh;
  object-fit: contain;
}

.lightbox__caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.85rem;
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(255, 253, 247, 0.42);
  color: var(--white);
  cursor: pointer;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem var(--gutter);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.site-footer--dark {
  border-top-color: rgba(255, 253, 247, 0.18);
  background: var(--ink);
  color: rgba(255, 253, 247, 0.78);
}

.quiet-link {
  position: relative;
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(1.7rem);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 5.8rem;
  }

  .books-title {
    font-size: 6.8rem;
  }

  .opening-spread h2,
  .book-spread h2 {
    font-size: 4.1rem;
  }

  .split-link__title {
    font-size: 5.2rem;
  }
}

@media (min-width: 760px) {
  .site-nav {
    gap: 1.5rem;
  }

  .home-hero {
    padding-bottom: 5rem;
  }

  .hero-frame--main {
    left: 8%;
    width: 44rem;
    max-width: 46%;
    height: 74svh;
  }

  .hero-frame--dark {
    top: 8rem;
    right: 5%;
    width: 31rem;
    max-width: 34%;
    height: 48svh;
  }

  .hero-frame--field {
    left: auto;
    right: 24%;
    bottom: 4svh;
    width: 24rem;
    max-width: 24%;
    height: 32svh;
  }

  .hero-title {
    font-size: 7.4rem;
  }

  .hero-lede,
  .page-lede,
  .books-copy {
    font-size: 1.08rem;
  }

  .hero-caption {
    display: block;
  }

  .opening-spread {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.62fr) minmax(0, 0.44fr);
    min-height: 45rem;
    align-items: end;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .opening-spread__copy {
    align-self: center;
  }

  .opening-spread__image--tall {
    min-height: 38rem;
  }

  .opening-spread__image--sketch {
    min-height: 26rem;
    margin-bottom: 5rem;
  }

  .studio-strip {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.72fr);
    align-items: end;
    padding-bottom: 7rem;
  }

  .studio-strip__image {
    min-height: 42rem;
  }

  .studio-strip__text p {
    font-size: 4.4rem;
  }

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

  .split-link {
    min-height: 31rem;
  }

  .split-link + .split-link {
    border-top: 0;
    border-left: 1px solid rgba(255, 253, 247, 0.2);
  }

  .page-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.74fr);
    min-height: 88svh;
    align-items: end;
    padding-bottom: 5rem;
  }

  .page-title {
    font-size: 5.9rem;
  }

  .page-hero__image {
    min-height: 62svh;
  }

  .archive-wall {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.35rem;
    padding-bottom: 7rem;
  }

  .project-card--large {
    grid-column: 1 / span 7;
  }

  .archive-wall > .project-card:nth-child(2) {
    grid-column: 8 / span 5;
    margin-top: 6rem;
  }

  .project-card--portrait {
    grid-column: 2 / span 4;
    margin-top: 1.5rem;
  }

  .project-card--narrow {
    grid-column: 7 / span 3;
    margin-top: 7rem;
  }

  .project-card--wide {
    grid-column: 4 / span 7;
    margin-top: 2rem;
  }

  .project-card--sketch {
    grid-column: 10 / span 3;
    margin-top: -4rem;
  }

  .archive-note {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
    align-items: start;
    padding-bottom: 7rem;
  }

  .archive-note::before {
    grid-column: 1 / -1;
  }

  .books-collage__item--one {
    top: 5rem;
    left: 3%;
    width: 38rem;
    max-width: 38%;
    height: 44svh;
  }

  .books-collage__item--two {
    top: 9rem;
    right: 3%;
    width: 38rem;
    max-width: 36%;
    height: 55svh;
  }

  .books-collage__item--three {
    left: 30%;
    bottom: 8svh;
    width: 29rem;
    max-width: 28%;
    height: 28svh;
  }

  .books-collage__item--four {
    display: block;
  }

  .books-title {
    font-size: 10rem;
  }

  .book-spread {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.54fr);
    align-items: end;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .book-spread__image {
    min-height: 42rem;
  }

  .book-gallery {
    grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.68fr) minmax(0, 1fr);
    align-items: end;
    padding-bottom: 7rem;
  }

  .book-gallery__item--tall {
    min-height: 42rem;
  }

  .book-gallery__item--square {
    margin-bottom: 6rem;
  }

  .book-gallery__item--poem {
    min-height: 32rem;
  }
}

@media (min-width: 1180px) {
  .hero-title {
    font-size: 9.6rem;
  }

  .page-title {
    font-size: 7.2rem;
  }

  .books-title {
    font-size: 12rem;
  }

  .opening-spread h2 {
    font-size: 5.8rem;
  }
}

@media (max-width: 460px) {
  .site-header {
    align-items: flex-start;
    padding-top: 0.95rem;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
  }

  .hero-actions .editorial-button {
    width: calc(50% - 0.375rem);
    min-width: 0;
  }

  .editorial-button {
    gap: 0.75rem;
  }

  .studio-strip__text p {
    font-size: 2.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.home-collage-page {
  --paper: #f3ede2;
  --paper-soft: #fbf7ee;
  --paper-deep: #ded3c2;
  --ink: #27231e;
  --ink-soft: #4b463f;
  --cobalt: #2434b3;
  background:
    radial-gradient(circle at 14% 12%, rgba(86, 65, 42, 0.1) 0 1px, transparent 1px),
    radial-gradient(circle at 72% 9%, rgba(36, 52, 179, 0.12) 0 1px, transparent 1px),
    linear-gradient(180deg, #f6f0e6, #efe7da);
  color: var(--ink);
}

.home-collage-page::before {
  opacity: 0.16;
  background-image:
    radial-gradient(circle, rgba(53, 42, 30, 0.48) 0 1px, transparent 1.2px),
    radial-gradient(circle, rgba(36, 52, 179, 0.26) 0 1px, transparent 1.2px);
  background-position: 0 0, 26px 34px;
  background-size: 37px 41px, 59px 67px;
  mix-blend-mode: multiply;
}

.site-header--collage,
.site-header--collage.is-scrolled {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  column-gap: 0;
  border-bottom: 0;
  background: transparent;
  color: var(--ink);
  mix-blend-mode: normal;
}

.site-header--collage.is-scrolled {
  border-bottom: 1px solid rgba(39, 35, 30, 0.08);
  background: rgba(246, 240, 230, 0.86);
}

.collage-header__link,
.collage-signature__role,
.story-panel__text,
.service-item h3,
.service-item p,
.work-tile span,
.work-tile small,
.collage-more-link,
.collage-text-link,
.collage-contact-button,
.collage-socials,
.collage-footer small {
  font-size: 0.72rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.collage-header__link {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
}

.collage-header__link:last-child {
  justify-self: end;
}

.collage-signature {
  display: grid;
  justify-items: center;
  align-self: center;
  color: var(--ink);
}

.collage-signature__name {
  font-family: "Snell Roundhand", "Brush Script MT", var(--display);
  font-size: 2rem;
  font-style: italic;
  line-height: 0.9;
}

.collage-signature__role {
  margin-top: 0.25rem;
  color: var(--ink-soft);
}

.collage-hero {
  position: relative;
  isolation: isolate;
  min-height: 48rem;
  padding: calc(var(--header-height) + 2rem) var(--gutter) 5rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.5), rgba(255, 253, 247, 0)),
    var(--paper);
}

.collage-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  max-width: 110rem;
  margin: 0 auto;
}

.story-panel {
  position: relative;
  display: grid;
  min-height: 26rem;
  align-items: start;
  overflow: hidden;
  background: var(--paper-deep);
  color: var(--white);
}

.story-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20, 18, 15, 0.32), rgba(20, 18, 15, 0.03) 54%, rgba(20, 18, 15, 0.2)),
    linear-gradient(90deg, rgba(20, 18, 15, 0.24), rgba(20, 18, 15, 0));
  transition: opacity 500ms var(--ease);
}

.story-panel img {
  position: absolute;
  inset: 0;
  transform: scale(1.02);
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.story-panel--brands img {
  object-position: center center;
}

.story-panel--books img {
  object-position: center center;
}

.story-panel:hover img,
.story-panel:focus-visible img {
  transform: scale(1.06);
  filter: saturate(0.95) contrast(1.04);
}

.story-panel:hover::after,
.story-panel:focus-visible::after {
  opacity: 0.78;
}

.story-panel__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.8rem;
  width: min(18rem, 78%);
  padding: 2.2rem;
}

.story-panel__title {
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.story-panel__rule {
  display: block;
  width: 3.2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.collage-title {
  position: relative;
  z-index: 4;
  margin: -3.5rem 0 0;
  color: var(--cobalt);
  font-family: var(--sans);
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 0.82;
  text-align: center;
  text-transform: uppercase;
}

.collage-center-note {
  position: relative;
  z-index: 4;
  width: max-content;
  max-width: 18rem;
  margin: 0.6rem auto 0;
  padding: 1rem 1.35rem 0.95rem;
  background: rgba(246, 240, 230, 0.9);
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.collage-center-note::after,
.collage-section-heading > span,
.collage-about__copy > span {
  content: "";
  display: block;
  width: 4.2rem;
  height: 2px;
  margin: 0.7rem auto 0;
  background: var(--cobalt);
  box-shadow: 0 0.32rem 0 rgba(36, 52, 179, 0.28);
}

.paper-note {
  position: absolute;
  z-index: 5;
  display: grid;
  background: #eee4d2;
  box-shadow: 0 1rem 2rem rgba(66, 49, 31, 0.14);
}

.paper-note img,
.collage-sketch,
.service-item img,
.paper-note--about img {
  mix-blend-mode: multiply;
}

.paper-note--left {
  left: max(1rem, calc((100% - 110rem) / 2));
  bottom: 7.8rem;
  width: 9.5rem;
  min-height: 10rem;
  padding: 1rem;
  color: var(--ink-soft);
}

.paper-note--left img {
  width: 4.8rem;
  height: 4.8rem;
  object-fit: cover;
  object-position: center;
}

.paper-note--left span {
  align-self: end;
  font-size: 0.68rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.paper-note--portrait {
  right: max(1rem, calc((100% - 108rem) / 2));
  bottom: 3rem;
  width: 11rem;
  aspect-ratio: 4 / 5;
  padding: 0.6rem;
  transform: rotate(7deg);
}

.paper-note--portrait img {
  object-fit: cover;
  object-position: center;
}

.collage-sketch {
  position: absolute;
  z-index: 3;
  opacity: 0.86;
  pointer-events: none;
}

.collage-sketch--flower {
  left: 0.2rem;
  top: 21rem;
  width: 8rem;
  height: 12rem;
  object-fit: cover;
  object-position: center;
}

.collage-sketch--pin {
  right: 1rem;
  top: 6.5rem;
  width: 4rem;
  height: 7rem;
  object-fit: cover;
}

.collage-hand {
  position: absolute;
  z-index: 4;
  color: var(--cobalt);
  font-family: "Snell Roundhand", "Brush Script MT", var(--display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.25;
}

.collage-hand--side {
  right: 1.4rem;
  top: 15rem;
  max-height: 19rem;
  writing-mode: vertical-rl;
}

.collage-services,
.collage-works,
.collage-about {
  position: relative;
  display: grid;
  gap: 1.6rem;
  padding: 4rem var(--gutter);
  background: rgba(251, 247, 238, 0.88);
}

.collage-services {
  border-top: 1px solid rgba(39, 35, 30, 0.06);
  border-bottom: 1px solid rgba(39, 35, 30, 0.06);
}

.collage-section-heading {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.8rem;
}

.collage-section-heading h2,
.collage-about__copy h2,
.collage-footer__pitch > span {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.collage-section-heading h2,
.collage-about__copy h2 {
  font-size: 2.4rem;
}

.collage-section-heading > span,
.collage-about__copy > span {
  margin: 0;
}

.collage-section-heading p,
.collage-about__copy p {
  margin: 0;
  max-width: 31rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.service-item {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 13rem;
}

.service-item img {
  width: 4.2rem;
  height: 4.2rem;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.service-item h3,
.work-tile span {
  margin: 0;
  color: var(--ink);
}

.service-item p,
.work-tile small {
  margin: 0;
  color: var(--ink-soft);
  text-transform: none;
}

.collage-works {
  background: var(--paper);
}

.work-tile {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.work-tile img {
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper-deep);
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.work-tile:hover img,
.work-tile:focus-visible img {
  transform: translateY(-0.18rem);
  filter: saturate(0.94) contrast(1.04);
}

.collage-more-link,
.collage-text-link {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  gap: 0.9rem;
  color: var(--cobalt);
}

.collage-about {
  align-items: center;
  background: rgba(251, 247, 238, 0.94);
}

.collage-about__image {
  min-height: 22rem;
  overflow: hidden;
  background: var(--paper-deep);
}

.collage-about__image img {
  object-position: center 38%;
}

.collage-about__copy {
  display: grid;
  gap: 1rem;
  align-content: center;
  max-width: 32rem;
}

.paper-note--about {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(100%, 16rem);
  min-height: 12rem;
  padding: 1.5rem;
  justify-self: start;
  color: var(--cobalt);
  font-family: "Snell Roundhand", "Brush Script MT", var(--display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.35;
  transform: rotate(3deg);
}

.paper-note--about img {
  position: absolute;
  right: 0.8rem;
  bottom: 0.4rem;
  width: 5.8rem;
  height: 5.8rem;
  object-fit: cover;
  opacity: 0.85;
}

.collage-footer {
  display: grid;
  gap: 1.6rem;
  align-items: center;
  padding: 3rem var(--gutter);
  background: var(--paper);
  color: var(--cobalt);
  font-size: 1rem;
  text-transform: none;
}

.collage-footer__pitch {
  display: grid;
  gap: 0.45rem;
}

.collage-footer__pitch > span {
  font-size: 2.8rem;
}

.collage-footer small {
  color: var(--cobalt);
}

.collage-contact-button {
  display: inline-flex;
  width: min(100%, 15rem);
  min-height: 3.25rem;
  align-items: center;
  justify-content: space-between;
  justify-self: start;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: var(--cobalt);
  color: var(--white);
}

.collage-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--ink-soft);
}

@media (min-width: 760px) {
  .collage-hero {
    min-height: 52rem;
    padding-bottom: 6.5rem;
  }

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

  .story-panel {
    min-height: 40rem;
  }

  .story-panel__copy {
    padding: 3rem 3.4rem;
  }

  .story-panel__title {
    font-size: 3.1rem;
  }

  .collage-title {
    position: absolute;
    left: 50%;
    top: 47%;
    margin: 0;
    font-size: 8.4rem;
    transform: translate(-50%, -50%);
  }

  .collage-center-note {
    position: absolute;
    left: 50%;
    bottom: 2.3rem;
    transform: translateX(-50%);
  }

  .collage-services {
    grid-template-columns: minmax(10rem, 0.8fr) repeat(4, minmax(0, 1fr));
    align-items: start;
  }

  .collage-works {
    grid-template-columns: minmax(9rem, 0.8fr) repeat(4, minmax(0, 1fr)) minmax(7rem, 0.45fr);
    align-items: end;
  }

  .collage-more-link {
    align-self: center;
    justify-self: end;
  }

  .collage-about {
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.72fr) minmax(11rem, 0.34fr);
    padding-top: 0;
    padding-bottom: 0;
  }

  .collage-about__image {
    min-height: 27rem;
    margin-left: calc(var(--gutter) * -1);
  }

  .collage-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }

  .collage-socials {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1180px) {
  .collage-hero {
    padding-top: calc(var(--header-height) + 1.5rem);
  }

  .collage-title {
    font-size: 12rem;
  }

  .collage-section-heading h2,
  .collage-about__copy h2 {
    font-size: 3.1rem;
  }

  .collage-footer__pitch > span {
    font-size: 4.1rem;
  }
}

@media (max-width: 759px) {
  .site-header--collage,
  .site-header--collage.is-scrolled {
    min-height: 5.8rem;
    align-items: center;
    padding-top: 0.6rem;
  }

  .collage-header__link {
    font-size: 0.62rem;
  }

  .collage-signature__name {
    font-size: 1.6rem;
  }

  .collage-signature__role {
    display: none;
  }

  .collage-hero {
    padding-top: 6.7rem;
  }

  .story-panel__copy {
    padding: 1.6rem;
  }

  .paper-note--left,
  .paper-note--portrait,
  .collage-hand,
  .collage-sketch--pin {
    display: none;
  }

  .collage-sketch--flower {
    top: 24rem;
    left: -1.8rem;
  }

  .collage-services,
  .collage-works,
  .collage-about,
  .collage-footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .collage-about__image {
    min-height: 18rem;
  }
}

.home-collage-page .collage-hero {
  min-height: 0;
  padding: calc(var(--header-height) + 1.4rem) var(--gutter) 3.4rem;
}

.home-collage-page .collage-hero__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: start;
  width: min(100%, 70rem);
  height: auto;
}

.home-collage-page .story-panel {
  aspect-ratio: 3 / 4;
  min-height: 0;
  height: auto;
}

.home-collage-page .story-panel__copy {
  width: min(20rem, 82%);
}

.home-collage-page .collage-title {
  position: absolute;
  inset-inline: 0;
  top: calc(var(--header-height) + 18.5rem);
  z-index: 5;
  margin: 0;
  width: 100%;
  font-size: clamp(4rem, 10vw, 12rem);
  text-align: center;
  transform: translateY(-50%);
}

.home-collage-page .collage-center-note {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  max-width: 22rem;
  transform: translateX(-50%);
}

.home-collage-page .collage-services {
  grid-template-columns: minmax(10rem, 0.72fr) repeat(4, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
  padding-top: 3.4rem;
  padding-bottom: 3.4rem;
  background: rgba(251, 247, 238, 0.96);
}

.home-collage-page .service-item {
  min-height: 0;
}

.home-collage-page .service-item img {
  width: 4.8rem;
  height: 4.8rem;
}

.home-collage-page .collage-about {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
  gap: 3rem;
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}

.home-collage-page .collage-about__image {
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin-left: 0;
}

.home-collage-page .collage-about__copy {
  justify-self: center;
}

@media (max-width: 759px) {
  .home-collage-page .collage-hero {
    padding-top: 6.4rem;
  }

  .home-collage-page .collage-hero__grid {
    gap: 0.55rem;
    width: 100%;
    height: auto;
  }

  .home-collage-page .story-panel__copy {
    width: 100%;
    padding: 1rem;
  }

  .home-collage-page .story-panel__title {
    font-size: 1.65rem;
  }

  .home-collage-page .story-panel__text {
    font-size: 0.62rem;
  }

  .home-collage-page .collage-title {
    top: 15.5rem;
    font-size: clamp(3.1rem, 15vw, 5.4rem);
  }

  .home-collage-page .collage-center-note {
    bottom: 0.6rem;
    width: min(calc(100% - 2rem), 18rem);
    font-size: 0.66rem;
  }

  .home-collage-page .collage-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-collage-page .collage-section-heading {
    grid-column: 1 / -1;
  }

  .home-collage-page .collage-about {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .home-collage-page .collage-about__image {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
}

.home-collage-page .collage-about {
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.7fr) minmax(12rem, 0.36fr);
  gap: 0;
  align-items: stretch;
  padding: 0 var(--gutter);
  overflow: hidden;
  background: rgba(251, 247, 238, 0.98);
}

.home-collage-page .collage-about__image {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin: 0;
  background: var(--paper-deep);
}

.home-collage-page .collage-about__image img {
  object-position: center 48%;
}

.home-collage-page .collage-about__copy {
  align-content: center;
  justify-self: stretch;
  max-width: none;
  padding: clamp(2.2rem, 5vw, 5rem);
  background: rgba(251, 247, 238, 0.92);
}

.home-collage-page .collage-about__copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.home-collage-page .collage-about__copy p {
  max-width: 30rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-sketch {
  position: absolute;
  z-index: 2;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.about-sketch--flower {
  left: var(--gutter);
  top: 1.4rem;
  width: clamp(7rem, 12vw, 11rem);
  height: clamp(10rem, 17vw, 15rem);
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
}

.home-collage-page .paper-note--about {
  align-self: center;
  justify-self: center;
  width: min(82%, 15.5rem);
  min-height: 16rem;
  padding: 2rem 1.5rem;
  background: #eadfc9;
  box-shadow: 0 1.2rem 2.6rem rgba(70, 54, 34, 0.16);
  transform: rotate(4deg);
}

.home-collage-page .paper-note--about::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 50%;
  width: 5rem;
  height: 2rem;
  background: rgba(210, 193, 166, 0.62);
  transform: translateX(-50%) rotate(-5deg);
}

.home-collage-page .paper-note--about img {
  width: 6.2rem;
  height: 6.2rem;
}

.home-collage-page .collage-footer {
  position: relative;
  grid-template-columns: auto auto auto;
  min-height: 8.5rem;
  align-items: center;
  justify-content: center;
  gap: clamp(1.6rem, 4vw, 4rem);
  padding: 2rem var(--gutter);
  overflow: hidden;
  border-top: 0;
  background: var(--cobalt);
  color: rgba(255, 253, 247, 0.82);
}

.collage-footer__sketch {
  position: absolute;
  left: var(--gutter);
  bottom: -1.8rem;
  width: clamp(9rem, 17vw, 16rem);
  height: clamp(8rem, 14vw, 13rem);
  object-fit: cover;
  object-position: center;
  opacity: 0.38;
  filter: brightness(0) invert(1);
  mix-blend-mode: screen;
  pointer-events: none;
}

.home-collage-page .collage-socials {
  position: relative;
  z-index: 1;
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  color: currentColor;
}

.home-collage-page .collage-socials a {
  display: inline-grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  color: currentColor;
}

.home-collage-page .collage-socials svg {
  width: 2.8rem;
  height: 2.8rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.collage-footer__divider {
  position: relative;
  z-index: 1;
  width: 1px;
  height: 3.6rem;
  background: rgba(255, 253, 247, 0.36);
}

.collage-footer__wordmark {
  position: relative;
  z-index: 1;
  color: rgba(255, 253, 247, 0.82);
  font-size: clamp(1rem, 2vw, 1.45rem);
  letter-spacing: 0;
}

@media (max-width: 759px) {
  .home-collage-page .collage-about {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .home-collage-page .collage-about__image {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .home-collage-page .collage-about__copy {
    padding: 2.4rem var(--gutter);
  }

  .about-sketch--flower {
    width: 7rem;
    height: 10rem;
  }

  .home-collage-page .paper-note--about {
    margin: 0 0 2.4rem;
  }

  .home-collage-page .collage-footer {
    grid-template-columns: auto auto auto;
    min-height: 7.2rem;
  }

  .collage-footer__sketch {
    width: 10rem;
    height: 8rem;
  }

  .home-collage-page .collage-socials a {
    width: 2.65rem;
    height: 2.65rem;
  }

  .home-collage-page .collage-socials svg {
    width: 2.2rem;
    height: 2.2rem;
  }

  .collage-footer__wordmark {
    font-size: 0.86rem;
    letter-spacing: 0;
  }
}

.home-collage-page {
  --paper: #f1ece4;
  --paper-soft: #f8f3ea;
  --paper-deep: #ded5c9;
  --ink: #27231e;
  --ink-soft: #514a42;
  --cobalt: #1e24a8;
  overflow-x: hidden;
  background: var(--paper);
}

.home-collage-page::before {
  content: none;
}

.home-collage-page .site-main {
  background: var(--paper);
}

.home-collage-page .collage-hero {
  min-height: 0;
  padding: calc(var(--header-height) + clamp(0.75rem, 1.4vw, 1.25rem)) var(--gutter) clamp(1.65rem, 3vw, 2.6rem);
  overflow: visible;
  background: var(--paper);
}

.home-collage-page .collage-hero__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.5rem, 1.1vw, 1rem);
  width: min(100%, 76rem);
  max-width: 76rem;
  margin: 0 auto;
}

.home-collage-page .story-panel {
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 4;
  transform-origin: center;
  transition: transform 260ms var(--ease);
}

.home-collage-page .story-panel img {
  transition: transform 260ms var(--ease), filter 260ms var(--ease);
}

.home-collage-page .story-panel:hover,
.home-collage-page .story-panel:focus-visible {
  z-index: 3;
  transform: scale(1.025);
}

.home-collage-page .story-panel:hover img,
.home-collage-page .story-panel:focus-visible img {
  transform: scale(1.035);
}

.home-collage-page .story-panel:active {
  z-index: 3;
  transform: scale(1.025);
}

.home-collage-page .story-panel::after {
  background:
    linear-gradient(180deg, rgba(20, 18, 15, 0.34), rgba(20, 18, 15, 0.04) 52%, rgba(20, 18, 15, 0.16)),
    linear-gradient(90deg, rgba(20, 18, 15, 0.25), rgba(20, 18, 15, 0));
}

.home-collage-page .story-panel__copy {
  gap: 0.55rem;
  width: min(15rem, 86%);
  padding: clamp(1.25rem, 2.4vw, 2rem);
}

.home-collage-page .story-panel__title {
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  font-weight: 400;
}

.home-collage-page .story-panel__rule {
  width: 2.4rem;
}

.home-collage-page .story-panel__text {
  font-size: clamp(0.58rem, 0.82vw, 0.72rem);
  line-height: 1.28;
}

.home-collage-page .story-panel__action {
  display: inline-block;
  margin-top: clamp(0.35rem, 0.75vw, 0.7rem);
  color: rgba(255, 253, 247, 0.84);
  font-size: clamp(0.54rem, 0.74vw, 0.66rem);
  font-weight: 400;
  line-height: 1;
  text-transform: lowercase;
}

.home-collage-page .collage-title {
  position: absolute;
  left: 50%;
  top: calc(var(--header-height) + clamp(10.5rem, 30svh, 18.5rem));
  z-index: 5;
  width: max-content;
  max-width: min(92vw, 44rem);
  margin: 0;
  color: var(--cobalt);
  font-family: "Cormorant Garamond", "Playfair Display", var(--display);
  font-size: clamp(4.1rem, 9.8vw, 10.8rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

body.has-js.home-collage-page .collage-title[data-reveal] {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 1.7rem));
}

body.has-js.home-collage-page .collage-title[data-reveal].is-visible {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.home-collage-page .collage-services.work-formats {
  grid-template-columns: minmax(10rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.7rem, 4.8vw, 4.6rem);
  align-items: center;
  padding: clamp(2.45rem, 4.6vw, 4.2rem) var(--gutter);
  border-top: 1px solid rgba(39, 35, 30, 0.06);
  border-bottom: 1px solid rgba(39, 35, 30, 0.06);
  background: var(--paper-soft);
}

.work-formats__heading {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  max-width: 13.5rem;
}

.work-formats__heading h2 {
  margin: 0;
  color: var(--cobalt);
  font-family: "Cormorant Garamond", "Playfair Display", var(--display);
  font-size: clamp(1.18rem, 1.65vw, 1.95rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: uppercase;
}

.work-formats__heading > span {
  width: clamp(1.85rem, 3vw, 2.8rem);
  height: 1px;
  background: rgba(30, 36, 168, 0.42);
}

.work-formats__body {
  display: grid;
  gap: clamp(0.85rem, 1.6vw, 1.2rem);
  min-width: 0;
}

.work-formats__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(1.1rem, 3.2vw, 3.6rem);
  row-gap: 1rem;
}

.work-format {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(0.58rem, 1vw, 0.82rem);
  align-items: center;
  min-height: 0;
  padding: 0;
}

.work-format img {
  width: clamp(1.9rem, 2.45vw, 2.55rem);
  height: clamp(1.9rem, 2.45vw, 2.55rem);
  object-fit: contain;
  object-position: center;
  opacity: 0.7;
  filter: saturate(0.76) contrast(0.94);
  mix-blend-mode: multiply;
}

.work-format h3 {
  margin: 0;
  color: rgba(75, 70, 63, 0.78);
  font-family: "Cormorant Garamond", "Playfair Display", var(--display);
  font-size: clamp(1.02rem, 1.36vw, 1.42rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.work-formats__note {
  justify-self: start;
  margin: 0;
  color: rgba(75, 70, 63, 0.62);
  font-size: clamp(0.64rem, 0.78vw, 0.72rem);
  line-height: 1.35;
  text-transform: lowercase;
}

.home-collage-page .collage-about {
  display: block;
  padding: clamp(2rem, 4vw, 3.2rem) var(--gutter);
  overflow: visible;
  background: var(--paper);
}

.collage-about__frame {
  position: relative;
  max-width: 108rem;
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 2394 / 760;
  background: var(--paper-deep);
}

.collage-about__frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.home-collage-page .collage-about__copy {
  position: absolute;
  top: 24%;
  left: 54%;
  right: 9%;
  display: grid;
  gap: 0.7rem;
  max-width: 26rem;
  padding: 0;
  background: transparent;
}

.home-collage-page .collage-about__copy h2 {
  margin: 0;
  color: var(--cobalt);
  font-family: "Cormorant Garamond", "Playfair Display", var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2.45rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.home-collage-page .collage-about__copy p {
  margin: 0;
  max-width: 25rem;
  color: var(--ink-soft);
  font-size: clamp(0.72rem, 0.95vw, 0.92rem);
  line-height: 1.55;
}

.home-collage-page .collage-about__copy > span,
.home-collage-page .about-sketch,
.home-collage-page .paper-note--about {
  display: none;
}

.home-collage-page .collage-footer {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  min-height: clamp(5.2rem, 7vw, 6.3rem);
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3rem);
  padding: 1.25rem var(--gutter);
  overflow: hidden;
  border-top: 0;
  background: var(--cobalt);
  color: rgba(255, 253, 247, 0.88);
}

.home-collage-page .collage-footer__sketch {
  position: absolute;
  left: clamp(0.25rem, 1.4vw, 1.8rem);
  bottom: clamp(-4.7rem, -5.2vw, -2.4rem);
  width: clamp(4.8rem, 7.4vw, 7.3rem);
  height: clamp(8.4rem, 13vw, 12.8rem);
  object-fit: contain;
  object-position: left bottom;
  opacity: 0.34;
  filter: none;
  mix-blend-mode: normal;
  pointer-events: none;
}

.home-collage-page .collage-socials {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  color: currentColor;
}

.home-collage-page .collage-socials a {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
}

.home-collage-page .collage-socials svg {
  width: 1.95rem;
  height: 1.95rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.home-collage-page .collage-footer__divider {
  position: relative;
  z-index: 1;
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 253, 247, 0.36);
}

.home-collage-page .collage-footer__wordmark {
  position: relative;
  z-index: 1;
  color: currentColor;
  font-size: clamp(0.82rem, 1.4vw, 1.05rem);
  letter-spacing: 0;
  white-space: nowrap;
}

@media (max-width: 759px) {
  .home-collage-page .site-header--collage,
  .home-collage-page .site-header--collage.is-scrolled {
    min-height: 4.9rem;
    padding-top: 0.25rem;
  }

  .home-collage-page .collage-header__link {
    min-height: 2rem;
    font-size: 0.58rem;
  }

  .home-collage-page .collage-signature__name {
    font-size: 1.35rem;
  }

  .home-collage-page .collage-hero {
    min-height: 0;
    width: 100vw;
    max-width: 100vw;
    padding: calc(var(--header-height) + 0.45rem) var(--gutter) 1.6rem;
    overflow: hidden;
  }

  .home-collage-page .collage-hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .home-collage-page .story-panel {
    width: 100%;
    min-width: 0;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .home-collage-page .story-panel__copy {
    gap: 0.3rem;
    width: 100%;
    padding: 0.75rem;
  }

  .home-collage-page .story-panel__title {
    font-size: clamp(1rem, 5.2vw, 1.45rem);
  }

  .home-collage-page .story-panel__rule {
    width: 1.45rem;
  }

  .home-collage-page .story-panel__text {
    max-width: 7.6rem;
    font-size: clamp(0.47rem, 2vw, 0.56rem);
    line-height: 1.22;
  }

  .home-collage-page .story-panel__action {
    margin-top: 0.38rem;
    font-size: clamp(0.45rem, 1.9vw, 0.52rem);
  }

  .home-collage-page .collage-title {
    top: calc(var(--header-height) + clamp(9.5rem, 49vw, 12rem));
    right: 0;
    left: 0;
    width: auto;
    max-width: none;
    font-size: clamp(2.15rem, 10.4vw, 2.85rem);
    white-space: nowrap;
    transform: translateY(-50%);
  }

  body.has-js.home-collage-page .collage-title[data-reveal] {
    transform: translateY(calc(-50% + 1.2rem));
  }

  body.has-js.home-collage-page .collage-title[data-reveal].is-visible {
    transform: translateY(-50%);
  }

  .home-collage-page .collage-services.work-formats {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    padding: 2.05rem var(--gutter) 2.2rem;
  }

  .home-collage-page .work-formats__heading {
    gap: 0.45rem;
    max-width: 11rem;
  }

  .home-collage-page .work-formats__heading h2 {
    font-size: clamp(1.05rem, 5vw, 1.45rem);
  }

  .home-collage-page .work-formats__heading > span {
    width: 2rem;
  }

  .home-collage-page .work-formats__body {
    gap: 0.75rem;
  }

  .home-collage-page .work-formats__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    align-items: start;
  }

  .home-collage-page .work-format {
    grid-template-columns: 1fr;
    gap: 0.42rem;
    align-content: start;
    justify-items: start;
  }

  .home-collage-page .work-format img {
    width: 1.85rem;
    height: 1.85rem;
  }

  .home-collage-page .work-format h3 {
    font-size: clamp(0.84rem, 3.6vw, 1.02rem);
    line-height: 1.1;
  }

  .home-collage-page .work-formats__note {
    justify-self: start;
    font-size: 0.62rem;
  }

  .home-collage-page .collage-about {
    padding: 1.65rem var(--gutter);
  }

  .collage-about__frame {
    overflow: hidden;
    aspect-ratio: auto;
    background: transparent;
  }

  .collage-about__frame > img {
    position: static;
    display: block;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .home-collage-page .collage-about__copy {
    top: 17%;
    left: 52%;
    right: 7%;
    gap: 0.24rem;
    max-width: none;
  }

  .home-collage-page .collage-about__copy h2 {
    font-size: 0.92rem;
    line-height: 0.96;
  }

  .home-collage-page .collage-about__copy p {
    max-width: none;
    font-size: 0.45rem;
    line-height: 1.24;
  }

  .home-collage-page .collage-footer {
    min-height: 4.6rem;
    gap: 0.66rem;
    padding: 0.9rem var(--gutter);
  }

  .home-collage-page .collage-footer__sketch {
    left: 0.15rem;
    bottom: -3rem;
    width: 3.8rem;
    height: 6.7rem;
    opacity: 0.3;
  }

  .home-collage-page .collage-socials {
    gap: 0.55rem;
  }

  .home-collage-page .collage-socials a {
    width: 1.85rem;
    height: 1.85rem;
  }

  .home-collage-page .collage-socials svg {
    width: 1.48rem;
    height: 1.48rem;
  }

  .home-collage-page .collage-footer__divider {
    height: 1.9rem;
  }

  .home-collage-page .collage-footer__wordmark {
    font-size: 0.68rem;
  }
}

.brands-editorial-page {
  --brand-paper: #f5f1ea;
  --brand-paper-soft: #fbf8f1;
  --brand-paper-deep: #e6ddd0;
  --brand-ink: #191815;
  --brand-muted: #5a554c;
  --brand-line: rgba(35, 30, 24, 0.15);
  --brand-blue: #233c9b;
  --brand-blue-deep: #0e2b9f;
  background: var(--brand-paper);
  color: var(--brand-ink);
}

.brand-page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: var(--header-height);
  padding: 0 var(--gutter);
  color: var(--brand-ink);
  transition: background 360ms var(--ease), border-color 360ms var(--ease);
}

.brand-page-header.is-scrolled {
  border-bottom: 1px solid rgba(35, 30, 24, 0.08);
  background: rgba(245, 241, 234, 0.88);
  backdrop-filter: blur(16px);
}

.brand-page-header__home,
.brand-page-header__peer,
.brand-page-signature small,
.brand-editorial-kicker,
.brand-case__number,
.brand-case__copy a,
.brand-blue-footer__wordmark {
  font-size: 0.72rem;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-page-header__home,
.brand-page-header__peer {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  color: var(--brand-muted);
}

.brand-page-header__home {
  justify-self: start;
}

.brand-page-header__peer {
  justify-self: end;
}

.brand-page-signature {
  display: grid;
  justify-items: center;
  color: var(--brand-ink);
  text-align: center;
}

.brand-page-signature span {
  font-family: "Snell Roundhand", "Brush Script MT", var(--display);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-style: italic;
  line-height: 0.92;
}

.brand-page-signature small {
  margin-top: 0.25rem;
  color: var(--brand-muted);
}

.brand-page-header__home,
.brand-page-header__peer,
.brand-case__copy a,
.brand-blue-footer__socials a {
  transition: color 240ms ease, opacity 240ms ease, transform 420ms var(--ease);
}

.brand-page-header__home:hover,
.brand-page-header__home:focus-visible,
.brand-page-header__peer:hover,
.brand-page-header__peer:focus-visible,
.brand-case__copy a:hover,
.brand-case__copy a:focus-visible {
  color: var(--brand-blue);
}

.brand-editorial-main {
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.32), rgba(255, 253, 247, 0)),
    var(--brand-paper);
}

.brand-editorial-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(22rem, 0.94fr) minmax(26rem, 1.06fr);
  gap: clamp(2.2rem, 5vw, 6rem);
  align-items: center;
  min-height: 100svh;
  max-width: 116rem;
  margin: 0 auto;
  padding: calc(var(--header-height) + 4rem) var(--gutter) clamp(4rem, 8vw, 7rem);
}

.brand-editorial-hero::before {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 2.5rem;
  height: 1px;
  background: var(--brand-line);
}

.brand-editorial-hero__copy {
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
  align-content: center;
  max-width: 38rem;
}

.brand-editorial-kicker {
  color: var(--brand-muted);
}

.brand-editorial-hero h1,
.brand-cases__heading h2 {
  margin: 0;
  color: var(--brand-blue);
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-editorial-hero h1 {
  font-size: clamp(3.8rem, 4.8vw, 6.5rem);
}

.brand-editorial-hero__lead {
  margin: 0;
  max-width: 22rem;
  color: var(--brand-ink);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.3vw, 3.15rem);
  line-height: 1;
}

.brand-editorial-hero__text {
  display: grid;
  gap: 0.9rem;
  max-width: 31rem;
  padding-top: 0.5rem;
  color: var(--brand-muted);
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  line-height: 1.75;
}

.brand-editorial-hero__text p {
  margin: 0;
}

.brand-editorial-hero__image {
  position: relative;
  min-height: min(70svh, 48rem);
  overflow: visible;
}

.brand-editorial-hero__image img {
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: min(70svh, 48rem);
  background: var(--brand-paper-deep);
  object-fit: cover;
  object-position: center;
}

.brand-paper-note {
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  bottom: clamp(-1.5rem, -2vw, -0.8rem);
  z-index: 2;
  display: grid;
  min-width: 10.5rem;
  min-height: 10rem;
  place-items: center;
  padding: 1.6rem 1.3rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    #eee7da;
  box-shadow: 0 1.4rem 2.4rem rgba(49, 37, 24, 0.16);
  color: rgba(37, 33, 28, 0.82);
  font-family: "Snell Roundhand", "Brush Script MT", var(--display);
  font-size: 1.24rem;
  font-style: italic;
  line-height: 1.55;
  text-align: center;
  transform: rotate(5deg);
}

.brand-paper-note::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: 50%;
  width: 4.8rem;
  height: 1.8rem;
  background: rgba(206, 188, 159, 0.58);
  transform: translateX(-50%) rotate(-4deg);
}

.brand-editorial-divider {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  max-width: 116rem;
  margin: 0 auto;
  padding: 0 var(--gutter) 1rem;
}

.brand-editorial-divider span {
  height: 1px;
  background: var(--brand-line);
}

.brand-editorial-divider img {
  width: clamp(4.5rem, 8vw, 7rem);
  height: clamp(4.5rem, 8vw, 7rem);
  object-fit: cover;
  object-position: center;
  opacity: 0.76;
  mix-blend-mode: multiply;
}

.brand-cases {
  position: relative;
  display: grid;
  gap: clamp(3rem, 6vw, 5.5rem);
  max-width: 116rem;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter) clamp(5rem, 9vw, 9rem);
}

.brand-cases::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: var(--gutter);
  width: clamp(6rem, 10vw, 10rem);
  height: clamp(7rem, 12vw, 12rem);
  background: url("/assets/media/portfolio/studio/line-profile.jpg") center / cover no-repeat;
  opacity: 0.24;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.brand-cases__heading {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  text-align: center;
}

.brand-cases__heading h2 {
  font-size: clamp(3.6rem, 8vw, 8.8rem);
}

.brand-cases__heading::after {
  content: "";
  width: 5.6rem;
  height: 1px;
  background: var(--brand-blue);
}

.brand-cases__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 6vw, 6rem) clamp(2rem, 4vw, 4.5rem);
}

.brand-case {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(12rem, 0.68fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: center;
  min-height: 22rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--brand-line);
}

.brand-case--image-right {
  grid-template-columns: minmax(12rem, 0.68fr) minmax(0, 0.94fr);
}

.brand-case--image-right .brand-case__image {
  order: 2;
}

.brand-case--image-right .brand-case__copy {
  order: 1;
}

.brand-case--low {
  align-self: start;
  margin-top: clamp(1.5rem, 5vw, 4rem);
}

.brand-case--tall {
  margin-top: clamp(-1rem, -1vw, 0rem);
}

.brand-case__image {
  display: block;
  justify-self: stretch;
  overflow: hidden;
  background: var(--brand-paper-deep);
}

.brand-case__image img {
  aspect-ratio: 3 / 4;
  height: auto;
  transition: transform 780ms var(--ease), filter 780ms var(--ease);
}

.brand-case--low .brand-case__image img {
  aspect-ratio: 4 / 3;
}

.brand-case__image:hover img,
.brand-case__image:focus-visible img {
  transform: scale(1.045);
  filter: contrast(1.03) saturate(0.96);
}

.brand-case__copy {
  display: grid;
  gap: 0.9rem;
  align-content: center;
}

.brand-case__number {
  color: var(--brand-blue);
}

.brand-case h3 {
  margin: 0;
  color: var(--brand-ink);
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.4vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.brand-case p {
  margin: 0;
  max-width: 20rem;
  color: var(--brand-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.brand-case__copy a {
  justify-self: start;
  color: var(--brand-ink);
}

.brand-blue-footer {
  position: relative;
  display: grid;
  min-height: clamp(7rem, 12vw, 8.75rem);
  align-items: center;
  overflow: hidden;
  background: var(--brand-blue-deep);
  color: rgba(255, 253, 247, 0.84);
}

.brand-blue-footer__sketch {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(-5.2rem, -5vw, -2.6rem);
  width: clamp(5rem, 8vw, 8rem);
  height: clamp(9rem, 14vw, 13rem);
  object-fit: contain;
  object-position: left bottom;
  opacity: 0.32;
  filter: brightness(0) invert(1);
  mix-blend-mode: screen;
  pointer-events: none;
}

.brand-blue-footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 4vw, 4rem);
  width: 100%;
  padding: 2rem var(--gutter);
}

.brand-blue-footer__socials {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
}

.brand-blue-footer__socials a {
  display: inline-grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
}

.brand-blue-footer__socials a:hover,
.brand-blue-footer__socials a:focus-visible {
  opacity: 0.72;
  transform: translateY(-0.12rem);
}

.brand-blue-footer svg {
  width: 2.7rem;
  height: 2.7rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.brand-blue-footer__divider {
  width: 1px;
  height: 3.6rem;
  background: rgba(255, 253, 247, 0.34);
}

.brand-blue-footer__wordmark {
  font-size: clamp(1rem, 2vw, 1.42rem);
}

@media (max-width: 1080px) {
  .brand-editorial-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header-height) + 3rem);
  }

  .brand-editorial-hero__copy {
    max-width: 48rem;
  }

  .brand-editorial-hero__image,
  .brand-editorial-hero__image img {
    min-height: 0;
  }

  .brand-cases__grid {
    grid-template-columns: 1fr;
  }

  .brand-case,
  .brand-case--image-right {
    grid-template-columns: minmax(0, 0.9fr) minmax(14rem, 0.72fr);
  }
}

@media (max-width: 720px) {
  .brand-page-header {
    grid-template-columns: 1fr auto 1fr;
    column-gap: 0.75rem;
  }

  .brand-page-header__home,
  .brand-page-header__peer,
  .brand-page-signature small {
    font-size: 0.64rem;
  }

  .brand-page-signature span {
    font-size: 1.7rem;
  }

  .brand-editorial-hero {
    gap: 2.1rem;
    padding-bottom: 3.4rem;
  }

  .brand-editorial-hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .brand-editorial-hero__lead {
    font-size: clamp(1.5rem, 8vw, 2.35rem);
  }

  .brand-editorial-hero__image img {
    aspect-ratio: 3 / 4;
    object-position: 43% center;
  }

  .brand-paper-note {
    right: 0.8rem;
    bottom: -1.2rem;
    min-width: 8.7rem;
    min-height: 8.7rem;
    padding: 1.25rem 1rem;
    font-size: 1rem;
  }

  .brand-editorial-divider {
    gap: 1rem;
  }

  .brand-cases {
    padding-top: 3.5rem;
  }

  .brand-case,
  .brand-case--image-right {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .brand-case--image-right .brand-case__image,
  .brand-case--image-right .brand-case__copy {
    order: initial;
  }

  .brand-case--low,
  .brand-case--tall {
    margin-top: 0;
  }

  .brand-case__image img,
  .brand-case--low .brand-case__image img {
    aspect-ratio: 4 / 5;
  }

  .brand-blue-footer__inner {
    gap: 1.2rem;
  }

  .brand-blue-footer__socials a {
    width: 2.55rem;
    height: 2.55rem;
  }

  .brand-blue-footer svg {
    width: 2.15rem;
    height: 2.15rem;
  }

  .brand-blue-footer__divider {
    height: 3rem;
  }

  .brand-blue-footer__wordmark {
    font-size: 0.82rem;
  }
}

.books-editorial-page {
  --books-paper: #ece7e1;
  --books-paper-soft: #f4efe8;
  --books-paper-deep: #ded7ce;
  --books-ink: #1b1916;
  --books-muted: #5d574f;
  --books-line: rgba(35, 30, 24, 0.11);
  --books-blue: #1e24a8;
  --brand-blue-deep: #1e24a8;
  background: var(--books-paper);
  color: var(--books-ink);
}

.books-editorial-page::before {
  content: none;
}

.books-page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: var(--header-height);
  padding: 0 var(--gutter);
  color: var(--books-ink);
  transition: background 360ms var(--ease), border-color 360ms var(--ease);
}

.books-page-header.is-scrolled {
  border-bottom: 1px solid rgba(35, 30, 24, 0.08);
  background: rgba(245, 241, 234, 0.88);
  backdrop-filter: blur(16px);
}

.books-page-header__home,
.books-page-header__peer,
.books-page-signature small,
.books-editorial-kicker,
.book-carousel__controls,
.brand-blue-footer__wordmark {
  font-size: 0.72rem;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
}

.books-page-header__home,
.books-page-header__peer {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  color: var(--books-muted);
  transition: color 240ms ease;
}

.books-page-header__home {
  justify-self: start;
}

.books-page-header__peer {
  justify-self: end;
}

.books-page-header__home:hover,
.books-page-header__home:focus-visible,
.books-page-header__peer:hover,
.books-page-header__peer:focus-visible {
  color: var(--books-blue);
}

.books-page-signature {
  display: grid;
  justify-items: center;
  color: var(--books-ink);
  text-align: center;
}

.books-page-signature span {
  font-family: "Snell Roundhand", "Brush Script MT", var(--display);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-style: italic;
  line-height: 0.92;
}

.books-page-signature small {
  margin-top: 0.25rem;
  color: var(--books-muted);
}

.books-editorial-main {
  background: var(--books-paper);
}

.books-editorial-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: start;
  max-width: 108rem;
  margin: 0 auto;
  padding: calc(var(--header-height) + clamp(0.75rem, 1.6vw, 1.35rem)) var(--gutter) clamp(1.4rem, 3vw, 2.8rem);
}

.books-editorial-hero::before {
  content: none;
}

.books-editorial-hero img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  background: var(--books-paper-deep);
  object-fit: contain;
  object-position: center;
}

.books-editorial-hero__copy {
  position: absolute;
  z-index: 2;
  top: calc(var(--header-height) + clamp(1.55rem, 3.2vw, 3.4rem));
  left: calc(var(--gutter) + clamp(0.85rem, 2.6vw, 2.9rem));
  display: grid;
  gap: clamp(0.45rem, 1vw, 0.8rem);
  width: min(22rem, 31vw);
}

.books-editorial-hero h1 {
  margin: 0;
  color: var(--books-blue);
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.7vw, 5.7rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.books-editorial-hero p {
  margin: 0;
  max-width: 15rem;
  color: var(--books-ink);
  font-family: var(--sans);
  font-size: clamp(0.76rem, 1.15vw, 1.05rem);
  line-height: 1.42;
  text-transform: lowercase;
}

.books-cases {
  display: grid;
  gap: clamp(1.2rem, 2.7vw, 2.6rem);
  max-width: 82rem;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(2.4rem, 4.5vw, 4rem);
}

.books-cases__heading {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  text-align: center;
}

.books-editorial-kicker {
  color: var(--books-muted);
}

.books-cases__heading h2,
.book-case h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.books-cases__heading h2 {
  color: var(--books-blue);
  font-size: clamp(3.5rem, 7vw, 7.4rem);
}

.books-cases__heading::after {
  content: "";
  display: block;
  width: 5.6rem;
  height: 1px;
  background: var(--books-blue);
}

.book-case {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(9rem, 0.26fr);
  gap: clamp(1rem, 2.2vw, 2.2rem);
  align-items: center;
  padding-top: clamp(0.9rem, 1.8vw, 1.55rem);
  border-top: 1px solid var(--books-line);
}

.book-case__copy {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding-top: 0.15rem;
}

.book-case h3 {
  max-width: 12rem;
  color: var(--books-blue);
  font-size: clamp(1.05rem, 1.65vw, 1.82rem);
  line-height: 1.08;
  text-transform: none;
}

.book-carousel {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.book-carousel__viewport {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: clamp(11.5rem, 22vw, 18.5rem);
  border: 1px solid rgba(35, 30, 24, 0.08);
  background: var(--books-paper-soft);
  cursor: pointer;
  touch-action: pan-y;
  user-select: none;
}

.book-carousel__track {
  display: flex;
  height: 100%;
  transform: translateX(0);
  transition: transform 620ms var(--ease);
  will-change: transform;
}

.book-carousel__slide {
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.book-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.book-carousel__controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  align-items: center;
  color: var(--books-muted);
}

.book-carousel__controls > button {
  display: inline-grid;
  width: 1.9rem;
  height: 1.9rem;
  place-items: center;
  border: 0;
  color: var(--books-blue);
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 240ms ease, color 240ms ease, transform 360ms var(--ease);
}

.book-carousel__controls > button:hover,
.book-carousel__controls > button:focus-visible {
  background: var(--books-blue);
  color: var(--white);
  transform: translateY(-0.08rem);
}

.book-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.42rem;
}

.book-carousel__dots button {
  width: 0.32rem;
  height: 0.32rem;
  border: 1px solid rgba(30, 36, 168, 0.46);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background 240ms ease, transform 240ms ease;
}

.book-carousel__dots button.is-active {
  background: var(--books-blue);
  transform: scale(1.35);
}

.books-more {
  display: grid;
  justify-items: center;
  margin-top: 0;
  padding-top: 0;
}

.books-more__button {
  display: inline-flex;
  width: min(100%, 31rem);
  min-height: clamp(3rem, 4vw, 3.45rem);
  align-items: center;
  justify-content: center;
  padding: 0 clamp(1.35rem, 3vw, 2.5rem);
  background: var(--books-blue);
  color: var(--white);
  font-size: 0.74rem;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  transition: background 240ms ease, transform 360ms var(--ease);
}

.books-more__button:hover,
.books-more__button:focus-visible {
  background: #141a86;
  transform: translateY(-0.08rem);
}

.books-editorial-page .brand-blue-footer {
  min-height: clamp(5.2rem, 7vw, 6.5rem);
}

.books-editorial-page .brand-blue-footer__sketch {
  left: clamp(0.35rem, 1.5vw, 2rem);
  bottom: clamp(-4.7rem, -5.2vw, -2.4rem);
  width: clamp(4.8rem, 7.4vw, 7.3rem);
  height: clamp(8.4rem, 13vw, 12.8rem);
  opacity: 0.34;
  filter: none;
  mix-blend-mode: normal;
  object-fit: contain;
  object-position: left bottom;
}

.books-editorial-page .brand-blue-footer__inner {
  gap: clamp(1.1rem, 3vw, 3rem);
  padding: 1.35rem var(--gutter);
}

.books-editorial-page .brand-blue-footer__socials a {
  width: 2.45rem;
  height: 2.45rem;
}

.books-editorial-page .brand-blue-footer svg {
  width: 2rem;
  height: 2rem;
}

.books-editorial-page .brand-blue-footer__divider {
  height: 2.5rem;
}

.books-editorial-page .brand-blue-footer__wordmark {
  font-size: clamp(0.82rem, 1.4vw, 1.05rem);
}

@media (max-width: 1080px) {
  .books-editorial-hero {
    max-width: 96rem;
  }

  .books-editorial-hero__copy {
    width: min(18rem, 34vw);
  }

  .books-editorial-hero h1 {
    font-size: clamp(2rem, 4.4vw, 4.4rem);
  }

  .book-case {
    grid-template-columns: minmax(0, 0.72fr) minmax(8rem, 0.28fr);
  }
}

@media (max-width: 760px) {
  .books-page-header {
    grid-template-columns: 1fr auto 1fr;
    column-gap: 0.75rem;
  }

  .books-page-header__home,
  .books-page-header__peer,
  .books-page-signature small {
    font-size: 0.64rem;
  }

  .books-page-signature span {
    font-size: 1.55rem;
  }

  .books-editorial-hero {
    padding: calc(var(--header-height) + 0.65rem) var(--gutter) 1.1rem;
  }

  .books-editorial-hero img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .books-editorial-hero__copy {
    top: calc(var(--header-height) + 1rem);
    left: calc(var(--gutter) + 0.55rem);
    gap: 0.25rem;
    width: min(10rem, 42vw);
  }

  .books-editorial-hero h1 {
    font-size: clamp(1.55rem, 8vw, 2.45rem);
    line-height: 0.9;
  }

  .books-editorial-hero p {
    max-width: 8.2rem;
    font-size: clamp(0.56rem, 2.3vw, 0.72rem);
    line-height: 1.32;
  }

  .books-cases {
    gap: 1.1rem;
    padding-bottom: 2.1rem;
  }

  .book-case {
    grid-template-columns: minmax(0, 0.66fr) minmax(5.8rem, 0.34fr);
    gap: 0.65rem;
    padding-top: 0.9rem;
  }

  .book-case h3 {
    max-width: none;
    font-size: clamp(0.95rem, 4.7vw, 1.28rem);
    line-height: 1.05;
  }

  .book-carousel__viewport {
    aspect-ratio: 16 / 9;
    max-height: none;
  }

  .book-carousel__controls > button {
    width: 1.42rem;
    height: 1.42rem;
    font-size: 0.78rem;
  }

  .book-carousel__dots button {
    width: 0.28rem;
    height: 0.28rem;
  }

  .books-more {
    margin-top: -0.25rem;
  }

  .books-more__button {
    min-height: 2.85rem;
    font-size: 0.68rem;
  }

  .books-editorial-page .brand-blue-footer {
    min-height: 5.2rem;
  }

  .books-editorial-page .brand-blue-footer__sketch {
    left: 0.15rem;
    bottom: -3rem;
    width: 3.8rem;
    height: 6.7rem;
  }

  .books-editorial-page .brand-blue-footer__inner {
    gap: 0.9rem;
    padding: 1rem var(--gutter);
  }

  .books-editorial-page .brand-blue-footer__socials {
    gap: 0.75rem;
  }

  .books-editorial-page .brand-blue-footer__socials a {
    width: 2.1rem;
    height: 2.1rem;
  }

  .books-editorial-page .brand-blue-footer svg {
    width: 1.65rem;
    height: 1.65rem;
  }

  .books-editorial-page .brand-blue-footer__divider {
    height: 2.2rem;
  }
}

.books-editorial-page {
  --books-paper: #f5f1ea;
  --books-paper-soft: #fbf8f1;
  --books-paper-deep: #e5ddd2;
  --books-ink: #171512;
  --books-muted: #5a554d;
  --books-line: rgba(35, 30, 24, 0.12);
  --books-blue: #1e24a8;
  --brand-blue-deep: #1e24a8;
  background: var(--books-paper);
}

.books-world-hero {
  position: relative;
  display: grid;
  justify-items: center;
  max-width: 112rem;
  margin: 0 auto;
  padding: calc(var(--header-height) + clamp(0.8rem, 1.8vw, 1.5rem)) var(--gutter) clamp(0.75rem, 1.8vw, 1.5rem);
  background: var(--books-paper);
}

.books-world-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
}

.books-world-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  background: transparent;
  object-fit: contain;
  object-position: top center;
}

.books-world-hero__copy {
  position: absolute;
  z-index: 2;
  top: calc(var(--header-height) + clamp(3rem, 5vw, 5.2rem));
  left: calc(var(--gutter) + clamp(2.4rem, 6vw, 7rem));
  display: grid;
  gap: clamp(0.45rem, 1vw, 0.8rem);
  width: min(18rem, 38vw);
  color: var(--books-ink);
}

.books-world-hero__copy h1 {
  margin: 0;
  color: var(--books-blue);
  font-family: "Cormorant Garamond", "Playfair Display", var(--display);
  font-size: clamp(2.4rem, 5.2vw, 6.3rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.books-world-hero__copy span {
  display: block;
  width: clamp(2.5rem, 5vw, 4.8rem);
  height: 1px;
  background: var(--books-blue);
}

.books-world-hero__copy p {
  margin: 0;
  max-width: 13rem;
  color: var(--books-ink);
  font-family: var(--sans);
  font-size: clamp(0.82rem, 1.2vw, 1.05rem);
  line-height: 1.35;
  text-transform: lowercase;
}

.books-fragments {
  display: grid;
  gap: clamp(1.1rem, 2.4vw, 2rem);
  max-width: 112rem;
  margin: 0 auto;
  padding: clamp(1.4rem, 3vw, 2.8rem) var(--gutter) clamp(3rem, 5vw, 4.8rem);
  background: var(--books-paper);
}

.books-fragments__heading {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
}

.books-fragments__heading h2 {
  margin: 0;
  color: var(--books-blue);
  font-family: "Cormorant Garamond", "Playfair Display", var(--display);
  font-size: clamp(1.7rem, 3.3vw, 3.2rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.books-fragments__heading::after {
  content: "";
  display: block;
  width: clamp(3.6rem, 7vw, 6rem);
  height: 1px;
  background: var(--books-blue);
}

.books-fragments-gallery {
  display: grid;
  gap: clamp(0.75rem, 1.5vw, 1.1rem);
  min-width: 0;
}

.books-fragments-gallery__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  min-width: 0;
  cursor: grab;
  outline: 0;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: clamp(0.25rem, 1vw, 0.8rem);
  scroll-snap-type: x proximity;
  touch-action: pan-x;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.books-fragments-gallery__viewport:active {
  cursor: grabbing;
}

.books-fragments-gallery__viewport:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(30, 36, 168, 0.28);
}

.books-fragments-gallery__viewport::-webkit-scrollbar {
  display: none;
}

.books-fragments-gallery__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(0.65rem, 1.25vw, 1.2rem);
  padding: clamp(0.35rem, 1vw, 0.8rem) clamp(0.2rem, 0.7vw, 0.65rem) clamp(0.55rem, 1vw, 0.9rem);
}

.books-fragments-gallery__item {
  --fragment-height: clamp(13rem, 23vw, 22rem);
  --fragment-max-width: 29rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin: 0;
  scroll-snap-align: center;
}

.books-fragments-gallery__item:nth-child(3n + 1) {
  align-self: end;
}

.books-fragments-gallery__item:nth-child(3n + 2) {
  align-self: center;
}

.books-fragments-gallery__item:nth-child(3n) {
  align-self: start;
}

.books-fragments-gallery__item--panorama {
  --fragment-height: clamp(9.8rem, 16vw, 15rem);
  --fragment-max-width: 34rem;
}

.books-fragments-gallery__item--wide {
  --fragment-height: clamp(11.5rem, 19vw, 17.5rem);
  --fragment-max-width: 30rem;
}

.books-fragments-gallery__item--square {
  --fragment-height: clamp(12.4rem, 21vw, 19.5rem);
  --fragment-max-width: 21rem;
}

.books-fragments-gallery__item--tall {
  --fragment-height: clamp(14.4rem, 27vw, 25rem);
  --fragment-max-width: 19rem;
}

.books-fragments-gallery__item img {
  width: auto;
  height: var(--fragment-height);
  max-width: min(70vw, var(--fragment-max-width));
  max-height: clamp(15rem, 48svh, 27rem);
  object-fit: contain;
  object-position: center;
  background: rgba(251, 248, 241, 0.58);
  box-shadow: 0 0.75rem 1.9rem rgba(35, 30, 24, 0.09);
  user-select: none;
  -webkit-user-drag: none;
}

.books-fragments-gallery__controls {
  display: flex;
  justify-content: center;
  gap: clamp(0.65rem, 1.4vw, 1rem);
}

.books-fragments-gallery__controls > button {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: var(--books-blue);
  cursor: pointer;
  font-size: 1rem;
  transition: background 240ms ease, color 240ms ease, opacity 240ms ease, transform 360ms var(--ease);
}

.books-fragments-gallery__controls > button:hover,
.books-fragments-gallery__controls > button:focus-visible {
  background: var(--books-blue);
  color: var(--white);
  transform: translateY(-0.08rem);
}

.books-fragments-gallery__controls > button:disabled {
  cursor: default;
  opacity: 0.32;
  transform: none;
}

.books-editorial-page .books-more {
  margin-top: clamp(0.4rem, 1.8vw, 1.2rem);
}

.books-editorial-page .books-more__button {
  appearance: none;
  border: 0;
  width: min(100%, 34rem);
  min-height: clamp(3.35rem, 5vw, 4.3rem);
  border-radius: 0.45rem;
  background: var(--books-blue);
  color: var(--white);
  cursor: pointer;
  font-family: var(--sans);
  font-size: clamp(0.72rem, 1.2vw, 0.88rem);
  letter-spacing: 0;
  text-decoration: none;
}

.books-editorial-page .books-more__button:hover,
.books-editorial-page .books-more__button:focus-visible {
  background: #141a86;
}

@media (min-width: 1180px) {
  .books-world-hero__image {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .books-world-hero {
    min-height: 82svh;
    align-content: start;
    padding: calc(var(--header-height) + 0.55rem) var(--gutter) 0.6rem;
  }

  .books-world-hero__image {
    display: grid;
    width: 100%;
    height: calc(82svh - var(--header-height) - 1.15rem);
    min-height: 27rem;
    place-items: start center;
  }

  .books-world-hero__image img {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .books-world-hero__copy {
    top: calc(var(--header-height) + 1.05rem);
    left: calc(var(--gutter) + 0.65rem);
    gap: 0.35rem;
    width: min(10.8rem, 46vw);
  }

  .books-world-hero__copy h1 {
    font-size: clamp(1.7rem, 8vw, 2.55rem);
  }

  .books-world-hero__copy p {
    max-width: 8.4rem;
    font-size: clamp(0.56rem, 2.35vw, 0.7rem);
    line-height: 1.28;
  }

  .books-fragments {
    gap: 0.85rem;
    padding: 0.95rem var(--gutter) 2.5rem;
  }

  .books-fragments__heading h2 {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .books-fragments-gallery__track {
    gap: 0.62rem;
    padding-block: 0.3rem 0.55rem;
  }

  .books-fragments-gallery__item--panorama {
    --fragment-height: clamp(7.2rem, 26vw, 10.2rem);
    --fragment-max-width: 17rem;
  }

  .books-fragments-gallery__item--wide {
    --fragment-height: clamp(8.8rem, 34vw, 12.5rem);
    --fragment-max-width: 16.2rem;
  }

  .books-fragments-gallery__item--square {
    --fragment-height: clamp(9.6rem, 38vw, 13.2rem);
    --fragment-max-width: 13.2rem;
  }

  .books-fragments-gallery__item--tall {
    --fragment-height: clamp(11.5rem, 48vw, 16.5rem);
    --fragment-max-width: 12.5rem;
  }

  .books-fragments-gallery__controls > button {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.82rem;
  }

  .books-editorial-page .books-more__button {
    min-height: 3.15rem;
    padding-inline: 1rem;
    font-size: 0.68rem;
  }
}

.brands-editorial-page::before {
  content: none;
}

.brands-editorial-page {
  --brand-paper: #f5f1ea;
  --brand-paper-soft: #fbf8f1;
  --brand-paper-deep: #e5ddd2;
  --brand-ink: #171512;
  --brand-muted: #5a554d;
  --brand-line: rgba(35, 30, 24, 0.12);
  --brand-blue: #1e24a8;
  --brand-blue-deep: #1e24a8;
}

.brands-editorial-page .brand-editorial-main {
  background: var(--brand-paper);
}

.brands-editorial-page .brand-editorial-hero {
  display: block;
  max-width: 112rem;
  min-height: auto;
  padding: calc(var(--header-height) + clamp(0.75rem, 1.6vw, 1.4rem)) var(--gutter) clamp(1.8rem, 4vw, 3.4rem);
}

.brands-editorial-page .brand-editorial-hero::before,
.brands-editorial-page .brand-paper-note,
.brands-editorial-page .brand-editorial-divider {
  display: none;
}

.brands-editorial-page .brand-editorial-hero__image {
  position: relative;
  min-height: 0;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: var(--brand-paper-deep);
}

.brands-editorial-page .brand-editorial-hero__image img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.brands-editorial-page .brand-editorial-hero__copy {
  position: absolute;
  z-index: 2;
  top: calc(var(--header-height) + clamp(3rem, 5vw, 5.2rem));
  left: calc(var(--gutter) + clamp(2.4rem, 6vw, 7rem));
  gap: clamp(0.5rem, 1vw, 0.9rem);
  max-width: min(24rem, 34vw);
  color: var(--brand-ink);
}

.brands-editorial-page .brand-editorial-hero h1 {
  font-family: "Cormorant Garamond", "Playfair Display", var(--display);
  font-size: clamp(2.4rem, 5.2vw, 6.3rem);
  font-weight: 300;
  line-height: 0.88;
}

.brands-editorial-page .brand-editorial-hero__lead {
  max-width: 15rem;
  font-family: var(--sans);
  font-size: clamp(0.82rem, 1.2vw, 1.05rem);
  line-height: 1.35;
}

.brands-editorial-page .brand-cases {
  max-width: 92rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) var(--gutter) clamp(3rem, 6vw, 5rem);
}

.brands-editorial-page .brand-cases__heading {
  gap: 0.65rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
  text-align: center;
}

.brands-editorial-page .brand-cases__heading h2 {
  font-family: "Cormorant Garamond", "Playfair Display", var(--display);
  font-size: clamp(1.9rem, 3.6vw, 3.3rem);
  font-weight: 300;
  line-height: 1;
}

.brands-editorial-page .brand-cases__grid {
  display: none;
}

.brand-cases__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 2rem);
}

.brands-editorial-page .brand-case {
  display: grid;
  grid-template-columns: minmax(12rem, 0.66fr) minmax(8rem, 0.34fr);
  gap: clamp(0.9rem, 2vw, 1.5rem);
  align-items: center;
  margin: 0;
  padding: clamp(0.8rem, 1.4vw, 1.1rem);
  border: 1px solid var(--brand-line);
  background: rgba(251, 248, 241, 0.72);
}

.brand-carousel {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.brand-carousel__viewport {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--brand-paper-deep);
  cursor: pointer;
  touch-action: pan-y;
  user-select: none;
}

.brand-carousel__viewport .book-carousel__track {
  display: flex;
  height: 100%;
  transform: translateX(0);
  transition: transform 620ms var(--ease);
  will-change: transform;
}

.brand-carousel .book-carousel__slide {
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.brand-carousel .book-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.brand-carousel .book-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  color: var(--brand-muted);
}

.brand-carousel .book-carousel__controls > button {
  display: inline-grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border: 0;
  color: var(--brand-blue);
  font-size: 0.9rem;
}

.brand-carousel .book-carousel__controls > button:hover,
.brand-carousel .book-carousel__controls > button:focus-visible {
  background: var(--brand-blue);
  color: var(--white);
  transform: translateY(-0.06rem);
}

.brand-carousel .book-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.38rem;
}

.brand-carousel .book-carousel__dots button {
  width: 0.32rem;
  height: 0.32rem;
  border: 1px solid rgba(30, 36, 168, 0.46);
  border-radius: 999px;
  background: transparent;
}

.brand-carousel .book-carousel__dots button.is-active {
  background: var(--brand-blue);
  transform: scale(1.3);
}

.brands-editorial-page .brand-case__copy {
  display: grid;
  align-content: center;
  gap: 0;
  padding: 0;
}

.brands-editorial-page .brand-case__copy h3 {
  max-width: 14rem;
  margin: 0;
  color: var(--brand-blue);
  font-family: "Cormorant Garamond", "Playfair Display", var(--display);
  font-size: clamp(1.25rem, 2.2vw, 2.05rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brands-editorial-page .brand-case__copy h3 span {
  display: block;
  margin-top: 0.45rem;
  color: var(--brand-muted);
  font-family: var(--sans);
  font-size: 0.68rem;
  line-height: 1.25;
  text-transform: none;
}

.brands-editorial-page .brand-case__number,
.brands-editorial-page .brand-case__copy p,
.brands-editorial-page .brand-case__copy a {
  display: none;
}

.brands-editorial-page .brand-blue-footer {
  min-height: clamp(5.2rem, 7vw, 6.3rem);
}

.brands-editorial-page .brand-blue-footer__sketch {
  left: clamp(0.35rem, 1.5vw, 2rem);
  bottom: clamp(-4.7rem, -5.2vw, -2.4rem);
  width: clamp(4.8rem, 7.4vw, 7.3rem);
  height: clamp(8.4rem, 13vw, 12.8rem);
  object-fit: contain;
  object-position: left bottom;
  opacity: 0.34;
  filter: none;
  mix-blend-mode: normal;
}

.brands-editorial-page .brand-blue-footer__inner {
  gap: clamp(1rem, 3vw, 3rem);
  padding: 1.25rem var(--gutter);
}

.brands-editorial-page .brand-blue-footer__socials {
  gap: clamp(0.8rem, 2vw, 1.5rem);
}

.brands-editorial-page .brand-blue-footer__socials a {
  width: 2.35rem;
  height: 2.35rem;
}

.brands-editorial-page .brand-blue-footer svg {
  width: 1.95rem;
  height: 1.95rem;
}

.brands-editorial-page .brand-blue-footer__divider {
  height: 2.5rem;
}

.brands-editorial-page .brand-blue-footer__wordmark {
  font-size: clamp(0.82rem, 1.4vw, 1.05rem);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .brand-cases__list {
    grid-template-columns: 1fr;
    max-width: 42rem;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .brands-editorial-page .brand-page-header {
    min-height: 4.9rem;
  }

  .brands-editorial-page .brand-page-header__home,
  .brands-editorial-page .brand-page-header__peer,
  .brands-editorial-page .brand-page-signature small {
    font-size: 0.58rem;
  }

  .brands-editorial-page .brand-page-signature span {
    font-size: 1.55rem;
  }

  .brands-editorial-page .brand-editorial-hero {
    padding: calc(var(--header-height) + 0.55rem) var(--gutter) 1.3rem;
  }

  .brands-editorial-page .brand-editorial-hero__copy {
    top: calc(var(--header-height) + 1.4rem);
    left: calc(var(--gutter) + 1.05rem);
    max-width: min(10.5rem, 43vw);
    gap: 0.25rem;
  }

  .brands-editorial-page .brand-editorial-kicker {
    font-size: 0.5rem;
  }

  .brands-editorial-page .brand-editorial-hero h1 {
    font-size: clamp(1.55rem, 8vw, 2.55rem);
  }

  .brands-editorial-page .brand-editorial-hero__lead {
    max-width: 8rem;
    font-size: clamp(0.54rem, 2.4vw, 0.68rem);
    line-height: 1.28;
  }

  .brands-editorial-page .brand-cases {
    padding: 1.4rem var(--gutter) 2.5rem;
  }

  .brands-editorial-page .brand-cases__heading {
    margin-bottom: 1rem;
  }

  .brands-editorial-page .brand-cases__heading h2 {
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }

  .brand-cases__list {
    gap: 1rem;
  }

  .brands-editorial-page .brand-case {
    grid-template-columns: minmax(0, 0.62fr) minmax(6.8rem, 0.38fr);
    gap: 0.75rem;
    padding: 0.65rem;
  }

  .brand-carousel {
    gap: 0.25rem;
  }

  .brand-carousel .book-carousel__controls {
    gap: 0.45rem;
  }

  .brand-carousel .book-carousel__controls > button {
    width: 1.45rem;
    height: 1.45rem;
    font-size: 0.78rem;
  }

  .brand-carousel .book-carousel__dots button {
    width: 0.28rem;
    height: 0.28rem;
  }

  .brands-editorial-page .brand-case__copy h3 {
    font-size: clamp(1rem, 5.2vw, 1.45rem);
  }

  .brands-editorial-page .brand-case__copy h3 span {
    margin-top: 0.3rem;
    font-size: 0.54rem;
  }

  .brands-editorial-page .brand-blue-footer {
    min-height: 4.6rem;
  }

  .brands-editorial-page .brand-blue-footer__sketch {
    left: 0.15rem;
    bottom: -3rem;
    width: 3.8rem;
    height: 6.7rem;
    opacity: 0.3;
  }

  .brands-editorial-page .brand-blue-footer__inner {
    gap: 0.75rem;
    padding: 0.9rem var(--gutter);
  }

  .brands-editorial-page .brand-blue-footer__socials {
    gap: 0.55rem;
  }

  .brands-editorial-page .brand-blue-footer__socials a {
    width: 1.85rem;
    height: 1.85rem;
  }

  .brands-editorial-page .brand-blue-footer svg {
    width: 1.48rem;
    height: 1.48rem;
  }

  .brands-editorial-page .brand-blue-footer__divider {
    height: 1.9rem;
  }

  .brands-editorial-page .brand-blue-footer__wordmark {
    font-size: 0.68rem;
  }
}
