:root {
  --ink: #17293a;
  --paper: #f3f3f3;
  --paper-soft: #e8e8e8;
  --accent: #fd542f;
  --muted: #9aa0a5;
  --max: 1440px;
  --side: clamp(24px, 7.92vw, 114px);
  --canvas-shift: clamp(0px, calc((100vw - 1280px) / 3), 54px);
  --serif-display: "Qualifies_Free", "Qualifies Free", "Didot", "Bodoni 72",
    "Bodoni MT", "Cormorant Garamond", Georgia, serif;
  --serif-text: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--serif-text);
  letter-spacing: 0;
}

*,
*::before,
*::after {
  letter-spacing: 0 !important;
}

body::-webkit-scrollbar {
  display: none;
  width: 0;
}

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

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  margin: 0 auto;
  max-width: var(--max);
  padding: 35.5px var(--side) 0 calc(var(--side) + var(--canvas-shift));
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 5;
}

.brand-mark {
  display: block;
  height: 51.5px;
  line-height: 0;
  width: 68.5px;
}

.brand-mark img {
  display: block;
  height: 100%;
  width: 100%;
}

.nav-links {
  left: calc(944px + var(--canvas-shift));
  margin-top: 0;
  position: absolute;
  top: 73px;
}

.nav-links {
  display: flex;
  gap: 54px;
  font-family: var(--serif-text);
  font-size: 14px;
  justify-content: flex-start;
  letter-spacing: 1.4px;
  white-space: nowrap;
  width: auto;
}

.nav-links a,
.nav-button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  padding: 0;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-button:hover,
.nav-button:focus-visible {
  color: var(--accent);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 8px;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 44px;
  z-index: 60;
}

.menu-toggle span {
  background: var(--ink);
  display: block;
  height: 1px;
  transform-origin: center;
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 180ms ease;
  width: 30px;
}

.menu-is-open .menu-toggle span:first-child {
  transform: translateY(4.5px) rotate(32deg);
}

.menu-is-open .menu-toggle span:last-child {
  transform: translateY(-4.5px) rotate(-32deg);
}

.hero {
  background: #fff;
  height: 1024px;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
  --parallax-copy: 0px;
  --parallax-image: 0px;
}

.hero-stage,
.hero-slide {
  inset: 0;
  position: absolute;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-slide.is-exiting {
  transform: translateY(-14px);
}

.hero-copy {
  left: calc(var(--side) + var(--canvas-shift));
  position: absolute;
  top: 378px;
  transform: translate3d(0, var(--parallax-copy), 0);
  width: min(594px, calc(100vw - (var(--side) * 2)));
  will-change: transform;
  z-index: 3;
}

.hero-slide.is-active .hero-copy {
  animation: slideContentIn 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
  transform: translate3d(0, var(--parallax-copy), 0);
}

.hero-copy h1 {
  font-family: var(--serif-display);
  font-size: 224px;
  font-weight: 400;
  letter-spacing: -15.68px;
  line-height: 224px;
  margin: 0 0 13px;
}

.hero-copy-work {
  height: 267px;
  max-width: 650px;
  top: 50%;
  width: min(650px, calc(100vw - (var(--side) * 2)));
}

.hero-eyebrow {
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 1;
  margin: 0 0 26px;
  text-transform: uppercase;
}

.hero-copy-work h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 7.2vw, 104px);
  font-weight: 400;
  line-height: 0.88;
  margin: -78px 0 32px;
  max-width: 620px;
}

.hero-copy-work .hero-body {
  left: 0;
  position: absolute;
  top: 203px;
  width: 594px;
}

.hero-link {
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 15px;
  letter-spacing: 1.1px;
  margin-top: 34px;
  padding-bottom: 8px;
  transition:
    color 180ms ease,
  transform 260ms ease;
}

.hero-copy-work .hero-link {
  left: 0;
  position: absolute;
  top: 318px;
}

.hero-link:hover,
.hero-link:focus-visible {
  color: var(--accent);
  transform: translateX(8px);
}

.hero-copy p {
  font-family: var(--serif-text);
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  max-width: 594px;
  letter-spacing: 0.84px;
}

.portrait-wrap {
  bottom: auto;
  left: calc(678px + var(--canvas-shift));
  margin: 0;
  mix-blend-mode: multiply;
  position: absolute;
  right: auto;
  top: 92px;
  height: 934px;
  width: 671px;
  will-change: transform;
  z-index: 2;
}

.home-about-section {
  margin: 0 auto;
  max-width: var(--max);
  min-height: 526px;
  padding: 56px var(--side) 0 calc(var(--side) + var(--canvas-shift));
  position: relative;
  width: 100%;
}

.section-ghost-title {
  color: rgba(23, 41, 58, 0.2);
  font-size: 34px;
  line-height: 1;
  margin: 0 0 8px;
}

.home-about-card {
  --parallax-offset: 0px;
  display: grid;
  gap: 20px;
  grid-template-columns: 265px 48px;
  transform: translate3d(0, var(--parallax-offset), 0);
  will-change: transform;
  width: 333px;
}

.home-about-card img {
  display: block;
  height: 346px;
  object-fit: cover;
  width: 265px;
}

.home-about-rotated {
  align-items: flex-end;
  align-self: start;
  color: var(--ink);
  display: flex;
  flex-direction: row;
  font-size: 13px;
  gap: 16px;
  height: 346px;
  justify-content: flex-end;
  letter-spacing: 1.2px;
  line-height: 1;
  padding-bottom: 0;
  padding-top: 100px;
  transform: none;
  writing-mode: vertical-rl;
  width: 48px;
}

.home-about-rotated strong {
  font-weight: 700;
}

.home-about-rotated span {
  font-weight: 400;
  white-space: nowrap;
}

.home-about-counter {
  align-self: end;
  font-size: 14px;
  font-weight: 700;
  grid-column: 2;
  letter-spacing: 0;
  line-height: 1;
  margin: -9px 0 0;
}

.home-about-copy {
  --parallax-offset: 0px;
  left: calc(var(--side) + var(--canvas-shift) + 449px);
  max-width: min(760px, calc(100vw - var(--side) - 449px - 64px));
  position: absolute;
  top: 98px;
  transform: translate3d(0, var(--parallax-offset), 0);
  will-change: transform;
}

.home-about-copy h2 {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  margin: 0 0 28px;
  max-width: 760px;
}

.accent-dot {
  color: var(--accent);
}

.home-about-copy p {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 1.1px;
  line-height: 1.7;
  margin: 0;
}

.home-work-section {
  margin: 0 auto;
  max-width: var(--max);
  min-height: 1660px;
  position: relative;
  width: 100%;
}

.home-case {
  --parallax-offset: 0px;
  --parallax-side: 0px;
  --side-entry: -120px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: absolute;
  transition:
    color 220ms ease,
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  transform: translate3d(0, var(--parallax-offset), 0);
  will-change: transform;
  width: 520px;
}

.home-case.is-hidden {
  display: none;
}

.case-side-title {
  color: rgba(23, 41, 58, 0.08);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 142px;
  font-style: normal;
  font-weight: 700;
  left: -150px;
  letter-spacing: 0;
  line-height: 0.82;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 142px;
  transform: translate3d(calc(var(--side-entry) + var(--parallax-side)), 0, 0);
  transition:
    opacity 900ms ease,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  z-index: -1;
}

.home-case.is-visible .case-side-title {
  --side-entry: 0px;
  opacity: 1;
}

.home-case-two {
  --side-entry: 120px;
}

.home-case-two .case-side-title {
  left: auto;
  right: -180px;
}

.home-case span {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 224px;
  font-weight: 400;
  line-height: 224px;
}

.home-case-one span {
  letter-spacing: -22.4px;
}

.home-case-two span {
  letter-spacing: -11.2px;
}

.home-case-three span {
  letter-spacing: -6.72px;
}

.home-case strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 32px;
}

.home-case p {
  font-size: 14px;
  letter-spacing: 0.15px;
  line-height: 32px;
  margin: 0;
  white-space: nowrap;
}

.home-case:hover,
.home-case:focus-visible {
  color: var(--accent);
  transform: translateY(calc(var(--parallax-offset) - 8px));
}

.home-case-one {
  left: calc(851px + var(--canvas-shift));
  top: 64px;
}

.home-case-two {
  left: calc(var(--side) + var(--canvas-shift));
  top: 454px;
}

.home-case-three {
  left: calc(678px + var(--canvas-shift));
  top: 865px;
}

.hero-slide.is-active .portrait-wrap {
  animation: portraitIn 1100ms cubic-bezier(0.16, 1, 0.3, 1) both;
  transform: translate3d(0, var(--parallax-image), 0);
}

.portrait {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  width: 100%;
}

.social-rail {
  align-items: center;
  background: var(--accent);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  height: 234px;
  justify-content: center;
  padding: 0 10px;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition:
    background 220ms ease,
    height 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 51px;
  z-index: 10;
}

.social-rail:hover,
.social-rail:focus-within {
  height: 316px;
  transform: translateY(-50%);
}

.social-rail a {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.social-rail:hover a,
.social-rail:focus-within a {
  opacity: 0.72;
}

.social-rail a:hover,
.social-rail a:focus-visible {
  opacity: 1;
  transform: translateX(-5px) scale(1.08);
}

.content-section {
  background: #fff;
  padding: 112px var(--side);
}

.content-section:nth-of-type(3) {
  background: var(--paper);
}

.section-kicker {
  font-size: 13px;
  letter-spacing: 1.4px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.section-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1fr);
  max-width: 1050px;
}

.about-section .section-grid {
  margin-left: auto;
  margin-right: auto;
}

.section-grid h2,
.contact-section h2 {
  font-family: var(--serif-text);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.95;
  margin: 0;
}

.section-grid p,
.case-card p {
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.about-copy {
  display: grid;
  gap: 24px;
}

.about-copy p {
  color: rgba(23, 41, 58, 0.72);
  font-weight: 400;
  line-height: 1.9;
  margin: 0;
}

.case-list {
  display: grid;
  gap: 1px;
  max-width: 1180px;
}

.case-card {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  display: grid;
  gap: 32px;
  grid-template-columns: 80px minmax(240px, 0.7fr) minmax(280px, 1fr);
  padding: 34px 0;
  position: relative;
  transition:
    background 260ms ease,
    color 260ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card::after {
  content: "View";
  font-size: 14px;
  letter-spacing: 1.2px;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 40px;
  transform: translateX(-8px);
  transition:
    opacity 240ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover,
.case-card:focus-visible {
  background: rgba(253, 84, 47, 0.08);
  transform: translateX(10px);
}

.case-card:hover::after,
.case-card:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.case-card span {
  font-size: 18px;
}

.case-card h3 {
  font-family: var(--serif-text);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

.articles-section {
  background: #fff;
}

.article-list {
  display: grid;
  gap: 1px;
  max-width: 1180px;
}

.article-card {
  background: rgba(23, 41, 58, 0.035);
  color: var(--ink);
  display: grid;
  gap: clamp(32px, 5vw, 78px);
  grid-template-columns: minmax(120px, 0.35fr) minmax(280px, 0.85fr) minmax(280px, 1fr);
  padding: 64px 0;
  position: relative;
  transition:
    background 260ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card::after {
  content: "Read";
  font-size: 14px;
  letter-spacing: 1.2px;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 40px;
  transform: translateX(-8px);
  transition:
    opacity 240ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card:hover,
.article-card:focus-visible {
  background: rgba(253, 84, 47, 0.08);
  transform: translateX(10px);
}

.article-card:hover::after,
.article-card:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.article-card span {
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1.1;
}

.article-card h3 {
  font-family: var(--serif-text);
  font-size: clamp(48px, 5.6vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  margin: 0;
}

.article-card p {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.55;
  margin: 0;
}

.site-footer {
  background: var(--ink);
  color: #fff;
  margin: 0;
  min-height: 322px;
  overflow: hidden;
  padding: 82px var(--side) 72px calc(var(--side) + var(--canvas-shift));
  position: relative;
  width: 100%;
}

.footer-display {
  color: #fff;
  font-family: var(--serif-display);
  font-size: clamp(94px, 9.8vw, 152px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 0;
}

.footer-content {
  margin-top: 18px;
  max-width: 560px;
}

.footer-intro p {
  font-size: 16px;
  letter-spacing: 0.15px;
  line-height: 32px;
  margin: 0;
}

.article-overlay {
  background: #fff;
  inset: 0;
  opacity: 0;
  position: fixed;
  transform: translateY(24px);
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 80;
}

.article-overlay-is-open {
  overflow: hidden;
}

.article-overlay-is-open .article-overlay {
  opacity: 1;
  transform: translateY(0);
}

.article-overlay-frame {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.article-overlay-close {
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 64px;
  padding: 0;
  position: fixed;
  right: 118px;
  top: 72px;
  width: 64px;
  z-index: 82;
}

.article-overlay-close span {
  background: var(--ink);
  display: block;
  height: 3px;
  left: 12px;
  position: absolute;
  top: 31px;
  transition:
    background 180ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 42px;
}

.article-overlay-close span:first-child {
  transform: rotate(45deg);
}

.article-overlay-close span:last-child {
  transform: rotate(-45deg);
}

.article-overlay-close:hover span,
.article-overlay-close:focus-visible span {
  background: var(--accent);
}

.article-overlay-close:hover span:first-child,
.article-overlay-close:focus-visible span:first-child {
  transform: rotate(45deg) scaleX(1.14);
}

.article-overlay-close:hover span:last-child,
.article-overlay-close:focus-visible span:last-child {
  transform: rotate(-45deg) scaleX(1.14);
}

.contact-overlay {
  background: rgba(23, 41, 58, 0.6);
  inset: 0;
  opacity: 0;
  position: fixed;
  transition: opacity 320ms ease;
  z-index: 20;
}

.contact-drawer {
  background: #fff;
  bottom: 0;
  color: var(--ink);
  display: flex;
  justify-content: center;
  overflow-y: auto;
  padding: 220px 92px 80px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  width: min(732px, 100vw);
  z-index: 30;
}

.contact-is-open {
  overflow: hidden;
}

.contact-is-open .contact-overlay {
  opacity: 1;
}

.contact-is-open .contact-drawer {
  transform: translateX(0);
}

.drawer-close {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  height: 48px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 42px;
  top: 42px;
  width: 48px;
}

.contact-panel-content {
  width: min(400px, 100%);
}

.contact-panel-content h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(88px, 10vw, 144px);
  font-weight: 400;
  line-height: 0.86;
  margin: 0 0 66px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-form span {
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 24px;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(23, 41, 58, 0.65);
  border-radius: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.4;
  min-height: 31px;
  outline: 0;
  padding: 0 0 6px;
  resize: vertical;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--ink);
}

.contact-form button {
  background: var(--ink);
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  height: 48px;
  letter-spacing: 1.6px;
  line-height: 24px;
  margin-top: -1px;
  padding: 10px;
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms ease,
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.case-detail-main {
  background: var(--paper);
  min-height: 100vh;
}

.case-hero {
  background: linear-gradient(
    90deg,
    rgba(217, 216, 216, 0.4),
    rgba(255, 255, 255, 0.42)
  );
  min-height: 72vh;
  padding: 190px var(--side) 96px;
}

.case-hero-inner {
  max-width: 980px;
}

.case-index {
  display: block;
  font-size: 18px;
  margin-bottom: 34px;
}

.case-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 8vw, 132px);
  font-weight: 400;
  line-height: 0.92;
  margin: 0 0 36px;
}

.case-hero p {
  font-size: 16px;
  line-height: 32px;
  margin: 0;
  max-width: 720px;
}

.case-detail-section {
  background: #fff;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(220px, 0.42fr) minmax(280px, 1fr);
  padding: 96px var(--side);
}

.case-detail-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

.case-detail-section p,
.case-detail-section li {
  font-size: 16px;
  line-height: 32px;
}

.case-detail-section p {
  margin: 0 0 24px;
}

.case-detail-section ul {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.case-nav {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 54px var(--side);
}

.case-nav a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 8px;
}

.usecase-page {
  background: #fff;
  color: var(--ink);
}

.usecase-header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 35.5px 320px 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}

.usecase-logo {
  display: block;
  height: 51.5px;
  line-height: 0;
  width: 68.5px;
}

.usecase-logo img {
  display: block;
  height: 100%;
  width: 100%;
}

.usecase-nav-links {
  display: flex;
  gap: 96px;
  font-size: 14px;
  letter-spacing: 1.4px;
  margin-top: 37.5px;
}

.usecase-nav-links a {
  transition: color 180ms ease;
}

.usecase-nav-links a:hover,
.usecase-nav-links a:focus-visible {
  color: var(--accent);
}

.usecase-main {
  background: #fff;
  min-height: 100vh;
  position: relative;
}

.usecase-accent {
  background: var(--accent);
  height: 45px;
  left: 0;
  position: absolute;
  top: 205px;
  width: 47px;
}

.usecase-article {
  margin-left: 320px;
  padding-bottom: 150px;
  padding-top: 205px;
  width: 800px;
}

.usecase-article h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 60px;
  margin: 0 0 74px;
}

.usecase-article p,
.usecase-article li {
  color: #484848;
  font-size: 16px;
  line-height: 32px;
}

.usecase-article p {
  margin: 0;
}

.usecase-meta {
  margin-bottom: 80px !important;
}

.usecase-article > p:not(.usecase-meta) {
  margin-bottom: 80px;
}

.usecase-article section {
  margin-top: 80px;
}

.usecase-article h2 {
  color: #484848;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 30px;
  margin: 0 0 40px;
}

.usecase-muted {
  color: rgba(23, 41, 58, 0.8) !important;
}

.usecase-article ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.usecase-article li {
  align-items: baseline;
  display: flex;
  gap: 10px;
}

.usecase-article li::before {
  color: var(--ink);
  content: "→";
  flex: 0 0 auto;
  font-size: 12px;
  line-height: 24px;
}

.quality-diagram {
  margin: 45px auto 0;
  opacity: 0.5;
  width: min(620px, 100%);
}

.quality-columns {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quality-columns > div {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.quality-columns span {
  color: #000;
  font-size: 7px;
  letter-spacing: 1.4px;
  line-height: 12px;
  text-transform: uppercase;
}

.quality-columns span::before {
  background: var(--accent);
  content: "";
  display: block;
  height: 15px;
  margin: 0 auto 5px;
  width: 15px;
}

.quality-columns strong,
.quality-columns small,
.quality-library {
  border: 1px solid #000;
  color: #000;
  display: flex;
  font-size: 6px;
  font-weight: 400;
  justify-content: center;
  letter-spacing: 0.5px;
  line-height: 12px;
  min-height: 13px;
  padding: 1px 4px;
  text-transform: uppercase;
  width: 100%;
}

.quality-columns strong {
  margin-top: 14px;
}

.quality-library {
  align-items: center;
  height: 25px;
  margin-top: 50px;
  width: 100%;
}

.quality-library::first-letter {
  color: var(--accent);
}

.usecase-ops {
  margin: 0 auto;
  padding: 164px 0 130px;
  width: min(760px, calc(100vw - (var(--side) * 2)));
}

.usecase-ops-page .usecase-accent {
  display: none;
}

.usecase-ops section {
  margin-top: 58px;
}

.ops-hero {
  display: block;
  margin-top: 0 !important;
  position: relative;
}

.ops-hero::before {
  color: rgba(23, 41, 58, 0.04);
  content: "01.";
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 168px;
  font-weight: 400;
  left: -104px;
  letter-spacing: -10px;
  line-height: 0.8;
  position: absolute;
  top: -52px;
  z-index: 0;
}

.usecase-product-page .ops-hero::before {
  content: "02.";
}

.usecase-product-page .ops-hero::after {
  background: url("./assets/ott-hero-background.png") right center / contain no-repeat;
  content: "";
  inset: -112px -118px -92px 24%;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.usecase-leadership-page .ops-hero::before {
  content: "03.";
}

.ops-kicker {
  color: var(--accent) !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1 !important;
  margin: 0 0 24px !important;
  text-transform: uppercase;
}

.ops-hero h1 {
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  max-width: 740px;
  position: relative;
  z-index: 1;
}

.ops-hero > p:not(.ops-kicker) {
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0.2px;
  line-height: 32px;
  margin: 26px 0 0;
  max-width: 680px;
  opacity: 0.82;
}

.ops-summary {
  border-bottom: 1px solid rgba(23, 41, 58, 0.14);
  border-top: 1px solid rgba(23, 41, 58, 0.14);
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px !important;
  padding: 18px 0;
}

.ops-summary div {
  display: grid;
  gap: 8px;
}

.ops-summary span,
.ops-outcome span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1;
  text-transform: uppercase;
}

.ops-summary strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.35px;
  line-height: 1.35;
}

.ops-statement,
.ops-model,
.ops-split,
.ops-outcome {
  display: block;
}

.ops-product-tension {
  isolation: isolate;
  padding: 38px 0 64px;
  position: relative;
}

.ops-product-tension::before {
  background: url("./assets/ott-product-tension-background.png") left center / contain no-repeat;
  content: "";
  inset: -78px 28% -78px -122px;
  opacity: 0.16;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.ops-model {
  isolation: isolate;
  padding: 42px 0 56px;
  position: relative;
}

.usecase-ops-page .ops-model::before {
  background: url("./assets/operating-model-background.png") right center / contain no-repeat;
  content: "";
  bottom: -56px;
  left: 24%;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
  right: -92px;
  top: -62px;
  z-index: -1;
}

.ops-statement h2,
.ops-model h2,
.ops-split h2 {
  color: var(--ink);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.18;
  margin: 0 0 18px;
}

.ops-statement p,
.ops-outcome p {
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0.15px;
  line-height: 32px;
  margin: 0;
  max-width: none;
}

.ops-statement p + p {
  margin-top: 24px;
}

.ops-model-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}

.ops-model-grid div {
  border-top: 1px solid rgba(23, 41, 58, 0.16);
  display: grid;
  gap: 24px;
  grid-template-columns: 54px minmax(120px, 180px) 1fr;
  min-height: 0;
  padding: 22px 0;
}

.ops-model-grid span {
  color: var(--accent);
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
}

.ops-model-grid strong {
  color: var(--ink);
  display: block;
  font-size: 17px;
  letter-spacing: 0.45px;
  line-height: 1.25;
  margin-bottom: 0;
}

.ops-model-grid p {
  color: rgba(23, 41, 58, 0.82);
  font-size: 16px;
  letter-spacing: 0.2px;
  line-height: 32px;
  margin: 0;
}

.ops-diagram {
  background: var(--ink);
  color: #fff;
  margin-left: calc(var(--side) * -1);
  margin-right: calc(var(--side) * -1);
  padding: 76px var(--side);
}

.ops-diagram p {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}

.ops-diagram-flow {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 38px 0;
}

.ops-diagram-flow span {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
}

.ops-split ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.ops-split li {
  color: var(--ink);
  display: block;
  font-size: 16px;
  letter-spacing: 0.15px;
  line-height: 32px;
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.ops-split li::before {
  background: var(--accent);
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 14px;
  width: 5px;
}

.ops-impact h2 {
  color: var(--ink);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.18;
  margin: 0 0 12px;
}

.ops-impact > p {
  color: rgba(23, 41, 58, 0.72);
  font-size: 16px;
  letter-spacing: 0.15px;
  line-height: 32px;
  margin: 0;
  max-width: 520px;
}

.ops-impact-grid {
  display: grid;
  gap: 64px 42px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 92px;
}

.ops-impact-grid div {
  text-align: center;
}

.ops-impact-grid strong {
  color: var(--ink);
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 5.2vw, 82px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.ops-impact-grid span {
  color: var(--ink);
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-left: 4px;
}

.ops-impact-grid p {
  color: rgba(23, 41, 58, 0.76);
  font-size: 16px;
  letter-spacing: 0.15px;
  line-height: 32px;
  margin: 18px auto 0;
  max-width: 210px;
}

.ops-outcome {
  border-top: 1px solid rgba(23, 41, 58, 0.18);
  padding-top: 34px;
}

.ops-why {
  margin-top: 92px !important;
}

.ops-article-image {
  margin: 0 auto;
  opacity: 0.28;
  padding: 0;
  pointer-events: none;
  position: relative;
  transform: none;
  width: min(360px, 52%);
  z-index: 0;
}

.ops-article-image img {
  border: 0;
  display: block;
  height: auto;
  outline: 0;
  box-shadow: none;
  width: 100%;
}

.ops-article-image + .ops-statement {
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.ops-article-image-wide {
  margin: 0;
  opacity: 0.34;
  padding: 0;
  width: min(430px, 62%);
}

.ops-article-image-compare {
  margin: 22px 0 0 50%;
  opacity: 0.42;
  transform: translateX(-50%);
  width: min(1040px, 132%);
}

.usecase-page .usecase-social {
  display: none;
}

.usecase-social {
  align-items: center;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: flex-start;
  padding: 64px 19px 52px 20px;
  position: fixed;
  right: 0;
  top: 75vh;
  transform: translateY(-50%);
  width: 70px;
  z-index: 10;
}

.usecase-social a {
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.article-page {
  background: #fff;
  color: var(--ink);
}

.article-page .usecase-header {
  padding: 60px 160px 0 720px;
}

.article-page .usecase-nav-links {
  gap: 58px;
  letter-spacing: 0;
  margin-top: 18px;
}

.article-page.is-embedded-article .usecase-header,
.article-page.is-embedded-article .usecase-social {
  display: none;
}

.article-page.is-embedded-article {
  overflow-x: hidden;
}

.usecase-nav-links a[aria-current="page"] {
  font-weight: 700;
}

.article-reference-main,
.article-main {
  background: #fff;
  min-height: 100vh;
}

.article-reference-hero {
  min-height: 1024px;
  overflow: hidden;
  position: relative;
}

.article-reference-image {
  height: 1024px;
  left: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
  width: 510px;
}

.article-reference-image img {
  display: block;
  filter: grayscale(1);
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.article-reference-copy {
  left: 720px;
  max-width: 650px;
  position: absolute;
  top: 286px;
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
}

.article-reference-date {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1;
  margin: 0 0 44px;
  text-transform: uppercase;
}

.article-reference-copy h1 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 5.8vw, 84px);
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 0.95;
  margin: 0 0 56px;
  max-width: 560px;
}

.article-page.is-embedded-article .article-reference-copy {
  left: 720px;
  top: 342px;
}

.article-page.is-embedded-article .article-reference-copy h1 {
  font-size: 68px;
  letter-spacing: 3px;
  line-height: 0.96;
  max-width: 430px;
}

.article-reference-subtitle {
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.65;
  margin: 0 0 34px;
  max-width: 650px;
}

.article-reference-copy p:not(.article-reference-date):not(.article-reference-subtitle) {
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 1.4px;
  line-height: 1.72;
  margin: 0;
}

.article-reference-sidecopy {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  height: 300px;
  left: 532px;
  position: absolute;
  top: 625px;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
}

.article-reference-sidecopy strong,
.article-reference-sidecopy span,
.article-reference-counter {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1.35;
}

.article-reference-sidecopy span {
  font-weight: 400;
}

.article-reference-counter {
  bottom: 0;
  left: 529px;
  margin: 0;
  position: absolute;
}

.article-reference-counter span {
  font-weight: 400;
}

.article-main {
  padding: 190px var(--side) 140px;
}

.article-content {
  margin: 0 auto;
  max-width: 820px;
}

.article-content-reference {
  margin: 110px auto 180px;
  max-width: 900px;
}

.article-kicker {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 1;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.article-content h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 0 78px;
}

.article-content-reference > p:first-child {
  color: var(--ink);
  font-weight: 700;
}

.article-hero {
  margin-bottom: 78px;
}

.article-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(92px, 13vw, 180px);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 0.9;
  margin: 0 0 62px;
}

.article-meta-table {
  border-bottom: 1px solid rgba(23, 41, 58, 0.24);
  border-top: 1px solid rgba(23, 41, 58, 0.24);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(160px, 0.38fr) minmax(280px, 1fr);
  padding: 24px 0;
}

.article-meta-table p {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
}

.article-meta-table span {
  color: #777;
  display: block;
  font-size: 12px;
  letter-spacing: 1.4px;
  line-height: 1;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.article-content h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.08;
  margin: 76px 0 28px;
}

.article-content p,
.article-content li {
  color: #484848;
  font-size: 18px;
  line-height: 1.78;
}

.article-content p {
  margin: 0 0 26px;
}

.article-content ul {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
}

.article-content li {
  align-items: baseline;
  display: flex;
  gap: 12px;
}

.article-content li::before {
  color: var(--accent);
  content: "→";
  flex: 0 0 auto;
  font-size: 14px;
}

.article-medium-banner {
  align-items: flex-end;
  background: var(--ink);
  color: #fff;
  display: flex;
  gap: 42px;
  justify-content: space-between;
  margin-top: 92px;
  padding: 42px;
}

.article-medium-banner p {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.article-medium-banner strong {
  color: #fff;
  display: block;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.35;
  max-width: 520px;
}

.article-medium-banner a {
  border-bottom: 1px solid currentColor;
  color: #fff;
  flex: 0 0 auto;
  font-size: 15px;
  letter-spacing: 1px;
  padding-bottom: 8px;
  transition:
    color 180ms ease,
    transform 220ms ease;
}

.article-medium-banner a:hover,
.article-medium-banner a:focus-visible {
  color: var(--accent);
  transform: translateY(-2px);
}

.article-share {
  align-items: center;
  border-top: 1px solid rgba(23, 41, 58, 0.18);
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
  padding-top: 28px;
}

.article-share p {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.article-share a {
  background: var(--ink);
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  justify-content: center;
  letter-spacing: 1.1px;
  padding: 14px 18px;
  transition:
    background 180ms ease,
    transform 220ms ease;
}

.article-share a:hover,
.article-share a:focus-visible {
  background: var(--accent);
  transform: translateY(-2px);
}

@keyframes slideContentIn {
  from {
    opacity: 0;
    transform: translate3d(0, calc(var(--parallax-copy) + 20px), 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, var(--parallax-copy), 0);
  }
}

@keyframes portraitIn {
  from {
    opacity: 0;
    transform: translate3d(34px, var(--parallax-image), 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, var(--parallax-image), 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

}

@media (max-width: 900px) {
  .site-header {
    padding-top: 28px;
  }

  .brand-mark {
    height: 45px;
    width: 60px;
  }

  .nav-links {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 50px rgba(23, 41, 58, 0.08);
    flex-direction: column;
    font-size: 16px;
    gap: 30px;
    letter-spacing: 1.1px;
    left: auto;
    margin-top: 0;
    opacity: 0;
    padding: 88px var(--side) 32px;
    pointer-events: none;
    position: fixed;
    right: 0;
    text-align: right;
    top: 0;
    transform: translateY(-18px);
    transition:
      opacity 260ms ease,
      transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
    width: min(360px, 100vw);
    z-index: 50;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-is-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: 920px;
  }

  .portrait-wrap {
    bottom: 0;
    height: auto;
    left: 27vw;
    opacity: 0.75;
    top: 100px;
    width: 78vw;
  }

  .hero-copy {
    top: 47%;
    transform: translateY(-50%);
  }

  .hero-copy p {
    background: rgba(243, 243, 243, 0.74);
    max-width: 480px;
  }

  .social-rail {
    height: 176px;
    padding: 0 9px;
    width: 39px;
  }

  .social-rail:hover,
  .social-rail:focus-within {
    height: 228px;
  }

  .home-about-section {
    min-height: auto;
    padding-bottom: 120px;
  }

  .home-about-card {
    grid-template-columns: minmax(220px, 265px) 48px;
    width: min(333px, calc(100vw - (var(--side) * 2)));
  }

  .home-about-card img {
    height: auto;
    width: 100%;
  }

  .home-about-rotated {
    font-size: 13px;
    height: 100%;
    padding-bottom: 0;
    padding-top: 72px;
  }

  .home-about-counter {
    font-size: 14px;
  }

  .home-about-copy {
    left: var(--side);
    margin-top: 72px;
    max-width: 620px;
    position: relative;
    top: auto;
  }

  .home-work-section {
    display: grid;
    gap: 76px;
    min-height: auto;
    padding: 70px var(--side) 120px;
  }

  .home-case,
  .home-case-one,
  .home-case-two,
  .home-case-three {
    left: auto;
    position: relative;
    right: auto;
    top: auto;
    width: min(520px, 100%);
  }

  .home-case p {
    white-space: normal;
  }

  .case-side-title {
    font-size: 82px;
    left: 0;
    opacity: 0.08;
    right: auto;
    top: 94px;
    white-space: normal;
  }

  .home-case-two .case-side-title {
    left: 0;
    right: auto;
  }

  .home-case-two {
    justify-self: start;
  }

  .home-case-one,
  .home-case-three {
    justify-self: end;
  }

  .site-footer {
    min-height: 300px;
    padding-left: var(--side);
  }

  .article-overlay-close {
    right: 42px;
    top: 36px;
  }

  .footer-content {
    margin-top: 16px;
  }

  .section-grid,
  .case-card,
  .article-card,
  .case-detail-section {
    grid-template-columns: 1fr;
  }

  .case-card,
  .article-card {
    gap: 18px;
  }

  .contact-drawer {
    padding: 132px 56px 64px;
  }

  .case-hero {
    padding-top: 150px;
  }

  .usecase-header {
    padding-left: var(--side);
    padding-right: var(--side);
  }

  .article-page .usecase-header {
    padding: 35px var(--side) 0;
  }

  .usecase-nav-links {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 50px rgba(23, 41, 58, 0.08);
    flex-direction: column;
    font-size: 16px;
    gap: 30px;
    letter-spacing: 1.1px;
    margin-top: 0;
    opacity: 0;
    padding: 88px var(--side) 32px;
    pointer-events: none;
    position: fixed;
    right: 0;
    text-align: right;
    top: 0;
    transform: translateY(-18px);
    transition:
      opacity 260ms ease,
      transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
    width: min(360px, 100vw);
    z-index: 50;
  }

  .menu-is-open .usecase-nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .usecase-article {
    margin-left: var(--side);
    width: calc(100vw - (var(--side) * 2));
  }

  .usecase-ops {
    margin-left: auto;
    margin-right: auto;
    width: min(760px, calc(100vw - (var(--side) * 2)));
  }

  .ops-hero,
  .ops-statement,
  .ops-model,
  .ops-split,
  .ops-outcome {
    display: block;
  }

  .ops-model-grid,
  .ops-diagram-flow,
  .ops-summary {
    grid-template-columns: 1fr;
  }

  .ops-hero {
    min-height: auto;
  }

  .ops-hero h1 {
    margin-top: 0;
  }

  .article-main {
    padding-top: 150px;
  }

  .article-reference-hero {
    display: grid;
    min-height: auto;
    padding-bottom: 96px;
    padding-top: 132px;
  }

  .article-reference-image {
    height: 58vh;
    min-height: 520px;
    position: relative;
    width: min(520px, 78vw);
  }

  .article-reference-copy {
    left: auto;
    margin: 76px var(--side) 0;
    max-width: 720px;
    position: relative;
    top: auto;
  }

  .article-reference-sidecopy {
    left: min(560px, calc(78vw + 32px));
    top: 58vh;
  }

  .article-reference-counter {
    left: min(560px, calc(78vw + 32px));
    top: calc(58vh + 330px);
  }

  .article-content-reference {
    margin-left: var(--side);
    margin-right: var(--side);
  }

  .usecase-accent {
    width: 24px;
  }

  .quality-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 34px;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    width: 100vw;
  }

  .hero {
    min-height: 820px;
  }

  .home-about-section {
    padding-top: 50px;
  }

  .section-ghost-title {
    font-size: 34px;
  }

  .home-about-card {
    display: block;
  }

  .home-about-card img {
    max-width: 330px;
  }

  .home-about-rotated {
    flex-direction: column;
    font-size: 14px;
    height: auto;
    margin-top: 18px;
    padding-bottom: 0;
    transform: none;
    writing-mode: horizontal-tb;
    width: auto;
  }

  .home-about-counter {
    font-size: 14px;
    margin: 18px 0 0;
  }

  .home-about-copy {
    margin-top: 52px;
  }

  .home-about-copy h2 {
    font-size: 34px;
  }

  .home-work-section {
    gap: 56px;
    padding-bottom: 90px;
  }

  .home-case span {
    font-size: clamp(88px, 28vw, 132px);
    letter-spacing: -0.05em;
    line-height: 0.9;
  }

  .hero-copy {
    top: 43%;
  }

  .hero-copy-work {
    height: 267px;
    top: 50%;
  }

  .hero-copy h1 {
    font-size: clamp(104px, 34vw, 150px);
    margin-bottom: 22px;
  }

  .hero-copy p {
    font-size: 13px;
    letter-spacing: 0.7px;
    line-height: 1.65;
    padding-right: 28px;
  }

  .portrait-wrap {
    height: auto;
    left: 8vw;
    opacity: 0.48;
    top: 150px;
    width: 115vw;
  }

  .content-section {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .site-footer {
    min-height: 300px;
    padding-bottom: 64px;
    padding-top: 52px;
  }

  .footer-display {
    font-size: clamp(70px, 20vw, 104px);
  }

  .footer-content {
    margin-top: 14px;
  }

  .footer-intro p {
    font-size: 16px;
  }

  .article-overlay-close {
    height: 52px;
    right: 18px;
    top: 18px;
    width: 52px;
  }

  .article-overlay-close span {
    left: 10px;
    top: 25px;
    width: 32px;
  }

  .case-hero,
  .case-detail-section,
  .case-nav {
    padding-left: var(--side);
    padding-right: var(--side);
  }

  .section-grid h2,
  .contact-panel-content h2 {
    font-size: 42px;
  }

  .contact-drawer {
    padding: 104px 28px 52px;
  }

  .drawer-close {
    right: 18px;
    top: 22px;
  }

  .usecase-header {
    padding-top: 28px;
  }

  .usecase-logo {
    height: 45px;
    width: 60px;
  }

  .usecase-nav-links {
    width: 100vw;
  }

  .article-reference-hero {
    padding-top: 106px;
  }

  .article-reference-image {
    height: 54vh;
    min-height: 390px;
    width: 100vw;
  }

  .article-reference-copy {
    margin-top: 58px;
  }

  .article-reference-copy h1 {
    font-size: 50px;
    letter-spacing: 2.4px;
    line-height: 0.98;
    margin-bottom: 36px;
  }

  .article-reference-date {
    margin-bottom: 28px;
  }

  .article-reference-subtitle,
  .article-reference-copy p:not(.article-reference-date):not(.article-reference-subtitle) {
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1.7;
  }

  .article-reference-sidecopy,
  .article-reference-counter {
    display: none;
  }

  .usecase-article {
    padding-top: 150px;
  }

  .usecase-ops {
    margin-left: auto;
    margin-right: auto;
    padding-top: 130px;
    width: calc(100vw - (var(--side) * 2));
  }

  .usecase-article h1 {
    font-size: 42px;
    line-height: 44px;
    margin-bottom: 54px;
  }

  .usecase-article section {
    margin-top: 64px;
  }

  .usecase-ops section {
    margin-top: 50px;
  }

  .ops-hero::before {
    font-size: 96px;
    left: -18px;
    letter-spacing: -5px;
    top: -34px;
  }

  .ops-hero h1 {
    font-size: 40px;
    line-height: 1.05;
  }

  .ops-hero > p:not(.ops-kicker),
  .ops-statement p,
  .ops-outcome p {
    font-size: 16px;
    letter-spacing: 0.1px;
    line-height: 32px;
  }

  .ops-summary,
  .ops-model-grid,
  .ops-model-grid div {
    grid-template-columns: 1fr;
  }

  .ops-impact-grid {
    gap: 44px 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 58px;
  }

  .ops-model-grid div {
    gap: 10px;
  }

  .ops-diagram {
    margin-left: calc(var(--side) * -1);
    margin-right: calc(var(--side) * -1);
  }

  .usecase-social {
    padding: 30px 9px;
    width: 39px;
  }

  .article-content h1 {
    margin-bottom: 54px;
  }

  .article-hero h1 {
    margin-bottom: 42px;
  }

  .article-meta-table {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .article-content p,
  .article-content li {
    font-size: 16px;
  }

  .article-medium-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    padding: 30px;
  }

  .article-medium-banner strong {
    font-size: 19px;
  }

  .article-share {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .quality-columns {
    grid-template-columns: 1fr;
  }
}
