:root {
  --ink: #0f2949;
  --ink-deep: #081b33;
  --paper: #f4f0ea;
  --paper-warm: #e9e3da;
  --white: #fffdf9;
  --orange: #f04a2d;
  --orange-dark: #d73a20;
  --blue: #2b69ec;
  --blue-soft: #edf3ff;
  --muted: #657183;
  --line: rgba(15, 41, 73, .17);
  --line-light: rgba(255, 255, 255, .18);
  --shadow: 0 24px 70px rgba(8, 27, 51, .14);
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --shell: min(1320px, calc(100% - 80px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
summary {
  font: inherit;
}

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

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

::selection {
  color: var(--white);
  background: var(--orange);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink-deep);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  padding-inline: max(40px, calc((100% - 1320px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  transition: background-color .25s ease, box-shadow .25s ease, height .25s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(244, 240, 234, .92);
  box-shadow: 0 10px 40px rgba(8, 27, 51, .08);
  backdrop-filter: blur(18px);
}

.wordmark {
  justify-self: start;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
}

.wordmark-main {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.06em;
}

.wordmark-main span {
  color: var(--orange);
}

.wordmark-sub {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 750;
}

.desktop-nav a,
.footer-top nav a {
  position: relative;
}

.desktop-nav a::after,
.footer-top nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.desktop-nav a:hover::after,
.footer-top nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: background-color .2s ease, transform .2s ease;
}

.header-contact:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

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

.hero {
  min-height: 860px;
  padding-top: 144px;
  padding-bottom: 52px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(50px, 7vw, 108px);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  top: 50px;
  left: -360px;
  border: 1px solid rgba(15, 41, 73, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(15, 41, 73, .025), 0 0 0 140px rgba(15, 41, 73, .02);
}

.eyebrow,
.section-kicker {
  margin: 0 0 25px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}

h1 {
  max-width: 700px;
  font-size: clamp(68px, 6.5vw, 104px);
}

h2 {
  font-size: clamp(48px, 5.2vw, 78px);
}

h1 em,
h2 em {
  color: var(--orange);
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: #40506a;
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background-color .2s ease;
}

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

.button-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.text-link,
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.text-link {
  padding-block: 6px;
  font-size: 14px;
}

.hero-visual {
  position: relative;
  margin: 0;
  min-width: 0;
}

.hero-image-wrap {
  height: clamp(540px, 55vw, 700px);
  overflow: hidden;
  border-radius: 130px 0 130px 0;
  background: var(--paper-warm);
  box-shadow: var(--shadow);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  filter: saturate(.88) contrast(1.03);
  transition: transform .7s cubic-bezier(.2,.75,.25,1);
}

.hero-visual:hover .hero-image-wrap img {
  transform: scale(1.025);
}

.hero-visual figcaption {
  position: absolute;
  left: -30px;
  bottom: -25px;
  min-width: 280px;
  padding: 22px 28px 25px;
  color: var(--white);
  background: var(--orange);
  display: grid;
  gap: 5px;
}

.hero-visual figcaption span {
  font-size: 11px;
  font-weight: 800;
}

.hero-visual figcaption strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.hero-stamp {
  position: absolute;
  top: 28px;
  right: -25px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.3;
  text-align: center;
}

.proof-bar {
  grid-column: 1 / -1;
  margin-top: 70px;
  padding: 27px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-bar div {
  min-height: 72px;
  padding: 0 32px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-left: 1px solid var(--line);
}

.proof-bar div:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-bar strong {
  font-size: 17px;
}

.proof-bar span {
  color: var(--muted);
  font-size: 13px;
}

.references {
  padding-block: 128px;
}

.split-heading,
.media-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 58px;
}

.split-heading > p,
.media-heading > p,
.section-heading > p,
.brands-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.split-heading h2 {
  max-width: 780px;
}

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

.logo-tile {
  aspect-ratio: 1.45;
  padding: 28px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .2);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color .2s ease;
}

.logo-tile:hover {
  background: rgba(255, 255, 255, .7);
}

.logo-tile img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  filter: grayscale(1) contrast(.85);
  opacity: .78;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.logo-tile:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

.logo-more,
.media-more {
  margin-top: 18px;
}

.logo-more summary,
.media-more summary {
  cursor: pointer;
  list-style: none;
  padding: 17px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.logo-more summary::-webkit-details-marker,
.media-more summary::-webkit-details-marker {
  display: none;
}

.logo-more[open] summary span,
.media-more[open] summary span {
  transform: rotate(45deg);
}

.logo-more summary span,
.media-more summary span {
  font-size: 20px;
  transition: transform .2s ease;
}

.logo-wall-secondary {
  margin-top: 18px;
}

.services {
  padding-block: 130px 145px;
  color: var(--white);
  background: var(--ink-deep);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 65px;
}

.section-heading.light > p {
  max-width: 710px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .66);
}

.section-heading.light .section-kicker,
.services .section-kicker {
  color: #ff7056;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px 24px;
}

.service-card {
  min-width: 0;
}

.service-image {
  position: relative;
  aspect-ratio: 1.45;
  overflow: hidden;
  background: #132d4c;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.08);
  transition: transform .6s ease, filter .6s ease;
}

.service-image-portrait img {
  object-position: center 28%;
}

.service-card:hover .service-image img {
  transform: scale(1.035);
  filter: saturate(.95) contrast(1.03);
}

.service-image > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--ink-deep);
  background: var(--paper);
  font-size: 12px;
  font-weight: 900;
}

.service-body {
  padding-top: 26px;
  border-top: 1px solid var(--line-light);
}

.service-label {
  margin: 0 0 9px;
  color: #ff7056;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.service-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 45px);
  font-weight: 500;
  letter-spacing: -.03em;
}

.service-body p:not(.service-label) {
  max-width: 610px;
  margin: 15px 0 18px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.65;
}

.service-body small {
  color: rgba(255, 255, 255, .47);
  font-size: 12px;
}

.brands {
  padding-block: 140px;
  background: var(--white);
}

.brands-heading {
  max-width: 940px;
  margin-bottom: 72px;
}

.brands-heading > p:last-child {
  max-width: 740px;
  margin-top: 28px;
}

.brand-feature {
  padding: clamp(28px, 4.4vw, 64px);
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
  overflow: hidden;
}

.brand-feature + .brand-feature {
  margin-top: 28px;
}

.brand-feature-fv {
  color: var(--ink-deep);
  background: #eeeae5;
}

.brand-feature-radar {
  color: var(--ink-deep);
  background: var(--blue-soft);
}

.brand-index {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.brand-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
}

.fv-mark {
  width: 52px;
  height: 52px;
  margin-right: 4px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.05em;
  vertical-align: 9px;
}

.radar-symbol {
  color: var(--blue);
}

.brand-copy > p {
  margin: 24px 0 0;
  color: #4d596c;
  font-size: 17px;
  line-height: 1.7;
}

.channel-list {
  margin: 28px 0 34px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.channel-list li {
  padding: 7px 11px;
  border: 1px solid rgba(15, 41, 73, .18);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 750;
}

.radar-list li {
  border-color: rgba(43, 105, 236, .22);
  background: rgba(255, 255, 255, .42);
}

.brand-link {
  padding-bottom: 4px;
  font-size: 14px;
}

.browser-frame {
  width: 100%;
  min-width: 0;
  align-self: center;
  border: 1px solid rgba(15, 41, 73, .13);
  border-radius: 15px;
  overflow: hidden;
  background: white;
  box-shadow: 0 34px 70px rgba(8, 27, 51, .18);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
  transition: transform .45s ease, box-shadow .45s ease;
}

.brand-feature-radar .browser-frame {
  transform: perspective(1000px) rotateY(2deg) rotateX(1deg);
}

.browser-frame:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0) translateY(-5px);
  box-shadow: 0 40px 85px rgba(8, 27, 51, .23);
}

.browser-bar {
  height: 36px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6c7584;
  background: #f8f8f8;
  border-bottom: 1px solid #e3e3e3;
}

.browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9c9c9;
}

.browser-bar i:first-child {
  background: #f07261;
}

.browser-bar i:nth-child(2) {
  background: #e9ba55;
}

.browser-bar i:nth-child(3) {
  background: #74bb77;
}

.browser-bar b {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
}

.browser-frame > img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
}

.impact {
  padding-block: 140px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: stretch;
  gap: 0;
}

.impact-image {
  min-height: 650px;
  overflow: hidden;
}

.impact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) contrast(1.04);
}

.impact-copy {
  padding: clamp(45px, 7vw, 95px);
  color: var(--white);
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impact-copy > p:not(.section-kicker) {
  max-width: 510px;
  margin: 30px 0 36px;
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
}

.impact-copy ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.impact-copy li {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 0 12px;
  border-bottom: 1px solid var(--line-light);
}

.impact-copy li span {
  grid-row: 1 / span 2;
  color: #ff7056;
  font-size: 11px;
  font-weight: 850;
}

.impact-copy li strong {
  font-size: 15px;
}

.impact-copy li small {
  color: rgba(255,255,255,.5);
  font-size: 12px;
}

.team {
  padding-bottom: 145px;
}

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

.team-card {
  min-width: 0;
  background: rgba(255, 255, 255, .38);
  border: 1px solid var(--line);
}

.team-photo {
  position: relative;
  aspect-ratio: .88;
  overflow: hidden;
  background: var(--paper-warm);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(.72) contrast(1.03);
  transition: transform .55s ease, filter .55s ease;
}

.team-photo-markus img {
  object-position: center;
}

.team-card:hover .team-photo img {
  transform: scale(1.025);
  filter: saturate(.92) contrast(1.02);
}

.team-photo > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.team-body {
  padding: 27px 26px 30px;
}

.team-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}

.team-role {
  min-height: 42px;
  margin: 12px 0 16px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .07em;
  line-height: 1.5;
  text-transform: uppercase;
}

.team-body > p:not(.team-role) {
  min-height: 105px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.team-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 850;
}

.team-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.team-links a:last-child {
  padding: 9px 12px;
  color: var(--white);
  background: var(--ink);
}

.media {
  padding-block: 140px;
  color: var(--white);
  background: var(--ink-deep);
}

.media-heading .section-kicker {
  color: #ff7056;
}

.media-heading > p {
  color: rgba(255, 255, 255, .62);
}

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

.media-card {
  position: relative;
  min-height: 290px;
  padding: 26px 25px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background-color .25s ease, color .25s ease;
}

.media-card:hover {
  color: var(--ink-deep);
  background: var(--paper);
}

.media-card-featured {
  background: var(--orange);
  border-color: rgba(255, 255, 255, .28);
}

.media-source {
  color: rgba(255,255,255,.54);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.media-card-featured .media-source {
  color: rgba(255,255,255,.76);
}

.media-card:hover .media-source {
  color: var(--orange);
}

.media-card h3 {
  margin: 38px 0 55px;
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.12;
}

.media-arrow {
  margin-top: auto;
  font-size: 18px;
}

.media-more summary {
  border-bottom-color: var(--line-light);
}

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

.media-list a {
  min-height: 120px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 6px 20px;
  border-bottom: 1px solid var(--line-light);
}

.media-list a:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid var(--line-light);
}

.media-list a:nth-child(even) {
  padding-left: 28px;
}

.media-list span {
  color: #ff7056;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.media-list strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
}

.media-list i {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-style: normal;
}

.contact {
  min-height: 680px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: stretch;
  margin-block: 140px;
  background: var(--orange);
  color: var(--white);
}

.contact-image {
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(.7) contrast(1.04);
}

.contact-copy {
  padding: clamp(50px, 8vw, 115px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-copy .section-kicker {
  color: var(--ink-deep);
}

.contact-copy h2 em {
  color: var(--ink-deep);
}

.contact-copy > p:not(.section-kicker) {
  max-width: 620px;
  margin: 30px 0 35px;
  font-size: 19px;
}

.contact-mail {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 2px solid currentColor;
  font-family: var(--serif);
  font-size: clamp(25px, 3.2vw, 45px);
  font-weight: 600;
  line-height: 1.1;
}

.contact-copy address {
  margin-top: 28px;
  font-size: 12px;
  font-style: normal;
  opacity: .78;
}

.site-footer {
  color: var(--white);
  background: var(--ink-deep);
}

.footer-top {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid var(--line-light);
}

.footer-wordmark .wordmark-main {
  color: var(--white);
}

.footer-top > p {
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  text-align: center;
}

.footer-top nav {
  justify-self: end;
  display: flex;
  gap: 23px;
  font-size: 12px;
  font-weight: 750;
}

.footer-bottom {
  min-height: 110px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
}

.footer-bottom > a {
  justify-self: end;
  color: var(--white);
  font-weight: 750;
}

.photo-credit {
  text-align: center;
}

.legal-links {
  display: flex;
  gap: 18px;
}

.legal-links details {
  position: relative;
}

.legal-links summary {
  cursor: pointer;
  color: var(--white);
  list-style: none;
}

.legal-links summary::-webkit-details-marker {
  display: none;
}

.legal-panel {
  position: absolute;
  z-index: 20;
  left: 0;
  bottom: 28px;
  width: min(390px, 82vw);
  padding: 22px;
  color: var(--ink-deep);
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 12px;
  line-height: 1.55;
}

.legal-panel p {
  margin: 0 0 12px;
}

.legal-panel p:last-child {
  margin-bottom: 0;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1);
}

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

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 48px, 980px);
  }

  .site-header {
    padding-inline: 24px;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    justify-self: end;
    width: 48px;
    height: 48px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
    background: currentColor;
    transition: transform .2s ease;
  }

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

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

  .mobile-nav {
    position: absolute;
    top: 72px;
    right: 24px;
    left: 24px;
    padding: 22px;
    color: var(--white);
    background: var(--ink-deep);
    box-shadow: var(--shadow);
  }

  .mobile-nav:not([hidden]) {
    display: grid;
  }

  .mobile-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line-light);
    font-weight: 750;
  }

  .mobile-nav a:last-child {
    margin-top: 8px;
    padding-inline: 15px;
    color: var(--white);
    background: var(--orange);
    border: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
    gap: 55px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-visual {
    width: calc(100% - 32px);
    justify-self: center;
  }

  .hero-image-wrap {
    height: min(720px, 80vw);
  }

  .proof-bar {
    margin-top: 35px;
  }

  .split-heading,
  .media-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-heading > p,
  .media-heading > p {
    max-width: 710px;
  }

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

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

  .brand-copy {
    max-width: 760px;
  }

  .browser-frame,
  .brand-feature-radar .browser-frame {
    transform: none;
  }

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

  .impact-image {
    min-height: 520px;
  }

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

  .team-card-philipp {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .team-card-philipp .team-photo {
    aspect-ratio: auto;
  }

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

  .contact {
    grid-template-columns: .85fr 1.15fr;
  }

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

  .footer-top > p {
    display: none;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto auto;
  }

  .photo-credit {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 34px);
  }

  body {
    font-size: 16px;
  }

  html {
    scroll-padding-top: 82px;
  }

  .site-header {
    height: 68px;
    padding-inline: 17px;
  }

  .site-header.is-scrolled {
    height: 64px;
  }

  .wordmark-main {
    font-size: 25px;
  }

  .wordmark-sub {
    font-size: 9px;
  }

  .mobile-nav {
    top: 64px;
    right: 17px;
    left: 17px;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 35px;
  }

  h1 {
    font-size: clamp(55px, 17vw, 78px);
  }

  h2 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero-visual {
    width: calc(100% - 10px);
  }

  .hero-image-wrap {
    height: 500px;
    border-radius: 70px 0 70px 0;
  }

  .hero-image-wrap img {
    object-position: 49% center;
  }

  .hero-visual figcaption {
    left: -10px;
    bottom: -32px;
    min-width: 230px;
    padding: 17px 20px 19px;
  }

  .hero-visual figcaption strong {
    font-size: 23px;
  }

  .hero-stamp {
    top: 18px;
    right: -7px;
    width: 72px;
    height: 72px;
    font-size: 9px;
  }

  .proof-bar {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }

  .proof-bar div,
  .proof-bar div:first-child {
    min-height: 84px;
    padding: 18px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .references,
  .brands,
  .media {
    padding-block: 95px;
  }

  .split-heading,
  .media-heading {
    margin-bottom: 42px;
  }

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

  .logo-tile {
    padding: 19px;
  }

  .services {
    padding-block: 95px 105px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .service-image {
    aspect-ratio: 1.18;
  }

  .service-body h3 {
    font-size: 36px;
  }

  .brand-feature {
    padding: 25px 19px 31px;
    gap: 38px;
  }

  .brand-copy h3 {
    font-size: 42px;
  }

  .fv-mark {
    width: 42px;
    height: 42px;
    font-size: 14px;
    vertical-align: 6px;
  }

  .browser-frame {
    border-radius: 12px;
    box-shadow: 0 20px 46px rgba(8, 27, 51, .15);
  }

  .browser-bar {
    height: 31px;
    padding-inline: 11px;
  }

  .browser-frame > img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .impact {
    width: 100%;
    padding-block: 0 95px;
  }

  .impact-image {
    min-height: 390px;
  }

  .impact-copy {
    padding: 55px 22px 60px;
  }

  .team {
    padding-bottom: 95px;
  }

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

  .team-card-philipp {
    grid-column: auto;
    display: block;
  }

  .team-card-philipp .team-photo {
    aspect-ratio: .88;
  }

  .team-body > p:not(.team-role),
  .team-role {
    min-height: 0;
  }

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

  .media-card {
    min-height: 235px;
  }

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

  .media-list a:nth-child(odd),
  .media-list a:nth-child(even) {
    padding-inline: 0;
    border-right: 0;
  }

  .contact {
    width: 100%;
    min-height: auto;
    margin-block: 0;
    grid-template-columns: 1fr;
  }

  .contact-image {
    height: 430px;
  }

  .contact-copy {
    padding: 65px 22px 72px;
  }

  .contact-mail {
    max-width: 100%;
    font-size: clamp(24px, 7.4vw, 34px);
  }

  .footer-top {
    min-height: 210px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 30px;
  }

  .footer-top nav {
    justify-self: start;
    flex-wrap: wrap;
  }

  .footer-bottom {
    padding-block: 30px 40px;
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .legal-links {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-bottom > a {
    grid-column: 2;
    grid-row: 1;
  }

  .legal-panel,
  .legal-panel-right {
    position: fixed;
    right: 17px;
    bottom: 17px;
    left: 17px;
    width: auto;
    max-height: 70vh;
    overflow: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
