@font-face {
  font-family: "Archivo Louise";
  src: url("../fonts/archivo.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces Louise";
  src: url("../fonts/fraunces.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --paper: #fdfbf4;
  --ink: #141414;
  --amber: #edaf3f;
  --lime: #ced052;
  --lilac: #c0b3dc;
  --blush: #f4c0ce;
  --gutter: clamp(18px, 4vw, 64px);
  --soft-radius: 10px;
  --display: "Fraunces Louise", "Iowan Old Style", Georgia, serif;
  --body: "Archivo Louise", Arial, sans-serif;
  --u: 1vw;
  --pill: var(--blush);
  --sticker: var(--amber);
  --mix-grot: .9;
  --mix-serif: 1.02;
  --hero-descender: .19em;
  --tail: .18em;
  --scallop: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cg fill='%23fff'%3E%3Crect x='12.5' y='12.5' width='75' height='75'/%3E%3Ccircle cx='12.5' cy='12.5' r='12.5'/%3E%3Ccircle cx='12.5' cy='87.5' r='12.5'/%3E%3Ccircle cx='37.5' cy='12.5' r='12.5'/%3E%3Ccircle cx='37.5' cy='87.5' r='12.5'/%3E%3Ccircle cx='62.5' cy='12.5' r='12.5'/%3E%3Ccircle cx='62.5' cy='87.5' r='12.5'/%3E%3Ccircle cx='87.5' cy='12.5' r='12.5'/%3E%3Ccircle cx='87.5' cy='87.5' r='12.5'/%3E%3Ccircle cx='12.5' cy='37.5' r='12.5'/%3E%3Ccircle cx='87.5' cy='37.5' r='12.5'/%3E%3Ccircle cx='12.5' cy='62.5' r='12.5'/%3E%3Ccircle cx='87.5' cy='62.5' r='12.5'/%3E%3C/g%3E%3C/svg%3E");
  --home-surface:
    radial-gradient(ellipse 46vw 68vh at 88vw 24vh, #f4c0cec7 0%, #f4c0ce4d 44%, transparent 70%),
    radial-gradient(ellipse 56vw 62vh at 60vw 106vh, #c0b3dc75 0%, transparent 66%),
    radial-gradient(ellipse 36vw 44vh at 2vw 104vh, #f4c0ce57 0%, transparent 70%),
    var(--paper);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
body.gallery-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--blush); color: var(--ink); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 40, "WONK" 1;
  font-weight: 500;
  letter-spacing: -.012em;
}
p { margin: 0; }

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }

/* The header is a transparent overlay after the opening frame, so its paint is
   literally the section passing beneath it. At the top it uses the exact same
   fixed surface as the hero—no border, blur or shadow can create a seam. */
.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
  background: transparent;
}
.home .site-header[data-at-start="true"] {
  background: var(--home-surface);
  background-attachment: fixed;
  background-position: 0 0;
  background-size: 100vw 100svh;
}
.site-header[data-hidden="true"] { transform: translate3d(0, -105%, 0); }
.admin-bar .site-header { top: 32px; }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 56px);
  padding: clamp(12px, 1.8vw, 28px) var(--gutter);
}
.site-brand { width: clamp(74px, 7.4vw, 116px); flex: 0 0 auto; }
.custom-logo { display: block; width: 100%; height: auto; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 44px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__list a {
  font-size: clamp(13px, 1.35vw, 18px);
  text-decoration: none;
  text-underline-offset: .3em;
}
.site-nav__list a:hover { text-decoration: underline; }

.logo-mark { position: relative; display: block; width: 100%; aspect-ratio: 1200 / 818; }
.logo-mark__stroke {
  position: absolute;
  inset: 0;
  background: var(--lilac);
  -webkit-mask: url("../brand/logo-mask.png") center / contain no-repeat;
  mask: url("../brand/logo-mask.png") center / contain no-repeat;
  animation: logo-cycle 9.6s linear infinite;
}
.logo-mark__stroke--louise { clip-path: inset(0 0 53% 0); }
.logo-mark__stroke--stripp { clip-path: inset(39% 0 0 0); }
.logo-mark[data-scribe="true"] .logo-mark__stroke--louise {
  animation: logo-scribe-louise 1.02s .32s cubic-bezier(.2,.72,.18,1) both, logo-cycle 9.6s linear infinite;
}
.logo-mark[data-scribe="true"] .logo-mark__stroke--stripp {
  animation: logo-scribe-stripp 1.14s 1s cubic-bezier(.2,.72,.18,1) both, logo-cycle 9.6s linear infinite;
}
@keyframes logo-scribe-louise {
  from { clip-path: inset(0 100% 53% 0); }
  45% { clip-path: inset(0 52% 53% 0); }
  to { clip-path: inset(0 0 53% 0); }
}
@keyframes logo-scribe-stripp {
  from { clip-path: inset(39% 100% 0 0); }
  45% { clip-path: inset(39% 58% 0 0); }
  to { clip-path: inset(39% 0 0 0); }
}
@keyframes logo-cycle {
  0%, 17.5% { background-color: var(--amber); }
  25%, 42.5% { background-color: var(--lime); }
  50%, 67.5% { background-color: var(--lilac); }
  75%, 92.5% { background-color: var(--blush); }
  100% { background-color: var(--amber); }
}

.eyebrow {
  color: rgb(20 20 20 / .62);
  font-size: clamp(.68rem, .82vw, .86rem);
  letter-spacing: .13em;
  line-height: 1.35;
  text-transform: uppercase;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .42em;
  margin-top: clamp(16px, 1.8vw, 30px);
  font-size: clamp(.82rem, .94vw, 1rem);
  text-decoration: underline;
  text-decoration-color: rgb(20 20 20 / .35);
  text-underline-offset: .25em;
}
.text-link:hover { text-decoration-color: var(--ink); }
.text-link span { transition: transform .3s ease; }
.text-link:hover span { transform: translate(.12em, -.12em); }
.text-link--large { font-size: clamp(1rem, 1.35vw, 1.5rem); }

/* Homepage camera journey. */
.journey { position: relative; height: 600svh; }
.journey__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--paper);
}
.journey__world,
.journey__world > div,
.journey__world canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.journey__world { z-index: 0; }
.journey__pastel {
  --white-zoom: 0%;
  --ring-opacity: 0;
  --ring-scale: .55;
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: var(--home-surface);
  background-attachment: fixed;
  background-position: 0 0;
  background-size: 100vw 100svh;
  -webkit-mask-image: radial-gradient(ellipse at 26% 46%, transparent 0 var(--white-zoom), rgb(0 0 0 / .42) calc(var(--white-zoom) + 1.2%), #000 calc(var(--white-zoom) + 3.2%));
  mask-image: radial-gradient(ellipse at 26% 46%, transparent 0 var(--white-zoom), rgb(0 0 0 / .42) calc(var(--white-zoom) + 1.2%), #000 calc(var(--white-zoom) + 3.2%));
  transform: scale(var(--pastel-scale, 1));
  transform-origin: 26% 46%;
  filter: blur(var(--pastel-blur, 0));
}
.journey__pastel::after {
  content: "";
  position: absolute;
  top: 46%;
  left: 26%;
  width: clamp(90px, 15vmin, 190px);
  aspect-ratio: 1.18;
  border: 3px solid rgb(255 252 251 / .9);
  border-radius: 54% 46% 58% 42% / 46% 56% 44% 54%;
  box-shadow: 0 0 clamp(18px, 3vmin, 52px) #fff, inset 0 0 clamp(12px, 2vmin, 34px) rgb(255 255 255 / .7);
  opacity: var(--ring-opacity);
  transform: translate(-50%, -50%) scale(var(--ring-scale));
}
.journey__hero {
  position: absolute;
  z-index: 10;
  inset: 0;
  padding: clamp(132px, 14vw, 230px) var(--gutter) 0;
  pointer-events: none;
  opacity: var(--hero-opacity, 1);
}
.hero-content {
  width: min(46rem, 65vw);
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(var(--hero-scale, 1));
  transform-origin: 33% 45%;
  filter: blur(var(--hero-blur, 0));
  will-change: transform, opacity, filter;
}
.hero-editor-content > * { pointer-events: none; }
.hero-editor-content.is-layout-flow > *,
.project-intro.is-layout-flow > *,
.project-section.is-layout-flow > *,
.louise-media-group.is-layout-flow > * {
  margin-block-start: 0;
  margin-block-end: 0;
}
.hero-editor-content .hero-kicker {
  display: flex;
  align-items: center;
  gap: .8em;
  margin: 0 0 clamp(18px, 2.4vw, 38px);
  color: rgb(20 20 20 / .62);
  font-size: clamp(.72rem, .8vw, .9rem);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-editor-content .hero-kicker::before {
  content: "";
  width: 3.3em;
  height: .42em;
  background: linear-gradient(90deg, var(--amber) 0 22%, transparent 22% 26%, var(--lime) 26% 48%, transparent 48% 52%, var(--lilac) 52% 74%, transparent 74% 78%, var(--blush) 78%);
  border-radius: 999px;
  transform: rotate(-2deg);
}
.hero-editor-content .hero-title {
  max-width: 12ch;
  font-size: clamp(3rem, 5.45vw, 6.25rem);
  line-height: .94;
  overflow: visible;
}
.hero-editor-content .hero-title::after {
  content: "✦";
  display: inline-block;
  margin-left: .25em;
  color: var(--blush);
  font-size: .26em;
  vertical-align: top;
  transform: rotate(8deg);
}
.hero-editor-content .hero-intro {
  max-width: 35ch;
  margin-top: clamp(22px, 2.6vw, 52px);
  color: rgb(20 20 20 / .78);
  font-size: clamp(1rem, 1.25vw, 1.4rem);
  line-height: 1.52;
}
.journey-cue {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(28px, 5.5vh, 70px);
  display: flex;
  align-items: center;
  gap: .85em;
  padding: .55em 1.15em .55em .55em;
  border: 1px solid rgb(244 192 206 / .72);
  border-radius: 999px;
  background: linear-gradient(120deg, rgb(244 192 206 / .38), rgb(192 179 220 / .25));
  box-shadow: 0 14px 42px rgb(20 20 20 / .07), inset 0 0 0 1px rgb(255 255 255 / .5);
  opacity: var(--support-opacity, 1);
}
.journey-cue__arrow {
  display: grid;
  width: 2.35em;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--blush);
}
.journey-cue strong, .journey-cue small { display: block; font-weight: 400; text-transform: uppercase; }
.journey-cue strong { font-size: .72rem; letter-spacing: .17em; }
.journey-cue small { margin-top: .22em; color: rgb(20 20 20 / .58); font-size: .54rem; letter-spacing: .11em; }

.journey-panel {
  position: absolute;
  z-index: 11;
  left: var(--gutter);
  bottom: clamp(28px, 4.5vw, 84px);
  width: min(38ch, 40vw);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .6s ease, transform .6s cubic-bezier(.16,1,.3,1);
}
.journey-panel[data-active="true"] { opacity: 1; transform: none; pointer-events: auto; }
.journey-panel__wash {
  position: absolute;
  z-index: -1;
  inset: -22% -16%;
  background: radial-gradient(closest-side at 24% 76%, var(--paper) 48%, transparent 100%);
}
.journey-panel h2 { margin-top: clamp(8px, 1vw, 18px); font-size: clamp(2rem, 3vw, 3.6rem); line-height: 1; }
.journey-panel__period { margin-top: 8px; color: rgb(20 20 20 / .62); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.journey-panel > p:last-of-type { margin-top: clamp(14px, 1.6vw, 28px); color: rgb(20 20 20 / .78); font-size: clamp(.95rem, 1.08vw, 1.15rem); line-height: 1.55; }

.journey-rail {
  position: absolute;
  z-index: 12;
  top: 50%;
  right: clamp(18px, 3vw, 52px);
  width: 11px;
  height: clamp(150px, 20vw, 280px);
  transform: translateY(-50%);
  pointer-events: none;
}
.journey-rail__line, .journey-rail__fill { position: absolute; inset-block: 0; left: 50%; transform: translateX(-50%); }
.journey-rail__line { width: 1px; background: rgb(20 20 20 / .14); }
.journey-rail__fill { width: 2px; background: linear-gradient(var(--amber), var(--lime), var(--lilac), var(--blush)); transform: translateX(-50%) scaleY(var(--rail-progress, 0)); transform-origin: top; }
.journey-rail__stop { position: absolute; top: var(--stop); left: 50%; width: 9px; height: 9px; transform: translate(-50%, -50%); }
.journey-rail__stop i { display: block; width: 100%; height: 100%; border: 1px solid rgb(255 252 251 / .8); border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-alt)); opacity: .68; transition: .45s ease; }
.journey-rail__stop b {
  position: absolute;
  top: 50%;
  right: calc(100% + 14px);
  display: flex;
  gap: .7em;
  padding: .55em .9em;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: rgb(255 252 251 / .86);
  box-shadow: 0 10px 30px rgb(20 20 20 / .08);
  font-size: .66rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translate(8px, -50%);
  transition: .45s ease;
}
.journey-rail__stop b em { color: rgb(20 20 20 / .45); font-style: normal; }
.journey-rail__stop[data-active="true"] i { opacity: 1; transform: scale(1.6); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent); }
.journey-rail__stop[data-active="true"] b { opacity: 1; transform: translate(0, -50%); }

/* Selected Work alternates direction but retains each cover's exact sampled fill. */
.work-index, .about-teaser, .site-footer, .work-page, .standard-page, .about-page { border-top: 1px solid rgb(20 20 20 / .1); }
.work-index { padding: clamp(64px, 9vw, 160px) var(--gutter); scroll-margin-top: 100px; }
.section-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.section-heading h2, .about-teaser h2 { font-size: clamp(2rem, 3.5vw, 4.1rem); line-height: 1.04; }
.section-heading p { color: rgb(20 20 20 / .6); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }
.work-list { margin: clamp(30px, 4vw, 72px) 0 0; padding: 0; list-style: none; }
.work-row-wrap { border-top: 1px solid rgb(20 20 20 / .12); }
.work-row {
  display: grid;
  grid-template-columns: 3fr 4fr 4fr;
  gap: clamp(18px, 2.2vw, 38px);
  align-items: start;
  margin-inline: clamp(-28px, -1.6vw, -10px);
  padding: clamp(22px, 3vw, 56px) clamp(10px, 1.6vw, 28px);
  border-radius: 4px;
  text-decoration: none;
  transition: background-color .16s linear;
}
.work-row:hover, .work-row:focus-visible { background-color: var(--row-tint); }
.work-row__cover { aspect-ratio: 4 / 3; overflow: hidden; box-shadow: 0 14px 38px rgb(20 20 20 / .06); transform: rotate(-.35deg); transition: .5s ease; }
.work-row__cover img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; }
.work-row:hover .work-row__cover { box-shadow: none; transform: none; }
.work-row:hover .work-row__cover img { transform: scale(1.025); }
.work-row__identity { padding-top: 8px; }
.work-row__identity .eyebrow { display: flex; align-items: center; gap: .65em; }
.work-row__identity .eyebrow i { display: block; width: .62em; aspect-ratio: 1; border: 1px solid rgb(20 20 20 / .1); border-radius: 50%; }
.work-row__identity > div { display: flex; align-items: baseline; gap: .7em; margin-top: 13px; }
.work-row__identity h3 { font-size: clamp(1.7rem, 2.4vw, 3rem); line-height: 1.05; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: .2em; }
.work-row:hover h3 { text-decoration-color: var(--ink); }
.work-row__identity span, .work-row__period { color: rgb(20 20 20 / .62); font-size: .76rem; }
.work-row__period { margin-top: 10px; letter-spacing: .12em; text-transform: uppercase; }
.work-row__summary { padding-top: 8px; }
.work-row__summary > p { max-width: 46ch; color: rgb(20 20 20 / .78); font-size: clamp(.92rem, 1.08vw, 1.15rem); line-height: 1.58; }
.work-row--reverse .work-row__cover { grid-column: 3; grid-row: 1; aspect-ratio: 5 / 4; transform: rotate(.45deg); }
.work-row--reverse .work-row__identity { grid-column: 1; grid-row: 1; }
.work-row--reverse .work-row__summary { grid-column: 2; grid-row: 1; }

.about-teaser { padding: clamp(70px, 10vw, 180px) var(--gutter); }
.about-teaser h2 { max-width: 22ch; margin-top: clamp(16px, 2vw, 40px); }

/* Case studies and editor-generated Gutenberg blocks. */
.case-study, .about-page, .work-page, .standard-page, .not-found { padding-top: clamp(128px, 13vw, 210px); }
.case-hero {
  display: grid;
  grid-template-columns: minmax(270px, 4fr) minmax(0, 8fr);
  gap: clamp(28px, 5vw, 90px);
  align-items: end;
  padding: 0 var(--gutter) clamp(56px, 8vw, 138px);
}
.case-hero__copy h1, .page-intro h1 { margin-top: 16px; font-size: clamp(3.2rem, 7vw, 8rem); line-height: .88; }
.case-hero__period { margin-top: 22px; color: rgb(20 20 20 / .62); font-size: .74rem; letter-spacing: .15em; text-transform: uppercase; }
.case-study-cover { width: 100%; max-height: min(66svh, 760px); padding: 0; border: 0; background: transparent; overflow: hidden; cursor: zoom-in; }
.case-study-cover img { width: 100%; max-height: inherit; object-fit: contain; background: var(--project-accent); }
.case-content { padding-bottom: clamp(80px, 12vw, 200px); }
.case-content > .project-intro,
.case-content > .project-section { padding-inline: var(--gutter); }
.project-intro {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(220px, 3fr);
  gap: clamp(30px, 8vw, 140px);
  padding-block: clamp(60px, 8vw, 138px);
  border-top: 1px solid rgb(20 20 20 / .1);
}
.project-intro > p { grid-column: 1; max-width: 63ch; color: rgb(20 20 20 / .8); font-size: clamp(1rem, 1.2vw, 1.28rem); line-height: 1.62; }
.project-intro > p + p { margin-top: -1em; }
.project-intro > .project-lead { font-family: var(--display); font-size: clamp(1.65rem, 2.8vw, 3.3rem); line-height: 1.12; }
.project-facts { grid-column: 2; grid-row: 1 / span 8; }
.project-fact { padding: 15px 0; border-top: 1px solid rgb(20 20 20 / .12); color: rgb(20 20 20 / .7); font-size: .76rem; line-height: 1.55; }
.project-fact strong { color: var(--ink); font-weight: 400; letter-spacing: .1em; text-transform: uppercase; }
.project-section { padding-block: clamp(54px, 8vw, 140px); border-top: 1px solid rgb(20 20 20 / .1); }
.project-section__title { max-width: 14ch; margin-bottom: clamp(22px, 4vw, 66px); font-size: clamp(2.2rem, 4.3vw, 5.4rem); line-height: .98; }
.project-section > p:not(.project-caption) { max-width: 62ch; margin-bottom: clamp(28px, 4vw, 64px); color: rgb(20 20 20 / .78); font-size: clamp(1rem, 1.14vw, 1.22rem); line-height: 1.62; }
.project-caption { margin: clamp(34px, 5vw, 82px) 0 16px; color: rgb(20 20 20 / .62); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.louise-media-group { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(10px, 1.5vw, 28px); }
.louise-media-group + .louise-media-group { margin-top: clamp(18px, 2vw, 34px); }
.louise-media-group .wp-block-image { grid-column: span 6; margin: 0; overflow: hidden; background: rgb(20 20 20 / .025); }
.louise-media-group .wp-block-image img { width: 100%; height: auto; outline: 1px solid rgb(20 20 20 / .11); outline-offset: -1px; cursor: zoom-in; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.louise-media-group .wp-block-image:hover img { transform: scale(1.008); }
.layout-masonry { display: block; columns: 3; column-gap: clamp(10px, 1.5vw, 28px); }
.layout-masonry .wp-block-image { break-inside: avoid; margin: 0 0 clamp(10px, 1.5vw, 28px); }
.layout-tiles .wp-block-image, .layout-quad .wp-block-image { grid-column: span 3; }
.layout-single .wp-block-image,
.layout-bleed .wp-block-image,
.layout-full .wp-block-image { grid-column: span 12; }
.layout-wide .wp-block-image { grid-column: span 8; }
.layout-half .wp-block-image { grid-column: span 6; }
.layout-pair .wp-block-image { grid-column: span 6; }
.layout-trio .wp-block-image { grid-column: span 4; }
.layout-read { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; }
.layout-read .wp-block-image { grid-column: auto; width: 100%; max-width: 340px; margin: 0 auto; }
.layout-read .wp-block-image img { width: 100%; height: auto; max-height: none; object-fit: contain; }

.next-project { padding: clamp(70px, 10vw, 180px) var(--gutter); border-top: 1px solid rgb(20 20 20 / .1); }
.next-project a { display: inline-flex; align-items: center; gap: .3em; margin-top: 18px; font-family: var(--display); font-size: clamp(3rem, 7vw, 8rem); line-height: .95; text-decoration: none; }
.next-project a span { transition: transform .4s cubic-bezier(.16,1,.3,1); }
.next-project a:hover span { transform: translateX(.15em); }

.page-intro { padding: 0 var(--gutter) clamp(55px, 8vw, 130px); }
.about-content, .standard-content { padding: 0 var(--gutter) clamp(80px, 12vw, 200px); }
.about-content { display: grid; grid-template-columns: minmax(0, 6fr) minmax(280px, 5fr); gap: clamp(36px, 8vw, 140px); align-items: start; }
.about-content > p { grid-column: 1; max-width: 58ch; color: rgb(20 20 20 / .78); font-size: clamp(1rem, 1.25vw, 1.32rem); line-height: 1.65; }
.about-content > p + p { margin-top: -1em; }
.about-content .about-lead { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 3.6rem); line-height: 1.12; }
.about-content .about-portrait { grid-column: 2; grid-row: 1 / span 5; margin: 0; background: var(--paper); transform: rotate(.6deg); }
.about-content .about-portrait img { width: 100%; mix-blend-mode: multiply; }
.standard-content { max-width: 900px; }
.standard-content > * + * { margin-top: 1.5em; }
.standard-content p { line-height: 1.7; }
.work-page__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 5vw, 80px); padding: 0 var(--gutter) clamp(80px, 12vw, 200px); }
.work-page__grid a { text-decoration: none; }
.work-page__grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: #f2efed; }
.work-page__grid h2 { margin-top: 20px; font-size: clamp(1.8rem, 3vw, 3.5rem); }
.work-page__grid p { max-width: 48ch; margin-top: 12px; color: rgb(20 20 20 / .72); line-height: 1.55; }
.not-found { min-height: 80svh; padding-inline: var(--gutter); }
.not-found h1 { max-width: 10ch; margin-top: 18px; font-size: clamp(3rem, 8vw, 9rem); line-height: .9; }

/* Full-resolution image viewer and WebGL focus chrome. */
.gallery-dialog {
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: #111;
  color: var(--paper);
  overflow: hidden;
}
.gallery-dialog::backdrop { background: #111; }
.gallery-dialog__figure { display: grid; width: 100%; height: 100%; margin: 0; padding: clamp(58px, 7vw, 100px) clamp(58px, 8vw, 130px) clamp(80px, 8vw, 118px); place-items: center; }
.gallery-dialog__figure img { width: auto; max-width: 100%; height: auto; max-height: 100%; object-fit: contain; }
.gallery-dialog__figure figcaption { position: fixed; bottom: 28px; left: 50%; max-width: 60vw; font-size: .68rem; letter-spacing: .15em; text-align: center; text-transform: uppercase; transform: translateX(-50%); }
.gallery-dialog__close, .gallery-dialog__step {
  position: fixed;
  z-index: 2;
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgb(255 252 251 / .32);
  border-radius: 50%;
  background: rgb(17 17 17 / .72);
  color: var(--paper);
  place-items: center;
  cursor: pointer;
}
.gallery-dialog__close { top: 24px; right: 24px; font-size: 1.5rem; }
.gallery-dialog__step { top: 50%; transform: translateY(-50%); }
.gallery-dialog__step--prev { left: 20px; }
.gallery-dialog__step--next { right: 20px; }
.world-focus-chrome {
  position: fixed;
  z-index: 70;
  inset: 0;
  pointer-events: none;
}
.world-focus-chrome button {
  position: absolute;
  top: clamp(92px, 9vw, 138px);
  right: var(--gutter);
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid rgb(20 20 20 / .24);
  border-radius: 50%;
  background: rgb(255 252 251 / .78);
  pointer-events: auto;
  cursor: pointer;
}
.world-focus-chrome p {
  position: absolute;
  bottom: 22px;
  left: 50%;
  padding: .75em 1.1em;
  border: 1px solid rgb(20 20 20 / .14);
  border-radius: 999px;
  background: rgb(255 252 251 / .86);
  box-shadow: 0 12px 35px rgb(20 20 20 / .09);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.site-footer { padding: clamp(70px, 10vw, 180px) var(--gutter) 28px; }
.contact-callout h2 { max-width: 12ch; margin-top: 18px; font-size: clamp(3rem, 7vw, 8rem); line-height: .93; }
.contact-callout__email { display: inline-block; margin-top: clamp(30px, 4vw, 70px); font-size: clamp(1.05rem, 1.6vw, 1.8rem); text-underline-offset: .3em; }
.site-footer__base { display: flex; flex-wrap: wrap; gap: 16px 34px; align-items: center; margin-top: clamp(80px, 12vw, 220px); color: rgb(20 20 20 / .62); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer__base p { margin-right: auto; }

.cursor-dot { display: none; }
@media (hover: hover) and (pointer: fine) {
  html, a, button { cursor: none; }
  .cursor-dot {
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid white;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 1px rgb(0 0 0 / .75), 0 0 16px rgb(0 0 0 / .2);
    mix-blend-mode: difference;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(var(--cursor-scale, 1));
    transition: opacity .18s ease, width .22s ease, height .22s ease;
  }
  .cursor-dot[data-visible="true"] { opacity: 1; }
  .cursor-dot[data-hover="true"] { width: 28px; height: 28px; }
}

@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
@media (min-width: 1280px) { .layout-masonry { columns: 6; } }
@media (max-width: 767px), (prefers-reduced-motion: reduce) {
  .journey { height: auto; }
  .journey__stage { position: relative; height: auto;  overflow: hidden; background: var(--home-surface); }
  .journey__world, .journey-panel, .journey-rail { display: none; }
  .journey__pastel { -webkit-mask-image: none; mask-image: none; }
  .journey__hero { position: relative;  padding-top: clamp(130px, 28vw, 180px); padding-bottom: 120px; }
  .hero-content { width: 100%; transform: none !important; filter: none !important; }
  .hero-editor-content .hero-title { font-size: clamp(2.7rem, 13vw, 5.2rem); }
  .journey-cue { display: none; }
  .work-row, .work-row--reverse { grid-template-columns: 1fr; }
  .work-row__cover, .work-row--reverse .work-row__cover,
  .work-row__identity, .work-row--reverse .work-row__identity,
  .work-row__summary, .work-row--reverse .work-row__summary { grid-column: 1; grid-row: auto; }
  .work-row__cover, .work-row--reverse .work-row__cover { transform: none; }
  .case-hero { grid-template-columns: 1fr; }
  .case-hero__copy h1, .page-intro h1 { font-size: clamp(3.2rem, 16vw, 6rem); }
  .project-intro { grid-template-columns: 1fr; }
  .project-intro > p, .project-facts { grid-column: 1; grid-row: auto; }
  .project-intro > p + p { margin-top: 0; }
  .layout-masonry { columns: 2; }
  .layout-tiles .wp-block-image,
  .layout-quad .wp-block-image,
  .layout-trio .wp-block-image { grid-column: span 6; }
  .layout-wide .wp-block-image { grid-column: span 12; }
  .layout-half .wp-block-image { grid-column: span 12; }
  .layout-read { grid-template-columns: 1fr 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .about-content > p, .about-content .about-portrait { grid-column: 1; grid-row: auto; }
  .about-content > p + p { margin-top: 0; }
  .about-content .about-portrait { order: -1; }
  .work-page__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .site-nav { align-items: flex-start; }
  .site-brand { width: 70px; }
  .site-nav__list { gap: 13px; }
  .site-nav__list a { font-size: 12px; }
  .work-index { padding-top: 56px; }
  .layout-masonry { columns: 2; }
  .layout-read { grid-template-columns: 1fr; }
  .louise-media-group .wp-block-image, .layout-pair .wp-block-image { grid-column: span 12; }
  .layout-trio .wp-block-image, .layout-quad .wp-block-image { grid-column: span 6; }
  .gallery-dialog__figure { padding-inline: 15px; }
  .gallery-dialog__step { top: auto; bottom: 22px; transform: none; }
  .gallery-dialog__figure figcaption { bottom: 35px; max-width: 55vw; }
  .site-footer__base { align-items: flex-start; flex-direction: column; }
  .site-footer__base p { margin-right: 0; }
}

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


/* ---- Vercel parity: ticker bar + nav pills ---- */
.site-ticker {
  background: var(--lime);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(10px, calc(var(--u) * .86), 13px);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: clamp(8px, calc(var(--u) * .95), 12px) var(--gutter);
  overflow: hidden;
  white-space: nowrap;
}
.site-ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  width: 100%;
}
.site-ticker__track i {
  font-style: normal;
  opacity: .55;
  padding: 0 clamp(10px, calc(var(--u) * 1.4), 26px);
}
.site-nav__list a {
  background: var(--lilac);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--ink);
  text-decoration: none;
  transition: transform .25s cubic-bezier(.16,1,.3,1), filter .25s ease;
}
.site-nav__list a:hover { transform: translateY(-1px); filter: brightness(.97); }
.home .site-header[data-at-start="true"] .site-ticker { background: var(--lime); }


/* ---- Vercel parity: headline roman/italic mix ---- */
.hero-title { font-weight: 400; font-style: normal; }
.hero-title strong {
  font-family: var(--body);
  font-weight: 700;
  font-style: normal;
  font-size: calc(1em * var(--mix-grot, .9));
  letter-spacing: -.015em;
}
.hero-title em {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: calc(1em * var(--mix-serif, 1.02));
}


/* ---- Vercel parity: scallop mask ---- */
.scallop,
.work-row__cover {
  -webkit-mask-image: var(--scallop);
  mask-image: var(--scallop);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  border-radius: 0;
  overflow: hidden;
}
.work-row__cover img { display: block; width: 100%; height: 100%; object-fit: cover; }
@media (prefers-reduced-motion: no-preference) {
  .work-row__cover { transition: transform .5s cubic-bezier(.16,1,.3,1); }
  .work-row:hover .work-row__cover { transform: scale(1.012); }
}
/* portrait blob in hero */
.hero-portrait {
  width: clamp(128px, calc(var(--u) * 15), 210px);
  aspect-ratio: 1 / 1;
  background: var(--lilac);
}
.hero-portrait img { width:100%; height:100%; object-fit: cover; display:block; }

.hero-portrait-wrap {
  position: absolute;
  top: clamp(72px, calc(var(--u) * 13), 190px);
  right: var(--gutter);
  width: clamp(128px, calc(var(--u) * 15), 210px);
  margin: 0;
  z-index: 3;
  text-align: center;
}
.hero-portrait__label {
  display: inline-block;
  position: relative;
  margin-top: -.7em;
  background: var(--blush);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(9px, calc(var(--u) * .72), 12px);
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
}
@media (max-width: 780px) { .hero-portrait-wrap { display: none; } }
