.page-shell {
  min-height: 100vh;
  background: var(--black);
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.hero video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.squirrelli-what-we-do .intro-copy p {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.hire-models-intro {
  align-items: start;
}

.hire-models-intro .intro-copy h1 {
  font-size: clamp(38px, calc(3.2vh + 10px), 50px);
}

.hire-models-intro .intro-copy p {
  margin: 30px 0 0;
}

.hire-models-intro .intro-image-card:first-child {
  background: url("../image assets/ChatGPT Image Jul 4, 2026, 05_42_15 AM.png") center / cover no-repeat;
}

.hire-models-intro .intro-image-card:nth-child(2) {
  background: url("../image assets/ChatGPT Image Jun 25, 2026, 02_10_05 PM.png") center / cover no-repeat;
}

.squirrelli-what-we-do .intro-book-link {
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: var(--tracking-button);
}

.client-strip {
  overflow: hidden;
  padding: 50px 0;
  background: var(--black);
}

.client-track {
  --client-logo-width: 192px;
  --client-logo-gap: 74px;
  --client-replay-distance: calc((var(--client-logo-width) + var(--client-logo-gap)) * 8);
  display: flex;
  align-items: center;
  gap: var(--client-logo-gap);
  width: max-content;
  animation: client-marquee-left 30.4s linear infinite;
}

.client-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: var(--client-logo-width);
  height: 67.2px;
}

.client-track img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.952941;
  transition: opacity 300ms ease;
}

.numbers-section {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 760px;
  overflow: hidden;
  padding: 54px 24px 28px;
  background: var(--black);
}

.numbers-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--squirrelli-page-max);
}

.numbers-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 440px;
}

.numbers-heading {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(55px, calc(12.4vw - 37px), 137px);
  font-weight: 900;
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.numbers-line {
  display: block;
  width: fit-content;
}

.numbers-line-main {
  margin: 0 0 0 1.55em;
  font: inherit;
  font-size: calc(1em + 5px);
  line-height: 0.82;
}

.numbers-line-sub {
  margin-top: 44px;
  line-height: 1;
}

.numbers-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.number-card {
  position: relative;
  min-height: 214px;
  padding: 56px 26px 24px;
}

.number-card + .number-card {
  border-left: 0;
}

.number-card + .number-card::before {
  content: "";
  position: absolute;
  top: 45px;
  bottom: 45px;
  left: 0;
  width: 1px;
  background: rgba(228, 228, 228, 0.12);
}

.number-value {
  display: flex;
  align-items: flex-end;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: clamp(45px, calc(5.7vw - 15px), 67px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.number-mark {
  margin-left: 4px;
  color: var(--white);
  font-size: 50%;
}

.number-card p {
  max-width: 168px;
  margin: 18px 0 0;
  color: #d7d7d7;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: none;
}

.next-section {
  position: relative;
  min-height: 830px;
  padding: 117px 24px 53px;
  background-color: var(--black);
  color: var(--white);
  text-align: left;
}

.faces-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(39px, calc(5vw + 5px), 57px);
  font-weight: 900;
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.faces-filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin: 24px 0 0;
  padding: 0 18px;
  border: 0;
  border-radius: var(--sq-corner-radius);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--tracking-button);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.faces-filter-button:hover,
.faces-filter-button:focus-visible {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.faces-filter-button:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

.faces-filter-button:active {
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
  transform: translateY(0);
}

.faces-filter-menu {
  position: absolute;
  top: 224px;
  left: 54px;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 219px;
  gap: 20px;
  width: min(calc(100% - 108px), 1136px);
  height: 424px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: var(--sq-corner-radius);
  background: rgba(48, 48, 48, 0.5);
  backdrop-filter: blur(15px);
  color: var(--white);
  font-family: var(--font-ui);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
}

.faces-filter-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.filter-menu-column {
  display: flex;
  flex-direction: column;
  grid-row: 1;
  height: 100%;
  min-height: 0;
  min-width: 0;
}

.filter-menu-tree {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: flex-start;
  gap: 34px;
  min-width: 0;
}

.filter-node {
  position: relative;
  min-width: 0;
}

.filter-node-trigger,
.filter-subnode-trigger {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.26;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 250ms ease;
}

.filter-node-trigger:hover,
.filter-node-trigger:focus-visible,
.filter-node.is-open > .filter-node-trigger,
.filter-subnode-trigger:hover,
.filter-subnode-trigger:focus-visible,
.filter-subnode.is-open > .filter-subnode-trigger {
  color: var(--black);
}

.filter-node.is-filter-disabled > .filter-node-trigger,
.filter-subnode.is-filter-disabled > .filter-subnode-trigger,
.filter-node.is-filter-disabled > .filter-node-trigger:hover,
.filter-subnode.is-filter-disabled > .filter-subnode-trigger:hover {
  color: var(--white);
  cursor: not-allowed;
  opacity: 0.42;
}

.filter-dropdown,
.filter-subdropdown {
  display: none;
  margin-top: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.filter-dropdown {
  position: static;
  top: 100%;
  left: 0;
  z-index: 3;
  width: auto;
  max-height: none;
  overflow: visible;
}

.filter-node.is-open > .filter-dropdown,
.filter-subnode.is-open > .filter-subdropdown {
  display: block;
}

.filter-active-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  color: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.filter-active-summary[hidden] {
  display: none;
}

.filter-active-summary-item {
  display: block;
  transform: translateX(4px);
}

.filter-subnode + .filter-subnode {
  margin-top: 11px;
}

.filter-node-look.is-open > .filter-dropdown {
  position: relative;
  padding-right: 156px;
  overflow: visible;
}

.filter-node-look .filter-subnode {
  position: relative;
}

.filter-node-look .filter-subdropdown {
  position: absolute;
  top: 0;
  left: 132px;
  width: 146px;
  margin-top: 0;
}

@keyframes filterScrollCueDown {
  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% + 5px));
  }
}

@keyframes filterScrollCueUp {
  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% - 5px));
  }
}

.filter-node-look .filter-subnode.has-scroll-cue.is-scroll-idle::after {
  content: "";
  position: absolute;
  top: 105px;
  left: 236px;
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  pointer-events: none;
}

.filter-node-look .filter-subnode.has-scroll-cue.is-scroll-idle.scroll-cue-down::after {
  animation: filterScrollCueDown 1400ms ease-in-out infinite;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 4.75 7 9.25l4.5-4.5' fill='none' stroke='%23f3f3f3' stroke-opacity='.58' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.filter-node-look .filter-subnode.has-scroll-cue.is-scroll-idle.scroll-cue-up::after {
  animation: filterScrollCueUp 1400ms ease-in-out infinite;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 9.25 7 4.75l4.5 4.5' fill='none' stroke='%23f3f3f3' stroke-opacity='.58' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.filter-subdropdown {
  max-height: 210px;
  overflow-y: auto;
  scrollbar-width: none;
}

.filter-subdropdown::-webkit-scrollbar {
  display: none;
}

.filter-option-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.filter-option-list li[hidden],
.filter-option-list button[hidden] {
  display: none;
}

.filter-option-list button,
.filter-menu-clear {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: color 250ms ease, transform 250ms ease-in-out;
}

.filter-option-list button:hover,
.filter-option-list button:focus-visible,
.filter-option-list button.is-selected,
.filter-menu-clear:hover,
.filter-menu-clear:focus-visible {
  color: var(--white);
}

.filter-option-list button:hover,
.filter-option-list button:focus-visible,
.filter-option-list button.is-selected,
.filter-menu-clear:hover,
.filter-menu-clear:focus-visible {
  transform: translateX(4px);
}

.filter-menu-actions {
  margin-top: auto;
  padding-top: 24px;
}

.filter-menu-spacer {
  width: 219px;
  height: 267px;
  align-self: start;
  border-radius: var(--sq-corner-radius);
  background: var(--black);
  overflow: hidden;
}

.filter-menu-spacer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.faces-marquee {
  position: absolute;
  top: 233px;
  left: 0;
  right: 0;
  z-index: 1;
  height: 548px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.faces-marquee.is-dragging {
  cursor: grabbing;
}

.faces-marquee.is-static-results {
  overflow-x: auto;
  cursor: default;
  touch-action: pan-x pan-y;
  scrollbar-width: none;
}

.faces-marquee.is-static-results::-webkit-scrollbar {
  display: none;
}

.faces-marquee.is-static-results .faces-marquee-track {
  transform: translate3d(0, 0, 0);
}

.faces-marquee.is-static-results.is-static-centered .faces-marquee-track {
  width: 100%;
  justify-content: center;
}

.faces-marquee.is-static-results .faces-marquee-set[data-faces-set] {
  padding-right: 0;
}

.faces-marquee.is-static-results.is-static-centered .faces-marquee-set[data-faces-set] {
  flex: 0 1 auto;
  justify-content: center;
}

.faces-marquee.is-static-results .faces-marquee-set[data-faces-set-duplicate] {
  display: none;
}

.faces-marquee-track {
  display: flex;
  width: max-content;
  align-items: flex-start;
  padding: 72px 0 96px;
  will-change: transform;
}

.faces-marquee-set {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  gap: 44px;
  padding-right: 44px;
}

.faces-photo-card {
  position: relative;
  flex: 0 0 auto;
  width: 219px;
  height: auto;
  border-radius: var(--sq-corner-radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
}

.faces-photo-card[hidden] {
  display: none;
}

.faces-empty-state {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  margin: 0;
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.faces-empty-state[hidden],
.faces-marquee-track[hidden] {
  display: none;
}

.faces-card-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  flex: 0 0 auto;
  border-radius: inherit;
  background: var(--black);
  overflow: hidden;
}

.faces-card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--faces-image-position, 50% 50%);
  transform: translateY(var(--faces-image-shift-y, 0)) scale(var(--faces-image-scale, 1));
  transform-origin: var(--faces-image-position, 50% 50%);
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}

.faces-card-details {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  width: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  border-radius: inherit;
  background: rgba(8, 8, 8, 0.34);
  backdrop-filter: blur(12px) saturate(128%);
  -webkit-backdrop-filter: blur(12px) saturate(128%);
  color: var(--white);
  font-family: var(--font-ui);
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: scale(0.985);
  transition: opacity 180ms ease, transform 180ms ease;
}

.faces-card-name {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.faces-card-filter-list {
  display: grid;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.faces-card-filter-pill {
  display: block;
  max-width: 100%;
  padding: 0;
  background: transparent;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.faces-photo-card:hover,
.faces-photo-card:focus-visible {
  z-index: 2;
  transform: scale(1.04);
}

.faces-photo-card:hover .faces-card-details,
.faces-photo-card:focus-visible .faces-card-details,
.faces-photo-card:active .faces-card-details {
  opacity: 1;
  transform: scale(1);
}

.work-section {
  position: relative;
  z-index: 1;
  min-height: 720px;
  background: var(--black);
  padding: 114px 28px 72px;
}

.work-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--sq-corner-radius);
  background: var(--white);
  color: var(--white);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transform: translateY(0) scale(1);
  transition: transform 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.work-card:hover,
.work-card:focus-visible {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px) scale(1.01);
}

.work-card:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.work-card:active {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px) scale(1.005);
}

.work-media-frame {
  position: absolute;
  inset: 0;
  background: var(--white);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.62) 100%);
}

.work-play {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
}

.work-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--white);
  transform: translate(-50%, -50%);
}

.work-card-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.work-card-title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.work-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.work-card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: var(--sq-corner-radius);
  background: rgba(255, 255, 255, 0.24);
  padding: 7px 12px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .work-card {
    transition: box-shadow 180ms ease;
  }

  .work-card:hover,
  .work-card:focus-visible,
  .work-card:active {
    transform: none;
  }
}

.work-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.work-notes p {
  width: 88%;
  margin: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(13px, 1.05vw, 18px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
}

.how-works-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 826px;
  background-color: var(--black);
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.8px, transparent 0.8px);
  background-size: 3px 3px;
  padding: clamp(64px, 6vw, 96px) 16px clamp(64px, 5vw, 88px);
}

.how-works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 93.75%;
  max-width: var(--squirrelli-page-max);
  margin: 0 auto;
}

.how-works-card {
  min-height: 322.5px;
  border-radius: var(--sq-corner-radius);
  background: var(--white);
}

.how-works-step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px;
  color: var(--black);
  text-align: center;
}

.how-works-step-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.how-works-step-card p {
  max-width: 300px;
  margin: 18px 0 0;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: 0;
  text-transform: none;
}

.how-works-card--title {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  min-height: 337.5px;
  padding: 42px;
  color: var(--black);
  text-align: center;
}

.how-works-card--title h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(39px, calc(5vw + 5px), 57px);
  font-weight: 900;
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.testimonials {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--white);
  color: var(--black);
  padding: 96px 0 110px;
}

.testimonials-head {
  max-width: var(--squirrelli-page-max);
  margin: 0 auto 64px;
  padding: 0 28px;
  text-align: center;
}

.testimonials-kicker {
  margin: 0 0 18px;
  color: #999999;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.testimonials-title {
  margin: 0;
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.testimonials-sub {
  margin: 10px 0 0;
  color: #999999;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.testimonials-marquee {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.testimonials-marquee.is-dragging {
  cursor: grabbing;
}

.testimonials-track {
  display: flex;
  width: max-content;
  align-items: flex-start;
  padding: 70px 0;
  will-change: transform;
}

.no-js .testimonials-track {
  animation: testimonials-marquee 96s linear infinite;
}

.testimonial-set {
  display: flex;
  flex-shrink: 0;
  align-items: flex-start;
  gap: 30px;
  padding-right: 30px;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 370px;
  min-height: 200px;
  height: auto;
  border-radius: var(--sq-corner-radius);
  background-color: #0a0a0a;
  padding: 32px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease;
}

.testimonial-card--long {
  width: 420px;
  min-height: 300px;
}

.testimonial-card--long .testimonial-quote {
  font-size: 15px;
  line-height: 1.28;
}

.testimonial-card:nth-child(odd) {
  margin-top: 92px;
}

.testimonial-card:hover {
  z-index: 2;
  background-color: var(--gold);
  transform: scale(1.06);
}

.testimonial-card:hover .testimonial-quote,
.testimonial-card:hover .testimonial-name {
  color: var(--white);
}

.testimonial-card:hover .testimonial-role,
.testimonial-card:hover .testimonial-company {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-card:hover .testimonial-mark {
  color: rgba(255, 255, 255, 0.22);
}

.testimonial-quote {
  flex: 0 1 auto;
  margin: 0;
  color: #f5f0e9;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
  transition: color 0.4s ease;
}

.testimonial-mark {
  position: absolute;
  right: 26px;
  bottom: 96px;
  color: rgba(245, 240, 233, 0.12);
  font-family: "ABC Favorit", Arial, sans-serif;
  font-size: 120px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 24px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 100px;
  object-fit: cover;
}

.testimonial-avatar--incognito {
  display: block;
  background-color: #2a2a2a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 46 46'%3E%3Ccircle cx='23' cy='18' r='8' fill='%23808080'/%3E%3Cpath d='M9 41c0-8 6.3-13 14-13s14 5 14 13z' fill='%23808080'/%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.testimonial-byline {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  color: #f0f0f0;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.4s ease;
}

.testimonial-role,
.testimonial-company {
  color: #a3a3a3;
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: -0.24px;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

@keyframes testimonials-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card {
    transition: background-color 180ms ease;
  }

  .testimonial-card:hover {
    transform: none;
  }
}

.faq-section {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 720px;
  background: var(--black);
  background-image: none;
  color: var(--white);
  padding: 132px 8vw 140px;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1.14fr);
  gap: 116px;
  width: 100%;
  max-width: var(--squirrelli-shell-max);
  margin: 0 auto;
}

.faq-copy {
  align-self: center;
  color: var(--white);
}

.faq-copy h2 {
  max-width: 480px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.faq-copy p {
  max-width: 430px;
  margin: 52px 0 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.faq-more {
  --nav-flip-color: var(--white);
  --nav-flip-hover-color: var(--white);
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 36px;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--tracking-button);
}

.faq-more .nav-flip-stack,
.faq-more .nav-flip-text {
  white-space: nowrap;
}

.faq-list {
  align-self: center;
  color: var(--white);
  transform: translateY(-24px);
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  gap: 32px;
  padding: 0;
  text-align: left;
}

.faq-question span:first-child {
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.faq-icon {
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.faq-answer {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0;
  text-transform: none;
  padding: 0 72px 28px 0;
}

.faq-answer[hidden] {
  display: none;
}

.yacht-cta-section {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(560px, 58vw, 720px);
  padding: clamp(64px, 6vw, 96px) 24px clamp(64px, 5vw, 96px);
  background: var(--white);
  color: var(--black);
}

.yacht-cta-shell {
  width: 100%;
  max-width: var(--squirrelli-shell-max);
  margin: 0 auto;
  text-align: center;
}

.yacht-cta-title {
  margin: 0;
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(64px, 6.6vw, 71px);
  font-weight: 900;
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
  white-space: nowrap;
}

.yacht-cta-copy {
  max-width: 392px;
  margin: 43px auto 0;
  color: rgba(0, 0, 0, 0.64);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

.yacht-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.yacht-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--sq-corner-radius);
  background: var(--black);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--tracking-button);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.yacht-cta-button:hover,
.yacht-cta-button:focus-visible {
  background: #111111;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.yacht-cta-button:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

.yacht-cta-button:active {
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.18);
  transform: translateY(0);
}

@keyframes client-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--client-replay-distance)));
  }
}

@media (max-width: 959px) {
  .hero {
    aspect-ratio: unset;
    min-height: calc(100svh + 68px);
  }

  .client-strip {
    padding: 18px 0;
  }

  .client-track {
    --client-logo-width: 120px;
    --client-logo-gap: 38px;
    gap: var(--client-logo-gap);
  }

  .client-logo-link {
    height: 43.2px;
  }

  .numbers-section {
    min-height: 700px;
    overflow: visible;
    padding: 82px 16px 36px;
  }

  .numbers-top {
    min-height: 220px;
  }

  .numbers-heading {
    font-size: 50px;
    width: max-content;
    max-width: none;
  }

  .numbers-line-main {
    margin-left: 1.35em;
    font-size: 1em;
  }

  .numbers-line-sub {
    margin-top: 16px;
  }

  .numbers-line-main,
  .numbers-line-sub {
    white-space: nowrap;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .number-card {
    min-height: 145px;
    padding: 26px 15px 18px;
  }

  .number-card:nth-child(3) {
    border-left: 0;
    border-top: 0;
  }

  .number-card:nth-child(3)::before {
    display: none;
  }

  .number-card:nth-child(4) {
    border-top: 0;
  }

  .number-value {
    font-size: 26px;
  }

  .number-card p {
    margin-top: 14px;
    font-size: 12px;
  }

  .next-section {
    min-height: 860px;
    padding: 64px 24px 18px;
  }

  .faces-title {
    font-size: 33px;
  }

  .faces-filter-button {
    margin: 18px 0 0;
    min-height: 42px;
  }

  .faces-filter-menu {
    position: absolute;
    top: 170px;
    left: 24px;
    grid-template-columns: 1fr;
    width: calc(100% - 48px);
    height: calc(100% - 194px);
    max-height: calc(100% - 194px);
    min-height: 0;
    overflow-y: auto;
  }

  .filter-menu-tree {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .filter-node {
    min-width: 0;
  }

  .filter-dropdown {
    position: static;
    width: 100%;
    max-height: 210px;
  }

  .filter-node-look .filter-dropdown {
    width: 100%;
    padding-right: 128px;
  }

  .filter-node-look .filter-subdropdown {
    left: 116px;
    width: 124px;
  }

  .filter-node-look .filter-subnode.has-scroll-cue.is-scroll-idle::after {
    top: 77px;
    left: 218px;
  }

  .filter-subdropdown {
    max-height: 154px;
  }

  .filter-menu-spacer {
    display: none;
  }

  .faces-marquee {
    top: 246px;
    height: 540px;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .faces-marquee.is-static-results {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .faces-marquee.is-static-results.is-static-centered .faces-marquee-track {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .faces-marquee.is-static-results .faces-photo-card {
    scroll-snap-align: center;
  }

  .faces-marquee::-webkit-scrollbar {
    display: none;
  }

  .faces-marquee-track {
    width: max-content;
    padding: 28px calc((100vw - min(76vw, 300px)) / 2);
    transition: transform 720ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faces-marquee-set {
    gap: 16px;
    padding-right: 0;
  }

  .faces-marquee-set[aria-hidden="true"] {
    display: none;
  }

  .faces-photo-card,
  .faces-photo-card:nth-child(n) {
    width: min(76vw, 300px);
    height: auto;
    margin-top: 0;
  }

  .faces-photo-card:hover,
  .faces-photo-card:focus-visible {
    transform: none;
  }

  .faces-card-details {
    gap: 12px;
    padding: 22px;
  }

  .faces-card-name {
    font-size: 28px;
  }

  .faces-card-filter-pill {
    font-size: 10px;
  }

  .work-section {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 18px;
    min-height: 620px;
    padding: 78px 24px 48px;
  }

  .work-heading {
    margin-bottom: 10px;
  }

  .work-heading h2 {
    font-size: 34px;
  }

  .work-grid {
    display: contents;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 0;
  }

  .work-card {
    min-height: 360px;
  }

  .work-card:first-child {
    order: 2;
  }

  .work-card:nth-child(2) {
    order: 4;
  }

  .work-play {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
  }

  .work-card-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .work-card-title {
    font-size: 22px;
  }

  .work-card-tags span {
    min-height: 28px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .work-notes {
    display: contents;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 0;
  }

  .work-notes p {
    width: 100%;
    font-size: 12px;
    line-height: 1.22;
  }

  .work-notes p:first-child {
    order: 3;
  }

  .work-notes p:nth-child(2) {
    order: 5;
  }

  .how-works-section {
    min-height: 974px;
    padding: 72px 12px 96px;
  }

  .how-works-grid {
    grid-template-columns: 1fr;
    width: 93.75%;
    max-width: none;
  }

  .how-works-card,
  .how-works-card--title {
    min-height: 206.25px;
  }

  .how-works-card--title {
    padding: 28px;
  }

  .how-works-card--title h2 {
    font-size: 33px;
  }

  .testimonials {
    padding: 64px 0 78px;
  }

  .testimonials-head {
    margin-bottom: 40px;
    padding: 0 24px;
  }

  .testimonials-kicker,
  .testimonials-sub {
    font-size: 14px;
  }

  .testimonials-title {
    font-size: 28px;
  }

  .testimonials-marquee {
    overflow-x: hidden;
    overflow-y: visible;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-y;
  }

  .testimonials-marquee::-webkit-scrollbar {
    display: none;
  }

  .testimonials-track {
    width: max-content;
    padding: 28px calc((100vw - min(78vw, 300px)) / 2) 36px;
    transition: transform 720ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .testimonial-set {
    gap: 16px;
    padding-right: 0;
  }

  .testimonial-set[aria-hidden="true"] {
    display: none;
  }

  .testimonial-card {
    width: min(78vw, 300px);
    min-height: 190px;
    padding: 24px;
    scroll-snap-align: center;
  }

  .testimonial-quote {
    font-size: 16px;
  }

  .testimonial-mark {
    right: 20px;
    bottom: 84px;
    font-size: 96px;
  }

  .faq-section {
    min-height: 760px;
    padding: 86px 24px 96px;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .faq-copy h2 {
    font-size: 42px;
  }

  .faq-copy p {
    margin-top: 36px;
    font-size: 14px;
  }

  .faq-question {
    min-height: 62px;
  }

  .faq-answer {
    padding-right: 42px;
  }

  .faq-list {
    transform: translateY(-6px);
  }

  .yacht-cta-section {
    min-height: 560px;
    padding: 72px 24px 96px;
  }

  .yacht-cta-title {
    font-size: 53px;
    white-space: normal;
  }

  .yacht-cta-copy {
    max-width: 318px;
    margin-top: 41px;
    font-size: 13px;
  }

  .yacht-cta-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }

  .yacht-cta-button {
    width: min(100%, 274px);
    min-height: 45px;
  }
}

@media (max-width: 959px) and (prefers-reduced-motion: reduce) {
  .testimonials-marquee {
    overflow-x: hidden;
    overflow-y: visible;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-y;
  }

  .testimonials-marquee::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    scroll-snap-align: center;
  }

  .faces-marquee {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .faces-photo-card,
  .faces-photo-card:nth-child(n) {
    scroll-snap-align: center;
  }
}
