html {
  scroll-behavior: auto !important;
}

body.bf-body-active {
  margin: 0;
  overflow-x: hidden;
  background: #111611;
}

.bf-experience,
.bf-experience * {
  box-sizing: border-box;
}

.bf-experience {
  --dark: #111611;
  --black: #111;
  --white: #fff;
  --red: #df332d;
  --muted: rgba(255,255,255,.72);
  width: 100%;
  min-height: 100vh;
  font-family: Inter, Helvetica, Arial, sans-serif;
  direction: ltr;
  color: #111;
  cursor: none;
}

.bf-experience a,
.bf-experience button {
  cursor: none;
}

/* Smooth scroll layer */
.bf-smooth {
  width: 100%;
  will-change: transform;
}

body.bf-smooth-ready .bf-smooth {
  position: fixed;
  inset: 0;
  z-index: 1;
}

.bf-page {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

/* Cursor */
.bf-cursor-dot,
.bf-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1000002;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
}

.bf-cursor-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.bf-cursor-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(20,20,20,.09);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(1px);
  transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease;
}

body.bf-cursor-ready .bf-cursor-dot,
body.bf-cursor-ready .bf-cursor-ring {
  opacity: 1;
}

body.bf-cursor-hover .bf-cursor-ring {
  width: 78px;
  height: 78px;
  border-color: rgba(20,20,20,.08);
  background: rgba(245,245,245,.60);
}

body.bf-menu-open .bf-cursor-ring {
  border-color: rgba(0,0,0,.08);
  background: rgba(245,245,245,.60);
}

/* Loader */
.bf-loader {
  position: fixed;
  inset: 0;
  z-index: 1000001;
  background: #fff;
  overflow: hidden;
  pointer-events: none;
  animation: bfLoaderOut .7s ease 2.65s forwards;
}

.bf-loader::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: #111611;
  animation: bfCurtain 1.05s cubic-bezier(.76,0,.24,1) 1.45s forwards;
}

.bf-loader-mark {
  position: absolute;
  right: 27%;
  top: 49%;
  width: 230px;
  transform: translateY(-50%);
  z-index: 2;
  animation: bfMarkFade .7s ease 1.85s forwards;
}

.bf-loader-mark svg {
  width: 100%;
  fill: #101010;
}

@keyframes bfCurtain {
  to { width: 100%; }
}

@keyframes bfLoaderOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes bfMarkFade {
  to {
    opacity: .08;
    transform: translateY(-50%) scale(.96);
  }
}

/* Header */
.bf-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000000;
  padding: 38px 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: normal;
  transition: color .35s ease, opacity .35s ease;
}

.bf-brand {
  position: relative;
  width: 150px;
  height: 42px;
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.bf-brand-word {
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2.3px;
  color: currentColor;
  transition: opacity .25s ease, transform .25s ease;
}

.bf-brand-icon {
  position: absolute;
  left: 0;
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translateY(-50%) scale(.9);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}

.bf-brand-icon svg {
  width: 100%;
  height: 100%;
}

.bf-brand-icon circle,
.bf-brand-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bf-header-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.bf-talk {
  position: relative;
  color: currentColor;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
}

.bf-talk::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: .35;
  transform-origin: left;
  transition: transform .35s ease;
}

.bf-talk:hover::after {
  transform: scaleX(.55);
}

.bf-menu-btn {
  width: 55px;
  height: 55px;
  border: 0;
  border-radius: 50%;
  background: currentColor;
  display: grid;
  place-items: center;
  padding: 0;
  position: relative;
}

.bf-menu-btn span {
  position: absolute;
  width: 17px;
  height: 2px;
  background: var(--menu-line, #111);
  left: 50%;
  transform: translateX(-50%);
  transition: transform .35s cubic-bezier(.76,0,.24,1), top .35s cubic-bezier(.76,0,.24,1), background .25s ease;
}

.bf-menu-btn span:first-child {
  top: 23px;
}

.bf-menu-btn span:last-child {
  top: 31px;
}

.bf-topbar.bf-on-dark {
  color: #fff;
  --menu-line: #111;
}

.bf-topbar.bf-on-light {
  color: #111;
  --menu-line: #fff;
}

.bf-topbar.bf-on-light .bf-brand-word {
  opacity: 0;
  transform: translateX(-12px);
}

.bf-topbar.bf-on-light .bf-brand-icon {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

body.bf-menu-open .bf-topbar {
  color: #111;
  --menu-line: #fff;
}

body.bf-menu-open .bf-brand-word {
  opacity: 0;
  transform: translateX(-12px);
}

body.bf-menu-open .bf-brand-icon {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

body.bf-menu-open .bf-menu-btn span:first-child {
  top: 27px;
  transform: translateX(-50%) rotate(45deg);
}

body.bf-menu-open .bf-menu-btn span:last-child {
  top: 27px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Side scroll */
.bf-side-scroll {
  position: fixed;
  right: 72px;
  bottom: 88px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: rotate(90deg);
  transform-origin: right center;
  color: #fff;
  transition: color .35s ease, opacity .35s ease;
  pointer-events: none;
}

.bf-side-scroll.bf-dark {
  color: #111;
}

body.bf-menu-open .bf-side-scroll {
  opacity: 0;
}

.bf-scroll-line {
  width: 62px;
  height: 1px;
  background: currentColor;
  opacity: .25;
  position: relative;
  display: block;
  overflow: hidden;
}

.bf-scroll-line i {
  position: absolute;
  inset: 0;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(.08);
}

.bf-side-scroll b {
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 700;
}

/* Menu overlay */
.bf-menu-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999999;
  pointer-events: none;
  visibility: hidden;
  clip-path: circle(0% at calc(100% - 104px) 66px);
  transition: clip-path .85s cubic-bezier(.76,0,.24,1), visibility 0s linear .85s;
}

body.bf-menu-open .bf-menu-overlay {
  pointer-events: auto;
  visibility: visible;
  clip-path: circle(145% at calc(100% - 104px) 66px);
  transition: clip-path .95s cubic-bezier(.76,0,.24,1), visibility 0s;
}

.bf-menu-inner {
  width: 100%;
  height: 100vh;
  min-height: 720px;
  position: relative;
  padding: 150px 9vw 90px 15vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bf-menu-label {
  position: absolute;
  left: 10vw;
  top: 185px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 5px;
  color: #111;
}

.bf-menu-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 56vw;
}

.bf-menu-link {
  position: relative;
  width: fit-content;
  color: rgba(0,0,0,.055);
  text-decoration: none;
  font-size: clamp(54px, 6vw, 118px);
  line-height: .88;
  letter-spacing: -6px;
  font-weight: 900;
  transition: color .25s ease, transform .35s ease;
}

.bf-menu-link::before {
  content: attr(data-index);
  position: absolute;
  left: 8px;
  top: 8px;
  font-size: 15px;
  letter-spacing: 5px;
  font-weight: 800;
  color: #111;
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity .25s ease, transform .35s ease;
}

.bf-menu-link span {
  display: block;
  position: relative;
}

.bf-menu-link span::after {
  content: "";
  position: absolute;
  left: -8px;
  top: 18%;
  width: 42%;
  height: 68%;
  background: #111;
  transform: scaleX(0);
  transform-origin: left;
  clip-path: polygon(0 0, 72% 0, 100% 100%, 0% 100%);
  transition: transform .45s cubic-bezier(.76,0,.24,1);
  z-index: -1;
}

.bf-menu-link.is-active,
.bf-menu-link:hover {
  color: #111;
  transform: translateX(24px);
}

.bf-menu-link.is-active::before,
.bf-menu-link:hover::before {
  opacity: 1;
  transform: translateX(-46px);
}

.bf-menu-link:hover span::after {
  transform: scaleX(1);
}

.bf-menu-contact {
  width: 32vw;
  max-width: 420px;
  padding-top: 150px;
}

.bf-menu-contact a {
  display: block;
  width: fit-content;
  color: #b43b35;
  text-decoration: none;
  font-size: 24px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(180,59,53,.45);
  margin-bottom: 8px;
}

.bf-menu-contact p {
  margin: 34px 0 42px;
  color: #111;
  font-size: 23px;
  line-height: 1.7;
}

.bf-socials {
  display: flex;
  align-items: center;
  gap: 30px;
}

.bf-socials a {
  border: 0;
  color: rgba(0,0,0,.45);
  font-size: 22px;
  text-transform: uppercase;
  margin: 0;
}

/* Hero */
.bf-hero {
  position: relative;
  min-height: 100vh;
  background: #111611;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.bf-hero-content {
  position: relative;
  z-index: 5;
  padding-left: 13.5vw;
  padding-top: 24vh;
  max-width: 980px;
  will-change: transform;
}

.bf-kicker {
  margin: 0 0 58px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 13px;
}

.bf-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(68px, 6.2vw, 126px);
  line-height: .98;
  letter-spacing: -6px;
  font-weight: 900;
}

.bf-desc {
  margin: 48px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 22px;
  line-height: 1.65;
  font-weight: 400;
}

.bf-cta {
  margin-top: 82px;
  display: inline-flex;
  align-items: center;
  gap: 34px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 5px;
}

.bf-cta::before,
.bf-more::before {
  content: "";
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-24px, -50%);
  transition: width .35s ease, background .35s ease;
}

.bf-cta,
.bf-more {
  position: relative;
}

.bf-cta span,
.bf-cta i,
.bf-more span,
.bf-more i {
  position: relative;
  z-index: 2;
}

.bf-cta i,
.bf-more i {
  font-style: normal;
  font-size: 22px;
  font-weight: 300;
  transition: transform .3s ease;
}

.bf-cta:hover::before {
  width: calc(100% + 80px);
  background: rgba(255,255,255,.13);
}

.bf-cta:hover i,
.bf-more:hover i {
  transform: rotate(90deg);
}

.bf-big-mark {
  position: absolute;
  z-index: 1;
  right: 13%;
  top: -2%;
  width: min(48vw, 780px);
  opacity: .22;
  will-change: transform;
}

.bf-big-mark svg {
  width: 100%;
  fill: #252a30;
}

.bf-bg-circle {
  position: absolute;
  border: 1px solid rgba(255,255,255,.045);
  border-radius: 50%;
  z-index: 0;
}

.bf-bg-circle-1 {
  width: 980px;
  height: 980px;
  left: 30%;
  top: -410px;
}

.bf-bg-circle-2 {
  width: 1120px;
  height: 1120px;
  right: -320px;
  bottom: -510px;
}

.bf-dots {
  position: absolute;
  z-index: 6;
  right: 16%;
  top: 43%;
  width: 86px;
  height: 86px;
  background-image: radial-gradient(rgba(255,255,255,.75) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: .9;
  will-change: transform;
}

.bf-dots::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 14px;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: -32px -32px 0 var(--red);
}

/* Work */
.bf-work {
  position: relative;
  background: #fff;
  color: #111;
  min-height: 220vh;
  padding: 160px 11vw 170px;
}

.bf-work::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 440px;
  height: 120px;
  background: #fff;
  border-radius: 0 0 220px 220px;
  transform: translateX(-50%);
  z-index: 2;
}

.bf-work-head {
  position: relative;
  z-index: 3;
  margin-bottom: 160px;
}

.bf-work-head h2 {
  margin: 0;
  font-size: clamp(52px, 4.4vw, 86px);
  letter-spacing: -4px;
  line-height: 1;
  font-weight: 900;
}

.bf-work-head p {
  margin: 36px 0 0;
  font-size: 25px;
  line-height: 1.5;
  color: #2a2a2a;
}

.bf-work-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 7vw;
  row-gap: 170px;
}

.bf-project {
  position: relative;
  display: block;
  min-height: 570px;
  color: #111;
  text-decoration: none;
  overflow: visible;
  will-change: transform;
}

.bf-project:nth-child(even) {
  margin-top: -80px;
}

.bf-project-media {
  position: relative;
  height: 470px;
  overflow: hidden;
  background: #eee;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}

.bf-project-media img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  display: block;
  transform: translateY(var(--imgY, 0px)) scale(1.05);
  transition: transform .6s ease, filter .45s ease;
  will-change: transform;
}

.bf-project:hover .bf-project-media img {
  transform: translateY(var(--imgY, 0px)) scale(1.1);
  filter: contrast(1.04);
}

.bf-project-info {
  position: relative;
  text-align: right;
  padding: 34px 0 0;
}

.bf-project-info h3 {
  margin: 0 0 18px;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 4px;
}

.bf-project-info p {
  margin: 0;
  font-size: 19px;
  color: #222;
}

.bf-project-yellow .bf-project-media {
  background: #eac52d;
}

.bf-project-yellow .bf-project-media::before {
  content: "A";
  position: absolute;
  inset: auto auto 34px 72px;
  font-size: 430px;
  line-height: .7;
  font-weight: 900;
  color: rgba(255,255,255,.12);
  z-index: 1;
}

.bf-project-yellow img {
  mix-blend-mode: multiply;
}

.bf-project-white .bf-project-media {
  background: #f3f3f3;
}

.bf-project-dark .bf-project-media {
  background: #333;
}

.bf-project-purple .bf-project-media {
  background: #5942d7;
}

.bf-more-wrap {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.bf-more {
  position: relative;
  color: #111;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 42px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 7px;
}

.bf-more::before {
  background: rgba(0,0,0,.04);
  transform: translate(-32px, -50%);
}

.bf-more:hover::before {
  width: calc(100% + 95px);
  background: rgba(0,0,0,.065);
}

/* Reveal */
.bf-reveal {
  opacity: 0;
  transform: translateY(85px);
  clip-path: inset(0 0 18% 0);
  transition:
    opacity .85s ease,
    transform 1.05s cubic-bezier(.22,1,.36,1),
    clip-path 1.05s cubic-bezier(.22,1,.36,1);
}

.bf-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

.bf-project:nth-child(2).bf-reveal {
  transition-delay: .08s;
}

.bf-project:nth-child(3).bf-reveal {
  transition-delay: .12s;
}

.bf-project:nth-child(4).bf-reveal {
  transition-delay: .18s;
}

/* SECTION 3: RED STATEMENT */
.bf-brand-statement {
  position: relative;
  min-height: 118vh;
  background: #df332d;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 16vh 15.5vw 0;
}

.bf-statement-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
}

.bf-statement-kicker {
  margin: 0 0 42px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 7px;
  color: rgba(255,255,255,.86);
}

.bf-statement-inner h2 {
  margin: 0;
  font-size: clamp(32px, 3.35vw, 66px);
  line-height: 1.48;
  letter-spacing: 2px;
  font-weight: 900;
  color: #fff;
}

.bf-statement-inner h2 span {
  display: inline-block;
  margin-left: 8px;
  transform: translateY(7px);
  font-size: .9em;
  line-height: 1;
}

.bf-white-reveal {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 0;
  background: #fff;
  z-index: 1;
  transform-origin: bottom;
  will-change: height;
}

/* WHAT WE DO SECTION */
.bf-services-section {
  position: relative;
  min-height: 330vh;
  background: #fff;
  color: #111;
  overflow: visible;
}

.bf-services-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: 760px;
  background: #fff;
  overflow: hidden;
}

.bf-service-label {
  position: absolute;
  z-index: 8;
  left: 14.2vw;
  top: 18.2vh;
  color: #111;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 13px;
  font-weight: 900;
}

.bf-service-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.bf-service-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .58s ease;
}

.bf-service-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.bf-service-bg-word {
  position: absolute;
  z-index: 1;
  left: 10vw;
  top: 37%;
  transform: translateY(-50%);
  color: rgba(0,0,0,.035);
  font-size: clamp(120px, 17vw, 340px);
  line-height: .8;
  letter-spacing: -18px;
  font-weight: 900;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  transform-origin: left center;
  transition:
    opacity .75s ease,
    transform .95s cubic-bezier(.22,1,.36,1);
}

.bf-service-slide.is-active .bf-service-bg-word {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.bf-service-slide:not(.is-active) .bf-service-bg-word {
  transform: translateY(-50%) translateX(-70px);
}

.bf-service-image-wrap {
  position: absolute;
  z-index: 3;
  left: 32.4vw;
  top: 49%;
  width: 34vw;
  max-width: 680px;
  min-width: 520px;
  height: 610px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.bf-service-image-shape {
  width: 100%;
  height: 100%;
  clip-path: polygon(44% 0, 100% 21%, 74% 100%, 0 72%, 22% 24%);
  overflow: hidden;
  background: #f3f3f3;
  transform: translateY(60px) scale(.96) rotate(-.001deg);
  opacity: 0;
  transition:
    opacity .72s ease,
    transform .95s cubic-bezier(.22,1,.36,1),
    clip-path .95s cubic-bezier(.22,1,.36,1);
  will-change: transform, clip-path;
}

.bf-service-slide.is-active .bf-service-image-shape {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(-.001deg);
}

.bf-service-slide:nth-child(2) .bf-service-image-shape {
  clip-path: polygon(38% 0, 100% 18%, 70% 100%, 0 70%, 20% 25%);
}

.bf-service-slide:nth-child(3) .bf-service-image-shape {
  clip-path: polygon(42% 0, 96% 19%, 72% 100%, 0 72%, 25% 20%);
}

.bf-service-image-shape img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  display: block;
  transform: translateY(var(--serviceImgY, 0px)) scale(1.04);
  transition: transform .75s ease;
  will-change: transform;
}

.bf-service-copy {
  position: absolute;
  z-index: 5;
  left: 60.5vw;
  top: 53%;
  transform: translateY(-50%);
  width: 520px;
  color: #111;
}

.bf-service-copy p {
  margin: 0 0 58px;
  color: rgba(0,0,0,.62);
  font-size: clamp(22px, 1.55vw, 31px);
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: -.6px;
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity .65s ease .08s,
    transform .9s cubic-bezier(.22,1,.36,1) .08s;
}

.bf-service-slide.is-active .bf-service-copy p {
  opacity: 1;
  transform: translateY(0);
}

.bf-service-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 38px;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 7px;
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity .65s ease .18s,
    transform .9s cubic-bezier(.22,1,.36,1) .18s;
}

.bf-service-slide.is-active .bf-service-btn {
  opacity: 1;
  transform: translateY(0);
}

.bf-service-btn::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 50%;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: rgba(0,0,0,.045);
  transform: translateY(-50%);
  transition:
    width .42s cubic-bezier(.22,1,.36,1),
    background .35s ease;
}

.bf-service-btn:hover::before {
  width: calc(100% + 88px);
  background: rgba(0,0,0,.075);
}

.bf-service-btn span,
.bf-service-btn i {
  position: relative;
  z-index: 2;
}

.bf-service-btn i {
  font-style: normal;
  font-size: 25px;
  font-weight: 300;
  transform-origin: center;
  transition: transform .35s ease;
}

.bf-service-btn:hover i {
  transform: rotate(90deg);
}

.bf-service-dots {
  position: absolute;
  z-index: 10;
  right: 5vw;
  top: 42%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.bf-service-dots button {
  width: 5px;
  height: 5px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  transition:
    background .25s ease,
    transform .25s ease,
    opacity .25s ease;
}

.bf-service-dots button.is-active {
  background: #111;
  transform: scale(1.45);
}

.bf-service-dots button:hover {
  background: #df332d;
}

/* FINAL INSIGHTS SECTION */
.bf-insights-final {
  position: relative;
  background: #fff;
  color: #111;
  padding: 16vh 11vw 0;
  overflow: hidden;
}

.bf-final-insights-head {
  margin-bottom: 17vh;
}

.bf-final-insights-head h2 {
  margin: 0;
  color: #111;
  font-size: clamp(56px, 4.8vw, 96px);
  line-height: .95;
  letter-spacing: -5px;
  font-weight: 900;
}

.bf-final-insights-head p {
  margin: 44px 0 0;
  color: rgba(0,0,0,.66);
  font-size: clamp(20px, 1.45vw, 29px);
  line-height: 1.5;
  font-weight: 400;
}

.bf-final-insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 7vw;
  row-gap: 16vh;
}

.bf-final-insight-card {
  display: block;
  color: #111;
  text-decoration: none;
  position: relative;
}

.bf-final-insight-card:nth-child(even) {
  margin-top: -5vh;
}

.bf-final-insight-img {
  position: relative;
  width: 100%;
  height: 48vh;
  min-height: 430px;
  max-height: 560px;
  overflow: hidden;
  background: #f2f2f2;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}

.bf-final-insight-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.22);
  opacity: 0;
  transition: opacity .45s ease;
}

.bf-final-insight-card:hover .bf-final-insight-img::after {
  opacity: 1;
}

.bf-final-insight-img img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  display: block;
  transform: translateY(var(--finalInsightY, 0px)) scale(1.04);
  transition:
    transform .75s cubic-bezier(.22,1,.36,1),
    filter .45s ease;
  will-change: transform;
}

.bf-final-insight-card:hover .bf-final-insight-img img {
  transform: translateY(var(--finalInsightY, 0px)) scale(1.095);
  filter: contrast(1.04);
}

.bf-final-insight-meta {
  margin-top: 5.2vh;
  color: #111;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 4px;
}

.bf-final-insight-card h3 {
  margin: 36px 0 0;
  color: #111;
  font-size: clamp(30px, 2.35vw, 50px);
  line-height: 1.55;
  letter-spacing: 2px;
  font-weight: 400;
}

.bf-final-more-wrap {
  height: 48vh;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.bf-final-more {
  position: relative;
  color: #111;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 42px;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 7px;
}

.bf-final-more::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(0,0,0,.045);
  transform: translateY(-50%);
  transition:
    width .42s cubic-bezier(.22,1,.36,1),
    background .35s ease;
}

.bf-final-more:hover::before {
  width: calc(100% + 94px);
  background: rgba(0,0,0,.075);
}

.bf-final-more span,
.bf-final-more i {
  position: relative;
  z-index: 2;
}

.bf-final-more i {
  font-style: normal;
  font-size: 24px;
  font-weight: 300;
  transition: transform .35s ease;
}

.bf-final-more:hover i {
  transform: rotate(90deg);
}

/* Reveal motion for final */
.bf-final-reveal {
  opacity: 0;
  transform: translateY(90px);
  clip-path: inset(0 0 18% 0);
  transition:
    opacity .9s ease,
    transform 1.05s cubic-bezier(.22,1,.36,1),
    clip-path 1.05s cubic-bezier(.22,1,.36,1);
}

.bf-final-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

.bf-final-insight-card:nth-child(2).bf-final-reveal {
  transition-delay: .08s;
}

.bf-final-insight-card:nth-child(3).bf-final-reveal {
  transition-delay: .05s;
}

.bf-final-insight-card:nth-child(4).bf-final-reveal {
  transition-delay: .14s;
}

/* FINAL DARK FOOTER */
.bf-footer-final {
  position: relative;
  min-height: 100vh;
  background: #10150f;
  color: #fff;
  overflow: hidden;
  padding: 15vh 11vw 8vh;
}

.bf-footer-final::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.06);
}

.bf-footer-bg-dot {
  position: absolute;
  right: 12vw;
  top: 18vh;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #df332d;
  box-shadow:
    -32px -32px 0 rgba(255,255,255,.06),
    32px 32px 0 rgba(255,255,255,.04);
  opacity: .8;
}

.bf-footer-main {
  position: relative;
  z-index: 2;
  min-height: 76vh;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  grid-template-rows: 1fr auto;
  column-gap: 8vw;
}

.bf-footer-left {
  align-self: center;
}

.bf-footer-logo {
  width: 82px;
  height: 82px;
  display: inline-flex;
  color: #fff;
  text-decoration: none;
  margin-bottom: 82px;
  transition: transform .35s ease;
}

.bf-footer-logo:hover {
  transform: rotate(-8deg) scale(1.04);
}

.bf-footer-logo svg {
  width: 100%;
  height: 100%;
}

.bf-footer-logo circle,
.bf-footer-logo path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bf-footer-left h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 2.45vw, 54px);
  line-height: 1.55;
  letter-spacing: 2px;
  font-weight: 400;
}

.bf-footer-contact {
  align-self: center;
  padding-top: 7vh;
}

.bf-footer-contact p,
.bf-footer-explore p {
  margin: 0 0 52px;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 5px;
}

.bf-footer-contact a {
  display: block;
  width: fit-content;
  color: #df332d;
  text-decoration: none;
  font-size: clamp(23px, 1.5vw, 32px);
  line-height: 1.45;
  letter-spacing: 1.5px;
  border-bottom: 1px solid rgba(223,51,45,.6);
  margin-bottom: 24px;
  transition: color .3s ease, border-color .3s ease, transform .3s ease;
}

.bf-footer-contact a:hover {
  color: #fff;
  border-color: rgba(255,255,255,.55);
  transform: translateX(8px);
}

.bf-footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  column-gap: 8vw;
  align-items: end;
  padding-bottom: 1vh;
}

.bf-footer-socials {
  display: flex;
  align-items: center;
  gap: 38px;
}

.bf-footer-socials a {
  color: rgba(255,255,255,.68);
  text-decoration: none;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 800;
  transition: color .28s ease, transform .28s ease;
}

.bf-footer-socials a:hover {
  color: #fff;
  transform: translateY(-5px);
}

.bf-footer-explore nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 38px;
  margin-bottom: 34px;
}

.bf-footer-explore nav a {
  color: rgba(255,255,255,.56);
  text-decoration: none;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 600;
  transition: color .3s ease;
}

.bf-footer-explore nav a:hover {
  color: #fff;
}

.bf-footer-explore span {
  display: block;
  color: rgba(255,255,255,.28);
  font-size: 18px;
  line-height: 1.5;
}

/* Cursor theme inside footer */
body.bf-footer-zone .bf-cursor-ring {
  border-color: rgba(255,255,255,.11);
  background: rgba(255,255,255,.04);
}

body.bf-footer-zone.bf-cursor-hover .bf-cursor-ring {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.14);
}

/* Responsive */
@media (max-width: 1024px) {
  .bf-topbar {
    padding: 30px 34px;
  }

  .bf-hero-content {
    padding-left: 8vw;
  }

  .bf-hero h1 {
    font-size: 78px;
  }

  .bf-desc {
    font-size: 18px;
  }

  .bf-work {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .bf-work-grid {
    gap: 90px 5vw;
  }

  .bf-project-media {
    height: 380px;
  }

  .bf-menu-inner {
    padding-left: 13vw;
  }

  .bf-brand-statement {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .bf-statement-inner h2 {
    font-size: 42px;
  }

  .bf-service-label {
    left: 8vw;
  }

  .bf-service-image-wrap {
    left: 34vw;
    min-width: 410px;
    height: 520px;
  }

  .bf-service-copy {
    left: 57vw;
    width: 390px;
  }

  .bf-service-copy p {
    font-size: 22px;
  }

  .bf-insights-final {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .bf-final-insights-grid {
    column-gap: 5vw;
  }

  .bf-final-insight-img {
    min-height: 340px;
  }

  .bf-final-insight-card h3 {
    font-size: 32px;
    line-height: 1.45;
    letter-spacing: .5px;
  }

  .bf-footer-final {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .bf-footer-main,
  .bf-footer-bottom {
    column-gap: 5vw;
  }
}

@media (max-width: 767px) {
  .bf-experience {
    cursor: auto;
  }

  .bf-experience a,
  .bf-experience button {
    cursor: pointer;
  }

  .bf-cursor-dot,
  .bf-cursor-ring {
    display: none;
  }

  body.bf-smooth-ready .bf-smooth {
    position: relative;
    transform: none !important;
  }

  .bf-topbar {
    padding: 22px 20px;
  }

  .bf-brand {
    width: 120px;
  }

  .bf-brand-word {
    font-size: 21px;
    letter-spacing: -1.4px;
  }

  .bf-brand-icon {
    width: 46px;
    height: 46px;
  }

  .bf-talk {
    display: none;
  }

  .bf-menu-btn {
    width: 48px;
    height: 48px;
  }

  .bf-side-scroll {
    display: none;
  }

  .bf-hero {
    min-height: 100svh;
  }

  .bf-hero-content {
    padding: 155px 24px 70px;
  }

  .bf-kicker {
    font-size: 10px;
    letter-spacing: 6px;
    margin-bottom: 35px;
  }

  .bf-hero h1 {
    font-size: 50px;
    letter-spacing: -2.5px;
  }

  .bf-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 28px;
  }

  .bf-desc br {
    display: none;
  }

  .bf-cta {
    margin-top: 52px;
    font-size: 11px;
    letter-spacing: 3px;
  }

  .bf-big-mark {
    width: 120vw;
    right: -45vw;
    top: 18vh;
  }

  .bf-dots {
    width: 62px;
    height: 62px;
    right: 24px;
    top: 58vh;
    background-size: 12px 12px;
  }

  .bf-work {
    min-height: auto;
    padding: 100px 24px 120px;
  }

  .bf-work::before {
    width: 230px;
    height: 70px;
  }

  .bf-work-head {
    margin-bottom: 70px;
  }

  .bf-work-head h2 {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .bf-work-head p {
    margin-top: 20px;
    font-size: 16px;
  }

  .bf-work-grid {
    grid-template-columns: 1fr;
    row-gap: 70px;
  }

  .bf-project,
  .bf-project:nth-child(even) {
    margin-top: 0;
    min-height: auto;
  }

  .bf-project-media {
    height: 330px;
  }

  .bf-project-info h3 {
    font-size: 28px;
  }

  .bf-project-info p {
    font-size: 15px;
  }

  .bf-more-wrap {
    min-height: 260px;
  }

  .bf-more {
    font-size: 11px;
    letter-spacing: 4px;
  }

  .bf-menu-overlay {
    clip-path: circle(0% at calc(100% - 44px) 45px);
  }

  body.bf-menu-open .bf-menu-overlay {
    clip-path: circle(150% at calc(100% - 44px) 45px);
  }

  .bf-menu-inner {
    min-height: 100svh;
    padding: 115px 24px 42px;
    display: block;
  }

  .bf-menu-label {
    left: 24px;
    top: 132px;
    font-size: 11px;
    letter-spacing: 4px;
  }

  .bf-menu-list {
    width: 100%;
    padding-left: 52px;
    gap: 12px;
  }

  .bf-menu-link {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .bf-menu-link.is-active,
  .bf-menu-link:hover {
    transform: translateX(16px);
  }

  .bf-menu-link::before {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .bf-menu-contact {
    width: 100%;
    padding: 55px 0 0 52px;
  }

  .bf-menu-contact a {
    font-size: 16px;
  }

  .bf-menu-contact p {
    font-size: 15px;
    margin: 24px 0 28px;
  }

  .bf-socials a {
    font-size: 15px;
  }

  .bf-brand-statement {
    min-height: auto;
    padding: 120px 24px 130px;
  }

  .bf-statement-kicker {
    font-size: 10px;
    letter-spacing: 5px;
    margin-bottom: 28px;
  }

  .bf-statement-inner h2 {
    font-size: 28px;
    line-height: 1.55;
    letter-spacing: .2px;
  }

  .bf-white-reveal {
    display: none;
  }

  .bf-services-section {
    min-height: auto;
  }

  .bf-services-sticky {
    position: relative;
    height: auto;
    min-height: auto;
    padding: 105px 24px 80px;
  }

  .bf-service-label {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 45px;
    font-size: 11px;
    letter-spacing: 7px;
  }

  .bf-service-slider {
    height: auto;
  }

  .bf-service-slide {
    position: relative;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    margin-bottom: 85px;
  }

  .bf-service-slide:last-child {
    margin-bottom: 0;
  }

  .bf-service-bg-word {
    left: -8px;
    top: 145px;
    font-size: 76px;
    letter-spacing: -5px;
    opacity: 1;
    transform: none !important;
  }

  .bf-service-image-wrap {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    height: 390px;
    transform: none;
    margin-bottom: 32px;
  }

  .bf-service-image-shape {
    opacity: 1;
    transform: none !important;
  }

  .bf-service-copy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    transform: none;
  }

  .bf-service-copy p {
    opacity: 1;
    transform: none;
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 36px;
  }

  .bf-service-btn {
    opacity: 1;
    transform: none;
    font-size: 11px;
    letter-spacing: 4px;
  }

  .bf-service-dots {
    display: none;
  }

  .bf-insights-final {
    padding: 95px 24px 0;
  }

  .bf-final-insights-head {
    margin-bottom: 70px;
  }

  .bf-final-insights-head h2 {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .bf-final-insights-head p {
    margin-top: 22px;
    font-size: 16px;
  }

  .bf-final-insights-grid {
    grid-template-columns: 1fr;
    row-gap: 72px;
  }

  .bf-final-insight-card:nth-child(even) {
    margin-top: 0;
  }

  .bf-final-insight-img {
    height: 320px;
    min-height: 320px;
  }

  .bf-final-insight-meta {
    margin-top: 28px;
    font-size: 11px;
    letter-spacing: 3px;
  }

  .bf-final-insight-card h3 {
    margin-top: 18px;
    font-size: 26px;
    line-height: 1.42;
    letter-spacing: 0;
  }

  .bf-final-more-wrap {
    height: 300px;
    min-height: 300px;
  }

  .bf-final-more {
    font-size: 11px;
    letter-spacing: 4px;
  }

  .bf-footer-final {
    min-height: auto;
    padding: 90px 24px 54px;
  }

  .bf-footer-main {
    min-height: auto;
    display: block;
  }

  .bf-footer-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 48px;
  }

  .bf-footer-left h2 {
    font-size: 27px;
    line-height: 1.55;
  }

  .bf-footer-contact {
    padding-top: 68px;
  }

  .bf-footer-contact p,
  .bf-footer-explore p {
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 28px;
  }

  .bf-footer-contact a {
    font-size: 21px;
    margin-bottom: 18px;
  }

  .bf-footer-bottom {
    display: block;
    padding-top: 70px;
  }

  .bf-footer-socials {
    gap: 28px;
    margin-bottom: 56px;
  }

  .bf-footer-explore nav {
    gap: 0 24px;
    margin-bottom: 26px;
  }

  .bf-footer-explore nav a {
    font-size: 15px;
  }

  .bf-footer-explore span {
    font-size: 14px;
  }
}