/* Client split-flap board. The source artwork is rendered in one charcoal ink. */
.v2 .client-board { padding: clamp(36px, 3.4vw, 56px) 0; }
.v2 .client-board-heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 22px; }
.v2 .client-board-heading h2 { font-size: clamp(1.25rem, 1.8vw, 1.75rem); line-height: 1.2; }
.v2 .client-board-heading > a { flex: none; font-size: .82rem; }
.v2 .client-board-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 2.2vw, 36px); }
.v2 .client-group { min-width: 0; }
.v2 .client-group-heading { border-top: 1px solid #d6d6d1; padding: 12px 0; }
.v2 .client-group-heading h3 { font-size: .88rem; letter-spacing: -.01em; }
.v2 .client-flaps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
.v2 .client-tile {
  --client-tile-height: clamp(76px, 6.4vw, 96px);
  position: relative; display: block; height: var(--client-tile-height); min-width: 0;
  border-radius: 8px; color: #50504d; background: #e7e7e2;
  perspective: 850px; isolation: isolate; outline-offset: 4px;
  box-shadow: 0 1px 0 rgba(255,255,255,.75), 0 1px 2px rgba(0,0,0,.045);
}
.v2 .client-tile:focus-visible { outline: 2px solid var(--v2-accent); }
.v2 .client-face {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  height: var(--client-tile-height); width: 100%; border-radius: 8px;
  background: linear-gradient(#e9e9e4 0 50%, #e5e5e0 50% 100%);
}
.v2 .client-mark { display: block; width: 76%; max-width: 140px; height: 58%; object-fit: contain; mix-blend-mode: multiply; opacity: .72; }
.v2 .client-mark.tone-ink { filter: grayscale(1) brightness(.72) contrast(3); }
.v2 .client-mark.tone-solid { filter: brightness(0); }
.v2 .client-mark.tone-reverse { filter: grayscale(1) invert(1) brightness(.8) contrast(8); }
.v2 .client-mark.tone-behope { filter: grayscale(1) invert(1) brightness(5) contrast(8); }
.v2 .client-mark.tone-light { filter: grayscale(1) invert(1) brightness(2) contrast(8); }
.v2 .client-mark.tone-cattle { filter: grayscale(1) brightness(1.65) contrast(4); }
.v2 .client-mark.tone-photo { filter: grayscale(1) contrast(1.3); }
.v2 .client-mark.tone-wide { filter: grayscale(1) brightness(.72) contrast(3); object-fit: contain; }
.v2 .client-mark.tone-reverse-wide { filter: grayscale(1) invert(1) brightness(.8) contrast(8); object-fit: contain; }
.v2 .client-mark.tone-detail { filter: grayscale(1) contrast(4); }
/* The logo is the visible label; each tile retains its accessible company name. */
.v2 .client-name { display: none; }
.v2 .client-text-mark { max-width: 84%; font-weight: 500; font-size: clamp(.75rem, 1vw, 1rem); letter-spacing: -.025em; line-height: 1.15; text-align: center; }
.v2 .client-hinge { position: absolute; top: 50%; left: 0; right: 0; z-index: 8; height: 1px; pointer-events: none; background: rgba(42,42,35,.13); box-shadow: 0 1px rgba(255,255,255,.35); }
.v2 .client-hinge::before, .v2 .client-hinge::after { content: ""; position: absolute; top: -3px; width: 3px; height: 7px; border-radius: 1px; background: #b6b6af; }
.v2 .client-hinge::before { left: 0; }
.v2 .client-hinge::after { right: 0; }
.v2 .client-tile[href]::after { content: "↗"; position: absolute; top: 8px; right: 10px; z-index: 9; font-size: .8rem; opacity: 0; transition: opacity .2s; }
.v2 .client-tile[href]:hover::after, .v2 .client-tile[href]:focus-visible::after { opacity: 1; }
.v2 .client-flap { position: absolute; left: 0; right: 0; height: 50%; overflow: hidden; backface-visibility: hidden; pointer-events: none; }
.v2 .client-flap.top { top: 0; border-radius: 8px 8px 0 0; transform-origin: center bottom; }
.v2 .client-flap.bottom { bottom: 0; border-radius: 0 0 8px 8px; transform-origin: center top; }
.v2 .client-flap.bottom .client-face { top: auto; bottom: 0; }
.v2 .client-flap.old-top { z-index: 5; animation: client-flap-out 210ms cubic-bezier(.55,.08,.8,.45) both; }
.v2 .client-flap.new-bottom { z-index: 6; animation: client-flap-in 250ms 210ms cubic-bezier(.15,.65,.25,1) both; }
.v2 .client-flap.new-top, .v2 .client-flap.old-bottom { z-index: 4; }
@keyframes client-flap-out { from { transform: rotateX(0); filter: brightness(1); } to { transform: rotateX(-90deg); filter: brightness(.72); } }
@keyframes client-flap-in { 0% { transform: rotateX(90deg); filter: brightness(.72); } 80% { transform: rotateX(-4deg); filter: brightness(1); } 100% { transform: rotateX(0); filter: brightness(1); } }
.v2 .client-board-footer { display: flex; justify-content: flex-end; align-items: center; gap: 16px; margin-top: 10px; font-size: .7rem; color: var(--v2-muted); }
.v2 .client-board-footer > a:hover { color: var(--v2-fg); }
.v2 .client-controls { display: flex; align-items: center; gap: 20px; }
.v2 .client-controls[hidden], .v2 .client-controls button[hidden] { display: none; }
.v2 .client-controls button { display: inline-flex; align-items: center; gap: 7px; border: 0; padding: 5px 0; background: none; color: inherit; font: inherit; cursor: pointer; }
.v2 .client-controls button:hover { color: var(--v2-fg); }
.v2 .client-controls button:focus-visible { outline: 2px solid var(--v2-accent); outline-offset: 4px; }
@media (max-width: 860px) {
  .v2 .client-board-groups { grid-template-columns: 1fr; gap: 18px; }
  .v2 .client-tile { --client-tile-height: 80px; }
}
@media (max-width: 540px) {
  .v2 .client-board-heading { display: block; margin-bottom: 18px; }
  .v2 .client-board-heading > a { display: inline-flex; margin-top: 10px; font-size: .76rem; }
  .v2 .client-group-heading { padding: 10px 0; }
  .v2 .client-flaps { gap: 5px; }
  .v2 .client-tile { --client-tile-height: 68px; }
  .v2 .client-mark { width: 80%; height: 58%; }
  .v2 .client-text-mark { font-size: .7rem; }
  .v2 .client-controls { gap: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .v2 .client-flap { animation: none !important; }
  .v2 .client-tile[href]::after { transition: none; }
}
