@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/experiences/red/fonts/ibm-plex-mono-400.woff2) format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/experiences/red/fonts/ibm-plex-mono-500.woff2) format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/experiences/red/fonts/manrope-400.woff2) format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/experiences/red/fonts/manrope-500.woff2) format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/experiences/red/fonts/manrope-600.woff2) format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/experiences/red/fonts/manrope-700.woff2) format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/experiences/red/fonts/manrope-800.woff2) format('woff2');
}

:root,
.dark {
  --background: #090909;
  --foreground: #f1f0eb;
  --surface: #111111;
  --popover: #171717;
  --muted: #999b99;
  --line: #2a2b29;
  --orange: #ff6038;
  --font-sans: 'Manrope', Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --scroll-progress: 0;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
}
::selection {
  background: var(--orange);
  color: #090909;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 500;
}
svg {
  flex-shrink: 0;
}
img {
  max-width: 100%;
  display: block;
}
p {
  color: var(--muted);
}
.section-pad {
  padding-left: 5.5%;
  padding-right: 5.5%;
}
.mono,
.eyebrow {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.eyebrow {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.65;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 12px #ff603833;
}
.site-header {
  height: 106px;
  padding: 0 5.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: #090909;
}
.brand {
  display: block;
  flex-shrink: 0;
}
.brand img {
  width: 91px;
  height: 52px;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 38px;
}
.desktop-nav a {
  font-size: 14px;
  color: #c5c6c1;
  position: relative;
}
.desktop-nav a:after {
  position: absolute;
  content: '';
  bottom: -7px;
  height: 1px;
  width: 100%;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 0.25s;
}
.desktop-nav a:hover:after {
  transform: scaleX(1);
}
.header-cta {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 14px;
  border: 1px solid #494a45;
  padding: 12px 18px;
  transition: background 0.25s;
}
.header-cta:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #090909;
}
.mobile-menu {
  display: none;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: -100px;
  background: var(--orange);
  color: #000;
  padding: 12px;
}
.skip-link:focus {
  top: 10px;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  z-index: 100;
  pointer-events: none;
}
.hero {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  isolation: isolate;
}
.hero-topline {
  display: flex;
  justify-content: space-between;
  padding-top: 35px;
  position: relative;
  z-index: 2;
  color: #b5b7b1;
}
.hero-coordinate {
  font-size: 11px;
  color: #777a73;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 100px 0 99px;
  pointer-events: none;
}
.hero-copy a {
  pointer-events: auto;
}
.hero-prelude {
  font-size: 25px;
  letter-spacing: -0.03em;
  color: #d0d1ca;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(64px, 7.8vw, 135px);
  letter-spacing: -0.07em;
  line-height: 1.01;
  max-width: 920px;
  position: relative;
}
.hero h1 span {
  color: var(--orange);
}
.hero-description {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 33px;
  max-width: 440px;
  color: #a6a9a2;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-top: 34px;
}
.button {
  min-height: 52px;
  padding: 14px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
  border: 1px solid transparent;
  white-space: normal;
}
.button-primary {
  background: var(--orange);
  color: #100c09;
}
.button-primary:hover {
  background: #ff805b;
  transform: translateY(-2px);
}
.button-outline {
  border-color: #494a45;
  background: transparent;
  color: var(--foreground);
}
.button-outline:hover {
  border-color: var(--orange);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: #eee;
  line-height: 1.5;
}
.text-link svg {
  transition: transform 0.25s;
}
.text-link:hover svg {
  transform: translate(3px, -3px);
}
.hero-art {
  position: absolute;
  width: 59%;
  max-width: 900px;
  aspect-ratio: 1;
  right: -5%;
  top: 65px;
  z-index: 0;
  perspective: 1000px;
  transform: translateY(var(--parallax, 0px));
  will-change: transform;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 1s ease-out;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 13%,
    #000 85%,
    transparent 100%
  );
}
.hero-art:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #090909 1%,
    transparent 32%,
    transparent 90%,
    #090909
  );
  pointer-events: none;
}
.art-coordinate {
  position: absolute;
  bottom: 13%;
  right: 18%;
  font-size: 10px;
  color: #80837b;
  writing-mode: vertical-rl;
  z-index: 2;
}
.art-cross {
  position: absolute;
  color: #70756b;
  font-family: monospace;
  font-size: 22px;
  z-index: 2;
}
.cross-one {
  top: 6%;
  left: 24%;
}
.cross-two {
  bottom: 10%;
  right: 15%;
}
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 23px 0;
  color: #7b7e76;
  position: relative;
  z-index: 2;
}
.hero-bottom > .mono {
  font-size: 11px;
  letter-spacing: 0.13em;
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #b6b8b1;
}
.scroll-cue > span {
  display: grid;
  place-items: center;
  border: 1px solid #383b34;
  border-radius: 50%;
  width: 34px;
  height: 34px;
}
.hero-index {
  color: var(--orange);
}
.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 150px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.proof-strip > .eyebrow {
  color: #777c73;
  font-size: 10px;
  width: 180px;
  flex-shrink: 0;
}
.client-names {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
  color: #aaa9a2;
  line-height: 1;
}
.client-names > span {
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.client-names .agilent {
  font-weight: 400;
  display: flex;
  gap: 4px;
  align-items: center;
}
.brand-spark {
  font-size: 33px;
}
.client-names .unicef {
  font-weight: 400;
  letter-spacing: -0.06em;
}
.client-names .nestle {
  font-family: Georgia, serif;
  font-weight: bold;
  font-size: 32px;
}
.client-names .oxfam {
  font-weight: 800;
  font-size: 23px;
  letter-spacing: -0.045em;
}
.intro {
  padding-top: 95px;
  padding-bottom: 85px;
}
.section-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #afb1a9;
}
.tiny-cross {
  font-family: monospace;
  color: #71766a;
  font-size: 22px;
}
.intro-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12%;
  margin-top: 49px;
}
.intro h2 {
  font-size: clamp(36px, 4vw, 68px);
  line-height: 1.16;
}
.intro h2 span {
  color: #8a8e82;
}
.intro-copy {
  padding-top: 7px;
}
.intro-copy p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 410px;
}
.intro-copy p:first-child {
  color: #d8d9d2;
  margin-bottom: 22px;
  font-size: 19px;
  line-height: 1.65;
}
.intro-copy a {
  margin-top: 27px;
}
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  border-top: 1px solid var(--line);
  margin-top: 72px;
  padding-top: 35px;
  gap: 25px;
}
.stats-row > div {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}
.stats-row > div:last-child {
  border: none;
  padding-left: 20px;
}
.stats-row > div:nth-child(2) {
  padding-left: 30px;
}
.stats-row strong {
  font-size: clamp(35px, 4vw, 64px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.15;
}
.stats-row strong span {
  color: var(--orange);
}
.stats-row > div > span {
  font-size: 13px;
  color: #8f9488;
  margin-top: 13px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}
.section-heading h2 {
  font-size: clamp(38px, 4.6vw, 76px);
  margin-top: 23px;
  line-height: 1.06;
}
.section-heading > .text-link {
  margin-bottom: 6px;
}
.section-heading > p {
  max-width: 360px;
  line-height: 1.8;
  font-size: 16px;
}
.section-heading > div > p {
  font-size: 15px;
  margin-bottom: 17px;
}
.serif-word {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.055em;
}
.expertise-preview {
  padding-top: 88px;
  padding-bottom: 100px;
  background: #111210;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #353830;
}
.capability-card {
  padding: 29px 24px 23px;
  border-right: 1px solid #353830;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.3s;
}
.capability-card:last-child {
  border-right: 0;
}
.capability-card:hover {
  background: #1b1e17;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 46px;
}
.card-top > svg {
  color: var(--orange);
}
.card-top > .mono {
  color: #6e7565;
}
.capability-card h3 {
  font-size: 24px;
  letter-spacing: -0.045em;
  line-height: 1.2;
  max-width: 215px;
  margin-bottom: 17px;
}
.capability-card p {
  font-size: 14px;
  line-height: 1.85;
  flex: 1;
  color: #9da092;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 21px;
  border-top: 1px solid #31352c;
  align-items: center;
}
.card-bottom .mono {
  font-size: 9px;
  letter-spacing: 0.045em;
  line-height: 1.65;
}
.card-bottom svg {
  color: var(--orange);
}
.work-preview {
  padding-top: 95px;
  padding-bottom: 87px;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.project-image {
  position: relative;
  aspect-ratio: 1.27;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c211d;
}
.project-image-legal {
  background: #d8e4db;
}
.project-image-myba {
  background: #c3c1b5;
}
.project-image > img,
.project-image .featured-preview {
  width: 85%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 12px 50px #0002;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  transform: rotate(-3deg);
}
.project-image-myba > img,
.project-image-myba .featured-preview {
  transform: rotate(3deg);
}
.featured-project:hover .project-image > img,
.featured-project:hover .featured-preview {
  transform: scale(1.06) rotate(0);
}
.project-corner {
  position: absolute;
  top: 24px;
  left: 24px;
  color: #2c3930;
  z-index: 2;
  font-size: 10px;
}
.project-circle {
  position: absolute;
  right: 20px;
  bottom: 20px;
  border: 1px solid #303c3355;
  border-radius: 50%;
  color: #17261e;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}
.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
  align-items: flex-start;
}
.project-meta h3 {
  font-size: 27px;
  letter-spacing: -0.04em;
}
.project-meta p {
  font-size: 13px;
  margin-top: 8px;
}
.tag {
  display: inline-block;
  border: 1px solid #3b4034;
  padding: 4px 9px;
  font-size: 10px;
  line-height: 1.4;
  white-space: nowrap;
  color: #aaaf9f;
}
.project-row {
  margin-top: 45px;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.project-row > .mono {
  color: #808875;
  font-size: 10px;
}
.project-row h3 {
  font-size: 26px;
}
.project-row > span:not(.mono) {
  font-size: 14px;
  color: #9fa693;
}
.project-row > svg {
  color: var(--orange);
}
.method {
  padding-top: 87px;
  padding-bottom: 85px;
  background: #111210;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-top: 38px;
}
.pipeline-step > .mono {
  color: #7a836c;
}
.pipeline-step h3 {
  font-size: 27px;
  margin-top: 20px;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}
.pipeline-step p {
  font-size: 14px;
  line-height: 1.8;
  color: #9ba58d;
}
.method-note {
  margin-top: 52px;
  padding-top: 25px;
  border-top: 1px solid #303827;
  display: flex;
  align-items: center;
  gap: 14px;
}
.method-note p {
  font-size: 13px;
  flex: 1;
  color: #a5b397;
}
.method-note a {
  font-size: 13px;
}
.products-teaser {
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
}
.products-teaser h2 {
  font-size: clamp(36px, 3.8vw, 62px);
  line-height: 1.12;
  margin: 25px 0;
}
.products-teaser h2 span {
  color: #939986;
}
.products-teaser > div > p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 410px;
  margin-bottom: 29px;
}
.product-list {
  padding-top: 20px;
}
.product-list > a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.product-list > a:first-child {
  border-top: 1px solid var(--line);
}
.product-list > a > svg {
  margin-left: auto;
  transition: transform 0.2s;
}
.product-list > a:hover > svg {
  transform: translate(3px, -3px);
  color: var(--orange);
}
.product-brand {
  width: 58px;
  height: 58px;
  background: #121510;
  border: 1px solid #30372b;
  display: grid;
  place-items: center;
  border-radius: 12px;
  flex-shrink: 0;
}
.product-list > a:hover .product-brand {
  border-color: #6f7a5b;
}
.product-list h3 {
  font-size: 22px;
  letter-spacing: -0.035em;
}
.product-list p {
  font-size: 13px;
  margin-top: 6px;
}
.product-lab-note {
  display: block;
  font-size: 10px;
  color: #858f79;
  margin-top: 24px;
}
.enterprise-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 65px;
  padding-bottom: 65px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr 1fr;
  gap: 45px;
  align-items: center;
}
.enterprise-band h2 {
  font-size: 39px;
  line-height: 1.12;
}
.enterprise-band > div > p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 22px;
}
.enterprise-band .eyebrow {
  color: #a2ad96;
  font-size: 11px;
}
.contact-band {
  background: var(--orange);
  color: #16120c;
  padding-top: 68px;
  padding-bottom: 55px;
  position: relative;
  overflow: hidden;
}
.contact-band .status-dot {
  background: #20140c;
}
.contact-band h2 {
  font-size: clamp(55px, 8.2vw, 135px);
  line-height: 1.03;
  margin-top: 44px;
  letter-spacing: -0.067em;
}
.contact-band h2 > span {
  color: #fce4c5;
}
.contact-band-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 30px;
}
.contact-band-bottom p {
  color: #48291d;
  font-size: 16px;
  line-height: 1.65;
}
.round-link {
  width: 110px;
  height: 110px;
  border: 1px solid #6e3e2c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition:
    background 0.25s,
    transform 0.25s;
}
.round-link svg {
  width: 48px;
  height: 48px;
}
.round-link:hover {
  background: #1d170f;
  color: var(--orange);
  transform: rotate(45deg);
}
.site-footer {
  padding: 68px 5.5% 0;
  background: #090909;
}
.footer-top {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.footer-brand {
  font-size: 100px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.11em;
}
.footer-brand span {
  color: var(--orange);
}
.footer-top > p {
  font-size: 18px;
  line-height: 1.5;
  color: #dddcd3;
}
.footer-top > p > span {
  color: #767c6d;
}
.footer-top > div > .eyebrow {
  color: #777f6d;
  font-size: 10px;
}
.footer-email {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 12px;
  font-size: 25px;
  letter-spacing: -0.04em;
}
.footer-links {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: 50px;
  padding: 45px 0 60px;
  margin-top: 43px;
  border-top: 1px solid var(--line);
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-links .eyebrow {
  color: #747d69;
  font-size: 10px;
  margin-bottom: 13px;
}
.footer-links a,
.footer-links p {
  font-size: 13px;
  color: #b7bfad;
  line-height: 1.9;
}
.footer-links a:hover {
  color: var(--orange);
}
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  font-size: 11px;
  color: #808977;
}
.footer-bottom > span {
  margin-right: auto;
}
.footer-bottom button,
.footer-bottom > a:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
}
.motion-indicator {
  display: inline-block;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: var(--orange);
}
.footer-bottom button[aria-pressed='true'] .motion-indicator {
  background: #777;
}
.nav-dialog {
  background: #161814 !important;
  color: #eee !important;
  padding: 35px !important;
  max-width: calc(100% - 40px) !important;
  width: 450px !important;
  border: 1px solid #404737;
  border-radius: 0 !important;
}
.nav-dialog nav {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  gap: 0;
}
.nav-dialog nav a {
  display: flex;
  justify-content: space-between;
  font-size: 27px;
  letter-spacing: -0.04em;
  border-bottom: 1px solid #353d2c;
  padding: 14px 0;
}
.nav-dialog [data-slot='dialog-description'] {
  color: #9da78e;
}
.nav-dialog [data-slot='dialog-title'] {
  font-size: 19px;
}
body [data-slot='dialog-overlay'] {
  background: #000b;
}
@keyframes signal {
  to {
    stroke-dashoffset: -1200;
  }
}
[data-reveal].in-view {
  animation: reveal 0.8s both;
}
@keyframes reveal {
  from {
    opacity: 0.35;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html[data-motion='paused'] *,
html[data-motion='paused'] *:before,
html[data-motion='paused'] *:after {
  animation-play-state: paused !important;
  scroll-behavior: auto !important;
}
.hero-art,
.hero-art img {
  will-change: transform;
}
@media (min-width: 1650px) {
  .section-pad,
  .site-header {
    padding-left: max(5.5%, calc((100vw - 1480px) /2));
    padding-right: max(5.5%, calc((100vw - 1480px) /2));
  }
  .hero-art {
    right: max(0%, calc((100vw - 1630px) /2));
  }
  .hero-copy {
    padding-top: 125px;
  }
  .hero {
    min-height: 880px;
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 19px;
    margin-right: 0;
  }
  .site-header {
    gap: 24px;
  }
  .hero-art {
    width: 64%;
    right: -13%;
    top: 100px;
  }
  .hero-copy {
    padding-top: 90px;
  }
  .hero h1 {
    font-size: 9vw;
  }
  .hero-description {
    font-size: 15px;
  }
  .capability-card {
    padding: 25px 17px;
  }
  .capability-card h3 {
    font-size: 22px;
  }
  .card-bottom .mono {
    font-size: 8px;
  }
  .intro-content {
    gap: 7%;
  }
  .pipeline {
    gap: 35px;
  }
  .enterprise-band {
    grid-template-columns: 1fr 1fr;
  }
  .enterprise-band > .eyebrow {
    grid-column: 1/-1;
  }
  .footer-email {
    font-size: 21px;
  }
  .proof-strip {
    gap: 25px;
  }
  .proof-strip > .eyebrow {
    width: 145px;
  }
  .client-names > span {
    font-size: 23px;
  }
  .client-names .nestle {
    font-size: 26px;
  }
  .client-names .oxfam {
    font-size: 21px;
  }
}
@media (max-width: 800px) {
  .site-header {
    height: 85px;
  }
  .brand img {
    width: 80px;
    height: 45px;
  }
  .desktop-nav {
    display: none;
  }
  .header-cta {
    margin-left: auto;
    font-size: 13px;
    padding: 10px 13px;
    gap: 12px;
  }
  .mobile-menu {
    display: block;
    color: #e6e9df;
  }
  .hero {
    min-height: auto;
  }
  .hero-coordinate {
    display: none;
  }
  .hero-topline {
    padding-top: 25px;
  }
  .hero-topline .eyebrow {
    font-size: 9px;
    letter-spacing: 0.055em;
  }
  .hero-copy {
    padding-top: 62px;
    padding-bottom: 220px;
  }
  .hero h1 {
    font-size: 12vw;
  }
  .hero-prelude {
    font-size: 21px;
    margin-bottom: 16px;
  }
  .hero-description {
    font-size: 15px;
    max-width: 350px;
  }
  .hero-art {
    width: 68%;
    right: -14%;
    top: auto;
    bottom: 39px;
    opacity: 0.85;
  }
  .hero-art img {
    mask-image: linear-gradient(180deg, transparent, #000 20%);
  }
  .hero-art:after {
    background: linear-gradient(90deg, #090909, transparent 40%);
  }
  .art-coordinate,
  .art-cross {
    display: none;
  }
  .hero-actions {
    gap: 22px;
    margin-top: 25px;
  }
  .button {
    font-size: 13px;
    padding: 14px 17px;
    gap: 20px;
  }
  .text-link {
    font-size: 13px;
  }
  .hero-bottom {
    padding: 17px 0;
  }
  .hero-bottom > .mono:not(.hero-index) {
    display: none;
  }
  .proof-strip {
    padding-top: 30px;
    padding-bottom: 30px;
    display: block;
    min-height: auto;
  }
  .proof-strip > .eyebrow {
    width: auto;
    font-size: 9px;
    margin-bottom: 25px;
  }
  .proof-strip > .eyebrow br {
    display: none;
  }
  .client-names {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 25px 30px;
  }
  .client-names > span,
  .client-names .oxfam {
    font-size: 21px;
  }
  .intro {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .intro-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 32px;
  }
  .intro h2 {
    font-size: 8vw;
    max-width: 550px;
  }
  .intro-copy {
    max-width: 600px;
  }
  .intro-copy p {
    max-width: 550px;
    font-size: 15px;
  }
  .intro-copy p:first-child {
    font-size: 17px;
  }
  .stats-row {
    margin-top: 42px;
    gap: 15px;
  }
  .stats-row strong {
    font-size: 5.3vw;
  }
  .stats-row > div:nth-child(2),
  .stats-row > div:last-child {
    padding-left: 10px;
  }
  .stats-row > div > span {
    font-size: 11px;
    line-height: 1.6;
    max-width: 120px;
  }
  .expertise-preview,
  .work-preview,
  .method {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-heading {
    gap: 25px;
    margin-bottom: 33px;
  }
  .section-heading h2 {
    font-size: 7vw;
    margin-top: 18px;
  }
  .section-heading > .text-link {
    max-width: 120px;
  }
  .section-heading > p {
    font-size: 13px;
  }
  .section-heading > div > p {
    font-size: 13px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .capabilities-grid {
    grid-template-columns: 1fr 1fr;
  }
  .capability-card {
    padding: 25px;
    border-bottom: 1px solid #353830;
  }
  .capability-card:nth-child(2) {
    border-right: 0;
  }
  .capability-card:nth-child(3),
  .capability-card:nth-child(4) {
    border-bottom: 0;
  }
  .card-top {
    margin-bottom: 27px;
  }
  .capability-card h3 {
    font-size: 24px;
  }
  .card-bottom .mono {
    font-size: 9px;
  }
  .featured-grid {
    gap: 20px;
  }
  .project-meta {
    display: block;
  }
  .project-meta .tag {
    margin-top: 10px;
  }
  .project-meta h3 {
    font-size: 23px;
  }
  .project-meta p {
    font-size: 12px;
  }
  .project-corner {
    font-size: 8px;
    left: 16px;
    top: 16px;
  }
  .project-image {
    aspect-ratio: 1;
  }
  .project-circle {
    width: 32px;
    height: 32px;
    right: 12px;
    bottom: 12px;
  }
  .project-circle svg {
    width: 18px;
  }
  .project-row {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
  }
  .project-row > .mono {
    width: 100%;
  }
  .project-row h3 {
    font-size: 22px;
  }
  .project-row > span:not(.mono) {
    font-size: 12px;
    flex: 1;
  }
  .pipeline {
    gap: 25px;
    grid-template-columns: 1fr 1fr;
    margin-top: 25px;
  }
  .pipeline-step h3 {
    font-size: 24px;
    margin-top: 12px;
  }
  .pipeline-step p {
    font-size: 13px;
  }
  .method-note {
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 23px;
    gap: 10px;
  }
  .method-note p {
    font-size: 12px;
    flex-basis: 85%;
  }
  .method-note a {
    margin-left: 17px;
    margin-top: 8px;
  }
  .products-teaser {
    padding-top: 60px;
    padding-bottom: 60px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .products-teaser h2 {
    font-size: 7.2vw;
  }
  .products-teaser > div > p {
    max-width: 550px;
    font-size: 15px;
  }
  .product-list {
    padding-top: 0;
  }
  .enterprise-band {
    padding-top: 40px;
    padding-bottom: 45px;
    gap: 25px;
  }
  .enterprise-band h2 {
    font-size: 32px;
  }
  .enterprise-band > div > p {
    font-size: 13px;
  }
  .contact-band {
    padding-top: 45px;
    padding-bottom: 40px;
  }
  .contact-band h2 {
    font-size: 10vw;
    margin-top: 30px;
  }
  .contact-band-bottom p {
    font-size: 13px;
  }
  .round-link {
    width: 75px;
    height: 75px;
  }
  .round-link svg {
    width: 34px;
    height: 34px;
  }
  .site-footer {
    padding-top: 48px;
  }
  .footer-top {
    grid-template-columns: 0.6fr 1fr;
    gap: 35px;
  }
  .footer-top > div:last-child {
    grid-column: 1/-1;
  }
  .footer-top > p {
    font-size: 16px;
  }
  .footer-brand {
    font-size: 85px;
  }
  .footer-email {
    font-size: 24px;
    margin-top: 8px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 33px;
    margin-top: 35px;
    padding-top: 35px;
    padding-bottom: 40px;
  }
  .footer-links > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 20px;
    font-size: 10px;
  }
  .footer-bottom > span {
    width: 100%;
  }
  .footer-bottom > a:last-child {
    margin-left: auto;
  }
}
@media (max-width: 480px) {
  .hero-actions {
    flex-wrap: wrap;
    gap: 20px;
  }
  .hero-copy {
    padding-bottom: 190px;
  }
  .hero-art {
    width: 84%;
    right: -27%;
    bottom: 50px;
  }
  .hero-description {
    max-width: 300px;
    font-size: 14px;
  }
  .hero h1 {
    font-size: 12.5vw;
  }
  .hero-copy {
    padding-top: 47px;
  }
  .hero-prelude {
    font-size: 19px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .section-heading > .text-link {
    max-width: none;
  }
  .section-heading h2 {
    font-size: 10vw;
  }
  .capability-card {
    padding: 20px 17px;
  }
  .capability-card h3 {
    font-size: 21px;
    line-height: 1.15;
  }
  .capability-card p {
    font-size: 12px;
  }
  .card-bottom .mono {
    font-size: 8px;
    letter-spacing: 0;
  }
  .card-bottom {
    gap: 6px;
  }
  .card-bottom svg {
    width: 16px;
  }
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .project-image {
    aspect-ratio: 1.25;
  }
  .project-meta {
    display: flex;
  }
  .project-meta .tag {
    margin-top: 0;
  }
  .project-meta p {
    max-width: 230px;
  }
  .project-row > span:not(.mono) {
    max-width: 180px;
  }
  .enterprise-band {
    grid-template-columns: 1fr;
  }
  .enterprise-band h2 {
    font-size: 10vw;
  }
  .enterprise-band > .eyebrow {
    grid-column: auto;
  }
  .products-teaser h2 {
    font-size: 9vw;
  }
  .contact-band h2 {
    font-size: 11vw;
  }
  .contact-band-bottom {
    gap: 20px;
  }
  .contact-band-bottom p {
    font-size: 12px;
  }
  .round-link {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }
  .round-link svg {
    width: 28px;
  }
  .stats-row strong {
    font-size: 6vw;
  }
  .stats-row > div > span {
    font-size: 10px;
  }
  .intro h2 {
    font-size: 9vw;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .hero-art,
  .hero-art img,
  [data-parallax] {
    transform: none !important;
    will-change: auto;
  }
  .scroll-progress {
    display: none;
  }
}
/* The same visual language, carried through every route. */
.page-intro {
  position: relative;
  padding-top: 70px;
  padding-bottom: 67px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-intro h1 {
  font-size: clamp(52px, 6.8vw, 112px);
  line-height: 1.06;
  margin-top: 39px;
  max-width: 1250px;
}
.page-intro h1 > .serif-word {
  color: var(--orange);
}
.page-intro > p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.8;
  margin-top: 32px;
}
.page-intro-cross {
  position: absolute;
  right: 6%;
  top: 75px;
  color: #505849;
  font-size: 32px;
  font-family: monospace;
}
.catalog-section {
  padding-top: 44px;
  padding-bottom: 65px;
}
.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.filter-group {
  display: flex;
  gap: 9px;
}
.filter-group button {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #3d4435;
  padding: 10px 17px;
  font-size: 14px;
  color: #a9b69b;
  transition: all 0.2s;
}
.filter-group button span {
  font-family: var(--font-mono);
  font-size: 10px;
  opacity: 0.65;
}
.filter-group button[aria-pressed='true'] {
  background: var(--foreground);
  color: #111b09;
  border-color: var(--foreground);
}
.filter-group button:hover {
  border-color: var(--orange);
}
.catalog-search {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 245px;
  padding: 0 12px;
  border-bottom: 1px solid #3a4231;
  color: #8e9d80;
}
.catalog-search [data-slot='input'] {
  font-size: 14px;
  border: none;
  height: 44px;
  border-radius: 0;
  background: none;
  padding: 0;
  box-shadow: none;
}
.catalog-search > button {
  display: flex;
  padding: 5px;
}
.catalog-count {
  font-size: 10px;
  color: #718361;
  margin-top: 25px;
  margin-bottom: 27px;
}
.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 30px;
}
.catalog-preview {
  position: relative;
  overflow: hidden;
}
.catalog-preview .catalog-arrow {
  background: #111820e8;
  color: #fff;
  border-color: #ffffff50;
  opacity: 1;
  pointer-events: none;
}
.catalog-industry {
  display: block;
  margin-bottom: 9px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.catalog-visual {
  position: relative;
  aspect-ratio: 1.45;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.catalog-visual > span.mono {
  position: absolute;
  left: 23px;
  top: 20px;
  font-size: 10px;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.7;
  z-index: 1;
}
.catalog-visual > strong {
  font-size: clamp(65px, 8vw, 135px);
  letter-spacing: -0.08em;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.5s;
}
.catalog-visual > img {
  width: 82%;
  box-shadow: 0 10px 30px #0002;
  transition: transform 0.5s;
}
.catalog-card:hover .catalog-visual > strong,
.catalog-card:hover .catalog-visual > img {
  transform: scale(1.06);
}
.catalog-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  border: 1px solid currentColor;
  border-radius: 50%;
  height: 36px;
  width: 36px;
  display: grid;
  place-items: center;
  opacity: 0.7;
}
.catalog-arrow > svg {
  width: 19px;
}
.catalog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  gap: 20px;
}
.catalog-card-meta h2 {
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.catalog-description {
  font-size: 15px;
  line-height: 1.75;
  margin-top: 11px;
  max-width: 510px;
}
.visual-legal {
  background: #d8e4db;
  color: #254635;
}
.visual-chair {
  background: #9bd0c2;
  color: #163d39;
}
.visual-myba {
  background: #cbc9bd;
  color: #272a24;
}
.visual-agilent {
  background: #bed9e6;
  color: #165887;
}
.visual-tourism {
  background: #d2b8ad;
  color: #683328;
}
.visual-learning {
  background: #c8d185;
  color: #455322;
}
.visual-roundtable {
  background: #b9b9d5;
  color: #404069;
}
.visual-chris {
  background: #c8d4ec;
  color: #243a5a;
}
.visual-talkyto {
  background: #ff624e;
  color: #fff;
}
.visual-sync {
  background: #d4e1f2;
  color: #397fdf;
}
.visual-nebion {
  background: #bcc8b1;
  color: #213722;
}
.empty-results {
  padding: 75px 0;
  text-align: center;
}
.empty-results h2 {
  font-size: 32px;
}
.empty-results p {
  margin: 20px 0;
}
.coming-soon {
  margin-top: 65px;
  padding: 35px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 30px;
  align-items: center;
}
.coming-soon h2 {
  font-size: 40px;
}
.coming-soon h2 > span {
  color: var(--orange);
  font-size: 28px;
  margin-left: 15px;
}
.coming-soon p {
  font-size: 14px;
  line-height: 1.7;
}
.reference-note {
  margin-top: 25px;
  max-width: 800px;
}
.reference-note p {
  font-size: 12px;
  color: #707e64;
}
.back-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  color: #98a48b;
  margin-bottom: 48px;
}
.back-link:hover {
  color: var(--orange);
}
.detail-hero {
  padding-top: 35px;
  padding-bottom: 54px;
}
.detail-heading h1 {
  font-size: clamp(46px, 6.2vw, 102px);
  line-height: 1.07;
  max-width: 1050px;
  margin-top: 24px;
}
.detail-heading > p {
  font-size: 19px;
  line-height: 1.8;
  margin-top: 26px;
  max-width: 670px;
}
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
}
.detail-tags > .text-link {
  margin-left: auto;
}
.detail-tags > .tag {
  font-size: 12px;
  padding: 6px 10px;
}
.detail-visual {
  height: 500px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.detail-visual > img {
  max-height: 72%;
  max-width: 76%;
  width: auto;
  height: auto;
  box-shadow: 0 20px 60px #0002;
  object-fit: contain;
}
.detail-visual > strong {
  font-size: 190px;
  letter-spacing: -0.08em;
  font-weight: 600;
}
.detail-visual > .detail-preview {
  width: min(76%, calc(360px * var(--detail-preview-ratio)));
  height: auto;
  box-shadow: 0 20px 60px #0002;
}
.detail-visual-label {
  position: absolute;
  left: 5.5%;
  top: 30px;
  text-transform: uppercase;
  font-size: 11px;
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 11%;
  padding-top: 78px;
  padding-bottom: 62px;
  align-items: start;
}
.story-layout aside {
  position: sticky;
  top: 40px;
}
.story-layout aside h2 {
  font-size: 30px;
  line-height: 1.15;
  margin-top: 25px;
  letter-spacing: -0.04em;
}
.story-layout dl {
  margin: 30px 0;
}
.story-layout dt {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #6c7d5d;
  margin-top: 20px;
}
.story-layout dd {
  font-size: 15px;
  margin-top: 6px;
  color: #b9c5ad;
}
.story-prose section {
  padding-bottom: 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--line);
}
.story-prose section:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.story-prose .mono {
  color: var(--orange);
  font-size: 11px;
}
.story-prose h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-top: 17px;
  margin-bottom: 22px;
  max-width: 630px;
}
.story-prose p {
  font-size: 17px;
  line-height: 1.95;
  color: #b0bca4;
}
.source-note {
  padding-bottom: 55px;
}
.source-note p {
  font-size: 12px;
}
.source-note a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #bcc8b0;
}
.product-catalog {
  padding-top: 65px;
  padding-bottom: 65px;
}
.product-preview-catalog {
  width: min(1200px, 88%);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px 32px;
}
.product-preview-catalog .product-feature {
  display: block;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
.product-feature-copy {
  display: block;
  padding-top: 24px;
}
.product-preview-catalog .product-feature h2 {
  font-size: clamp(26px, 2.5vw, 36px);
  margin-top: 12px;
}
@media (max-width: 700px) {
  .product-preview-catalog {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.product-feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 9%;
  align-items: center;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.product-feature:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.product-feature-mark {
  aspect-ratio: 1.1;
  position: relative;
  display: grid;
  place-items: center;
}
.product-feature-mark > .mono {
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.65;
}
.product-feature-mark > strong {
  font-size: 130px;
  letter-spacing: -0.085em;
  transition: transform 0.4s;
}
.product-feature:hover .product-feature-mark > strong {
  transform: scale(1.08);
}
.product-feature h2 {
  font-size: 46px;
  line-height: 1.1;
  margin-top: 25px;
}
.product-feature p {
  margin-top: 22px;
  font-size: 17px;
  max-width: 460px;
}
.product-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}
.product-feature-tags > span {
  font-size: 11px;
  border: 1px solid #34442a;
  padding: 6px 9px;
  color: #9fb78c;
}
.product-detail-heading {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}
.product-detail-heading .detail-heading {
  max-width: 75%;
}
.product-detail-mark {
  width: 180px;
  height: 180px;
  border-radius: 35px;
  display: grid;
  place-items: center;
  font-size: 110px;
  letter-spacing: -0.06em;
  flex-shrink: 0;
  font-weight: 600;
}
.product-detail-heading h1 {
  font-size: clamp(45px, 5.5vw, 90px);
}
.product-detail-heading .button {
  margin-top: 28px;
}
.feature-checks {
  list-style: none;
  padding: 0;
  margin: 25px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-checks > li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #acbfa0;
}
.feature-checks svg {
  color: var(--orange);
  margin-top: 4px;
}
.expertise-jump {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.expertise-jump a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  padding: 25px 0;
  padding-right: 20px;
}
.expertise-jump .mono {
  color: #6a805a;
  font-size: 10px;
}
.expertise-jump svg {
  color: var(--orange);
  margin-left: auto;
}
.expertise-jump a:hover {
  color: var(--orange);
}
.expertise-detail {
  padding-top: 75px;
  padding-bottom: 75px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  scroll-margin-top: 30px;
}
.expertise-large-icon {
  display: block;
  margin: 42px 0 26px;
  color: var(--orange);
}
.expertise-detail-intro h2 {
  font-size: 48px;
  line-height: 1.08;
  max-width: 520px;
}
.expertise-detail-intro p {
  font-size: 17px;
  margin-top: 28px;
  max-width: 490px;
  line-height: 1.85;
}
.expertise-services {
  padding-top: 15px;
}
.expertise-services > div {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.expertise-services > div:first-child {
  padding-top: 0;
}
.expertise-services > div:last-child {
  border: 0;
  padding-bottom: 0;
}
.expertise-services h3 {
  font-size: 24px;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.expertise-services p {
  font-size: 16px;
  line-height: 1.8;
}
.sovereign-note {
  padding-top: 44px;
  padding-bottom: 44px;
  background: #151a12;
  display: flex;
  gap: 32px;
  align-items: center;
}
.sovereign-note > svg {
  color: #96b783;
}
.sovereign-note > div {
  flex: 1;
}
.sovereign-note h2 {
  font-size: 28px;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.sovereign-note p {
  font-size: 15px;
  line-height: 1.8;
  max-width: 680px;
}
.approach-section {
  padding-top: 85px;
  padding-bottom: 85px;
}
.engagements {
  gap: 30px !important;
}
.engagement-tabs {
  background: none !important;
  border-bottom: 1px solid #394b2f;
  width: 100% !important;
  height: auto !important;
  justify-content: flex-start !important;
  gap: 35px !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.engagement-tabs [data-slot='tabs-trigger'] {
  border-radius: 0;
  padding: 18px 0 !important;
  font-size: 15px;
  flex: none;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #8ea17e;
}
.engagement-tabs [data-slot='tabs-trigger'][data-active] {
  color: var(--orange);
}
.engagement-tabs [data-slot='tabs-trigger']:after {
  bottom: -1px;
  background: var(--orange);
}
.engagement-panel {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 12%;
  padding-top: 15px;
}
.engagement-panel h3 {
  font-size: 35px;
  line-height: 1.15;
  max-width: 550px;
  margin-bottom: 23px;
}
.engagement-panel p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 27px;
}
.engagement-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.engagement-panel li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: #b3c4a6;
}
.engagement-panel li svg {
  color: var(--orange);
}
.tech-note {
  background: #11150f;
  border-top: 1px solid var(--line);
  padding-top: 60px;
  padding-bottom: 65px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 12%;
}
.tech-note > .eyebrow {
  grid-column: 1/-1;
}
.tech-note h2 {
  font-size: 43px;
  line-height: 1.14;
}
.tech-note h2 span {
  color: #859978;
}
.tech-note p {
  font-size: 16px;
  line-height: 1.9;
  align-self: center;
}
.studio-manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
  padding-top: 75px;
  padding-bottom: 75px;
  overflow: hidden;
}
.studio-sculpture {
  transform: translateY(var(--shift, 0px));
}
.studio-sculpture img {
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse, #000 40%, transparent 70%);
}
.studio-manifesto h2 {
  font-size: 49px;
  line-height: 1.1;
  margin: 26px 0;
}
.studio-manifesto h2 span {
  color: var(--orange);
}
.studio-manifesto p {
  font-size: 16px;
  line-height: 1.9;
  margin-top: 23px;
}
.studio-history {
  padding-top: 65px;
  padding-bottom: 75px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 11%;
}
.studio-history h2 {
  font-size: 53px;
  line-height: 1.13;
  margin-bottom: 30px;
}
.studio-history p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 24px;
  max-width: 750px;
}
.studio-values {
  padding-top: 80px;
  padding-bottom: 80px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.values-grid > div {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.values-grid .mono {
  color: var(--orange);
}
.values-grid h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-top: 30px;
  margin-bottom: 22px;
}
.values-grid p {
  font-size: 15px;
  line-height: 1.9;
}
.journal-list {
  padding-top: 35px;
  padding-bottom: 65px;
}
.journal-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.journal-top > .mono {
  font-size: 10px;
  color: #859979;
}
.journal-top > .text-link {
  font-size: 12px;
}
.journal-item {
  display: grid;
  grid-template-columns: 260px 1fr 100px;
  gap: 45px;
  align-items: center;
  padding: 45px 0;
  border-bottom: 1px solid var(--line);
}
.journal-art {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #1a2713;
}
.journal-art > span:first-child {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.journal-art > span:last-child {
  font-size: 190px;
  letter-spacing: -0.1em;
  line-height: 1;
  font-weight: 400;
  transition: transform 0.4s;
}
.journal-item:hover .journal-art > span:last-child {
  transform: rotate(-12deg) scale(1.12);
}
.journal-art-orange {
  background: var(--orange);
  color: #452714;
}
.journal-art-green {
  background: #a0bca1;
  color: #375141;
}
.journal-art-silver {
  background: #c8d0ca;
  color: #526556;
}
.journal-item h2 {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-top: 20px;
  margin-bottom: 20px;
}
.journal-item p {
  font-size: 16px;
  max-width: 570px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.journal-item time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #829b72;
  align-self: start;
  padding-top: 4px;
  text-align: right;
}
.article-hero {
  padding-top: 35px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.article-hero > .eyebrow {
  color: var(--orange);
  display: flex;
  margin-top: 20px;
}
.article-hero h1 {
  font-size: clamp(47px, 6.5vw, 104px);
  line-height: 1.08;
  max-width: 1130px;
  margin-top: 23px;
}
.article-hero > p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 730px;
  margin-top: 27px;
}
.article-byline {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 35px;
}
.byline-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #212c1a;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: -0.07em;
  font-size: 23px;
}
.article-byline > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.article-byline strong {
  font-size: 13px;
  font-weight: 500;
}
.article-byline > div > span {
  font-size: 12px;
  color: #7f9870;
}
.article-layout {
  grid-template-columns: 1fr 2.5fr;
  gap: 10%;
}
.article-layout aside nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}
.article-layout aside nav a {
  font-size: 13px;
  color: #91aa83;
  line-height: 1.6;
}
.article-layout aside nav a:hover {
  color: var(--orange);
}
.article-layout .story-prose {
  max-width: 800px;
}
.article-layout .story-prose section {
  scroll-margin-top: 35px;
}
.contact-layout {
  padding-top: 65px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 12%;
}
.contact-layout aside h2 {
  font-size: 45px;
  line-height: 1.12;
  margin-top: 29px;
  margin-bottom: 25px;
}
.contact-layout aside > p {
  font-size: 17px;
  line-height: 1.85;
  max-width: 395px;
}
.contact-email {
  font-size: 26px;
  letter-spacing: -0.045em;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  color: var(--orange);
}
.contact-location {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 35px;
}
.contact-location .eyebrow {
  font-size: 10px;
  color: #7e976e;
}
.contact-location > a {
  font-size: 16px;
  color: #b6c6ab;
}
.next-steps {
  margin-top: 45px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.next-steps ol {
  padding-left: 22px;
  font-size: 14px;
  color: #9eb58e;
  line-height: 1.85;
  margin-top: 17px;
}
.next-steps li {
  margin-bottom: 13px;
  padding-left: 7px;
}
.contact-form h2,
.brief-review h2 {
  font-size: 35px;
  line-height: 1.16;
  margin-bottom: 35px;
}
.contact-form fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 30px;
}
.form-label {
  display: block;
  font-size: 13px;
  color: #c5d2bd;
  margin-bottom: 10px;
}
.form-label > span {
  color: var(--orange);
}
.form-label > small {
  color: #728d60;
  margin-left: 6px;
  font-size: 11px;
}
.interest-options {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.interest-options > label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid #35482a;
  font-size: 12px;
  cursor: pointer;
  color: #98b087;
  min-height: 54px;
  transition: border-color 0.2s;
}
.interest-options > label.selected {
  border-color: var(--orange);
  background: #ff603809;
  color: var(--foreground);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form [data-slot='input'],
.contact-form [data-slot='textarea'],
.prepared-brief {
  border-radius: 0 !important;
  border-color: #35482a;
  background: #11160d !important;
  font-size: 16px !important;
  padding: 13px 15px !important;
  line-height: 1.6;
  margin-bottom: 26px;
  box-shadow: none !important;
  height: auto;
  min-height: 52px;
}
.contact-form [data-slot='textarea'] {
  min-height: 155px;
  margin-bottom: 8px;
  resize: vertical;
}
.contact-form [data-slot='input']::placeholder,
.contact-form [data-slot='textarea']::placeholder {
  color: #60744f;
}
.character-count {
  display: block;
  text-align: right;
  color: #728d60;
  font-size: 10px;
  margin-bottom: 27px;
}
.form-fineprint {
  font-size: 12px !important;
  line-height: 1.8 !important;
  color: #7c946b !important;
  margin-top: 22px !important;
  max-width: 520px;
}
.form-fineprint a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-error {
  color: #ffa185;
  margin: 0 0 20px;
  font-size: 14px;
}
.brief-review > p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}
.brief-review > .eyebrow {
  color: var(--orange);
  margin-bottom: 22px;
}
.brief-review h2 {
  font-size: 42px;
  margin-bottom: 24px;
}
.brief-review h2:focus,
.contact-form h2:focus {
  outline: none;
}
.brief-review .prepared-brief {
  width: 100%;
  font-size: 14px !important;
  min-height: 285px;
  resize: vertical;
  line-height: 1.8;
}
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.review-actions .button {
  gap: 14px;
}
.copy-status {
  font-size: 13px !important;
  color: #bad3a6;
  min-height: 23px;
  margin-top: 12px;
  margin-bottom: 15px !important;
}
.privacy-prose {
  max-width: 1100px;
  padding-top: 60px;
  padding-bottom: 75px;
  margin: auto;
}
.privacy-prose section {
  margin-bottom: 42px;
}
.privacy-prose h2 {
  font-size: 31px;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.privacy-prose p {
  font-size: 17px;
  line-height: 1.9;
  margin-top: 15px;
}
.privacy-prose a {
  text-decoration: underline;
  color: #bccfae;
}
.not-found {
  padding-top: 90px;
  padding-bottom: 100px;
  min-height: 70vh;
}
.not-found > .eyebrow {
  color: var(--orange);
}
.not-found h1 {
  font-size: clamp(45px, 6vw, 94px);
  line-height: 1.1;
  margin-top: 35px;
}
.not-found > p {
  font-size: 18px;
  margin: 30px 0;
}
.not-found > div {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1100px) {
  .page-intro h1 {
    font-size: 7.4vw;
  }
  .expertise-jump a {
    font-size: 10px;
    gap: 8px;
    padding-right: 12px;
  }
  .expertise-detail {
    gap: 7%;
  }
  .expertise-detail-intro h2 {
    font-size: 42px;
  }
  .journal-item {
    grid-template-columns: 210px 1fr;
    gap: 30px;
  }
  .journal-item time {
    display: none;
  }
  .journal-item h2 {
    font-size: 31px;
  }
  .contact-layout {
    gap: 7%;
  }
  .contact-email {
    font-size: 23px;
  }
  .product-feature h2 {
    font-size: 40px;
  }
  .story-layout {
    gap: 7%;
  }
  .detail-heading h1 {
    font-size: 7vw;
  }
}
@media (max-width: 800px) {
  .page-intro {
    padding-top: 45px;
    padding-bottom: 42px;
  }
  .page-intro h1 {
    font-size: 9vw;
    margin-top: 29px;
  }
  .page-intro > p {
    font-size: 16px;
    margin-top: 25px;
    max-width: 560px;
  }
  .page-intro-cross {
    top: 42px;
    font-size: 25px;
  }
  .catalog-section {
    padding-top: 28px;
    padding-bottom: 40px;
  }
  .catalog-controls {
    flex-wrap: wrap;
    gap: 22px;
  }
  .filter-group {
    gap: 7px;
  }
  .filter-group button {
    padding: 10px 14px;
    font-size: 12px;
    gap: 12px;
  }
  .catalog-search {
    width: 100%;
    max-width: 320px;
    padding-left: 0;
  }
  .catalog-count {
    margin-bottom: 22px;
  }
  .catalog-grid {
    gap: 35px 20px;
  }
  .catalog-card-meta {
    display: block;
  }
  .catalog-card-meta h2 {
    font-size: 23px;
  }
  .catalog-card-meta .tag {
    margin-top: 10px;
  }
  .catalog-description {
    font-size: 14px;
  }
  .catalog-visual {
    aspect-ratio: 1.12;
  }
  .catalog-visual > span.mono {
    font-size: 8px;
    top: 16px;
    left: 16px;
  }
  .catalog-arrow {
    width: 30px;
    height: 30px;
    right: 12px;
    bottom: 12px;
  }
  .coming-soon {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
    gap: 20px;
    padding: 30px 0;
  }
  .coming-soon .eyebrow {
    grid-column: 1/-1;
  }
  .coming-soon h2 {
    font-size: 32px;
  }
  .coming-soon p {
    font-size: 13px;
  }
  .detail-hero {
    padding-top: 25px;
    padding-bottom: 36px;
  }
  .back-link {
    margin-bottom: 35px;
    font-size: 10px;
  }
  .detail-heading h1 {
    font-size: 9vw;
    margin-top: 21px;
  }
  .detail-heading > p {
    font-size: 16px;
    margin-top: 23px;
  }
  .detail-tags {
    gap: 8px;
    margin-top: 25px;
  }
  .detail-tags > .tag {
    font-size: 10px;
  }
  .detail-tags > .text-link {
    margin-left: 0;
    width: 100%;
    margin-top: 12px;
  }
  .detail-visual {
    height: 350px;
  }
  .detail-visual > img {
    max-width: 85%;
  }
  .detail-visual > .detail-preview {
    width: min(85%, calc(252px * var(--detail-preview-ratio)));
  }
  .detail-visual > strong {
    font-size: 130px;
  }
  .detail-visual-label {
    font-size: 9px;
    top: 22px;
  }
  .story-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 42px;
    padding-bottom: 40px;
  }
  .story-layout aside {
    position: relative;
    top: 0;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
  }
  .story-layout aside dl {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px 15px;
    margin: 22px 0;
  }
  .story-layout aside dl dt,
  .story-layout aside dl dd {
    margin: 0;
    align-self: center;
  }
  .story-layout aside h2 {
    font-size: 27px;
    margin-top: 16px;
  }
  .story-prose h2 {
    font-size: 29px;
    margin-top: 15px;
    margin-bottom: 19px;
  }
  .story-prose p {
    font-size: 16px;
    line-height: 1.9;
  }
  .story-prose section {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
  .source-note {
    padding-bottom: 35px;
  }
  .product-catalog {
    padding-top: 40px;
    padding-bottom: 45px;
  }
  .product-feature {
    gap: 6%;
    padding-bottom: 38px;
    margin-bottom: 38px;
  }
  .product-feature h2 {
    font-size: 30px;
    margin-top: 18px;
  }
  .product-feature p {
    font-size: 14px;
    margin-top: 19px;
  }
  .product-feature-tags {
    gap: 6px;
    margin: 18px 0;
  }
  .product-feature-tags > span {
    font-size: 9px;
  }
  .product-feature-mark {
    aspect-ratio: 0.85;
  }
  .product-feature-mark > .mono {
    font-size: 8px;
    left: 17px;
    top: 18px;
  }
  .product-feature-mark > strong {
    font-size: 100px;
  }
  .product-detail-heading {
    gap: 25px;
  }
  .product-detail-mark {
    width: 100px;
    height: 100px;
    font-size: 68px;
    border-radius: 22px;
  }
  .product-detail-heading .detail-heading {
    max-width: 75%;
  }
  .product-detail-heading h1 {
    font-size: 7.8vw;
  }
  .feature-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0 22px;
  }
  .feature-checks > li {
    font-size: 13px;
  }
  .expertise-jump {
    grid-template-columns: 1fr 1fr;
  }
  .expertise-jump a {
    font-size: 12px;
    padding: 20px 16px 20px 0;
    gap: 12px;
  }
  .expertise-jump a:nth-child(1),
  .expertise-jump a:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
  .expertise-detail {
    padding-top: 45px;
    padding-bottom: 45px;
    gap: 35px;
    grid-template-columns: 1fr;
  }
  .expertise-large-icon {
    width: 44px;
    height: 44px;
    margin: 26px 0 20px;
  }
  .expertise-detail-intro h2 {
    font-size: 39px;
  }
  .expertise-detail-intro p {
    max-width: 600px;
    font-size: 16px;
    margin-top: 23px;
  }
  .expertise-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 27px;
    padding-top: 0;
  }
  .expertise-services > div {
    padding: 0 0 25px;
  }
  .expertise-services h3 {
    font-size: 22px;
  }
  .expertise-services p {
    font-size: 14px;
  }
  .expertise-services > div:nth-child(3) {
    border: 0;
  }
  .sovereign-note {
    padding-top: 32px;
    padding-bottom: 35px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .sovereign-note > svg {
    width: 33px;
    height: 33px;
  }
  .sovereign-note h2 {
    font-size: 24px;
  }
  .sovereign-note p {
    font-size: 14px;
  }
  .sovereign-note > a {
    margin-left: 53px;
  }
  .approach-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .engagement-tabs {
    gap: 20px !important;
  }
  .engagement-tabs [data-slot='tabs-trigger'] {
    font-size: 12px;
    padding: 14px 0 !important;
  }
  .engagement-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 4px;
  }
  .engagement-panel h3 {
    font-size: 29px;
  }
  .engagement-panel p {
    font-size: 15px;
  }
  .engagement-panel li {
    font-size: 14px;
    padding: 15px 0;
  }
  .tech-note {
    padding-top: 40px;
    padding-bottom: 45px;
    gap: 25px;
    grid-template-columns: 1fr;
  }
  .tech-note h2 {
    font-size: 36px;
  }
  .tech-note p {
    font-size: 15px;
  }
  .studio-manifesto {
    grid-template-columns: 1fr;
    padding-top: 25px;
    padding-bottom: 45px;
    gap: 5px;
  }
  .studio-sculpture {
    max-width: 450px;
    margin: 0 auto;
  }
  .studio-manifesto h2 {
    font-size: 42px;
  }
  .studio-manifesto p {
    font-size: 16px;
  }
  .studio-history {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 45px;
    gap: 25px;
  }
  .studio-history h2 {
    font-size: 42px;
  }
  .studio-history p {
    font-size: 16px;
  }
  .studio-values {
    padding-top: 50px;
    padding-bottom: 45px;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 25px;
  }
  .values-grid h3 {
    font-size: 25px;
    margin-top: 22px;
    margin-bottom: 17px;
  }
  .values-grid p {
    font-size: 14px;
  }
  .journal-list {
    padding-top: 25px;
    padding-bottom: 40px;
  }
  .journal-item {
    grid-template-columns: 170px 1fr;
    gap: 25px;
    padding: 30px 0;
  }
  .journal-art > span:last-child {
    font-size: 130px;
  }
  .journal-item h2 {
    font-size: 27px;
    margin-top: 13px;
    margin-bottom: 15px;
  }
  .journal-item p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .journal-item .eyebrow {
    font-size: 9px;
  }
  .article-hero {
    padding-top: 25px;
    padding-bottom: 40px;
  }
  .article-hero h1 {
    font-size: 9vw;
  }
  .article-hero > p {
    font-size: 17px;
    margin-top: 22px;
  }
  .article-byline {
    margin-top: 28px;
  }
  .article-layout aside nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-top: 18px;
  }
  .article-layout aside nav a {
    font-size: 12px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 40px;
    padding-bottom: 55px;
  }
  .contact-layout aside h2 {
    font-size: 37px;
    margin-top: 23px;
    margin-bottom: 20px;
  }
  .contact-layout aside > p {
    font-size: 16px;
    max-width: 550px;
  }
  .contact-email {
    font-size: 25px;
    margin-top: 25px;
  }
  .contact-location {
    margin-top: 25px;
  }
  .next-steps {
    margin-top: 30px;
    padding-top: 24px;
  }
  .next-steps ol {
    font-size: 13px;
    max-width: 490px;
  }
  .contact-form h2 {
    font-size: 32px;
    margin-bottom: 27px;
  }
  .privacy-prose {
    padding-top: 40px;
    padding-bottom: 45px;
  }
  .privacy-prose h2 {
    font-size: 28px;
  }
  .privacy-prose p {
    font-size: 16px;
  }
  .not-found {
    padding-top: 60px;
    padding-bottom: 65px;
  }
}
@media (max-width: 480px) {
  .page-intro h1 {
    font-size: 11vw;
  }
  .page-intro > p {
    font-size: 15px;
  }
  .page-intro-cross {
    font-size: 22px;
    top: 40px;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .catalog-visual {
    aspect-ratio: 1.38;
  }
  .catalog-visual > strong {
    font-size: 95px;
  }
  .catalog-card-meta {
    display: flex;
    margin-top: 18px;
  }
  .catalog-card-meta .tag {
    margin-top: 0;
  }
  .catalog-card-meta h2 {
    font-size: 24px;
  }
  .catalog-visual > span.mono {
    font-size: 9px;
  }
  .filter-group {
    width: 100%;
    gap: 7px;
  }
  .filter-group button {
    font-size: 11px;
    flex: 1;
    gap: 10px;
    padding: 10px 11px;
    white-space: nowrap;
  }
  .catalog-controls {
    gap: 15px;
  }
  .catalog-search {
    max-width: none;
  }
  .detail-visual {
    height: 250px;
  }
  .detail-visual > .detail-preview {
    width: min(85%, calc(180px * var(--detail-preview-ratio)));
  }
  .detail-visual > strong {
    font-size: 100px;
  }
  .detail-heading h1 {
    font-size: 10vw;
  }
  .product-feature {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .product-feature-mark {
    aspect-ratio: 1.4;
  }
  .product-feature-mark > strong {
    font-size: 95px;
  }
  .product-feature h2 {
    font-size: 36px;
  }
  .product-feature p {
    font-size: 16px;
  }
  .product-feature-tags > span {
    font-size: 10px;
  }
  .product-detail-heading {
    display: block;
  }
  .product-detail-heading .detail-heading {
    max-width: none;
  }
  .product-detail-heading h1 {
    font-size: 11vw;
  }
  .product-detail-mark {
    margin-top: 30px;
    width: 85px;
    height: 85px;
    font-size: 60px;
    border-radius: 18px;
  }
  .feature-checks {
    grid-template-columns: 1fr;
  }
  .expertise-jump a {
    font-size: 10px;
    gap: 9px;
    padding-right: 13px;
  }
  .expertise-jump svg {
    width: 13px;
  }
  .expertise-detail-intro h2 {
    font-size: 10vw;
  }
  .expertise-services {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .expertise-services p {
    font-size: 16px;
  }
  .expertise-services > div:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }
  .engagement-tabs {
    gap: 13px !important;
  }
  .engagement-tabs [data-slot='tabs-trigger'] {
    font-size: 11px;
  }
  .engagement-panel h3 {
    font-size: 29px;
  }
  .studio-manifesto h2,
  .studio-history h2 {
    font-size: 10vw;
  }
  .values-grid h3 {
    font-size: 23px;
  }
  .values-grid p {
    font-size: 14px;
  }
  .journal-item {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .journal-art {
    aspect-ratio: 1.8;
  }
  .journal-art > span:last-child {
    font-size: 150px;
  }
  .journal-item h2 {
    font-size: 32px;
  }
  .journal-item p {
    font-size: 16px;
  }
  .article-hero h1 {
    font-size: 11vw;
  }
  .article-layout aside nav {
    grid-template-columns: 1fr;
  }
  .article-hero > p {
    font-size: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .interest-options > label {
    padding: 13px 10px;
    font-size: 11px;
    gap: 9px;
  }
  .contact-form h2 {
    font-size: 30px;
  }
  .review-actions {
    flex-direction: column;
  }
  .review-actions .button {
    width: 100%;
  }
  .brief-review h2 {
    font-size: 35px;
  }
  .story-prose h2 {
    font-size: 27px;
  }
  .coming-soon h2 {
    font-size: 29px;
  }
}
.filter-group {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
.copy-status {
  display: block;
}
.capability-card p {
  font-size: 16px;
  line-height: 1.7;
}
.pipeline-step p {
  font-size: 16px;
}
.hero-art {
  pointer-events: none;
}
.footer-bottom > button {
  min-height: 36px;
}
.engagement-panel[hidden] {
  display: none !important;
}
@media (max-width: 800px) {
  .capability-card p,
  .pipeline-step p {
    font-size: 14px;
  }
  .hero-copy {
    pointer-events: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .studio-sculpture {
    transform: none !important;
  }
}

:root {
  --primary: var(--orange);
  --primary-foreground: #090909;
  --card: var(--surface);
  --border: var(--line);
}
