:root {
  --ink: #101213;
  --ink-soft: #333b3f;
  --paper: #f8f4ec;
  --paper-bright: #fffdf8;
  --mist: #dfe9e6;
  --cyan: #53d7e6;
  --green: #8cd46f;
  --blue: #6277ff;
  --violet: #9d7cff;
  --line: rgba(16, 18, 19, 0.14);
  --line-light: rgba(255, 253, 248, 0.18);
  --shadow: 0 28px 70px rgba(16, 18, 19, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(16, 18, 19, 0.3);
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
  color: var(--paper-bright);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(20px, 4vw, 58px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(248, 244, 236, 0.92);
  border-color: var(--line);
  color: var(--ink);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.05;
  min-width: 150px;
}

.brand img {
  height: 28px;
  width: 28px;
}

.brand > span {
  display: grid;
}

nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.82rem;
  font-weight: 720;
  text-transform: uppercase;
}

nav a {
  opacity: 0.82;
}

nav a:hover {
  opacity: 1;
}

.hero {
  isolation: isolate;
  min-height: 108svh;
  overflow: hidden;
  position: relative;
}

.hero-image,
.hero-shade,
.hero-grid {
  inset: 0;
  position: absolute;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: 80% 26%;
  width: 100%;
  z-index: -3;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 14, 15, 0.94) 0%, rgba(12, 14, 15, 0.82) 38%, rgba(12, 14, 15, 0.22) 72%),
    linear-gradient(0deg, rgba(16, 18, 19, 0.72) 0%, rgba(16, 18, 19, 0.08) 42%);
  z-index: -2;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 253, 248, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  z-index: -1;
}

.hero-content {
  color: var(--paper-bright);
  max-width: 680px;
  padding: clamp(88px, 12vh, 116px) clamp(22px, 7vw, 96px) 248px;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 5.7vw, 4.8rem);
  letter-spacing: 0;
  line-height: 0.93;
  margin-bottom: 28px;
  max-width: 760px;
}

h2 {
  font-size: clamp(2.05rem, 4.8vw, 4.8rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 22px;
}

h3 {
  font-size: clamp(1.22rem, 2.1vw, 1.75rem);
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 14px;
}

.hero-copy {
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  max-width: 690px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid currentColor;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 820;
  gap: 8px;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button.primary {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--ink);
}

.button.secondary {
  color: inherit;
}

.button:hover,
.button:focus-visible {
  outline: 0;
  transform: translateY(-3px);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 16px 36px rgba(140, 212, 111, 0.24);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--paper-bright);
  border-color: var(--paper-bright);
  color: var(--ink);
}

.send-button::before {
  content: "✉";
  display: inline-block;
  opacity: 0;
  transform: translateX(-6px) rotate(-8deg);
  transition: opacity 160ms ease, transform 180ms ease;
}

.send-button:hover::before,
.send-button:focus-visible::before {
  opacity: 1;
  transform: translateX(0) rotate(-8deg);
}

.bingo-card {
  align-items: center;
  background: rgba(16, 18, 19, 0.54);
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  bottom: clamp(62px, 9vh, 98px);
  color: var(--paper-bright);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(210px, 0.3fr) minmax(500px, 0.7fr);
  left: clamp(22px, 7vw, 96px);
  max-width: 1080px;
  padding-top: 20px;
  position: absolute;
  right: clamp(22px, 16vw, 320px);
}

.bingo-copy h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  line-height: 1;
  margin-bottom: 8px;
}

.bingo-copy p:last-child {
  color: rgba(255, 253, 248, 0.74);
  margin-bottom: 0;
  max-width: 340px;
}

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

.bingo-grid button {
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.24);
  color: var(--paper-bright);
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 850;
  min-height: 34px;
  padding: 8px 10px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

.bingo-grid button::after {
  background: var(--cyan);
  content: "";
  height: 3px;
  left: 10px;
  opacity: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: rotate(-4deg) scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease, opacity 180ms ease;
}

.bingo-grid button.is-crossed {
  color: rgba(255, 253, 248, 0.48);
}

.bingo-grid button.is-crossed::after {
  opacity: 1;
  transform: rotate(-4deg) scaleX(1);
}

.external-link::after {
  content: " ↗";
  display: inline-block;
  opacity: 0;
  transform: translate(-4px, 2px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.external-link:hover::after,
.external-link:focus-visible::after {
  opacity: 1;
  transform: translate(3px, -1px);
}

.intro-section,
.band,
.proof-section,
.leadership-section,
.personal-section,
.contact-section {
  padding: clamp(72px, 10vw, 132px) clamp(22px, 6vw, 88px);
}

.intro-section {
  align-items: end;
  background: var(--ink);
  color: var(--paper-bright);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  transition: background 220ms ease;
}

.intro-section:has(.intro-tags span:nth-child(1):hover),
.intro-section:has(.intro-tags span:nth-child(1):focus-visible) {
  background: linear-gradient(135deg, rgba(228, 3, 3, 0.88), var(--ink) 72%);
}

.intro-section:has(.intro-tags span:nth-child(2):hover),
.intro-section:has(.intro-tags span:nth-child(2):focus-visible) {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.88), var(--ink) 72%);
}

.intro-section:has(.intro-tags span:nth-child(3):hover),
.intro-section:has(.intro-tags span:nth-child(3):focus-visible) {
  background: linear-gradient(135deg, rgba(255, 237, 0, 0.84), var(--ink) 72%);
}

.intro-section:has(.intro-tags span:nth-child(4):hover),
.intro-section:has(.intro-tags span:nth-child(4):focus-visible) {
  background: linear-gradient(135deg, rgba(0, 128, 38, 0.88), var(--ink) 72%);
}

.intro-text p {
  font-size: clamp(1.55rem, 3.7vw, 4.1rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 0;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intro-tags span {
  border: 1px solid var(--line-light);
  color: rgba(255, 253, 248, 0.82);
  overflow: hidden;
  padding: 9px 11px;
  position: relative;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.intro-tags span:hover,
.intro-tags span:focus-visible {
  background: var(--tag-color);
  border-color: var(--tag-color);
  color: var(--ink);
  transform: translateY(-3px);
}

.band.light {
  background: var(--paper-bright);
}

.band.dark {
  background: #15191a;
  color: var(--paper-bright);
}

.section-head {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  margin-bottom: clamp(38px, 6vw, 76px);
}

.section-head.compact {
  display: block;
  max-width: 800px;
}

.section-head p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 560px;
}

.work-marker {
  color: var(--ink);
  font-family: "Marker Felt", "Bradley Hand", "Comic Sans MS", "Segoe Print", cursive;
  font-size: clamp(1.75rem, 3.8vw, 3.9rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 0;
  max-width: 640px;
  overflow: hidden;
  text-transform: none;
  white-space: nowrap;
  width: 0;
}

.work-marker.is-written {
  animation: writeMarker 1.15s steps(16, end) forwards;
}

@keyframes writeMarker {
  from {
    width: 0;
  }

  to {
    width: min(100%, 640px);
  }
}

.dark .section-head p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.7);
}

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

.card {
  background: #eef4f1;
  border: 1px solid var(--line);
  min-height: 320px;
  padding: 28px;
}

.card:nth-child(2) {
  background: #eef1ff;
}

.card:nth-child(3) {
  background: #e9f6f2;
}

.card-number {
  color: var(--blue);
  display: block;
  font-size: 0.86rem;
  font-weight: 880;
  margin-bottom: 92px;
}

.card p,
.timeline p,
.leadership-copy p,
.personal-section p {
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.proof-section {
  background: var(--mist);
}

.logo-section {
  background: #f2f7f5;
  overflow: visible;
  padding: clamp(58px, 8vw, 96px) clamp(22px, 6vw, 88px);
}

.logo-section .section-head {
  margin-bottom: clamp(30px, 4vw, 46px);
  max-width: 880px;
}

.logo-section h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.02;
}

.logo-cloud {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-inline: auto;
  max-width: 1040px;
  position: relative;
}

.logo-cloud::before {
  background: linear-gradient(90deg, transparent, rgba(83, 215, 230, 0.14), transparent);
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  width: min(760px, 86vw);
}

.logo-card {
  animation: floatLogo 5.8s ease-in-out infinite;
  animation-delay: var(--delay);
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid rgba(16, 18, 19, 0.12);
  box-shadow: 0 18px 42px rgba(16, 18, 19, 0.08);
  display: grid;
  min-height: 76px;
  min-width: clamp(132px, 16vw, 210px);
  place-items: center;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.logo-card::after {
  color: rgba(16, 18, 19, 0.34);
  content: "↗";
  font-size: 0.82rem;
  font-weight: 900;
  opacity: 0;
  position: absolute;
  right: 10px;
  top: 8px;
  transform: translate(-3px, 3px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.logo-card:nth-child(3n + 1) {
  border-color: rgba(83, 215, 230, 0.38);
}

.logo-card:nth-child(3n + 2) {
  border-color: rgba(98, 119, 255, 0.32);
}

.logo-card:nth-child(3n + 3) {
  border-color: rgba(140, 212, 111, 0.32);
}

.logo-card:hover,
.logo-card:focus,
.logo-card:focus-visible {
  animation-play-state: paused;
  border-color: rgba(16, 18, 19, 0.22);
  box-shadow: 0 24px 58px rgba(16, 18, 19, 0.15);
  outline: 0;
  z-index: 3;
}

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

.logo-mark {
  align-items: center;
  color: #62c7de;
  display: flex;
  filter: saturate(0.9);
  font-size: clamp(1rem, 1.45vw, 1.42rem);
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
  min-height: 76px;
  padding: 16px 20px;
  text-align: center;
  width: 100%;
}

.logo-mark img {
  display: block;
  filter: grayscale(1) sepia(1) saturate(2.1) hue-rotate(138deg) brightness(1.04);
  max-height: 42px;
  max-width: 138px;
  mix-blend-mode: multiply;
  object-fit: contain;
  opacity: 0.72;
}

.logo-mark.has-logo span {
  display: none;
}

.logo-mark span {
  background: linear-gradient(135deg, #6277ff, #53d7e6 52%, #8cd46f);
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.logo-mark.pon span {
  font-size: 1.28em;
  letter-spacing: 0.08em;
}

.logo-mark.nextnovate span {
  font-style: italic;
}

.logo-mark.dance4life span,
.logo-mark.randstad span {
  text-transform: lowercase;
}

.logo-mark.qlouder span::first-letter {
  font-size: 1.25em;
}

.logo-mark.jeugdbescherming span {
  font-size: 0.9em;
}

.logo-info {
  background: rgba(16, 18, 19, 0.94);
  bottom: calc(100% + 12px);
  box-shadow: 0 18px 50px rgba(16, 18, 19, 0.22);
  color: var(--paper-bright);
  display: none;
  gap: 4px;
  left: 50%;
  min-width: 238px;
  opacity: 0;
  padding: 16px;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.logo-info::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid rgba(16, 18, 19, 0.94);
  content: "";
  left: 50%;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
}

.logo-card:hover .logo-info,
.logo-card:focus .logo-info,
.logo-card:focus-visible .logo-info {
  display: grid;
  opacity: 1;
  transform: translate(-50%, 0);
}

.logo-info strong {
  font-size: 0.96rem;
  line-height: 1.1;
}

.logo-info span {
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.82rem;
}

.logo-info em {
  color: var(--cyan);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  margin-top: 6px;
  text-transform: uppercase;
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

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

.metric-grid article {
  border-right: 1px solid var(--line);
  min-height: 250px;
  padding: 28px 24px;
}

.metric-grid article:last-child {
  border-right: 0;
}

.metric-grid strong {
  display: block;
  font-size: clamp(1.8rem, 3.4vw, 4.2rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 18px;
}

.metric-grid span {
  color: var(--ink-soft);
  display: block;
  font-size: 1rem;
}

.timeline {
  border-top: 1px solid var(--line-light);
}

.timeline article {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(160px, 0.34fr) minmax(240px, 0.66fr) minmax(260px, 0.86fr);
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
}

.timeline span {
  color: var(--green);
  font-weight: 820;
}

.timeline h3 {
  margin-bottom: 0;
}

.timeline p {
  color: rgba(255, 253, 248, 0.72);
  margin-bottom: 0;
}

.leadership-section {
  align-items: center;
  background: var(--paper-bright);
  display: grid;
  gap: clamp(34px, 6vw, 92px);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
}

.leadership-copy {
  max-width: 820px;
}

.quote-panel {
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--paper-bright);
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  position: relative;
  transition: transform 180ms ease;
}

.quote-panel::before {
  background: repeating-linear-gradient(
    124deg,
    rgba(228, 3, 3, 0.88) 0 52px,
    rgba(255, 140, 0, 0.88) 52px 104px,
    rgba(255, 237, 0, 0.84) 104px 156px,
    rgba(0, 128, 38, 0.84) 156px 208px,
    rgba(0, 77, 255, 0.86) 208px 260px,
    rgba(117, 7, 135, 0.86) 260px 312px
  );
  content: "";
  height: 260%;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(-18deg) scale(1.16);
  transform-origin: center;
  transition: opacity 180ms ease, transform 220ms ease;
  translate: -50% -50%;
  width: 260%;
}

.quote-panel:hover,
.quote-panel:focus-visible {
  outline: 0;
  transform: translateY(-4px);
}

.quote-panel:hover::before,
.quote-panel:focus-visible::before {
  opacity: 0.9;
  transform: rotate(-28deg) scale(1.22);
}

.quote-panel p {
  font-size: clamp(1.35rem, 2.5vw, 2.35rem);
  letter-spacing: 0;
  line-height: 1.07;
  margin-bottom: 0;
  position: relative;
}

.personal-section {
  align-items: end;
  background: #e6efec;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
}

.personal-section p {
  margin-bottom: 0;
}

.personal-section h2 {
  align-items: end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  max-width: 860px;
}

.marker-title {
  display: inline;
}

.marker-matter-cluster {
  align-items: center;
  display: inline-flex;
  gap: clamp(10px, 1.8vw, 18px);
  white-space: nowrap;
}

.marker-word {
  display: inline-block;
  position: relative;
}

.marker-smiley {
  fill: none;
  flex: 0 0 auto;
  height: clamp(44px, 5.6vw, 72px);
  opacity: 0;
  stroke: var(--ink);
  stroke-dasharray: 230;
  stroke-dashoffset: 230;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5.4;
  transform: rotate(-5deg) translateY(0.08em);
  transition: stroke-dashoffset 820ms ease 160ms, opacity 140ms ease 80ms;
}

.personal-section.is-drawn .marker-smiley {
  opacity: 1;
  stroke-dashoffset: 0;
}

.contact-section {
  background:
    linear-gradient(120deg, rgba(83, 215, 230, 0.18), rgba(98, 119, 255, 0.16) 52%, rgba(140, 212, 111, 0.16)),
    var(--ink);
  color: var(--paper-bright);
  min-height: 56vh;
}

.contact-section h2 {
  max-width: 980px;
}

.contact-form {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(30px, 5vw, 58px);
  max-width: 920px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.form-trap {
  display: none !important;
}

.contact-form label.full,
.contact-form .contact-actions,
.form-note {
  grid-column: 1 / -1;
}

.contact-form label span {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 253, 248, 0.94);
  border: 3px solid var(--ink);
  border-radius: 12px 9px 14px 8px;
  box-shadow: 4px 5px 0 rgba(255, 253, 248, 0.16), inset 0 0 0 1px rgba(16, 18, 19, 0.08);
  color: var(--ink);
  font-family: "Marker Felt", "Bradley Hand", "Comic Sans MS", "Segoe Print", cursive;
  font-size: 1.1rem;
  line-height: 1.35;
  outline: 0;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--paper-bright);
  box-shadow: 6px 7px 0 rgba(83, 215, 230, 0.32), inset 0 0 0 1px rgba(16, 18, 19, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(16, 18, 19, 0.42);
}

.form-note {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.95rem;
  min-height: 1.4em;
}

footer {
  align-items: center;
  background: var(--ink);
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 248, 0.72);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 12px;
  justify-content: space-between;
  padding: 22px clamp(22px, 6vw, 88px);
}

.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 9px;
}

.footer-brand img {
  height: 22px;
  width: 22px;
}

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

  nav {
    gap: 12px;
    justify-content: flex-end;
  }

  .hero-image {
    object-position: 64% 20%;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(12, 14, 15, 0.94) 0%, rgba(12, 14, 15, 0.78) 46%, rgba(12, 14, 15, 0.18) 100%);
  }

  .hero-content {
    padding-top: 48svh;
    padding-bottom: 32px;
  }

  .bingo-card {
    grid-template-columns: 1fr;
    position: relative;
    inset: auto;
    margin: 0 clamp(20px, 5vw, 36px) 34px;
    right: auto;
  }

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

  .intro-section,
  .section-head,
  .leadership-section,
  .contact-form,
  .personal-section,
  .timeline article {
    grid-template-columns: 1fr;
  }

  .pillar-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .logo-cloud {
    justify-content: flex-start;
  }

  .logo-card {
    flex: 1 1 154px;
    min-width: 0;
  }

  .logo-info {
    bottom: auto;
    left: 0;
    min-width: min(250px, 76vw);
    top: calc(100% + 10px);
    transform: translate(0, -8px);
  }

  .logo-info::after {
    border-bottom: 9px solid rgba(16, 18, 19, 0.94);
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 0;
    bottom: 100%;
    left: 26px;
    top: auto;
  }

  .logo-card:hover .logo-info,
  .logo-card:focus .logo-info,
  .logo-card:focus-visible .logo-info {
    display: grid;
    transform: translate(0, 0);
  }

  .metric-grid article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 0;
  }

  .metric-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
  }

  nav {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button {
    width: 100%;
  }

  .card-number {
    margin-bottom: 54px;
  }

  .card {
    min-height: 0;
  }
}
