@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Sora:wght@400;500;600;700;800&display=swap');

* {
  /* body font */
  --body-font: "Jost", Helvetica, Arial, sans-serif;
  --body-font-size: 18px;
  --body-font-color: #606060;
  --body-font-color-bg-dark: rgba(255, 255, 255, .75);
  --body-font-weight: 400;
  /* heading font */
  --heading-font: "Jost", Helvetica, Arial, sans-serif;  
  --heading-font-weight: 400;
  --heading-font-color: #181D24;
  --heading-font-color-bg-dark: #ffffff;
  --heading-text-transform: none;
  /* h1 */
  --h1-font-size: 60px;
  --h1-font-weight: var(--heading-font-weight);
  --h1-letter-spacing: -0.02em;
  --h1-line-height: 1.15em;
  --h1-margin-bottom: 20px;
  /* h2 */
  --h2-font: var(--heading-font);
  --h2-font-size: 52px;
  --h2-font-weight: var(--heading-font-weight);
  --h2-letter-spacing: -0.02em;
  --h2-line-height: 1.2em;
  --h2-margin-bottom: 25px;
  /* h3 */
  --h3-font-size: 26px;
  --h3-font-weight: 500;
  --h3-letter-spacing: 0;
  --h3-line-height: 1.5em;
  --h3-margin-bottom: 10px;
  /* h4 */
  --h4-font-size: 20px;
  --h4-font-weight: 500;
  --h4-letter-spacing: 0;
  --h4-line-height: 1.6em;
  --h4-margin-bottom: 10px;
  /* h5 */
  --h5-font-size: 18px;
  --h5-font-weight: 500;
  --h5-letter-spacing: 0;
  --h5-line-height: 1.6em;
  --h5-margin-bottom: 10px;
  /* h6 */
  --h6-font-size: 16px;
  --h6-font-weight: 500;
  --h6-letter-spacing: 0;
  --h6-line-height: 1.6em;
  --h6-margin-bottom: 10px;
  /* mainmenu */
  --mainmenu-font: var(--body-font);
  --mainmenu-font-size: 16px;
  --mainmenu-font-weight: 500;
  --mainmenu-letter-spacing: 0;
  --mainmenu-text-transform: none;
  /* subheader */
  --subheader-title-font-size: 60px;
  --subheader-title-text-transform: none;
  /* header logo */
  --logo-width: 240px;
  --logo-footer-width: 150px;
  /* misc */
  --border-default: solid 1px rgba(30, 30, 30, 1);
  --bg-color-even: #E8E8E8;
  --bg-color-odd: #F4F4F4;
  --bg-light: #F8F9FA;
  --bg-dark-1: #101010;
  --bg-dark-2: #202020;
  --bg-dark-3: #303030;  
  --bg-dark-1-rgb: 16, 16, 16;
  --bg-grey: #eeeeee;
  --bg-gradient-1: 0deg, rgba(var(--primary-color-rgb), .1) 0%, rgba(var(--secondary-color-rgb), .2) 100%;
  --swiper-theme-color: var(--secondary-color);
  --rounded-1: 16px;
  --border-color:#bbbbbb;
  --container-max-width:1240px;
  /* button */
  --btn-color: #fff;
  --btn-hover-bg: var(--primary-color);
  --btn-font-family: var(--body-font);
  --btn-font-size: 15px;
  --btn-font-weight: 500;
  --btn-letter-spacing: 0;
  --btn-padding: 6px 30px 6px 30px;
  --btn-rounded: 30px;
  --btn-text-decoration: none;
  --btn-text-transform: uppercase;
}

.hero-follow-social {
  display: flex;
  align-items: center;
}

.hero-follow-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-left: -10px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #fff;
  color: #111 !important;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  z-index: 0;
}

.hero-follow-social a:first-child {
  margin-left: 0;
}

.hero-follow-social a:hover {
  color: var(--primary-color) !important;
  z-index: 1;
}

/* Expanding image accordion — under hero */
.expand-gallery-section {
  background: #fff;
}

.expand-gallery {
  display: flex;
  gap: 12px;
  height: 560px;
}

.expand-card {
  position: relative;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  min-width: 78px;
  border-radius: 80px;
  overflow: hidden;
  color: #fff;
  text-decoration: none !important;
  transition: flex-grow .55s cubic-bezier(.22, 1, .36, 1), border-radius .55s ease;
}

.expand-card.is-active,
.expand-gallery:hover .expand-card:hover {
  flex-grow: 14;
  border-radius: 40px;
}

.expand-gallery:hover .expand-card:not(:hover) {
  flex-grow: 1;
  border-radius: 80px;
}

.expand-card img,
.expand-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform .7s ease;
}

.expand-card iframe {
  transform: none;
  pointer-events: none;
}

.expand-card.is-active iframe,
.expand-gallery:hover .expand-card:hover iframe {
  pointer-events: auto;
}

.expand-card.is-active img,
.expand-gallery:hover .expand-card:hover img {
  transform: scale(1);
}

.expand-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(16, 16, 16, .72) 100%);
  opacity: .35;
  transition: opacity .4s ease;
  pointer-events: none;
}

.expand-card.is-active .expand-card-shade,
.expand-gallery:hover .expand-card:hover .expand-card-shade {
  opacity: 1;
}

.expand-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  padding: 0 18px;
  z-index: 2;
  transition: justify-content .4s ease, padding .4s ease;
}

.expand-card.is-active .expand-card-content,
.expand-gallery:hover .expand-card:hover .expand-card-content {
  justify-content: flex-start;
  padding: 0 28px 8px;
}

.expand-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.expand-card-icon.icon-sun { color: #e39b2d; }
.expand-card-icon.icon-leaf { color: #3c9a5f; }
.expand-card-icon.icon-balance { color: var(--primary-color); }
.expand-card-icon.icon-heart { color: #d97878; }
.expand-card-icon.icon-moon { color: #4a7cc9; }

.expand-card-copy {
  min-width: 0;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, max-width .45s ease;
}

.expand-card.is-active .expand-card-copy,
.expand-gallery:hover .expand-card:hover .expand-card-copy {
  max-width: 420px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.expand-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .88);
  color: #181d24;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.expand-card-cta .fa {
  font-size: 11px;
  transform: rotate(-45deg);
}

.expand-card-copy h4 {
  color: #fff;
  margin: 0 0 2px;
  font-size: 28px;
  line-height: 1.15;
}

.expand-card-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
}

@media (max-width: 991px) {
  .expand-gallery-section {
    overflow: visible;
  }

  .expand-gallery.wow {
    visibility: visible !important;
    animation-name: none;
  }

  .expand-gallery {
    display: flex;
    flex-direction: row;
    height: 420px;
    gap: 8px;
  }

  .expand-card {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    min-width: 42px;
    height: 100%;
    border-radius: 48px;
  }

  .expand-card.is-active,
  .expand-gallery:hover .expand-card:hover {
    flex-grow: 14;
    border-radius: 28px;
  }

  .expand-gallery:hover .expand-card:not(:hover) {
    flex-grow: 1;
    border-radius: 48px;
  }

  .expand-card-icon {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }

  .expand-card-copy h4 {
    font-size: 20px;
  }

  .expand-card-copy p {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .expand-gallery {
    height: 360px;
    gap: 6px;
  }

  .expand-card {
    min-width: 32px;
    border-radius: 36px;
  }

  .expand-card.is-active,
  .expand-gallery:hover .expand-card:hover {
    border-radius: 22px;
  }

  .expand-card-icon {
    width: 20px;
    height: 20px;
    font-size: 8px;
  }

  .expand-card-copy h4 {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .expand-card,
  .expand-card img,
  .expand-card-shade,
  .expand-card-copy {
    transition: none;
  }
}

/* Best People framed card — under expand gallery */
.best-people-section {
  padding: 48px 0 90px;
  min-height: 780px;
  border-radius: 30px;
  margin: 20px;
  display: flex;
  align-items: flex-start;
}

.best-people-bg-stack {
  position: absolute;
  inset: 0;
}

.best-people-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity .8s ease;
}

.best-people-bg.is-show {
  opacity: 1;
}

.best-people-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 18, .62) 0%, rgba(4, 8, 18, .18) 38%, rgba(4, 8, 18, .28) 62%, rgba(4, 8, 18, .7) 100%);
  pointer-events: none;
}

.best-people-shell {
  position: relative;
  padding: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.vf {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, .9);
  pointer-events: none;
  z-index: 3;
}

.vf-tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.vf-tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.vf-bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.vf-br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.best-people-card {
  position: relative;
  border-radius: 28px;
  padding: 28px 36px 24px;
  background: rgba(10, 18, 40, .18);
  border: 1px solid rgba(255, 255, 255, .1);
  overflow: visible;
}

.best-people-window {
  height: 240px;
  min-height: 240px;
}

.best-people-intro {
  position: relative;
  z-index: 2;
  margin: 0 auto 20px;
  max-width: 720px;
}

.best-people-intro h2 {
  font-family: var(--heading-font);
  font-size: clamp(42px, 6.5vw, 72px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: #464545;
  margin-bottom: 16px;
}

.best-people-intro h2 span {
  color: #fff;
}

.best-people-intro p {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .78);
}

.people-fan {
  position: relative;
  height: 320px;
  margin: 8px 0 12px;
  z-index: 2;
}

.people-fan-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: 168px;
  border-radius: 22px;
  overflow: hidden;
  background: #1a1a1a;
  transform-origin: center bottom;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1), opacity .7s ease;
  cursor: pointer;
}

.people-fan-card[data-pos="-2"] {
  transform: translateX(-50%) translateX(-364px) rotate(-9deg) translateY(28px);
  z-index: 1;
  opacity: .78;
}

.people-fan-card[data-pos="-1"] {
  transform: translateX(-50%) translateX(-182px) rotate(-4deg) translateY(10px);
  z-index: 2;
}

.people-fan-card[data-pos="0"] {
  transform: translateX(-50%) rotate(0deg) translateY(-6px) scale(1.08);
  z-index: 5;
  opacity: 1;
}

.people-fan-card[data-pos="1"] {
  transform: translateX(-50%) translateX(182px) rotate(4deg) translateY(10px);
  z-index: 2;
}

.people-fan-card[data-pos="2"] {
  transform: translateX(-50%) translateX(364px) rotate(9deg) translateY(28px);
  z-index: 1;
  opacity: .78;
}

.people-fan-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.people-fan-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.people-fan-media::after {
  content: "";
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  opacity: .42;
  pointer-events: none;
}

.people-fan-card.tint-orange .people-fan-media::after { background: #e36a1c; }
.people-fan-card.tint-red .people-fan-media::after { background: #c43b3b; }
.people-fan-card.tint-navy .people-fan-media::after { background: #1d3a73; }
.people-fan-card.tint-grey .people-fan-media::after { background: #4a4a4a; }
.people-fan-card.tint-gold .people-fan-media::after { background: #d0893a; }

.people-fan-info {
  padding: 14px 12px 16px;
  text-align: center;
  background: #151515;
}

.people-fan-info h4 {
  color: #fff;
  font-size: 15px;
  margin: 0 0 10px;
}

.people-fan-btn {
  display: inline-block;
  background: #fff;
  color: #181d24 !important;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.6;
  transition: background .25s ease, color .25s ease;
}

.people-fan-btn:hover {
  background: var(--primary-color);
  color: #fff !important;
}

.btn-best-people {
  display: inline-block;
  background: #fff;
  color: #181d24 !important;
  border-radius: 999px;
  padding: 10px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}

.btn-best-people:hover {
  background: var(--primary-color);
  color: #fff !important;
}

@media (max-width: 991px) {
  .people-fan {
    height: 300px;
  }

  .people-fan-card {
    width: 140px;
  }

  .people-fan-media {
    height: 180px;
  }

  .people-fan-card[data-pos="-2"] {
    transform: translateX(-50%) translateX(-250px) rotate(-8deg) translateY(24px);
  }

  .people-fan-card[data-pos="-1"] {
    transform: translateX(-50%) translateX(-125px) rotate(-4deg) translateY(8px);
  }

  .people-fan-card[data-pos="0"] {
    transform: translateX(-50%) rotate(0deg) translateY(-4px) scale(1.06);
  }

  .people-fan-card[data-pos="1"] {
    transform: translateX(-50%) translateX(125px) rotate(4deg) translateY(8px);
  }

  .people-fan-card[data-pos="2"] {
    transform: translateX(-50%) translateX(250px) rotate(8deg) translateY(24px);
  }
  .best-people-window {
    height: 160px;
    min-height: 160px;
  }
}

@media (max-width: 767px) {
  .best-people-section {
    padding: 50px 0;
  }

  .best-people-card {
    padding: 0 10px 20px;
    border-radius: 20px;
  }

  .best-people-window {
    height: 120px;
    min-height: 120px;
  }

  .people-fan {
    height: 290px;
    margin-bottom: 24px;
  }

  .people-fan-card {
    width: 150px;
  }

  .people-fan-card[data-pos="-2"],
  .people-fan-card[data-pos="2"] {
    opacity: 0;
    pointer-events: none;
  }

  .people-fan-card[data-pos="-1"] {
    transform: translateX(-50%) translateX(-118px) rotate(-5deg) translateY(12px);
  }

  .people-fan-card[data-pos="1"] {
    transform: translateX(-50%) translateX(118px) rotate(5deg) translateY(12px);
  }

  .vf {
    width: 22px;
    height: 22px;
  }
}

/* Professional projects — Flip timeline */
.story-timeline {
  --st-bg: #05070c;
  --st-card: #12161f;
  --st-line: rgba(255, 255, 255, .12);
  --st-text: #f2f5fa;
  --st-muted: #8b93a7;
  --st-accent: #6f6f6f;
  background: var(--st-bg);
  color: var(--st-text);
  padding: 0 0 60px;
  -webkit-font-smoothing: antialiased;
}

.story-timeline .best-people-intro {
  font-family: var(--heading-font);
  padding-top: 80px;
  margin-bottom: 48px;
}

.story-timeline .best-people-intro h2,
.story-timeline .best-people-intro p {
  font-family: var(--heading-font);
}

.story-timeline .best-people-intro h2 {
  font-size: clamp(42px, 6.5vw, 72px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.story-timeline .best-people-intro h2 span {
  color: var(--st-accent);
}

.flip-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 48px 64px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.flip-steps {
  position: relative;
  padding-left: 34px;
}

.flip-rail {
  position: absolute;
  left: 7px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: rgba(255, 255, 255, .1);
}

.flip-rail::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--rail-progress, 0%);
  background: linear-gradient(180deg, var(--st-accent), rgba(94, 184, 255, .35));
  box-shadow: 0 0 14px rgba(94, 184, 255, .45);
  transition: none;
}

.flip-rail-tip {
  position: absolute;
  left: 1px;
  top: calc(var(--rail-progress, 0%) - 6px);
  width: 14px;
  height: 14px;
  margin-left: -6px;
  border-radius: 50%;
  background: var(--st-accent);
  box-shadow: 0 0 0 5px rgba(94, 184, 255, .16), 0 0 18px rgba(94, 184, 255, .7);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}

.flip-steps.is-tracking .flip-rail-tip {
  opacity: 1;
}

.flip-step {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: inherit;
  padding: 28px 0 48px 18px;
  cursor: pointer;
  opacity: .28;
  transition: opacity .45s ease;
}

.flip-step.is-active,
.flip-step.is-passed {
  opacity: 1;
}

.flip-step.is-passed:not(.is-active) {
  opacity: .38;
}

.flip-dot {
  position: absolute;
  left: -34px;
  top: 36px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .22);
  background: #0b0f16;
  z-index: 2;
  transition: border-color .35s ease, box-shadow .35s ease, background .35s ease, transform .35s ease;
}

.flip-step.is-active .flip-dot {
  border-color: var(--st-accent);
  background: radial-gradient(circle at center, #fff 0 28%, var(--st-accent) 32% 100%);
  box-shadow: 0 0 0 6px rgba(94, 184, 255, .14), 0 0 18px rgba(94, 184, 255, .55);
  transform: scale(1.08);
}

.flip-step-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 10px;
}

.flip-step.is-active .flip-step-label {
  color: var(--st-accent);
}

.flip-step h3 {
  font-family: var(--heading-font);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: rgba(255, 255, 255, .42);
  margin: 0 0 12px;
  letter-spacing: -.02em;
  transition: color .35s ease;
}

.flip-step.is-active h3 {
  color: #fff;
}

.flip-step > p {
  max-width: 420px;
  color: rgba(255, 255, 255, .34);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 18px;
  transition: color .35s ease;
}

.flip-step.is-active > p {
  color: var(--st-muted);
}

.flip-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
}

.flip-step.is-active .flip-metric {
  opacity: 1;
  transform: translateY(0);
}

.flip-metric strong {
  font-family: var(--heading-font);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--st-accent);
  letter-spacing: -.02em;
}

.flip-metric span {
  font-size: 14px;
  color: var(--st-muted);
}

.flip-stage {
  position: relative;
  min-height: 100%;
  perspective: 1400px;
}

.flip-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 360px);
  margin-left: calc(min(100%, 360px) / -2);
  aspect-ratio: 3 / 4.2;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .12s linear;
  transform: translate3d(0, var(--card-y, 0px), 0) rotateY(-12deg) rotateX(4deg);
}

.flip-card.is-flipping {
  transform: translate3d(0, var(--card-y, 0px), 0) rotateY(90deg) rotateX(6deg) scale(.94);
  transition: transform .32s cubic-bezier(.2, .8, .2, 1);
}

.flip-card-inner {
  position: relative;
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(160deg, #1a2030 0%, #0e121a 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, .55),
    0 0 0 1px rgba(94, 184, 255, .08),
    0 0 40px rgba(94, 184, 255, .08);
  padding: 28px 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.flip-card-count {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .55);
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  padding: 6px 12px;
}

.flip-card-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--st-accent);
  font-size: 34px;
  background: rgba(94, 184, 255, .08);
  box-shadow: 0 0 30px rgba(94, 184, 255, .18);
}

.flip-card-inner h4 {
  font-family: var(--heading-font);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -.02em;
}

.flip-card-inner p {
  max-width: 240px;
  margin: 0;
  color: var(--st-muted);
  font-size: 15px;
  line-height: 1.55;
}

.flip-card-glow {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--st-accent);
  box-shadow: 0 0 18px rgba(94, 184, 255, .8);
}

@media (max-width: 991px) {
  .flip-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .flip-stage {
    position: sticky;
    top: 90px;
    height: auto;
    min-height: 320px;
    order: -1;
    z-index: 4;
  }

  .flip-card {
    position: relative;
    left: auto;
    margin-left: auto;
    margin-right: auto;
    width: min(100%, 280px);
    aspect-ratio: 3 / 3.4;
    transform: none;
  }

  .flip-card.is-flipping {
    transform: scale(.96);
  }

  .flip-step {
    padding-bottom: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flip-card,
  .flip-step,
  .flip-metric,
  .flip-rail::after {
    transition: none;
  }
}

/* Our Journey So Far */
.journey-section {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 110px 0;
  background: #000;
  border-radius: 30px;
  margin: 20px;
}

.journey-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  /* filter: grayscale(1) contrast(1.08) brightness(.72); */
}

.journey-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .72) 34%, rgba(0, 0, 0, .28) 62%, rgba(0, 0, 0, .55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .55) 100%);
  pointer-events: none;
}

.journey-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
}

.journey-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.journey-title {
  font-family: var(--heading-font);
  font-size: clamp(52px, 7.5vw, 92px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.03em;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

.journey-lead {
  max-width: 380px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.6;
}

.journey-title span {
  color: #525252;
}

.journey-copy {
  max-width: 520px;
  padding-top: 45px;
}

.journey-copy .btn-main {
  margin-top: 24px;
}

.journey-role {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.35;
}

.journey-copy p {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.journey-stats {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 16px 48px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.journey-stat {
  flex: 1 1 0;
  min-width: 0;
}

.journey-stat-num {
  font-family: var(--heading-font);
  font-size: clamp(22px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.journey-stat-label {
  font-size: clamp(10px, 1.2vw, 16px);
  color: rgba(255, 255, 255, .78);
  line-height: 1.35;
}

@media (max-width: 991px) {
  .journey-section {
    min-height: auto;
    padding: 80px 0;
  }

  .journey-bg {
    object-position: 70% center;
  }

  .journey-stats {
    gap: 12px 18px;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .journey-title {
    font-size: 48px;
  }

  .journey-stats {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px 12px;
  }

  .journey-stat-num {
    font-size: clamp(20px, 6.4vw, 32px);
    margin-bottom: 6px;
  }

  .journey-stat-label {
    font-size: 10px;
  }
}

/* Sponsors logo marquee */
.sponsors-section {
  background: #fff;
  padding: 36px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.sponsors-intro {
  margin-bottom: 18px;
}

.sponsors-intro p {
  margin: 0;
  color: #666;
  font-size: 16px;
}

.sponsors-intro {
  margin-bottom: 18px;
}

.sponsors-intro p {
  margin: 0;
  color: #666;
  font-size: 16px;
}

.sponsors-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.sponsors-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 64px;
  animation: sponsors-slide 28s linear infinite;
}

.sponsors-marquee:hover .sponsors-track {
  animation-play-state: paused;
}

.sponsors-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  min-width: 140px;
}

.sponsors-item img {
  max-height: 56px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: .9;
  transition: opacity .25s ease;
}

.sponsors-item:hover img {
  opacity: 1;
}

@keyframes sponsors-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .sponsors-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 32px 48px;
  }
}

@media (max-width: 767px) {
  .sponsors-section {
    padding: 28px 0;
  }

  .sponsors-track {
    gap: 40px;
    animation-duration: 22s;
  }

  .sponsors-item {
    height: 56px;
    min-width: 110px;
  }

  .sponsors-item img {
    max-height: 42px;
    max-width: 120px;
  }
}

/* About skills 2x2 with cross divider */
.about-skills-section {
  padding-top: 80px;
  padding-bottom: 40px;
}

.about-skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 70px;
  position: relative;
}

.about-skills-grid::before,
.about-skills-grid::after {
  content: "";
  position: absolute;
  background: rgba(24, 29, 36, .16);
  pointer-events: none;
  z-index: 1;
}

.about-skills-grid::before {
  left: 50%;
  top: 8%;
  bottom: 8%;
  width: 1px;
  transform: translateX(-50%);
}

.about-skills-grid::after {
  top: 50%;
  left: 4%;
  right: 4%;
  height: 1px;
  transform: translateY(-50%);
}

.about-skill {
  text-align: center;
  padding: 42px 36px;
  position: relative;
  z-index: 2;
}

.about-skill-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  margin: 0 auto 18px;
}

.about-skill h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.about-skill p {
  max-width: 280px;
  margin: 0 auto;
  color: var(--body-font-color);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .about-skills-grid {
    margin-top: 40px;
  }

  .about-skill {
    padding: 28px 16px;
  }

  .about-skill-icon {
    width: 44px;
    height: 44px;
  }
}

/* Conversational inquire form (above footer) */
.lm-inquire {
  background: #0a0a0a;
  color: #fff;
  padding: 100px 0 90px;
  overflow: visible;
}

.lm-inquire-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px 56px;
  align-items: center;
}

.lm-inquire-inner {
  max-width: 560px;
}

.lm-inquire-title {
  font-family: var(--heading-font);
  font-size: clamp(42px, 6.5vw, 72px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
}

.lm-inquire-title span {
  color: #6f6f6f;
}

.lm-inquire-lead {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .78);
  margin: 0;
}

.lm-inquire-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid #646364;
  padding: 30px;
  border-radius: 25px;
}

.lm-inquire-hello {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  margin: 0;
  color: #fff;
}

.lm-inquire-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  color: #fff;
  cursor: text;
}

.lm-inquire-line span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.lm-inquire-line input {
  flex: 1 1 220px;
  min-width: 180px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  border-radius: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 0 10px;
  outline: none;
  box-shadow: none;
}

.lm-inquire-line input::placeholder {
  color: rgba(255, 255, 255, .38);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lm-inquire-line input:focus {
  border-bottom-color: #b9a8ff;
}

.lm-inquire-submit {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 420px);
  padding: 10px 10px 10px 28px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease;
}

.lm-inquire-submit:hover {
  background: #f2f2f2;
  transform: translateY(-1px);
}

.lm-inquire-submit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.lm-deck {
  position: relative;
  height: 430px;
  perspective: 1400px;
  touch-action: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  overflow: visible;
}

.lm-deck.is-dragging {
  cursor: grabbing;
}

.lm-deck-fan {
  position: relative;
  height: 100%;
  transform-style: preserve-3d;
}

.lm-deck-card {
  --flip: 0deg;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 300px;
  margin-top: -150px;
  border-radius: 24px;
  overflow: hidden;
  background: #121212;
  box-shadow: 0 22px 44px rgba(0, 0, 0, .5);
  transform-origin: center center;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1), opacity .45s ease, filter .45s ease;
  will-change: transform;
}

.lm-deck.is-dragging .lm-deck-card[data-pos="0"] {
  transition: none;
}

.lm-deck-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.lm-deck-card[data-pos="-2"] {
  transform: translateX(-50%) translateX(-168px) rotate(-16deg) translateY(30px) scale(.86);
  z-index: 1;
  opacity: .72;
  filter: brightness(.5);
}

.lm-deck-card[data-pos="-1"] {
  transform: translateX(-50%) translateX(-86px) rotate(-8deg) translateY(12px) scale(.94);
  z-index: 3;
  filter: brightness(.72);
}

.lm-deck-card[data-pos="0"] {
  transform: translateX(-50%) rotateY(var(--flip)) scale(1.06);
  z-index: 6;
  opacity: 1;
  filter: none;
}

.lm-deck-card[data-pos="1"] {
  transform: translateX(-50%) translateX(86px) rotate(8deg) translateY(12px) scale(.94);
  z-index: 3;
  filter: brightness(.72);
}

.lm-deck-card[data-pos="2"] {
  transform: translateX(-50%) translateX(168px) rotate(16deg) translateY(30px) scale(.86);
  z-index: 1;
  opacity: .72;
  filter: brightness(.5);
}

.lm-deck-card.is-brand {
  background: #161616;
}

.lm-deck-plane {
  position: absolute;
  width: 58%;
  height: 44%;
  left: 21%;
  top: 28%;
  background: #c4a574;
  transform: rotate(-18deg);
  border-radius: 4px;
  z-index: 1;
}

.lm-deck-chip {
  position: absolute;
  width: 34px;
  height: 18px;
  background: #0c0c0c;
  border-radius: 3px;
  z-index: 2;
  left: 18%;
  top: 24%;
}

.lm-deck-chip-2 { left: auto; right: 16%; top: 30%; }
.lm-deck-chip-3 { left: 22%; top: auto; bottom: 26%; }
.lm-deck-chip-4 { left: auto; right: 20%; top: auto; bottom: 22%; }

.lm-deck-name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .14em;
  color: #fff;
  text-transform: uppercase;
  pointer-events: none;
}

@media (max-width: 991px) {
  .lm-inquire-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lm-inquire-inner {
    max-width: none;
  }

  .lm-deck {
    height: 380px;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .lm-inquire {
    padding: 72px 0 64px;
  }

  .lm-inquire-submit {
    width: 100%;
  }

  .lm-deck {
    height: 340px;
  }

  .lm-deck-card {
    width: 150px;
    height: 230px;
    margin-top: -115px;
    border-radius: 18px;
  }

  .lm-deck-card[data-pos="-2"] {
    transform: translateX(-50%) translateX(-108px) rotate(-14deg) translateY(22px) scale(.86);
  }

  .lm-deck-card[data-pos="-1"] {
    transform: translateX(-50%) translateX(-56px) rotate(-7deg) translateY(10px) scale(.94);
  }

  .lm-deck-card[data-pos="1"] {
    transform: translateX(-50%) translateX(56px) rotate(7deg) translateY(10px) scale(.94);
  }

  .lm-deck-card[data-pos="2"] {
    transform: translateX(-50%) translateX(108px) rotate(14deg) translateY(30px) scale(.86);
  }
}

/* Minimal LET'S-TALK footer */
.lm-footer {
  background: #fff;
  color: #111;
  padding: 0;
  border-top: 1px solid #e6e6e6;
}

.lm-footer .container {
  max-width: 1240px;
}

.lm-footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 34px 0 28px;
  border-bottom: 1px solid #e6e6e6;
}

.lm-footer-label {
  display: block;
  font-size: 13px;
  color: #8a8a8a;
  margin-bottom: 6px;
}

.lm-footer-contact a {
  color: #111 !important;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none !important;
}

.lm-footer-contact a:hover {
  color: var(--primary-color) !important;
}

.lm-footer-cta {
  display: block;
  text-align: center;
  font-family: var(--heading-font);
  font-size: clamp(64px, 14vw, 160px);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .9;
  color: #111 !important;
  text-decoration: none !important;
  text-transform: uppercase;
  padding: 72px 0 68px;
  transition: color .25s ease, letter-spacing .25s ease;
}

.lm-footer-cta:hover {
  color: var(--primary-color) !important;
  letter-spacing: -.04em;
}

.lm-footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px 0 28px;
  border-top: 1px solid #e6e6e6;
  font-size: 13px;
  color: #666;
}

.lm-footer-credit strong {
  color: #111;
  font-weight: 600;
}

.lm-footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.lm-footer-social a {
  color: #111 !important;
  font-size: 15px;
  line-height: 1;
}

.lm-footer-social a:hover {
  color: var(--primary-color) !important;
}

.lm-footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.lm-footer-links a {
  color: #666 !important;
  text-decoration: none !important;
}

.lm-footer-links a:hover {
  color: #111 !important;
}

@media (max-width: 991px) {
  .lm-footer-top,
  .lm-footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lm-footer-contact.text-end,
  .lm-footer-contact.text-center {
    text-align: center !important;
  }

  .lm-footer-links {
    justify-content: center;
  }

  .lm-footer-cta {
    padding: 56px 0;
  }
}

/* On-set Instagram reels — coverflow */
.lm-reels {
  background: #f3eee6;
  color: #111;
  padding: 90px 0 100px;
  overflow: hidden;
}

.lm-reels .best-people-intro {
  padding-top: 0;
  margin-bottom: 28px;
}

.lm-reels .best-people-intro h2 {
  color: #111;
}

.lm-reels .best-people-intro h2 span {
  color: #111;
}

.lm-reels .best-people-intro p {
  color: #555;
}

.lm-reels-stage {
  position: relative;
  height: 480px;
  margin: 10px auto 36px;
  perspective: 1600px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  cursor: grab;
  user-select: none;
}

.lm-reels-stage.is-dragging {
  cursor: grabbing;
}

.lm-reels-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230px;
  height: 400px;
  margin: -200px 0 0 -115px;
  border-radius: 28px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .22);
  transform-origin: center center;
  transition: transform .65s cubic-bezier(.22, 1, .36, 1), opacity .45s ease, filter .45s ease;
  will-change: transform;
}

.lm-reels-card iframe {
  position: absolute;
  inset: -70px -16px -10px;
  width: calc(100% + 32px);
  height: calc(100% + 80px);
  border: 0;
  pointer-events: none;
}

.lm-reels-card[data-pos="-2"] {
  transform: translateX(-420px) rotateY(22deg) scale(.82);
  z-index: 1;
  filter: brightness(.78);
}

.lm-reels-card[data-pos="-1"] {
  transform: translateX(-250px) rotateY(12deg) scale(.92);
  z-index: 3;
  filter: brightness(.9);
}

.lm-reels-card[data-pos="0"] {
  transform: translateX(0) rotateY(0deg) scale(1.04);
  z-index: 6;
  filter: none;
}

.lm-reels-card[data-pos="1"] {
  transform: translateX(250px) rotateY(-12deg) scale(.92);
  z-index: 3;
  filter: brightness(.9);
}

.lm-reels-card[data-pos="2"] {
  transform: translateX(420px) rotateY(-22deg) scale(.82);
  z-index: 1;
  filter: brightness(.78);
}

.lm-reels-card[data-pos="3"],
.lm-reels-card[data-pos="-3"] {
  transform: translateX(0) scale(.5);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.lm-reels-cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 14px 36px;
  border-radius: 999px;
  background: #e56a4a;
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(229, 106, 74, .28);
  transition: transform .2s ease, background-color .2s ease;
}

.lm-reels-cta:hover {
  background: #d65c3e;
  color: #fff !important;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .lm-reels-stage {
    height: 420px;
  }

  .lm-reels-card {
    width: 190px;
    height: 340px;
    margin: -170px 0 0 -95px;
    border-radius: 22px;
  }

  .lm-reels-card[data-pos="-2"] {
    transform: translateX(-320px) rotateY(20deg) scale(.8);
  }

  .lm-reels-card[data-pos="-1"] {
    transform: translateX(-190px) rotateY(12deg) scale(.92);
  }

  .lm-reels-card[data-pos="1"] {
    transform: translateX(190px) rotateY(-12deg) scale(.92);
  }

  .lm-reels-card[data-pos="2"] {
    transform: translateX(320px) rotateY(-20deg) scale(.8);
  }
}

@media (max-width: 767px) {
  .lm-reels {
    padding: 70px 0 80px;
  }

  .lm-reels-stage {
    height: 360px;
  }

  .lm-reels-card {
    width: 170px;
    height: 300px;
    margin: -150px 0 0 -85px;
  }

  .lm-reels-card[data-pos="-2"],
  .lm-reels-card[data-pos="2"] {
    opacity: .4;
  }
}

/* Reviews from real people */
.reviews-section {
  background: #fff;
  padding: 90px 0 100px;
  overflow: hidden;
}

.reviews-header {
  margin-bottom: 28px;
}

.reviews-header h2 {
  font-family: var(--heading-font);
  font-size: clamp(42px, 6.5vw, 72px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: #6f6f6f;
  margin: 0 0 14px;
}

.reviews-header p {
  max-width: 520px;
  margin: 0 auto;
  color: #666;
}

.reviews-header h2 span {
  font-weight: 700;
}

.reviews-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  color: #555;
  font-size: 15px;
}

.reviews-trust strong {
  color: #111;
  font-weight: 700;
}

.reviews-trust-stars {
  color: #00b67a;
  font-size: 14px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 40px 36px;
  align-items: end;
  margin-top: 56px;
}

.reviews-aside {
  padding-bottom: 18px;
}

.reviews-quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 120px;
  line-height: .7;
  color: #d7d7d7;
  margin-bottom: 10px;
}

.reviews-aside h3 {
  font-family: var(--heading-font);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #111;
  line-height: 1.15;
  margin: 0 0 48px;
  max-width: 280px;
}

.reviews-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}

.reviews-nav-btn {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
}

.reviews-nav-btn:hover {
  color: var(--primary-color);
}

.reviews-nav-track {
  position: relative;
  flex: 1;
  height: 2px;
  background: #cfcfcf;
  border-radius: 999px;
  overflow: hidden;
}

.reviews-nav-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 34%;
  background: #111;
  border-radius: 999px;
  transition: transform .35s ease, width .35s ease;
}

.reviews-viewport {
  overflow: hidden;
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
}

.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 28px;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 min(360px, 78vw);
  width: min(360px, 78vw);
  max-width: 380px;
  display: flex;
  flex-direction: column;
}

.review-bubble {
  position: relative;
  background: #111;
  color: #fff;
  border-radius: 22px;
  padding: 28px 26px 24px;
  width: 100%;
  height: 228px;
  display: flex;
  flex-direction: column;
  overflow: visible;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
}

.review-bubble::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -12px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid #111;
}

.review-bubble p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
  line-height: 1.65;
  height: calc(16px * 1.65 * 5);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-stars {
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
  margin-top: auto;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-left: 8px;
  min-height: 44px;
}

.review-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author strong {
  display: block;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.review-author span {
  display: block;
  color: #888;
  font-size: 13px;
  margin-top: 2px;
}

@media (max-width: 991px) {
  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reviews-aside h3 {
    margin-bottom: 28px;
  }

  .reviews-viewport {
    margin-right: -15px;
    padding-right: 15px;
  }
}

@media (max-width: 767px) {
  .reviews-section {
    padding: 70px 0 80px;
  }

  .reviews-quote {
    font-size: 88px;
  }

  .review-card {
    flex: 0 0 min(300px, 85vw);
    width: min(300px, 85vw);
  }
}

/* About page breadcrumb hero */
.about-crumb {
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: visible;
  padding: 140px 0 160px;
  margin-bottom: -90px;
  background: transparent;
}

.about-crumb-bg {
  position: absolute;
  inset: 0 0 -40px 0;
  width: 100%;
  height: 20px;
  min-height: 100%;
  margin-bottom: 20px;
  object-fit: cover;
  object-position: center 18%;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 38%, rgba(0, 0, 0, .45) 68%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 38%, rgba(0, 0, 0, .45) 68%, transparent 100%);
}

.about-crumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .38) 0%, rgba(0, 0, 0, .18) 50%, transparent 100%);
  pointer-events: none;
}

.about-crumb h1 {
  color: #fff;
  font-family: var(--heading-font);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.about-crumb .breadcrumb {
  margin-top: 12px;
  margin-bottom: 0;
}

.about-crumb .breadcrumb-item,
.about-crumb .breadcrumb-item a,
.about-crumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, .82) !important;
}

.about-crumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, .45);
}

/* Mission / Vision / Values */
.about-mvv {
  background: #fff;
  padding: 80px 0 90px;
}

.about-mvv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

.about-mvv-item {
  padding: 0 40px;
  text-align: center;
}

.about-mvv-item + .about-mvv-item {
  border-left: 1px solid #d4d4d4;
}

.about-mvv-item h3 {
  font-family: var(--heading-font);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 18px;
}

.about-mvv-item p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.about-work {
  padding: 40px 0 90px;
  background: #fff;
}

.about-work-card img {
  height: 380px;
  object-fit: cover;
}

.about-work-card h4 {
  color: #fff;
  margin: 0;
}

.about-work-card {
  cursor: pointer;
}

/* Film camera page loader */
body.has-video-loader #de-loader {
  background: #fff !important;
  display: flex !important;
  flex-direction: column;
  opacity: 1 !important;
  justify-content: center;
  align-items: center;
}

.lm-loader-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-48px);
}

.lm-loader-ring {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lm-loader-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid rgba(111, 111, 111, .22);
  border-top-color: #6f6f6f;
  animation: lm-circle-spin .9s linear infinite;
}

@keyframes lm-circle-spin {
  to { transform: rotate(360deg); }
}

body.has-video-loader #de-loader .lds-roller {
  display: none !important;
}

body.has-video-loader #de-loader.is-hiding {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity .6s ease;
}

@keyframes lm-film-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6f6f6f;
  transform: scale(.82);
}

.loader__container {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 180px;
  height: 110px;
}

.loader__film {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
}

.loader__film-img {
  width: 54px;
  height: 54px;
  animation: lm-film-spin 1.5s linear infinite;
}

.loader__camera {
  width: 168px;
  height: 78px;
  display: block;
}

.lm-gallery[hidden] {
  display: none;
}

.lm-gallery {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 8, 8, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 72px 88px;
}

.lm-gallery-stage {
  margin: 0;
  max-width: min(1100px, 100%);
  text-align: center;
}

.lm-gallery-stage img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: 8px;
}

.lm-gallery-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
}

.lm-gallery-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.lm-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

.lm-gallery-nav.is-prev { left: 18px; }
.lm-gallery-nav.is-next { right: 18px; }

.lm-gallery-nav:hover,
.lm-gallery-close:hover {
  background: rgba(255, 255, 255, .22);
}

.lm-gallery-close:hover {
  background: transparent;
  opacity: .7;
}

@media (max-width: 767px) {
  .lm-gallery {
    padding: 64px 16px 80px;
  }

  .lm-gallery-nav {
    width: 40px;
    height: 40px;
  }

  .lm-gallery-nav.is-prev { left: 8px; }
  .lm-gallery-nav.is-next { right: 8px; }
}

@media (max-width: 991px) {
  .about-work-card img {
    height: 300px;
  }
}

@media (max-width: 991px) {
  .about-mvv-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-mvv-item {
    padding: 28px 0;
  }

  .about-mvv-item + .about-mvv-item {
    border-left: 0;
    border-top: 1px solid #d4d4d4;
  }
}

/* Why choose us — centered photo, flanking features */
.why-choose {
  background: #fff;
  padding: 90px 0 100px;
}

.why-choose-intro {
  max-width: 720px;
  margin: 0 auto 56px;
}

.why-choose-title {
  font-family: var(--heading-font);
  font-size: clamp(42px, 6.5vw, 72px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 16px;
}

.why-choose-title span {
  color: #6f6f6f;
}

.why-choose-intro p {
  max-width: 520px;
  margin: 0 auto;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
}

.why-choose-item {
  padding: 0 28px;
  text-align: center;
}

.why-choose-item + .why-choose-item {
  border-left: 1px solid #d4d4d4;
}

.why-choose-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.why-choose-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #6f6f6f;
  font-size: 18px;
}

.why-choose-item h4 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  color: #6f6f6f;
  margin: 0;
}

.why-choose-item p {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 991px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-item {
    padding: 28px 0;
  }

  .why-choose-item + .why-choose-item {
    border-left: 0;
    border-top: 1px solid #d4d4d4;
  }
}
