@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/open-sans-300.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/open-sans-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/open-sans-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("/assets/fonts/open-sans-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("/assets/fonts/roboto-condensed-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --blue: hsl(204.96 66.86% 33.14%);
  --blue-bright: rgb(55, 134, 190);
  --plumor-red: #ff334d;
  --plumor-red-deep: #d92640;
  --plumor-red-soft: #fff0f2;
  --plumor-petrol: #0f4c73;
  --plumor-steel: #7e97a1;
  --plumor-mint: #cddfd4;
  --aqua: hsl(180 24.73% 81.76%);
  --ice: hsl(210 15.38% 94.9%);
  --green: hsl(145.34 82.56% 61.76%);
  --black: #000000;
  --white: #ffffff;
  --muted: #5d6469;
  --line: #d9dde0;
  --header-height: 117px;
  --audience-height: 0px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--audience-height) + 20px);
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
blockquote,
figure {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

h2,
h3,
h4 {
  margin-bottom: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  font-size: 2.75rem;
  line-height: 1.12;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.25;
}

h4 {
  font-size: 1rem;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.narrow-container {
  width: min(calc(100% - 64px), 840px);
  margin-inline: auto;
}

.section {
  padding-block: 100px;
}

.section-small {
  padding-block: 72px;
}

.section-ice {
  background: var(--ice);
}

.spaced-top {
  margin-top: 54px;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--white);
}

.lead {
  font-size: 1.15rem;
  line-height: 1.65;
}

.muted {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 21px;
  border: 2px solid transparent;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button-primary:hover {
  color: var(--black);
  background: var(--green);
  border-color: var(--green);
}

.button-white {
  color: var(--blue);
  background: var(--white);
  border-color: var(--white);
}

.button-white:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button-outline {
  color: var(--blue);
  background: transparent;
  border-color: var(--blue);
}

.button-outline:hover {
  color: var(--white);
  background: var(--blue);
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: var(--white);
}

.button-outline-light:hover {
  color: var(--blue);
  background: var(--white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.text-link:not(.external-link)::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover {
  color: var(--black);
}

.text-link:not(.external-link):hover::after {
  transform: translateX(4px);
}

.external-link::after {
  content: "↗";
}

.external-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 5px;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
}

.shop-nav-link {
  color: var(--blue);
}

.header-main {
  position: relative;
  display: grid;
  width: min(calc(100% - 10vw), 1680px);
  min-height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  margin-inline: auto;
}

.brand {
  width: 118px;
  justify-self: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav-left {
  justify-self: start;
}

.desktop-nav-right {
  justify-self: end;
}

.desktop-nav > a,
.nav-group-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-block: 12px;
}

.desktop-nav > a:not(.header-project-button)::after,
.nav-group-link::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after,
.nav-group:hover .nav-group-link::after,
.nav-group:focus-within .nav-group-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-project-button {
  min-height: 44px;
  padding: 10px 16px !important;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 2px;
}

.header-project-button:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.nav-group {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: -20px;
  display: grid;
  width: 340px;
  padding: 9px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.nav-dropdown-audiences {
  width: 370px;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  display: grid;
  gap: 2px;
  padding-block: 13px;
}

.nav-dropdown a + a {
  border-top: 1px solid var(--line);
}

.nav-dropdown strong {
  color: var(--blue);
  font-size: 0.78rem;
}

.nav-dropdown span {
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 400;
  text-transform: none;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* Home hero */
.home-hero,
.page-hero,
.article-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  isolation: isolate;
}

.home-hero {
  min-height: min(820px, calc(100svh - var(--header-height) - 46px));
}

.hero-background,
.page-hero-image,
.article-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background {
  object-position: 49.2% 19.2%;
}

.hero-overlay,
.page-hero-overlay,
.article-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.15);
}

.home-hero .hero-overlay {
  background: rgba(0, 0, 0, 0.28);
}

.home-hero-content {
  display: flex;
  min-height: inherit;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: clamp(58px, 8vh, 88px) 50px;
  text-align: center;
}

.home-hero-kicker {
  margin: 0 0 18px;
  padding: 7px 11px;
  color: var(--white);
  background: var(--plumor-red);
  font-size: 0.73rem;
  font-weight: 700;
  text-shadow: none;
  text-transform: uppercase;
}

.home-hero h1 {
  width: 100%;
  max-width: 1120px;
  min-width: 0;
  font-size: 4.75rem;
  line-height: 1.04;
}

.home-hero-lead {
  max-width: 780px;
  margin: 22px 0 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.55;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  text-shadow: none;
}

.home-hero-primary {
  color: var(--white);
  background: var(--plumor-red);
  border-color: var(--plumor-red);
}

.home-hero-primary:hover {
  color: var(--white);
  background: var(--plumor-red-deep);
  border-color: var(--plumor-red-deep);
}

.home-hero-secondary {
  color: var(--white);
  background: rgba(15, 76, 115, 0.32);
  border-color: var(--white);
}

.home-hero-secondary:hover {
  color: var(--plumor-petrol);
  background: var(--plumor-mint);
  border-color: var(--plumor-mint);
}

.home-hero-trust {
  display: grid;
  width: min(100%, 900px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 0;
  padding: 19px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
}

.home-hero-trust li::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: var(--plumor-red);
  content: "";
}

.client-logo-slider {
  overflow: hidden;
  padding-top: 34px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.client-logo-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 20px;
}

.client-logo-heading .eyebrow {
  margin: 0;
}

.client-logo-heading h2 {
  max-width: 620px;
  font-size: 1.55rem;
  line-height: 1.2;
  text-align: right;
}

.client-logo-viewport {
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.client-logo-track {
  display: flex;
  width: max-content;
  animation: client-logo-scroll 96s linear infinite;
}

.client-logo-slider:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-group {
  display: flex;
  flex: none;
}

.client-logo-item {
  display: grid;
  width: 190px;
  height: 126px;
  flex: none;
  place-items: center;
  border-right: 1px solid var(--line);
}

.client-logo-item img {
  width: 118px;
  height: 118px;
  object-fit: contain;
}

@keyframes client-logo-scroll {
  to {
    transform: translateX(-50%);
  }
}

.marquee {
  overflow: hidden;
  color: var(--blue);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.marquee-link {
  display: flex;
  min-height: 103px;
  align-items: center;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  flex: none;
  align-items: center;
}

.marquee-item {
  padding-right: 30px;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.home-hero-marquee {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  color: var(--plumor-petrol);
  background: var(--white);
  border: 0;
  border-bottom: 1px solid rgba(15, 76, 115, 0.16);
  text-shadow: none;
  transition: color 160ms ease;
}

.home-hero-marquee:hover {
  color: var(--plumor-red);
  background: var(--white);
}

.home-hero-marquee .marquee-link {
  min-height: 38px;
}

.home-hero-marquee .marquee-item {
  padding-right: 26px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

/* Home conversion sections */
.home-intro {
  padding-block: 108px;
  text-align: center;
}

.home-intro-copy {
  max-width: 1030px;
  margin-inline: auto;
}

.home-intro h2 {
  font-size: 2.75rem;
  line-height: 1.16;
}

.home-intro-copy > p {
  max-width: 880px;
  margin: 30px auto 0;
  font-size: 1.05rem;
}

.direct-paths {
  display: grid;
  max-width: 930px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 58px auto 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  text-align: left;
}

.direct-path {
  display: flex;
  min-height: 126px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px;
}

.direct-path + .direct-path {
  border-left: 1px solid var(--black);
}

.direct-path:hover {
  color: var(--white);
  background: var(--blue);
}

.direct-path strong,
.direct-path span {
  display: block;
}

.direct-path strong {
  font-size: 1.15rem;
}

.direct-path div span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.direct-path:hover div span {
  color: var(--white);
}

.direct-path > span {
  color: var(--blue);
  font-size: 1.5rem;
}

.direct-path:hover > span {
  color: var(--green);
}

.audience-paths {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 25px;
  margin-top: 34px;
  font-size: 0.78rem;
}

.audience-paths > span {
  color: var(--muted);
}

.audience-paths a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.services-home {
  background: var(--ice);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading p:last-child {
  max-width: 560px;
  margin-bottom: 2px;
  color: var(--muted);
}

.service-row {
  display: grid;
  min-height: 430px;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-top: 1px solid var(--black);
}

.service-row:last-child {
  border-bottom: 1px solid var(--black);
}

.service-row:nth-child(even) .service-row-media {
  order: 2;
}

.service-row-media {
  min-height: 420px;
  overflow: hidden;
}

.service-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.service-row:hover .service-row-media img {
  transform: scale(1.02);
}

.service-row-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 52px 64px;
}

.service-row-copy h3 {
  max-width: 520px;
  font-size: 2rem;
}

.service-row-copy p:not(.eyebrow) {
  max-width: 530px;
  margin-block: 20px 26px;
  color: var(--muted);
}

.oem-section {
  background: var(--white);
}

.oem-proof {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: center;
  padding: 55px 60px;
  background: var(--ice);
}

.oem-proof strong {
  color: var(--blue);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 5.5rem;
  line-height: 1;
}

.oem-proof p {
  max-width: 650px;
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.45;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.case-list article {
  min-width: 0;
  padding: 30px;
}

.case-list article:not(:nth-child(3n + 1)) {
  border-left: 1px solid var(--black);
}

.case-list article:nth-child(-n + 3) {
  border-bottom: 1px solid var(--black);
}

.case-list span {
  display: block;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.case-list h3 {
  margin-bottom: 10px;
}

.case-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section-action {
  margin-top: 40px;
  text-align: center;
}

.trust-strip {
  padding-block: 64px;
  text-align: center;
}

.trust-strip h2 {
  max-width: 720px;
  margin-inline: auto;
  font-size: 2rem;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-row img {
  width: 100%;
  height: 105px;
  padding: 24px 18px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
}

.logo-row img + img {
  border-left: 1px solid var(--line);
}

.brand-home {
  color: var(--white);
  background: var(--blue);
}

.brand-home .section-heading p,
.brand-home .eyebrow {
  color: var(--white);
}

.brand-home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.brand-home-item {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-width: 0;
}

.brand-home-item + .brand-home-item {
  border-left: 1px solid rgba(255, 255, 255, 0.7);
}

.brand-home-item img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.brand-home-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 36px;
}

.brand-home-copy span {
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-home-copy h3 {
  font-size: 2.4rem;
}

.brand-home-copy p {
  margin-block: 15px 22px;
  font-size: 0.9rem;
}

.fulfillment-case {
  display: grid;
  min-height: 680px;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  background: var(--blue-bright);
}

.fulfillment-case-media {
  min-height: 680px;
}

.fulfillment-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fulfillment-case-copy {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 72px 7vw;
}

.fulfillment-client-logo {
  width: 150px;
  height: 58px;
  margin-bottom: 36px;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1) brightness(0) invert(1);
}

.fulfillment-case-copy h2 {
  max-width: 650px;
}

.fulfillment-case-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-block: 24px 32px;
}

.fulfillment-steps {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 38px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  list-style: none;
  counter-reset: fulfillment-step;
}

.fulfillment-steps li {
  min-width: 0;
  padding: 17px 18px 17px 0;
  counter-increment: fulfillment-step;
  font-size: 0.84rem;
  font-weight: 700;
}

.fulfillment-steps li:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.65);
}

.fulfillment-steps li:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.fulfillment-steps li::before {
  margin-right: 10px;
  color: var(--green);
  content: "0" counter(fulfillment-step);
  font-size: 0.7rem;
}

.shop-bridge {
  display: grid;
  min-height: 520px;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  background: var(--blue);
}

.shop-bridge-media {
  min-height: 500px;
}

.shop-bridge-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.shop-bridge-copy {
  display: flex;
  max-width: 680px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 7vw;
}

.shop-bridge-copy h2 {
  max-width: 560px;
}

.shop-bridge-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-block: 23px 28px;
}

.external-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 9px;
  color: var(--black);
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
}

.project-band {
  color: var(--black);
  background: var(--aqua);
}

.project-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.project-band h2 {
  max-width: 820px;
}

.project-band p {
  max-width: 760px;
  margin: 18px 0 0;
}

.latest-grid,
.showcase-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.latest-item,
.showcase-item,
.article-card {
  min-width: 0;
  border-top: 2px solid var(--black);
}

.latest-item img,
.showcase-item img,
.article-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.latest-item-copy,
.showcase-item-copy,
.article-card-copy {
  padding-top: 20px;
}

.latest-item-copy h3,
.showcase-item-copy h3,
.article-card-copy h3 {
  margin-bottom: 12px;
}

.latest-item-copy p,
.showcase-item-copy p,
.article-card-copy p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Interior pages */
.page-hero {
  min-height: 520px;
}

.page-hero-image {
  object-position: center;
}

.page-hero-content {
  display: flex;
  min-height: inherit;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-block: 80px;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p:not(.eyebrow) {
  max-width: 670px;
  margin-block: 20px 28px;
  font-size: 1.1rem;
  font-weight: 600;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.intro-grid h2 {
  max-width: 520px;
}

.intro-copy {
  max-width: 670px;
}

.intro-copy p {
  margin-bottom: 20px;
}

.reference-logo {
  width: 155px;
  height: 70px;
  margin-bottom: 30px;
  object-fit: contain;
  object-position: left center;
}

.reference-story .button {
  margin-top: 12px;
}

.benefit-band {
  color: var(--white);
  background: var(--blue-bright);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.benefit-item {
  min-width: 0;
  padding: 30px 26px;
}

.benefit-item + .benefit-item {
  border-left: 1px solid rgba(255, 255, 255, 0.7);
}

.benefit-item span {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
}

.benefit-item h3 {
  font-size: 1.12rem;
}

.benefit-item p {
  margin: 11px 0 0;
  font-size: 0.85rem;
}

.process-section {
  background: var(--ice);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  list-style: none;
}

.process-list li {
  min-width: 0;
  padding: 26px;
}

.process-list li + li {
  border-left: 1px solid var(--black);
}

.process-list span {
  display: block;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
}

.process-list strong {
  display: block;
  margin-bottom: 10px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.faq-list {
  margin-top: 38px;
  border-top: 1px solid var(--black);
}

.faq-list details {
  border-bottom: 1px solid var(--black);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--blue);
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 780px;
  padding-bottom: 24px;
  margin-bottom: 0;
  color: var(--muted);
}

.split-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  background: var(--blue);
}

.split-callout img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.split-callout-copy {
  display: flex;
  max-width: 680px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 7vw;
}

.split-callout-copy p:not(.eyebrow) {
  margin-block: 20px 26px;
}

.category-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.category-link {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 28px;
}

.category-link + .category-link {
  border-left: 1px solid var(--black);
}

.category-link:hover {
  color: var(--white);
  background: var(--blue);
}

.category-link h3 {
  font-size: 1.7rem;
}

.category-link span {
  color: var(--blue);
  font-size: 1.5rem;
}

.category-link:hover span {
  color: var(--green);
}

/* About and contact */
.about-facts-band {
  color: var(--white);
  background: var(--plumor-red);
}

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

.about-facts > div {
  display: grid;
  min-height: 150px;
  align-content: center;
  gap: 4px;
  padding: 26px 30px;
}

.about-facts > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.58);
}

.about-facts strong {
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
}

.about-facts span {
  font-size: 0.78rem;
  font-weight: 700;
}

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

.team-card {
  min-width: 0;
  padding-bottom: 18px;
  border-top: 2px solid var(--black);
}

.team-card-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-card h3 {
  margin-top: 18px;
}

.team-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.team-card .team-card-quote {
  min-height: 86px;
}

.team-card .team-card-role {
  margin-top: 14px;
  color: var(--plumor-red);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.team-card-contact {
  display: grid;
  gap: 2px;
  margin-top: 8px;
  color: var(--plumor-petrol);
  font-size: 0.76rem;
  font-weight: 600;
}

.team-card-contact a {
  overflow-wrap: anywhere;
}

.team-card-contact a:hover {
  color: var(--plumor-red);
}

.timeline {
  margin: 45px 0 0;
  padding: 0;
  border-top: 1px solid var(--black);
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 32px;
  padding-block: 24px;
  border-bottom: 1px solid var(--black);
}

.timeline strong {
  color: var(--plumor-red);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 1.65rem;
}

.timeline h3 {
  margin-bottom: 8px;
  color: var(--plumor-petrol);
  font-size: 1.12rem;
}

.timeline p {
  margin-bottom: 0;
}

.benefit-heading {
  grid-template-columns: 1fr;
  margin-bottom: 36px;
}

.about-sustainability {
  color: var(--white);
  background: var(--plumor-petrol);
}

.sustainability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 84px;
  align-items: center;
}

.sustainability-copy h2 {
  max-width: 720px;
}

.sustainability-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.sustainability-copy .sustainability-code {
  color: var(--plumor-mint);
}

.sustainability-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: 30px;
}

.text-link-light {
  color: var(--white);
}

.text-link-light:hover {
  color: var(--plumor-mint);
}

.sustainability-logos {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: var(--plumor-mint);
}

.sustainability-logos img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.about-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-logo-grid span {
  display: grid;
  min-height: 132px;
  place-items: center;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-logo-grid img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-method {
  padding-block: 24px;
  border-top: 1px solid var(--black);
}

.contact-method:last-child {
  border-bottom: 1px solid var(--black);
}

.contact-method span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-method a {
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 700;
}

.contact-address {
  padding: 42px;
  background: var(--ice);
}

.contact-address address {
  margin-block: 20px;
  font-style: normal;
}

/* FYI */
.article-card-meta,
.article-meta {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-hero {
  min-height: 500px;
}

.article-hero-content {
  display: flex;
  min-height: inherit;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-block: 72px;
}

.article-hero h1 {
  max-width: 980px;
}

.article-body {
  font-size: 1.06rem;
  line-height: 1.75;
}

.article-body h2 {
  margin-top: 56px;
  margin-bottom: 20px;
  font-size: 2rem;
}

.article-body h3 {
  margin-top: 36px;
  margin-bottom: 14px;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin-bottom: 22px;
}

.article-body blockquote {
  margin: 42px 0;
  padding: 26px 30px;
  color: var(--blue);
  background: var(--ice);
  border-left: 5px solid var(--blue);
  font-size: 1.35rem;
  font-weight: 700;
}

.article-body .article-inline-image {
  width: 100%;
  margin-block: 42px;
}

/* Typeform-style project wizard */
.briefing-page {
  --briefing-header-height: 76px;
  overflow-x: hidden;
  background: var(--white);
}

.briefing-header {
  position: relative;
  z-index: 10;
  display: grid;
  height: var(--briefing-header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: clamp(20px, 4vw, 58px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.briefing-brand {
  width: 112px;
  justify-self: center;
}

.briefing-brand img {
  width: 100%;
  height: auto;
}

.briefing-exit,
.briefing-shop-link {
  width: max-content;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.briefing-exit {
  color: var(--muted);
}

.briefing-shop-link {
  justify-self: end;
  padding-bottom: 3px;
  color: var(--plumor-red);
  border-bottom: 1px solid currentColor;
}

.briefing-exit:hover,
.briefing-shop-link:hover {
  color: var(--blue);
}

.briefing-main {
  min-height: calc(100svh - var(--briefing-header-height));
}

.wizard-shell {
  display: grid;
  min-height: calc(100svh - var(--briefing-header-height));
  grid-template-rows: auto 1fr;
}

.wizard-progress {
  position: relative;
  height: 6px;
  background: var(--plumor-mint);
}

.wizard-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: var(--plumor-red);
  transition: width 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wizard-progress-label {
  position: absolute;
  top: 14px;
  right: 24px;
  color: var(--plumor-petrol);
  font-size: 0.7rem;
  font-weight: 700;
}

.project-wizard {
  width: min(calc(100% - 64px), 1040px);
  min-height: calc(100svh - var(--briefing-header-height) - 6px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.wizard-step {
  flex: 1;
  padding-block: clamp(54px, 7vh, 82px) 46px;
}

.wizard-step[hidden] {
  display: none;
}

.wizard-step:not([hidden]) {
  animation: wizard-step-enter 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes wizard-step-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wizard-question-number {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--plumor-red);
  font-size: 0.78rem;
  font-weight: 700;
}

.wizard-question-number::after {
  content: "→";
}

.wizard-step h1,
.wizard-step h2 {
  max-width: 920px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 2.65rem;
  line-height: 1.18;
}

.wizard-step h1:focus,
.wizard-step h2:focus {
  outline: 0;
}

.wizard-help {
  max-width: 680px;
  margin: 14px 0 32px;
  color: var(--plumor-steel);
}

.wizard-selection {
  max-width: 920px;
  margin: -13px 0 30px;
  padding-bottom: 15px;
  color: var(--plumor-steel);
  border-bottom: 1px solid var(--plumor-mint);
  font-size: 0.82rem;
}

.wizard-selection strong {
  color: var(--plumor-red);
}

.wizard-options {
  display: grid;
  max-width: 920px;
  gap: 12px;
  margin-top: 32px;
}

.wizard-option {
  position: relative;
  cursor: pointer;
}

.wizard-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.wizard-option-content {
  display: grid;
  min-height: 62px;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 15px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--plumor-steel);
  border-radius: 3px;
  font-weight: 600;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.wizard-key {
  display: inline-flex;
  width: 29px;
  height: 29px;
  align-items: center;
  justify-content: center;
  color: var(--plumor-petrol);
  background: var(--plumor-mint);
  border: 1px solid var(--plumor-steel);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
}

.wizard-check {
  opacity: 0;
}

.wizard-option:hover .wizard-option-content {
  color: var(--plumor-petrol);
  background: var(--plumor-mint);
  border-color: var(--plumor-petrol);
  transform: translateY(-1px);
}

.wizard-option input:checked + .wizard-option-content {
  color: var(--white);
  background: var(--plumor-red);
  border-color: var(--plumor-red);
  box-shadow: 0 9px 24px rgba(255, 51, 77, 0.16);
}

.wizard-option input:checked + .wizard-option-content .wizard-check {
  color: var(--white);
  opacity: 1;
}

.wizard-option input:focus-visible + .wizard-option-content {
  outline: 3px solid var(--plumor-petrol);
  outline-offset: 3px;
}

.wizard-field {
  display: grid;
  max-width: 760px;
  gap: 8px;
  margin-top: 30px;
}

.wizard-field > span {
  color: var(--plumor-petrol);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.wizard-field > span small {
  margin-left: 0.35em;
  font-size: inherit;
  font-weight: 400;
  text-transform: lowercase;
}

.wizard-field input,
.wizard-field textarea {
  width: 100%;
  padding: 14px 15px;
  background: #f8fbf9;
  border: 1px solid var(--plumor-mint);
  border-bottom: 2px solid var(--plumor-red);
  border-radius: 2px;
  outline: 0;
  font-size: 1.4rem;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.wizard-field textarea {
  min-height: 150px;
  resize: vertical;
}

.wizard-field input:focus,
.wizard-field textarea:focus {
  background: var(--white);
  border-color: var(--plumor-petrol);
  box-shadow: 0 0 0 3px rgba(205, 223, 212, 0.8);
}

.wizard-email-field,
.wizard-single-field {
  max-width: 920px;
  margin-top: 42px;
}

.wizard-email-field input,
.wizard-single-field input {
  padding-block: 17px;
  font-size: 2rem;
}

.wizard-email-field input::placeholder,
.wizard-single-field input::placeholder,
.wizard-message-field textarea::placeholder {
  color: var(--plumor-steel);
}

.wizard-message-field {
  max-width: 920px;
  margin-top: 42px;
}

.wizard-message-field textarea {
  min-height: 170px;
  font-size: 1.15rem;
}

.wizard-submit-help {
  margin-top: 20px;
  font-size: 0.78rem;
}

.wizard-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.wizard-back {
  min-height: 50px;
  padding: 10px 12px;
  color: var(--plumor-red);
  background: transparent;
  border: 0;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.wizard-enter-hint {
  color: var(--plumor-steel);
  font-size: 0.72rem;
}

.wizard-status {
  min-height: 28px;
  margin-top: 18px;
  color: var(--plumor-red);
  font-weight: 700;
}

.wizard-status[data-state="pending"] {
  color: var(--plumor-petrol);
}

.wizard-status[data-state="success"] {
  color: var(--plumor-petrol);
}

.wizard-status[data-state="error"] {
  color: var(--plumor-red-deep);
}

.wizard-mail-fallback {
  display: inline-flex;
  margin-top: 8px;
  color: var(--plumor-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wizard-mail-fallback[hidden] {
  display: none;
}

.wizard-final-actions .button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.briefing-page .button-primary {
  background: var(--plumor-red);
  border-color: var(--plumor-red);
}

.briefing-page .button-primary:hover {
  background: var(--plumor-red-deep);
  border-color: var(--plumor-red-deep);
  transform: translateY(-1px);
}

@media (min-width: 900px) and (min-height: 780px) {
  .wizard-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.shop-wizard-panel {
  max-width: 740px;
  margin-top: 30px;
  padding: 32px;
  color: var(--white);
  background: var(--blue);
}

.shop-wizard-panel p {
  margin-block: 13px 22px;
}

.shop-wizard-panel .external-notice {
  margin-bottom: 0;
}

/* Legal and 404 */
.simple-page {
  padding-block: 90px;
}

.simple-page h1 {
  margin-bottom: 38px;
  color: var(--blue);
}

.simple-page h2 {
  margin: 42px 0 15px;
  font-size: 1.5rem;
}

.error-page {
  display: flex;
  min-height: 72svh;
  align-items: center;
  color: var(--white);
  background: var(--blue);
}

.error-page h1 {
  font-size: 7rem;
}

.error-page p {
  max-width: 580px;
  margin-block: 18px 28px;
  font-size: 1.15rem;
}

/* Footer */
.site-footer {
  color: var(--black);
}

.footer-signup {
  color: var(--black);
  background: var(--ice);
}

.footer-signup-grid {
  display: grid;
  min-height: 505px;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding-block: 90px;
}

.footer-statement {
  max-width: 570px;
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.3;
}

.footer-newsletter {
  max-width: 650px;
}

.footer-newsletter strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-newsletter p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 34px;
}

.footer-newsletter-form input {
  min-width: 0;
  min-height: 64px;
  padding: 16px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
}

.footer-newsletter-form button {
  min-width: 180px;
  min-height: 64px;
  padding: 16px 24px;
  color: var(--white);
  background: var(--blue-bright);
  border: 1px solid var(--blue-bright);
  border-radius: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-newsletter-form button:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.footer-main {
  color: var(--ice);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr 0.9fr;
  gap: 100px;
  padding-block: 58px 42px;
}

.footer-about p {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(240, 242, 244, 0.78);
  font-size: 0.86rem;
  line-height: 1.5;
}

.footer-social {
  display: inline-block;
  margin-top: 25px;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
}

.footer-column strong {
  max-width: 320px;
  margin-bottom: 2px;
  color: var(--ice);
  line-height: 1.35;
}

.footer-column a,
.footer-column p {
  color: rgba(240, 242, 244, 0.78);
  line-height: 1.45;
}

.footer-column a:hover {
  color: var(--green);
}

.footer-column a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-shop-link {
  margin-top: 15px;
}

.footer-contact p {
  max-width: 310px;
  margin: 0 0 10px;
}

.footer-certifications {
  width: 190px;
  height: auto;
  margin-top: 22px;
  object-fit: contain;
  object-position: left center;
}

.footer-bottom {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding-bottom: 22px;
  color: rgba(240, 242, 244, 0.68);
  font-size: 0.72rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.footer-bottom nav::before,
.footer-bottom a + a::before {
  margin-inline: 7px;
  color: rgba(240, 242, 244, 0.68);
  content: "|";
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover {
  color: var(--white);
}

@media (max-width: 1120px) {
  h1 {
    font-size: 4rem;
  }

  .home-hero h1 {
    font-size: 4.2rem;
  }

  .desktop-nav {
    gap: 17px;
    font-size: 0.71rem;
  }

  .header-main {
    gap: 18px;
  }

  .brand {
    width: 102px;
  }

  .brand-home-item {
    grid-template-columns: 1fr;
  }

  .brand-home-item img {
    min-height: 260px;
    aspect-ratio: 16 / 9;
  }

  .footer-grid {
    gap: 38px;
  }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 74px;
    --audience-height: 0px;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .home-hero h1 {
    font-size: 3.65rem;
  }

  .container,
  .narrow-container,
  .project-wizard {
    width: min(calc(100% - 40px), var(--container));
  }

  .section {
    padding-block: 78px;
  }

  .desktop-nav {
    display: none;
  }

  .header-main {
    display: flex;
    width: calc(100% - 40px);
    min-height: var(--header-height);
    justify-content: space-between;
  }

  .brand {
    width: 102px;
    justify-self: auto;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: none;
    overflow-y: auto;
    padding: 30px 20px 46px;
    color: var(--black);
    background: var(--ice);
  }

  .mobile-menu.is-open {
    display: block;
  }

  .mobile-menu-section {
    display: grid;
    gap: 12px;
    padding-block: 18px;
    border-top: 1px solid var(--black);
  }

  .mobile-menu-section a,
  .mobile-audience-links a {
    font-size: 1.15rem;
    font-weight: 700;
  }

  .mobile-menu-label {
    color: var(--blue);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-menu-primary {
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    gap: 24px;
  }

  .mobile-audience-links {
    display: grid;
    gap: 12px;
    padding-block: 22px;
    border-top: 1px solid var(--black);
  }

  .mobile-project-button {
    width: 100%;
    margin-top: 12px;
  }

  .home-hero {
    min-height: min(720px, calc(100svh - var(--header-height) - 42px));
  }

  .section-heading,
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-home-grid,
  .category-links {
    grid-template-columns: 1fr;
  }

  .brand-home-item + .brand-home-item,
  .category-link + .category-link {
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-left: 0;
  }

  .category-link + .category-link {
    border-color: var(--black);
  }

  .service-row,
  .shop-bridge,
  .split-callout,
  .fulfillment-case {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-row > *,
  .shop-bridge > *,
  .split-callout > *,
  .fulfillment-case > * {
    min-width: 0;
  }

  .service-row:nth-child(even) .service-row-media {
    order: 0;
  }

  .service-row-media,
  .shop-bridge-media,
  .fulfillment-case-media {
    min-height: 360px;
  }

  .fulfillment-case-copy {
    max-width: none;
  }

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

  .logo-row img:nth-child(4) {
    border-left: 0;
  }

  .logo-row img:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

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

  .benefit-item:nth-child(3),
  .process-list li:nth-child(3) {
    border-left: 0;
  }

  .benefit-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  }

  .process-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--black);
  }

  .latest-grid,
  .showcase-grid,
  .article-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .project-band-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-signup-grid {
    gap: 48px;
  }
}

@media (max-width: 620px) {
  .briefing-page {
    --briefing-header-height: 68px;
  }

  .briefing-header {
    padding-inline: 14px;
  }

  .briefing-brand {
    width: 88px;
  }

  .briefing-exit,
  .briefing-shop-link {
    font-size: 0.62rem;
    white-space: nowrap;
  }

  .wizard-progress-label {
    top: 12px;
    right: 16px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  h3 {
    font-size: 1.28rem;
  }

  .container,
  .narrow-container,
  .project-wizard {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 64px;
  }

  .section-small {
    padding-block: 52px;
  }

  .home-hero {
    min-height: min(650px, calc(100svh - var(--header-height) - 34px));
  }

  .home-hero h1 {
    font-size: 2.25rem;
  }

  .home-hero-content {
    padding-block: 34px 30px;
  }

  .home-hero-kicker {
    margin-bottom: 13px;
    padding: 6px 9px;
    font-size: 0.66rem;
  }

  .home-hero-lead {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .home-hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
  }

  .home-hero .button {
    width: auto;
    min-height: 56px;
    margin-top: 0;
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .home-hero-trust {
    gap: 8px;
    margin-top: 24px;
    padding-top: 15px;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .home-hero-trust li::before {
    width: 5px;
    height: 5px;
    margin-right: 5px;
  }

  .home-hero-marquee .marquee-link {
    min-height: 34px;
  }

  .home-hero-marquee .marquee-item {
    padding-right: 20px;
    font-size: 0.72rem;
  }

  .client-logo-slider {
    padding-top: 26px;
  }

  .client-logo-heading {
    display: block;
    padding-bottom: 18px;
  }

  .client-logo-heading h2 {
    margin-top: 6px;
    font-size: 1.25rem;
    text-align: left;
  }

  .client-logo-item {
    width: 150px;
    height: 102px;
  }

  .client-logo-item img {
    width: 96px;
    height: 96px;
  }

  .marquee-link {
    min-height: 62px;
  }

  .marquee-item {
    font-size: 1.55rem;
  }

  .home-intro {
    padding-block: 70px;
  }

  .home-intro h2 {
    font-size: 1.9rem;
  }

  .direct-paths {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .direct-path {
    min-height: 108px;
    padding: 22px 18px;
  }

  .direct-path + .direct-path {
    border-top: 1px solid var(--black);
    border-left: 0;
  }

  .audience-paths {
    display: grid;
    justify-items: center;
  }

  .oem-proof {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 24px;
  }

  .oem-proof strong {
    font-size: 4rem;
  }

  .oem-proof p {
    font-size: 1.05rem;
  }

  .case-list {
    grid-template-columns: 1fr;
  }

  .case-list article,
  .case-list article:nth-child(-n + 3) {
    border-bottom: 1px solid var(--black);
    border-left: 0;
  }

  .case-list article:last-child {
    border-bottom: 0;
  }

  .fulfillment-case-copy {
    padding: 52px 24px 60px;
  }

  .fulfillment-steps {
    grid-template-columns: 1fr;
  }

  .fulfillment-steps li,
  .fulfillment-steps li:nth-child(even) {
    padding: 15px 0;
    border-left: 0;
  }

  .fulfillment-steps li:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  }

  .service-row-media,
  .shop-bridge-media {
    min-height: 290px;
  }

  .service-row-copy,
  .shop-bridge-copy,
  .split-callout-copy {
    padding: 36px 24px 42px;
  }

  .service-row-copy h3 {
    font-size: 1.55rem;
  }

  .brand-home-copy {
    padding: 28px 22px 34px;
  }

  .brand-home-copy h3 {
    font-size: 2rem;
  }

  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-row img:nth-child(odd) {
    border-left: 0;
  }

  .logo-row img:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .logo-row img:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .page-hero,
  .article-hero {
    min-height: 500px;
  }

  .page-hero-content,
  .article-hero-content {
    padding-block: 52px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .benefit-grid,
  .process-list,
  .latest-grid,
  .showcase-grid,
  .article-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item + .benefit-item,
  .process-list li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-left: 0;
  }

  .process-list li + li {
    border-color: var(--black);
  }

  .benefit-item:nth-child(-n + 3),
  .process-list li:nth-child(-n + 3) {
    border-bottom: 0;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-address {
    padding: 28px 22px;
  }

  .project-band-inner .button,
  .shop-bridge .button {
    width: 100%;
  }

  .wizard-step {
    padding-block: 48px 34px;
  }

  .wizard-step h1,
  .wizard-step h2 {
    font-size: 2rem;
  }

  .wizard-option-content {
    grid-template-columns: auto 1fr auto;
    min-height: 58px;
    font-size: 0.88rem;
  }

  .wizard-email-field input,
  .wizard-single-field input {
    font-size: 1.4rem;
  }

  .wizard-actions {
    flex-wrap: wrap;
  }

  .wizard-enter-hint {
    width: 100%;
  }

  .shop-wizard-panel {
    padding: 24px 20px;
  }

  .article-body {
    font-size: 1rem;
  }

  .article-body h2 {
    font-size: 1.65rem;
  }

  .footer-signup-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 68px;
  }

  .footer-statement {
    font-size: 1.55rem;
  }

  .footer-newsletter-form {
    grid-template-columns: 1fr;
  }

  .footer-newsletter-form button {
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-bottom {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding-block: 18px;
  }

  .error-page h1 {
    font-size: 5rem;
  }
}

@media (max-width: 1040px) {
  .about-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-facts > div:nth-child(3) {
    border-left: 0;
  }

  .about-facts > div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.58);
  }

  .sustainability-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .sustainability-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  .about-facts > div {
    min-height: 126px;
    padding: 20px 16px;
  }

  .about-facts strong {
    font-size: 2.25rem;
  }

  .about-facts span {
    font-size: 0.7rem;
  }

  .team-card .team-card-quote {
    min-height: 0;
  }

  .sustainability-logos {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .sustainability-logos img {
    height: 128px;
  }

  .sustainability-actions .button {
    width: 100%;
  }

  .about-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-logo-grid span {
    min-height: 112px;
  }

  .about-logo-grid img {
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2rem;
  }

  .home-hero h1 {
    font-size: 2rem;
  }

  .service-row-copy h3 {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .client-logo-track,
  .marquee-track {
    animation: none !important;
  }
}
