@font-face {
  font-family: DM Sans;
  src: url("/assets/fonts/dm-sans.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Fraunces;
  src: url("/assets/fonts/fraunces.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #17201d;
  --body: #343c38;
  --muted: #5f6862;
  --red: #ac2637;
  --gold: #f0c64b;
  --green: #174e43;
  --line: #dce1db;
  --mist: #edf1ec;
  --white: #fff;
  --display: Fraunces, Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --gutter: 56px;
  --page: 1328px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 115px;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font: 400 17px/1.6 var(--sans);
  letter-spacing: 0;
}
button,
input,
textarea,
select {
  font: inherit;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
h1,
h2 {
  font-family: var(--display);
  line-height: 1.06;
  text-wrap: balance;
}
h2 {
  font-size: 54px;
}
h3 {
  font-size: 24px;
  line-height: 1.3;
}
p {
  max-width: 65ch;
}
button {
  border-radius: 0;
}
::selection {
  background: var(--gold);
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid #a75712;
  outline-offset: 5px;
}
section[id] {
  scroll-margin-top: 110px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(100% - var(--gutter) * 2, var(--page));
  margin-inline: auto;
}
.section {
  padding-block: 104px;
}
.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
}
.intro-text {
  font-size: 20px;
  line-height: 1.65;
  color: var(--body);
}
.muted {
  color: var(--muted);
}
.icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: none;
  background: currentColor;
  mask: var(--icon) no-repeat center/contain;
  -webkit-mask: var(--icon) no-repeat center/contain;
}
.arrow {
  --icon: url("/assets/icons/arrow-up-right.svg");
}
.east {
  --icon: url("/assets/icons/arrow-right.svg");
}
.plus {
  --icon: url("/assets/icons/plus.svg");
}
.copy {
  --icon: url("/assets/icons/copy.svg");
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand {
  display: block;
  flex: none;
  width: 180px;
}
.brand img {
  width: 100%;
  height: 46px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}
.main-nav a {
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  padding: 13px 0;
  position: relative;
  white-space: nowrap;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: 4px;
  height: 2px;
  left: 0;
  right: 100%;
  background: var(--red);
  transition: right 0.2s;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  right: 0;
}
.main-nav .nav-cta {
  display: flex;
  align-items: center;
  gap: 22px;
  border-left: 1px solid var(--line);
  padding-left: 30px;
  font-weight: 600;
}
.menu-button {
  display: none;
}
.weave {
  height: 28px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  background: var(--ink);
  border-block: 3px solid var(--ink);
}
.weave span {
  border-inline: 3px solid var(--ink);
}
.weave span:nth-child(3n + 1) {
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 5px,
    var(--ink) 5px 8px
  );
}
.weave span:nth-child(3n + 2) {
  background: var(--red);
  border-block: 4px solid var(--gold);
}
.weave span:nth-child(3n) {
  background: repeating-linear-gradient(
    135deg,
    var(--green) 0 10px,
    var(--white) 10px 13px,
    var(--green) 13px 23px
  );
}
.hero {
  position: relative;
  color: white;
  isolation: isolate;
  min-height: 490px;
  height: min(680px, calc(100svh - 235px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero > picture,
.hero > picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(8, 25, 19, 0.82) 0%,
    rgba(8, 25, 19, 0.57) 40%,
    rgba(8, 25, 19, 0.06) 78%
  );
}
.hero-content {
  padding-block: 48px;
  position: relative;
}
.hero .eyebrow {
  margin-bottom: 16px;
  color: #fff;
}
.hero h1 {
  font-size: 174px;
  line-height: 1.05;
  margin-left: 0;
  margin-bottom: 22px;
  max-width: 900px;
}
.hero p {
  font-size: 22px;
  line-height: 1.5;
  max-width: 485px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 54px;
  padding: 15px 22px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    background 0.2s,
    color 0.2s;
}
.button:hover {
  background: #275643;
}
.button.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #172e25;
}
.button.gold:hover {
  background: #f0c664;
}
.button.light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.button.light:hover {
  background: var(--mist);
}
.button.outline {
  background: transparent;
  color: var(--ink);
  border-color: #8c9b90;
}
.button.outline:hover {
  background: var(--mist);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-block: 8px;
}
.text-link .icon,
.button .icon {
  transition: transform 0.2s;
}
.text-link:hover .icon,
.button:hover .icon {
  transform: translateX(4px);
}
.hero-edge {
  position: absolute;
  right: var(--gutter);
  bottom: 26px;
  font-size: 11px;
  writing-mode: vertical-rl;
  line-height: 1.4;
}
.hero-index {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 23px;
  font-size: 12px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.hero-index a {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.hero-index .icon {
  width: 17px;
  height: 17px;
  transform: rotate(90deg);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}
.section-heading h2 {
  max-width: 620px;
}
.section-heading .intro-text {
  font-size: 18px;
  max-width: 510px;
}
.section-heading .eyebrow {
  grid-column: 1/-1;
  margin: 0;
}
.section-heading .heading-block .eyebrow {
  margin-bottom: 24px;
}
.anansi-sign {
  height: 52px;
  width: 62px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.intro-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}
.intro-heading .anansi-sign {
  margin-bottom: 6px;
}
.services {
  border-top: 1px solid var(--line);
}
.service {
  border-bottom: 1px solid var(--line);
  position: relative;
}
.service::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--service-color, var(--red));
}
.service:nth-child(2) {
  --service-color: var(--gold);
}
.service:nth-child(3) {
  --service-color: var(--ink);
}
.service summary {
  display: grid;
  grid-template-columns: 64px 1.15fr 1fr 32px;
  align-items: center;
  gap: 28px;
  list-style: none;
  cursor: pointer;
  padding: 32px 30px;
}
.service summary::-webkit-details-marker,
details summary::-webkit-details-marker {
  display: none;
}
.service summary:hover {
  background: #f7f8f5;
}
.service-number {
  font: 400 17px var(--sans);
  color: var(--muted);
}
.service-title {
  font: 500 42px/1.2 var(--display);
}
.service-blurb {
  font-size: 15px;
  color: var(--body);
  max-width: 35ch;
}
.service[open] {
  background: #f5f7f3;
}
.service[open] summary .plus {
  --icon: url("/assets/icons/minus.svg");
}
.service-body {
  padding: 0 88px 34px 122px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
}
.service-body p {
  font-size: 16px;
  color: var(--body);
}
.service-body ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.9;
}
.service-body .text-link {
  margin-top: 18px;
}
.audiences {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.audience {
  padding: 60px max(var(--gutter), calc((100vw - var(--page)) / 2));
  padding-right: 56px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
}
.audience + .audience {
  padding-left: 56px;
  padding-right: max(var(--gutter), calc((100vw - var(--page)) / 2));
  background: var(--green);
  color: white;
}
.audience h2 {
  font-size: 44px;
  max-width: 450px;
}
.audience p {
  font-size: 16px;
  margin-top: 22px;
  max-width: 430px;
}
.audience .text-link {
  align-self: flex-start;
  margin-top: 24px;
}
.audience figure {
  margin: 42px 0 0;
  overflow: visible;
}
.audience picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 4/2.65;
}
.audience figcaption {
  font-size: 11px;
  line-height: 1.5;
  margin-top: 12px;
}
.audience figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.audience:hover figure img {
  transform: scale(1.025);
}
.process-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.process-top p {
  max-width: 500px;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}
.process li {
  border-top: 4px solid var(--green);
  padding-top: 24px;
}
.process .step-number {
  display: block;
  color: var(--red);
  font-size: 16px;
  margin-bottom: 26px;
}
.process h3 {
  font-family: var(--display);
  font-size: 27px;
  margin-bottom: 14px;
}
.process p {
  font-size: 15px;
  color: var(--body);
}
.conviction {
  border-block: 1px solid var(--line);
  padding-block: 32px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
}
.conviction p {
  font-size: 15px;
  color: var(--body);
  max-width: 850px;
}
.conviction .anansi-sign {
  flex: none;
}
.contact-band {
  background: var(--red);
  color: #fff;
  padding-block: 64px;
}
.contact-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
.contact-band h2 {
  font-size: 48px;
}
.contact-band p {
  font-size: 15px;
  margin-top: 18px;
  max-width: 600px;
}
.contact-band .button {
  flex: none;
  min-width: 180px;
}
.site-footer {
  padding-top: 64px;
  background: #fff;
  border-top: 12px solid var(--gold);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: start;
  padding-bottom: 44px;
}
.footer-note {
  font-size: 13px;
  max-width: 290px;
  margin-top: 20px;
  color: var(--muted);
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 56px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.footer-links a {
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  color: var(--muted);
  font-size: 11px;
}
.footer-bottom a {
  color: inherit;
}
.inner-hero {
  height: 520px;
  min-height: 480px;
}
.inner-hero h1 {
  font-size: 78px;
  max-width: 690px;
  line-height: 1.06;
  margin-bottom: 26px;
}
.inner-hero p {
  font-size: 20px;
  max-width: 570px;
}
.inner-hero::before {
  background: linear-gradient(
    90deg,
    rgba(8, 25, 19, 0.87),
    rgba(8, 25, 19, 0.59) 45%,
    rgba(8, 25, 19, 0.1) 85%
  );
}
.inner-hero > picture img {
  object-position: center 44%;
}
.subnav {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.subnav .wrap {
  display: flex;
  gap: 36px;
  align-items: center;
  padding-block: 20px;
  font-size: 13px;
}
.subnav a {
  text-decoration: none;
  padding-block: 4px;
}
.subnav a:hover {
  text-decoration: underline;
}
.subnav .eyebrow {
  margin: 0 auto 0 0;
  font-size: 12px;
  color: var(--muted);
}
.capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 64px;
}
.capability {
  padding: 35px 0;
  border-top: 1px solid var(--line);
}
.capability .cap-number {
  display: block;
  font-size: 12px;
  color: var(--red);
  margin-bottom: 18px;
}
.capability h3 {
  font: 400 31px/1.15 var(--display);
  margin-bottom: 20px;
}
.capability p {
  font-size: 16px;
  color: var(--body);
  max-width: 52ch;
}
.deliverables {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}
.deliverables li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
  margin-bottom: 8px;
}
.deliverables li::before {
  content: "+";
  color: var(--red);
  font-weight: 600;
}
.feature-story {
  background: var(--mist);
  padding-block: 88px;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-grid figure {
  margin: 0;
  aspect-ratio: 5/4;
  overflow: hidden;
}
.story-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-grid h2 {
  font-size: 46px;
  margin-bottom: 26px;
}
.story-grid p {
  font-size: 17px;
  color: var(--body);
}
.story-grid .text-link {
  margin-top: 25px;
}
.scope-note {
  margin-top: 32px;
  font-size: 13px;
  padding-top: 22px;
  border-top: 1px solid #c6cec5;
  max-width: 500px;
}
.scope-note strong {
  font-weight: 600;
}
.examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.example {
  border-top: 3px solid var(--gold);
  padding-top: 26px;
}
.example h3 {
  font: 400 27px/1.2 var(--display);
  margin-bottom: 18px;
}
.example p {
  font-size: 15px;
  color: var(--body);
}
.example .eyebrow {
  margin: 0 0 16px;
  font-size: 11px;
  color: var(--muted);
}
.contact-heading {
  padding-top: 68px;
  padding-bottom: 54px;
}
.contact-heading h1 {
  font-size: 88px;
  max-width: 800px;
  margin-bottom: 26px;
}
.contact-heading > p {
  font-size: 20px;
  max-width: 660px;
  color: var(--body);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
  padding-bottom: 104px;
}
.contact-aside {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.contact-aside h2 {
  font-size: 29px;
  margin-bottom: 20px;
}
.contact-aside p {
  font-size: 15px;
  color: var(--body);
  margin-bottom: 22px;
}
.contact-aside .direct-email {
  font-size: 20px;
  overflow-wrap: anywhere;
}
.contact-aside figure {
  margin: 34px 0 28px;
  aspect-ratio: 4/2.5;
  overflow: hidden;
}
.contact-aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-aside dl {
  margin: 32px 0 0;
}
.contact-aside dt {
  font-size: 13px;
  font-weight: 600;
  margin-top: 22px;
}
.contact-aside dd {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--body);
}
.brief-form {
  border-top: 3px solid var(--ink);
  padding-top: 28px;
}
.brief-form h2 {
  font-size: 30px;
  margin-bottom: 26px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  min-width: 0;
}
.field label {
  font-size: 13px;
  font-weight: 600;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid #9da99f;
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
  border-radius: 0;
  font-size: 16px;
  line-height: 1.5;
}
.field textarea {
  resize: vertical;
  min-height: 146px;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #69736a;
}
.form-bottom {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.form-bottom p {
  font-size: 12px;
  color: var(--muted);
  max-width: 250px;
}
.draft {
  border: 1px solid var(--line);
  padding: 30px;
  background: #f4f6f2;
}
.draft h2 {
  font-size: 30px;
  margin-bottom: 16px;
}
.draft textarea {
  display: block;
  width: 100%;
  min-height: 280px;
  padding: 18px;
  background: #fff;
  border: 1px solid #b2bcb1;
  color: var(--ink);
  resize: vertical;
  font: 14px/1.7 var(--sans);
  margin-block: 24px;
}
.draft-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.draft .status {
  font-size: 14px;
}
.edit-brief {
  display: block;
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 6px 0;
  margin-top: 20px;
  color: var(--ink);
  font-size: 14px;
}
.faq-section {
  background: var(--mist);
  padding-block: 80px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 90px;
}
.faq-grid h2 {
  font-size: 42px;
}
.faq-list details {
  border-top: 1px solid #c5cec3;
}
.faq-list details:last-child {
  border-bottom: 1px solid #c5cec3;
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 500;
}
.faq-list details[open] .plus {
  --icon: url("/assets/icons/minus.svg");
}
.faq-list details p {
  padding: 0 34px 24px 0;
  font-size: 15px;
  color: var(--body);
}
.error-page {
  min-height: 60vh;
  padding-block: 100px;
}
.error-page h1 {
  font-size: 80px;
  margin-bottom: 26px;
}
.error-page .button {
  margin-top: 28px;
}
.home-hero h1 {
  color: var(--gold);
  font-weight: 600;
  line-height: 0.95;
  font-size: 202px;
}
.title-period {
  color: #fff;
}
.home-hero .hero-content {
  padding-block: 42px;
}
.home-hero .hero-content > p {
  max-width: 490px;
}
.home-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 18px;
  border-inline: 4px solid var(--gold);
  background: var(--red);
}
.anansi-seal {
  position: absolute;
  top: 40px;
  right: 60px;
  width: 122px;
  height: 122px;
  padding: 17px;
  background: var(--gold);
}
.anansi-seal img {
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
}
.hero-edge {
  right: 58px;
}
.work-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--gold);
  color: var(--ink);
}
.work-index a {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 34px;
  text-decoration: none;
  border-right: 1px solid #17201d40;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.15;
}
.work-index a:first-child {
  padding-left: max(var(--gutter), calc((100% * 3 - var(--page)) / 2));
}
.work-index a:last-child {
  border: 0;
}
.work-index a:hover {
  background: #f8d56c;
}
.work-index a > .icon {
  margin-left: auto;
  flex: none;
}
.index-number {
  font: 500 12px var(--sans);
  align-self: flex-start;
  padding-top: 4px;
}
.work-index small {
  display: block;
  margin-top: 10px;
  font: 400 12px/1.5 var(--sans);
}
.perspective {
  background: var(--ink);
  color: #fff;
  position: relative;
}
.perspective-copy {
  padding-block: 78px 56px;
}
.perspective .eyebrow {
  color: var(--gold);
}
.perspective h2 {
  font-size: 60px;
  line-height: 1.2;
  max-width: 1100px;
}
.perspective h2 em {
  color: var(--gold);
  font-style: normal;
}
.perspective-bottom {
  display: flex;
  gap: 60px;
  align-items: end;
  justify-content: space-between;
  margin-top: 36px;
}
.perspective-bottom p {
  max-width: 650px;
  color: #e3e9e5;
}
.perspective-bottom .text-link {
  flex: none;
}
.service summary {
  padding: 0 26px 0 0;
  gap: 38px;
  grid-template-columns: 86px 1.15fr 1fr 32px;
  min-height: 130px;
}
.service-number {
  color: white;
  background: var(--service-color, var(--red));
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 600;
  border-inline: 5px double var(--ink);
}
.service:nth-child(2) .service-number {
  color: var(--ink);
}
.service summary:hover {
  background: #f3f5f1;
}
.service[open] {
  background: #f3f5f1;
}
.service::before {
  display: none;
}
.service:nth-child(3) {
  --service-color: var(--green);
}
.service-body {
  padding-top: 6px;
  padding-left: 124px;
}
.services {
  border-block: 2px solid var(--ink);
}
.service {
  border-bottom-color: #acb7ac;
}
.woven-border {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  height: 48px;
  border-block: 5px solid var(--ink);
  gap: 5px;
  background: var(--ink);
}
.woven-border i {
  border-inline: 6px double var(--ink);
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 7px,
    var(--ink) 7px 10px
  );
}
.woven-border i:nth-child(3n + 2) {
  background: var(--red);
  border-block: 6px double var(--gold);
}
.woven-border i:nth-child(3n) {
  background: repeating-linear-gradient(
    135deg,
    var(--green) 0 12px,
    #fff 12px 15px,
    var(--green) 15px 27px
  );
}
.audience {
  border-top: 10px solid var(--red);
}
.audience + .audience {
  border-top-color: var(--gold);
}
.audience h2 {
  font-size: 50px;
  font-weight: 500;
}
.section-heading h2,
.process-top h2 {
  font-weight: 500;
}
.process li:nth-child(2) {
  border-color: var(--gold);
}
.process li:nth-child(3) {
  border-color: var(--red);
}
.process li:nth-child(4) {
  border-color: var(--ink);
}
.inner-hero {
  border-bottom: 12px solid var(--gold);
}
.inner-hero h1 {
  color: var(--gold);
  font-weight: 500;
}
.inner-hero::after {
  content: "";
  width: 18px;
  height: 100%;
  background: var(--red);
  border-inline: 4px solid var(--gold);
  position: absolute;
  right: 0;
  top: 0;
}
.contact-heading {
  border-bottom: 1px solid var(--line);
  margin-bottom: 42px;
  position: relative;
  padding-right: 128px;
}
.contact-heading::after {
  content: "";
  display: block;
  width: 96px;
  height: 96px;
  background: var(--gold) url("/assets/brand/anansi.png") center / 76px
    no-repeat;
  background-blend-mode: multiply;
  position: absolute;
  right: 0;
  bottom: 48px;
}
.brief-form {
  border-top: 6px solid var(--green);
}
.capability {
  border-top: 0;
  border-left: 6px solid var(--green);
  padding-left: 28px;
  position: relative;
}
.capability:nth-child(2n) {
  border-color: var(--red);
}
.capability .cap-number {
  color: var(--ink);
  font-weight: 600;
  border-block: 3px double var(--ink);
  padding: 7px 10px;
  background: var(--gold);
  width: max-content;
}
.contact-band {
  position: relative;
  border-bottom: 8px solid var(--ink);
}
.contact-band::before {
  content: "";
  display: block;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 80px,
    var(--green) 80px 140px,
    #fff 140px 150px,
    var(--ink) 150px 195px
  );
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@media (min-width: 1600px) {
  .hero h1 {
    font-size: 174px;
  }
  .inner-hero h1 {
    font-size: 86px;
  }
  .hero {
    height: min(740px, calc(100svh - 235px));
  }
  .hero-content {
    padding-block: 64px;
  }
  .inner-hero {
    height: 570px;
  }
}
@media (max-width: 1100px) {
  :root {
    --gutter: 36px;
  }
  .main-nav {
    gap: 25px;
  }
  .section {
    padding-block: 76px;
  }
  h2 {
    font-size: 45px;
  }
  .section-heading {
    gap: 48px;
  }
  .service summary {
    grid-template-columns: 35px 1.1fr 1fr 24px;
    gap: 20px;
    padding: 28px 24px;
  }
  .service-title {
    font-size: 29px;
  }
  .service-body {
    padding-left: 79px;
    gap: 28px;
  }
  .audience {
    padding: 48px 36px;
  }
  .audience + .audience {
    padding: 48px 36px;
  }
  .audience h2 {
    font-size: 37px;
  }
  .process {
    gap: 26px;
  }
  .story-grid {
    gap: 48px;
  }
  .contact-grid {
    gap: 56px;
  }
  .contact-heading h1 {
    font-size: 76px;
  }
  .work-index a {
    padding: 26px 22px;
    gap: 14px;
    font-size: 22px;
  }
  .perspective h2 {
    font-size: 48px;
  }
  .anansi-seal {
    width: 100px;
    height: 100px;
    right: 45px;
  }
}
@media (max-width: 760px) {
  :root {
    --gutter: 24px;
  }
  .header-inner {
    height: 78px;
    gap: 18px;
  }
  .brand {
    width: 150px;
  }
  .brand img {
    height: 39px;
  }
  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 44px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    flex: none;
  }
  .menu-button .icon {
    --icon: url("/assets/icons/menu.svg");
  }
  .menu-button[aria-expanded="true"] .icon {
    --icon: url("/assets/icons/x.svg");
  }
  .js .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px var(--gutter) 28px;
    border-bottom: 2px solid var(--ink);
    box-shadow: 0 12px 18px #193d3210;
  }
  .js .main-nav[data-open="true"] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-nav a {
    font-size: 18px;
    padding: 15px 0;
  }
  .main-nav .nav-cta {
    border-left: 0;
    padding: 18px 0 0;
    margin-top: 12px;
    border-top: 1px solid var(--line);
  }
  .no-js .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding-block: 18px;
  }
  .no-js .menu-button {
    display: none;
  }
  .no-js .main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    width: 100%;
  }
  .no-js .main-nav a {
    font-size: 14px;
  }
  .no-js .main-nav .nav-cta {
    margin: 0;
    border: 0;
    padding: 15px 0;
  }
  .hero {
    min-height: 470px;
    height: min(590px, calc(100svh - 210px));
    max-height: 590px;
  }
  .hero h1 {
    font-size: 108px;
    margin-left: 0;
    margin-bottom: 25px;
  }
  .hero p {
    font-size: 20px;
    max-width: 380px;
  }
  .hero-content {
    padding-block: 34px;
  }
  .hero > picture img {
    object-position: 64% center;
  }
  .hero::before {
    background: rgba(5, 24, 16, 0.59);
  }
  .hero .eyebrow {
    font-size: 12px;
  }
  .hero-edge {
    display: none;
  }
  .hero-actions {
    gap: 20px;
    margin-top: 26px;
  }
  .hero-actions .text-link {
    font-size: 13px;
    gap: 14px;
  }
  .button {
    padding: 14px 18px;
    gap: 24px;
  }
  .hero-index {
    padding-block: 18px;
    font-size: 10px;
  }
  .hero-index span {
    max-width: 195px;
  }
  .section {
    padding-block: 64px;
  }
  h2 {
    font-size: 40px;
  }
  .section-heading,
  .process-top {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 32px;
  }
  .section-heading .intro-text,
  .intro-text {
    font-size: 17px;
  }
  .section-heading .eyebrow {
    margin-bottom: -5px;
  }
  .eyebrow {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .anansi-sign {
    width: 45px;
    height: 45px;
  }
  .service summary {
    grid-template-columns: 22px 1fr 23px;
    gap: 18px;
    padding: 24px 16px;
  }
  .service-title {
    font-size: 28px;
  }
  .service-blurb {
    grid-column: 2;
    grid-row: 2;
    font-size: 14px;
    max-width: 100%;
  }
  .service summary > .icon {
    grid-column: 3;
    grid-row: 1/3;
  }
  .service-number {
    font-size: 12px;
  }
  .service-body {
    display: block;
    padding: 0 24px 28px 56px;
  }
  .service-body p {
    font-size: 15px;
  }
  .service-body ul {
    margin-top: 18px;
  }
  .audiences {
    grid-template-columns: 1fr;
  }
  .audience,
  .audience + .audience {
    padding: 44px 24px;
  }
  .audience h2 {
    font-size: 38px;
    max-width: 400px;
  }
  .audience figure {
    margin-top: 32px;
  }
  .process {
    grid-template-columns: 1fr 1fr;
    gap: 30px 26px;
    margin-top: 36px;
  }
  .process h3 {
    font-size: 25px;
  }
  .process p {
    font-size: 14px;
  }
  .process .step-number {
    margin-bottom: 18px;
  }
  .conviction {
    margin-top: 40px;
    align-items: start;
    gap: 20px;
    flex-wrap: wrap;
  }
  .conviction p {
    font-size: 14px;
  }
  .contact-band {
    padding-block: 46px;
  }
  .contact-band .wrap {
    flex-direction: column;
    align-items: start;
    gap: 28px;
  }
  .contact-band h2 {
    font-size: 40px;
  }
  .footer-top {
    flex-direction: column;
    gap: 34px;
  }
  .footer-links {
    gap: 14px 36px;
    font-size: 14px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding-block: 22px;
  }
  .inner-hero {
    height: auto;
    min-height: 535px;
  }
  .inner-hero h1 {
    font-size: 52px;
    max-width: 450px;
    margin-bottom: 24px;
  }
  .inner-hero p {
    font-size: 18px;
  }
  .inner-hero::before {
    background: rgba(5, 24, 16, 0.68);
  }
  .subnav .wrap {
    gap: 22px;
    flex-wrap: wrap;
    padding-block: 18px;
    font-size: 12px;
  }
  .subnav .eyebrow {
    display: none;
  }
  .capabilities {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .capability {
    padding-block: 30px;
  }
  .capability h3 {
    font-size: 29px;
  }
  .feature-story {
    padding-block: 56px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-grid h2 {
    font-size: 38px;
  }
  .story-grid figure {
    aspect-ratio: 4/3;
  }
  .examples {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .example h3 {
    font-size: 28px;
  }
  .contact-heading {
    padding-top: 46px;
    padding-bottom: 34px;
  }
  .contact-heading h1 {
    font-size: 55px;
  }
  .contact-heading > p {
    font-size: 18px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 60px;
  }
  .contact-aside {
    order: 2;
  }
  .contact-aside figure {
    max-width: 500px;
  }
  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-bottom {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }
  .form-bottom p {
    max-width: 100%;
  }
  .brief-form h2 {
    font-size: 29px;
  }
  .draft {
    padding: 22px;
  }
  .draft-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .faq-section {
    padding-block: 56px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-grid h2 {
    font-size: 36px;
  }
  .error-page h1 {
    font-size: 54px;
  }
  .home-hero .hero-content {
    padding-block: 44px 32px;
  }
  .home-hero .eyebrow {
    max-width: 240px;
    margin-bottom: 28px;
  }
  .home-hero::after {
    width: 9px;
  }
  .home-hero h1 {
    font-size: 106px;
  }
  .anansi-seal {
    top: 16px;
    right: 21px;
    width: 44px;
    height: 44px;
    padding: 5px;
  }
  .work-index {
    grid-template-columns: 1fr;
  }
  .work-index a,
  .work-index a:first-child {
    padding: 20px 24px;
    border-right: 0;
    border-bottom: 1px solid #17201d40;
    gap: 20px;
    font-size: 23px;
  }
  .work-index small {
    margin-top: 6px;
  }
  .perspective-copy {
    padding-block: 50px 40px;
  }
  .perspective h2 {
    font-size: 35px;
  }
  .perspective-bottom {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin-top: 25px;
  }
  .service summary {
    grid-template-columns: 42px 1fr 23px;
    padding: 0 16px 0 0;
    gap: 10px 18px;
    min-height: 138px;
  }
  .service-number {
    grid-row: 1/3;
    border-inline-width: 3px;
    font-size: 12px;
  }
  .service-title {
    padding-top: 23px;
    font-size: 28px;
    align-self: end;
  }
  .service-blurb {
    padding-bottom: 24px;
    align-self: start;
  }
  .service-body {
    padding: 0 28px 28px 60px;
  }
  .woven-border {
    height: 34px;
    grid-template-columns: repeat(4, 1fr);
  }
  .woven-border i:nth-child(n + 5) {
    display: none;
  }
  .weave {
    height: 22px;
    grid-template-columns: repeat(5, 1fr);
  }
  .weave span:nth-child(n + 6) {
    display: none;
  }
  .audience h2 {
    font-size: 40px;
  }
  .contact-heading::after {
    display: none;
  }
  .contact-heading {
    padding-right: 0;
  }
  .conviction .text-link {
    flex: none;
  }
}
.no-js .brief-form {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
