:root {
  --paper: #f5f3ef;
  --paper-strong: #eee8dd;
  --paper-alt: #efe2d6;
  --ink: #111111;
  --muted: rgba(17, 17, 17, 0.56);
  --line: rgba(17, 17, 17, 0.1);
  --cobalt: #c46a34;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial Narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  display: block;
  max-width: 100%;
}

.site {
  min-height: 100vh;
  background: var(--paper);
}

.wrap {
  width: min(calc(100% - 48px), 1600px);
  margin: 0 auto;
}

.eyebrow,
.mini,
.kicker,
.archive-code,
.archive-enter,
.meta,
.contact-label,
.page-back,
.page-meta,
.page-eyebrow {
  font-size: 11px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.mini,
.eyebrow,
.meta,
.contact-label,
.page-meta,
.page-eyebrow,
.archive-code,
.archive-enter {
  color: rgba(17, 17, 17, 0.45);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 40px 0 32px;
}

.hero-gesture {
  position: absolute;
  right: 0;
  top: 14%;
  height: 48vh;
  width: 24vw;
  min-width: 240px;
  max-width: 400px;
  pointer-events: none;
}

.hero-gesture-main {
  position: absolute;
  inset: 0 0 0 auto;
  width: 72%;
  background: var(--cobalt);
}

.hero-gesture-line {
  position: absolute;
  left: 0;
  top: 14%;
  width: 46%;
  height: 1px;
  background: var(--cobalt);
}

.hero-gesture-cut {
  position: absolute;
  left: 2%;
  bottom: 8%;
  width: 44%;
  height: 34%;
  background: var(--cobalt);
  clip-path: polygon(0 0, 100% 0, 74% 100%, 0 100%);
}

.hero-gesture-image {
  position: absolute;
  right: 10%;
  top: 10%;
  width: 48%;
  height: 68%;
  overflow: hidden;
  opacity: 0.18;
  mix-blend-mode: multiply;
}

.hero-gesture-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero-left-line {
  position: absolute;
  left: 0;
  top: 68%;
  width: 26vw;
  max-width: 420px;
  height: 1px;
  background: var(--cobalt);
}

.hero-shell {
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  padding-bottom: 14px;
}

.hero-stamp {
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  font-size: clamp(0.8rem, 1vw, 0.94rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: rgba(17, 17, 17, 0.72);
}

.hero-head-meta,
.page-header-main,
.page-header-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-head-divider {
  width: 32px;
  height: 1px;
  background: rgba(17, 17, 17, 0.18);
}

.hero-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 72px;
  align-items: end;
  padding-bottom: 8px;
}

.hero-title {
  max-width: 1080px;
  font-size: clamp(4.6rem, 12vw, 11rem);
  line-height: 0.78;
  letter-spacing: -0.082em;
  margin: 0;
}

.hero-title span,
.statement-title span,
.clarity-block span {
  display: block;
}

.hero-note {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: 128px;
}

.hero-note-line {
  width: 1px;
  min-height: 220px;
  background: var(--cobalt);
}

.hero-note-copy {
  max-width: 240px;
  padding-top: 8px;
}

.hero-note-copy p:last-child {
  margin: 26px 0 0;
  font-size: 0.98rem;
  line-height: 1.34;
  letter-spacing: -0.02em;
  color: rgba(17, 17, 17, 0.78);
}

.band {
  background: var(--cobalt);
  padding: 18px 0;
}

.band p {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.section {
  padding: 88px 0;
}

.section-line {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.two-col {
  display: grid;
  gap: 40px;
}

.statement-list p {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--cobalt);
}

.service-link span:last-child {
  font-size: 0.4em;
  color: var(--cobalt);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-link:hover span:last-child {
  opacity: 1;
  transform: translateX(0);
}

.support-copy {
  max-width: 320px;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(17, 17, 17, 0.55);
}

.surface-grid {
  display: grid;
  gap: 20px;
}

.surface {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.surface:hover {
  transform: translateY(-4px);
}

.surface-bhumble {
  min-height: 430px;
  background: var(--paper-strong);
}

.surface-bhumble-inner {
  display: grid;
  min-height: inherit;
}

.surface-image {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}

.surface-image img,
.client-image img,
.artifact-main img,
.artifact-swatch img,
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.surface-bhumble .surface-image::after,
.client-image::after,
.page-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.28));
}

.surface-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 24px;
}

.surface-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.surface-arrow {
  color: var(--cobalt);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.surface:hover .surface-arrow {
  transform: translateX(4px);
}

.surface-title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 5rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.surface-note {
  margin: 0;
  max-width: 18rem;
  font-size: 11px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(17, 17, 17, 0.52);
}

.surface-bhumble::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  background: var(--cobalt);
}

.surface-studio {
  min-height: 300px;
  background: var(--paper-alt);
}

.surface-studio-media {
  min-height: 180px;
  overflow: hidden;
}

.surface-studio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  opacity: 0.88;
}

.surface-studio-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 243, 239, 0.18), rgba(31, 60, 136, 0.16));
}

.surface-studio-topbar {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--cobalt);
}

.surface-client {
  min-height: 220px;
  background: #ebe6dd;
}

.surface-client-inner {
  display: grid;
  min-height: inherit;
}

.client-image {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.client-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 60, 136, 0.02), rgba(17, 17, 17, 0.28));
  z-index: 1;
}

.client-image img {
  object-position: 50% 24%;
  opacity: 0.9;
}

.statement {
  margin-top: 48px;
  background: var(--cobalt);
  padding: 84px 0 108px;
}

.statement-title {
  max-width: 920px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.statement-title .isolate {
  margin-top: 96px;
}

.about-grid {
  display: grid;
  gap: 40px;
}

.artifact {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eae4d8;
}

.artifact-label {
  position: absolute;
  left: 5%;
  top: 7%;
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.4);
}

.artifact-sheet {
  position: absolute;
  left: 6%;
  top: 16%;
  width: 60%;
  height: 60%;
  transform: rotate(-2.5deg);
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #f7f3ec;
  padding: 20px;
}

.artifact-sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.38);
}

.artifact-sheet-title {
  max-width: 10ch;
  margin-top: 32px;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
  color: rgba(17, 17, 17, 0.92);
}

.artifact-sheet-grid {
  display: grid;
  gap: 12px 20px;
  margin-top: 32px;
}

.artifact-sheet-grid p {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.52);
}

.artifact-rule {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 14%;
  height: 1px;
  background: rgba(17, 17, 17, 0.14);
}

.artifact-pocket {
  position: absolute;
  left: 8%;
  bottom: 22%;
  width: 26%;
  height: 18%;
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.artifact-tape {
  position: absolute;
  left: 60%;
  top: 15%;
  width: 16%;
  height: 8%;
  transform: rotate(-8deg);
  background: #d9d1c3;
}

.artifact-panel-dark {
  position: absolute;
  right: 8%;
  top: 21%;
  width: 22%;
  height: 26%;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #111111;
}

.artifact-panel {
  position: absolute;
  right: 8%;
  bottom: 11%;
  width: 26%;
  height: 26%;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #f2eee6;
  padding: 16px;
}

.artifact-panel-title {
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.4);
}

.artifact-panel-bar {
  width: 42%;
  height: 4px;
  margin-top: 16px;
  background: var(--cobalt);
}

.artifact-panel-copy {
  max-width: 10ch;
  margin: 24px 0 0;
  font-size: clamp(1rem, 2vw, 1.55rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.artifact-blue {
  position: absolute;
  right: 10%;
  top: 15%;
  width: 12%;
  height: 4px;
  background: var(--cobalt);
}

.about-copy {
  align-self: end;
}

.about-copy h2,
.clarity-block,
.page-title {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.about-copy p {
  margin: 20px 0 0;
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.5);
}

.register {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.register-grid {
  display: grid;
  gap: 32px;
}

.register-list a,
.archive-register a {
  display: grid;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  transition: color 0.3s ease;
}

.register-list a:hover,
.archive-register a:hover {
  color: var(--cobalt);
}

.register-title,
.archive-title {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.9rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.clarity-section {
  padding: 96px 0;
}

.clarity-block {
  max-width: 700px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.contact {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  padding-bottom: 64px;
}

.contact-grid {
  display: grid;
  gap: 24px;
}

.contact-row {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  transition: opacity 0.55s var(--ease-premium), border-color 0.55s var(--ease-premium), transform 0.55s var(--ease-premium);
}

.contact-row:hover {
  opacity: 0.78;
  transform: translateX(4px);
  border-color: rgba(17, 17, 17, 0.18);
}

.contact-value {
  font-size: clamp(1.3rem, 2.8vw, 2.5rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.page {
  min-height: 100vh;
  padding: 32px 0;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  padding-bottom: 18px;
}

.page-back {
  color: rgba(17, 17, 17, 0.55);
  transition: color 0.55s var(--ease-premium);
}

.page-back:hover {
  color: var(--cobalt);
}

.page-shell {
  display: grid;
  gap: 34px;
  padding: 40px 0 0;
}

.page-headline {
  display: grid;
  gap: 14px;
}

.page-title {
  max-width: 8.6ch;
  font-size: clamp(3.8rem, 8.8vw, 8.2rem);
  line-height: 0.82;
  letter-spacing: -0.078em;
}

.page-deck {
  max-width: 36rem;
  display: grid;
  gap: 18px;
}

.page-intro {
  max-width: 15ch;
  font-size: clamp(1.5rem, 2.8vw, 2.55rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.page-statement {
  max-width: 30rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.7);
}

.page-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--cobalt);
  padding-bottom: 4px;
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cobalt);
  transition:
    color 0.55s var(--ease-premium),
    border-color 0.55s var(--ease-premium),
    opacity 0.55s var(--ease-premium);
}

.page-link:hover {
  opacity: 0.78;
}

.page-hero {
  border: 1px solid var(--line);
  background: #e8e1d4;
}

.page-hero-image {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.page-hero-image.has-cover::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

.concealed-band {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 16%;
  height: 18%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.82));
  opacity: 0.96;
  filter: blur(18px);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: multiply;
}

.page-hero-bhumble .page-hero-image::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

.page-hero-image.is-first-principles img {
  object-position: 50% 52%;
  filter: grayscale(1) contrast(1.02) brightness(0.84);
}

.page-hero-image.is-client-work img {
  object-position: 52% 46%;
  filter: grayscale(1) contrast(1.04) brightness(0.82);
}

.page-meta-chip {
  position: absolute;
  left: 20px;
  top: 20px;
  background: rgba(245, 243, 239, 0.82);
  padding: 8px 12px;
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.52);
  backdrop-filter: blur(6px);
  z-index: 3;
}

.page-cover-lockup {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 8px;
  align-content: end;
  max-width: 24rem;
}

.page-cover-kicker {
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.72);
}

.page-cover-title {
  margin: 0;
  max-width: 9ch;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-size: clamp(2.8rem, 6.5vw, 6.2rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
  color: var(--paper);
}

.page-detail-grid {
  display: grid;
  gap: 32px;
  padding: 40px 0 56px;
}

.fragment-grid {
  display: grid;
  gap: 18px;
}

.fragment {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  padding-right: 12px;
}

.fragment p {
  margin: 12px 0 0;
  font-size: 1.05rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: rgba(17, 17, 17, 0.86);
}

.note-stack {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  max-width: 31rem;
}

.note-stack p {
  margin: 0 0 16px;
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(17, 17, 17, 0.68);
}

.note-stack span {
  margin-right: 12px;
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.36);
}

.archive-page {
  min-height: 100vh;
  padding: 40px 0;
}

.archive-page-shell {
  max-width: 1200px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.archive-page-head {
  display: grid;
  gap: 24px;
}

.archive-page-title {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.archive-page-note {
  max-width: 18rem;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(17, 17, 17, 0.55);
}

.archive-register {
  margin-top: 64px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-premium), transform 0.7s var(--ease-premium);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: background 0.55s var(--ease-premium), color 0.55s var(--ease-premium), border-color 0.55s var(--ease-premium), opacity 0.55s var(--ease-premium);
}

.button-link:hover {
  opacity: 0.86;
}

.button-link.is-primary {
  border-color: var(--cobalt);
  background: var(--cobalt);
  color: var(--paper);
}

.button-link.is-secondary:hover {
  border-color: var(--cobalt);
  color: var(--cobalt);
}

.section-intro,
.contact-intro,
.page-cta-copy {
  max-width: 30rem;
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.66);
}

.process-section {
  padding-top: 24px;
}

.process-grid {
  display: grid;
  gap: 24px;
}

.process-card {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.process-number {
  margin: 0;
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.4);
}

.process-title {
  margin: 14px 0 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.process-body {
  margin: 16px 0 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.64);
}

.contact-stack {
  display: grid;
  gap: 32px;
}

.contact-cta {
  display: grid;
  gap: 16px;
}

.contact-headline,
.page-cta-headline {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.page-cta {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  padding-bottom: 18px;
}

.profile-hero {
  background: #eae4d8;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}

.profile-links a {
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.profile-links a:hover {
  color: var(--cobalt);
  border-color: var(--cobalt);
}

.case-study-section {
  border-top: 1px solid var(--line);
  padding: 8px 0 64px;
}

.case-study-shell {
  display: grid;
  gap: 32px;
}

.case-study-intro {
  display: grid;
  gap: 14px;
  max-width: 44rem;
}

.case-study-title,
.case-study-summary-title {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.case-study-copy,
.case-study-card p,
.case-study-summary-body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(17, 17, 17, 0.7);
}

.case-study-grid {
  display: grid;
  gap: 20px;
}

.case-study-card {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  padding-right: 18px;
  display: grid;
  gap: 14px;
  min-height: 15rem;
}

.case-study-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.95vw, 2.35rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.case-study-summary {
  display: grid;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.case-study-summary-head {
  display: grid;
  gap: 12px;
}

.case-study-summary-body {
  display: grid;
  gap: 16px;
  max-width: 44rem;
}

@media (min-width: 900px) {
  .hero-foot,
  .two-col,
  .about-grid,
  .register-grid,
  .page-shell,
  .page-detail-grid,
  .contact-grid,
  .archive-page-head {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .hero-copy {
    grid-column: span 9;
  }

  .hero-side {
    grid-column: span 3;
  }

  .two-col > :first-child,
  .register-grid > :first-child,
  .contact-grid > :first-child {
    grid-column: span 3;
  }

  .two-col > :last-child,
  .register-grid > :last-child,
  .contact-grid > :last-child {
    grid-column: span 9;
  }

  .surface-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
  }

  .surface-bhumble {
    grid-column: span 8;
  }

  .surface-bhumble-inner,
  .surface-client-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .surface-studio {
    grid-column: span 4;
    margin-top: 80px;
  }

  .surface-client {
    grid-column: span 12;
  }

  .case-study-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }

  .case-study-summary {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
  }

  .case-study-summary-head {
    grid-column: span 5;
  }

  .case-study-summary-body {
    grid-column: span 7;
  }

  .client-image {
    min-height: 100%;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .about-grid > :first-child,
  .page-detail-grid > :first-child {
    grid-column: span 7;
  }

  .about-grid > :last-child,
  .page-detail-grid > :last-child {
    grid-column: span 5;
  }

  .page-shell > :first-child {
    grid-column: span 8;
  }

  .page-shell > :last-child {
    grid-column: span 4;
  }

  .fragment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .register-list a,
  .archive-register a {
    grid-template-columns: 72px minmax(0, 1fr) 72px;
  }

  .contact-row {
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: end;
  }

  .page-header .page-eyebrow {
    display: block;
  }

  .page-hero-image {
    min-height: 660px;
  }

  .archive-page-head {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 0.3fr);
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .wrap {
    width: min(calc(100% - 28px), 1600px);
  }

  .hero {
    padding-top: 34px;
  }

  .hero-gesture,
  .hero-left-line {
    display: none;
  }

  .hero-shell {
    min-height: auto;
    gap: 64px;
  }

  .hero-head {
    gap: 12px 20px;
  }

  .hero-head-meta,
  .page-header-main,
  .page-header-meta {
    gap: 10px;
  }

  .hero-head-divider {
    width: 18px;
  }

  .hero-foot {
    gap: 56px;
  }

  .hero-title {
    font-size: clamp(4.1rem, 18vw, 6.9rem);
    line-height: 0.8;
  }

  .hero-note {
    margin-top: 0;
    justify-content: flex-start;
    gap: 14px;
  }

  .hero-note-line {
    min-height: 90px;
  }

  .surface-bhumble,
  .surface-studio,
  .surface-client {
    min-height: auto;
  }

  .statement {
    padding: 72px 0 88px;
  }

  .statement-title .isolate {
    margin-top: 64px;
  }

  .artifact {
    min-height: 360px;
  }

  .artifact-sheet {
    width: 70%;
    height: 68%;
    padding: 16px;
  }

  .artifact-sheet-title {
    margin-top: 24px;
    font-size: clamp(1.6rem, 6vw, 2.6rem);
  }

  .artifact-sheet-grid {
    margin-top: 22px;
    gap: 10px;
  }

  .artifact-panel {
    width: 28%;
    height: 34%;
    padding: 14px;
  }

  .artifact-panel-dark {
    width: 24%;
    height: 24%;
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero-image {
    min-height: 260px;
  }

  .page-title {
    font-size: clamp(2.9rem, 16vw, 5rem);
  }
}
