/* ------------------------------------------------ */
/* Service showcase galleries                         */
/* Lightweight CSS grid used on the product-imagery   */
/* service pages to show sample work next to the copy. */
/* Images live in img/ai-studio-photography-ref/ as placeholders and */
/* are meant to be swapped for first-party shots.      */
/* ------------------------------------------------ */
.ie-shots {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.6rem;
  /* rows stretch to equal height (no empty gaps); each row's spans are
     tuned in the markup so the cells are naturally near-equal height,
     keeping the cover-crop negligible and the proportions clean */
  align-items: stretch;
}

.ie-shots__item {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  border-radius: var(--_radius-l);
  background: var(--base-tint);
  isolation: isolate;
  cursor: pointer;
  -webkit-transform: translateY(0) translateZ(0);
  transform: translateY(0) translateZ(0);
  box-shadow: 0 10px 30px -24px rgba(0, 0, 0, 0.5);
  -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                      box-shadow 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* bottom scrim — keeps captions legible and deepens a touch on hover */
.ie-shots__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top,
              rgba(8, 7, 12, 0.58) 0%,
              rgba(8, 7, 12, 0.1) 30%,
              rgba(8, 7, 12, 0) 50%);
  opacity: 0.9;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}

.ie-shots__item.span-6 { grid-column: span 6; }
.ie-shots__item.span-8 { grid-column: span 8; }
.ie-shots__item.span-12 { grid-column: span 12; }

.ie-shots__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 4 / 5;
  -webkit-transform: scale(1.001) translateZ(0);
  transform: scale(1.001) translateZ(0);
  -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* wide before/after strips and landscape lifestyle frames */
.ie-shots__item.wide img { aspect-ratio: 16 / 9; }
.ie-shots__item.landscape img { aspect-ratio: 4 / 3; }
.ie-shots__item.tall img { aspect-ratio: 3 / 4; }
.ie-shots__item.square img { aspect-ratio: 1 / 1; }
/* full-length portrait figures — keep head-to-footwear in frame */
.ie-shots__item.portrait img { aspect-ratio: 2 / 3; }
/* portrait frames: bias the crop toward the upper body so faces are kept */
.ie-shots__item.tall img,
.ie-shots__item.portrait img { object-position: 50% 32%; }
.ie-shots__item.flat img { aspect-ratio: 1 / 1; object-fit: contain; background: #fff; }
/* UI panel screenshots — show in full, no crop */
.ie-shots__item.panels img { aspect-ratio: 1624 / 968; object-fit: contain; background: #fff; }

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .ie-shots__item:hover {
    -webkit-transform: translateY(-3px) translateZ(0);
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 26px 56px -34px rgba(0, 0, 0, 0.6);
  }
  .ie-shots__item:hover::after { opacity: 1; }
  .ie-shots__item:hover img {
    -webkit-transform: scale(1.035) translateZ(0);
    transform: scale(1.035) translateZ(0);
  }
  /* gentle tactile press on click */
  .ie-shots__item:active {
    -webkit-transform: translateY(-1px) scale(0.995) translateZ(0);
    transform: translateY(-1px) scale(0.995) translateZ(0);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
  }
}

.ie-shots__cap {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem 0.65rem 1.1rem;
  border-radius: 10rem;
  font: var(--fw-medium) 1.3rem/1.2 var(--_font-main, Inter, system-ui, sans-serif);
  letter-spacing: 0.01em;
  color: #fff;
  background: rgba(18, 16, 24, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
  width: fit-content;
  max-width: calc(100% - 2.8rem);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                      background 0.4s ease, border-color 0.4s ease;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s ease, border-color 0.4s ease;
}

/* accent dot before the caption label */
.ie-shots__cap::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: rgb(var(--accent-rgb, 221, 241, 96));
  box-shadow: 0 0 0 0 rgba(var(--accent-rgb, 221, 241, 96), 0.5);
  -webkit-transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .ie-shots__item:hover .ie-shots__cap {
    background: rgba(18, 16, 24, 0.62);
    border-color: rgba(255, 255, 255, 0.12);
  }
}

@media only screen and (max-width: 991px) {
  .ie-shots__item,
  .ie-shots__item.span-6,
  .ie-shots__item.span-8 { grid-column: span 6; }
  .ie-shots__item.span-12 { grid-column: span 12; }
}

@media only screen and (max-width: 575px) {
  .ie-shots { gap: 1.2rem; }
  .ie-shots__item,
  .ie-shots__item.span-6,
  .ie-shots__item.span-8,
  .ie-shots__item.span-12 { grid-column: span 12; }
}

/* ------------------------------------------------ */
/* Lightbox (Magnific Popup) — premium polish         */
/* ------------------------------------------------ */
.mfp-ie.mfp-bg {
  background: #0a090d;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.mfp-ie.mfp-ready.mfp-bg { opacity: 0.94; }
.mfp-ie.mfp-removing.mfp-bg { opacity: 0; }

.mfp-ie .mfp-img {
  border-radius: 1.2rem;
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.8);
}
.mfp-ie .mfp-figure::after { box-shadow: none; background: transparent; }

.mfp-ie .mfp-title {
  text-align: center;
  padding: 1.4rem 0 0;
  font: var(--fw-medium) 1.4rem/1.3 var(--_font-main, Inter, system-ui, sans-serif);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
}
.mfp-ie .mfp-counter {
  color: rgba(255, 255, 255, 0.5);
  font: var(--fw-medium) 1.25rem/1 var(--_font-main, Inter, system-ui, sans-serif);
  letter-spacing: 0.06em;
}

/* gentle scale-up on open, honoring reduced motion */
@media (prefers-reduced-motion: no-preference) {
  .mfp-ie .mfp-figure {
    opacity: 0;
    -webkit-transform: scale(0.96);
    transform: scale(0.96);
    -webkit-transition: opacity 0.32s ease, -webkit-transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mfp-ie.mfp-ready .mfp-figure {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .mfp-ie.mfp-removing .mfp-figure {
    opacity: 0;
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
  }
}

/* ------------------------------------------------ */
/* Pipeline filmstrip                                 */
/* One product followed through every stage of the    */
/* studio: a sketch becomes a packshot, a styled still,*/
/* an on-model frame and a location shot. Each stage is */
/* a captioned frame with a connecting arrow; on narrow */
/* screens it becomes a snap-scrolling filmstrip.       */
/* ------------------------------------------------ */
.ie-pipe {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: start;
  gap: 1.2rem;
}

.ie-pipe__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

/* the connecting arrow that sits in the gap to the right of every
   frame but the last — the thread that says "and then this" */
.ie-pipe__stage:not(:last-child) .ie-pipe__frame::after {
  content: "\2192"; /* → */
  position: absolute;
  top: 50%;
  right: -1.2rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent);
  background: var(--base);
  border: 1px solid rgba(var(--accent-rgb), 0.32);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.ie-pipe__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--_radius-l);
  background: var(--base-tint);
}

.ie-pipe__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* the opening sketch reads as a drawing, not a photo: show it whole
   on a paper-white field rather than cropping the linework */
.ie-pipe__frame--diagram img {
  object-fit: contain;
  background: #fff;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .ie-pipe__stage:hover .ie-pipe__frame img { -webkit-transform: scale(1.04); transform: scale(1.04); }
}

.ie-pipe__step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--_font-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--accent);
}

.ie-pipe__step b {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.ie-pipe__label {
  margin: -0.4rem 0 0;
  font-family: var(--_font-accent);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.ie-pipe__note {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.4;
  color: currentColor;
  opacity: 0.66;
}

/* tablet: two-and-a-bit frames in a snap-scrolling strip */
@media only screen and (max-width: 991px) {
  .ie-pipe {
    grid-auto-flow: column;
    grid-auto-columns: minmax(60%, 1fr);
    gap: 1.6rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.8rem;
    /* let the arrow badge breathe past the frame edge */
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    scrollbar-width: thin;
  }
  .ie-pipe__stage { scroll-snap-align: start; }
  /* arrows only make sense in the all-visible desktop layout */
  .ie-pipe__stage:not(:last-child) .ie-pipe__frame::after { display: none; }
}

@media only screen and (max-width: 575px) {
  .ie-pipe { grid-auto-columns: minmax(78%, 1fr); }
}

/* ------------------------------------------------ */
/* Two-row showcase marquee                          */
/* Two reels of sample shots drift in opposite        */
/* directions, each card captioned with what it is +  */
/* how it works. CSS-only infinite loop (each track    */
/* holds its set twice); pauses on hover; honours      */
/* reduced-motion.                                     */
/* ------------------------------------------------ */
/* full-height pinned "moment": the section sticks and both rows
   scrub through one round before the page scroll is released, so a
   visitor sees every shot type without the page racing past
   (driven by js/marquee-scroll.js via GSAP ScrollTrigger) */
.ie-marquee-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(1.6rem, 3vh, 3.2rem);
  padding-top: clamp(2.4rem, 5vh, 4rem);
  padding-bottom: clamp(2.4rem, 5vh, 4rem);
  overflow: hidden;
}

.ie-marquee {
  position: relative;
  width: 100%;
  /* two stacked rows fill the height left under the heading, so the
     pinned section is full-screen with no dead space while the cards
     stay modestly sized (each row is only half the band) */
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2vh, 2rem);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.ie-marquee__row {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ie-marquee__track {
  display: flex;
  align-items: center;
  height: 100%;
  width: -moz-max-content;
  width: max-content;
  gap: 1.6rem;
  /* keep the reel on its own GPU layer so the scroll-driven
     transform stays buttery and never repaints the cards */
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* CSS fallback loop (JS sets animation:none when it takes over) */
  animation: ie-marquee-left 64s linear infinite;
}

/* second row drifts the opposite way in the CSS fallback */
.ie-marquee__track[data-dir="right"] {
  animation-name: ie-marquee-right;
}

.ie-marquee:hover .ie-marquee__track {
  animation-play-state: paused;
}

@keyframes ie-marquee-left {
  from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  to { -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); }
}

@keyframes ie-marquee-right {
  from { -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); }
  to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}

.ie-mq-card {
  position: relative;
  flex: 0 0 auto;
  /* fill the row height (each row is half the band), so two rows of
     cards fill the section without any single card getting huge.
     Each card carries an inline aspect-ratio matching its image's
     true proportions (so the photo is shown uncropped, not forced to
     a single shape); the 4/5 here is just the fallback. A known
     aspect-ratio means the card width is settled immediately
     (independent of when the image decodes), so the reel never
     reflows or jumps as images load */
  height: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--base-tint);
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
  /* the card itself never lifts (the rows are clipped top/bottom), so
     every hover effect is internal — scale stays inward on press so
     nothing is ever cropped. A spring-like ease sells the premium feel. */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  transition: box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* whole-card link: a stretched, transparent hit-area above everything,
   so a click anywhere on the card navigates */
.ie-mq-card__link {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  -webkit-tap-highlight-color: transparent;
}

.ie-mq-card__link:focus-visible {
  outline: 2px solid var(--accent, #fff);
  outline-offset: -3px;
}

.ie-mq-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1.001);
  transform: scale(1.001);
  -webkit-transition: -webkit-transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.ie-mq-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(14, 11, 20, 0.78) 100%);
  pointer-events: none;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

/* diagonal sheen that sweeps across the card on hover */
.ie-mq-card::before {
  content: "";
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: -75%;
  width: 55%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0) 100%);
  -webkit-transform: translateX(0) rotate(8deg);
  transform: translateX(0) rotate(8deg);
  opacity: 0;
}

/* accent ring that brightens on hover — an inset shadow, so it never
   bleeds past the clipped row edges */
.ie-mq-card__cta {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  color: #0e0b14;
  background: var(--accent, #fff);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  font-size: 1.5rem;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: scale(0.4) rotate(-35deg);
  transform: scale(0.4) rotate(-35deg);
  -webkit-transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ie-mq-card__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 1.6rem 1.8rem;
  color: #fff;
  pointer-events: none;
}

.ie-mq-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 0.4rem;
  font-family: var(--_font-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.5rem;
  line-height: 1;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ie-mq-card__title::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.9);
}

.ie-mq-card__how {
  display: block;
  max-width: 30ch;
  font-size: 1.35rem;
  line-height: 1.32;
  color: rgba(255, 255, 255, 0.84);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* "Explore / View shoots →" line that slides up into view on hover */
.ie-mq-card__go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.7rem;
  font-family: var(--_font-accent);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: var(--accent, #fff);
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ie-mq-card__go i {
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- hover / keyboard-focus state ---- */
.ie-mq-card:hover,
.ie-mq-card:focus-within {
  border-color: rgba(var(--accent-rgb), 0.55);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1.5px rgba(var(--accent-rgb), 0.55),
    inset 0 0 40px rgba(var(--accent-rgb), 0.16);
}

.ie-mq-card:hover img,
.ie-mq-card:focus-within img {
  -webkit-transform: scale(1.09);
  transform: scale(1.09);
}

.ie-mq-card:hover::after,
.ie-mq-card:focus-within::after {
  opacity: 0.92;
}

.ie-mq-card:hover::before,
.ie-mq-card:focus-within::before {
  opacity: 1;
  -webkit-transform: translateX(420%) rotate(8deg);
  transform: translateX(420%) rotate(8deg);
  -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.ie-mq-card:hover .ie-mq-card__cta,
.ie-mq-card:focus-within .ie-mq-card__cta {
  opacity: 1;
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}

.ie-mq-card:hover .ie-mq-card__title,
.ie-mq-card:focus-within .ie-mq-card__title,
.ie-mq-card:hover .ie-mq-card__how,
.ie-mq-card:focus-within .ie-mq-card__how {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.ie-mq-card:hover .ie-mq-card__go,
.ie-mq-card:focus-within .ie-mq-card__go {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* lift the hovered card above its neighbours so the glow reads cleanly */
.ie-mq-card:hover,
.ie-mq-card:focus-within { z-index: 5; }

/* press feedback — scale inward so the clipped rows never crop it */
.ie-mq-card:active {
  -webkit-transform: scale(0.972);
  transform: scale(0.972);
  -webkit-transition-duration: 0.12s;
  transition-duration: 0.12s;
}

.ie-mq-card:active .ie-mq-card__go i {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}

@media only screen and (max-width: 575px) {
  .ie-marquee-section { min-height: auto; }
  .ie-marquee { flex: 0 0 auto; }
  .ie-marquee__row { flex: 0 0 auto; }
  .ie-mq-card { height: 18rem; border-radius: 16px; }
  .ie-marquee__track { gap: 1.1rem; animation-duration: 48s; }
  /* no hover on touch — surface the "tap to open" affordance by default */
  .ie-mq-card__cta {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.25rem;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  .ie-mq-card__go { display: none; }
}

/* fine pointers (mouse/trackpad) get the click cursor; touch keeps default */
@media (hover: hover) and (pointer: fine) {
  .ie-mq-card { cursor: pointer; }
}

@media (prefers-reduced-motion: reduce) {
  .ie-marquee__row { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ie-marquee__track { animation: none; }
  /* keep the affordances, drop the motion: no sheen sweep, no zoom/press */
  .ie-mq-card::before { display: none; }
  .ie-mq-card,
  .ie-mq-card img,
  .ie-mq-card__cta,
  .ie-mq-card__title,
  .ie-mq-card__how,
  .ie-mq-card__go { transition-duration: 0.001s; }
  .ie-mq-card:hover img,
  .ie-mq-card:focus-within img { -webkit-transform: none; transform: none; }
  .ie-mq-card:active { -webkit-transform: none; transform: none; }
}

/* ------------------------------------------------ */
/* Client experience - "Show the money"               */
/* A full-bleed dark spotlight that deliberately       */
/* breaks the light template rhythm above it: a soft    */
/* drifting aurora and fine film-grain give the panel    */
/* tactile depth, the revenue claim is carried by an     */
/* elegant serif phrase with a pearlescent metallic       */
/* shimmer, refined gradient stats sit beneath, and a     */
/* monochrome wordmark band scrolls along the floor.      */
/* Self-contained dark palette so it reads identically    */
/* in light and dark themes. Honours reduced-motion.      */
/* ------------------------------------------------ */
.ie-money {
  --ie-ink: #FAF7F6;
  --ie-glow: 159, 139, 231;
  --ie-sheen: #EDE7FF;
  position: relative;
  isolation: isolate;
  margin: clamp(3rem, 6vw, 7rem) 0;
  padding: clamp(6rem, 10vw, 11rem) 0 clamp(3.5rem, 6vw, 6rem);
  background: radial-gradient(120% 130% at 50% 0%, #15101F 0%, #0C0911 60%, #08060C 100%);
  color: var(--ie-ink);
  overflow: hidden;
}

/* slowly drifting aurora glows - the light source of the panel */
.ie-money::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  z-index: -2;
  background:
    radial-gradient(38% 46% at 28% 8%, rgba(var(--ie-glow), 0.34), transparent 60%),
    radial-gradient(42% 50% at 80% 18%, rgba(124, 96, 230, 0.26), transparent 62%),
    radial-gradient(50% 58% at 60% 116%, rgba(var(--ie-glow), 0.20), transparent 64%);
  filter: blur(8px);
  animation: ie-money-aurora 24s ease-in-out infinite alternate;
}

@keyframes ie-money-aurora {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1);    }
  50%  { transform: translate3d(3%, 2%, 0)   scale(1.08); }
  100% { transform: translate3d(-1%, 1%, 0)  scale(1.03); }
}

/* fine film grain + a soft vignette and the top hairline of light */
.ie-money::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 14%),
    radial-gradient(130% 100% at 50% 40%, transparent 55%, rgba(0, 0, 0, 0.55) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  background-size: auto, auto, 180px 180px;
  opacity: 0.85;
  mix-blend-mode: normal;
}

.ie-money::after { background-blend-mode: normal, normal, overlay; }

.ie-money__inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.ie-money__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--_font-accent);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(var(--ie-glow), 1);
  padding: 9px 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(var(--ie-glow), 0.16), rgba(var(--ie-glow), 0.06));
  border: 1px solid rgba(var(--ie-glow), 0.34);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset, 0 8px 24px rgba(var(--ie-glow), 0.10);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.ie-money__eyebrow i { font-size: 1.4rem; }

.ie-money__kicker {
  margin: 2.2rem 0 0;
  font-family: var(--_font-accent);
  font-weight: 500;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ie-ink);
}

/* the money, stated with restraint: an elegant serif phrase
   carries the claim, no hard figure to cheapen it. The body of
   the line fades like light from top to bottom for depth. */
.ie-money__statement {
  margin: clamp(2.2rem, 3.6vw, 3.6rem) auto 0;
  max-width: 16ch;
  font-family: var(--_font-accent);
  font-weight: 400;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(250, 247, 246, 0.62) 78%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ie-money__hl {
  position: relative;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.1em;
  letter-spacing: 0;
  white-space: nowrap;
  /* pearlescent metallic sweep across the key phrase */
  background: linear-gradient(
    100deg,
    #C9B8FF 0%, var(--ie-sheen) 22%, #FFFFFF 40%,
    #B6A2F2 58%, var(--ie-sheen) 80%, #C9B8FF 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* sheen + underline now ignite when the line scrolls into view (.is-live),
   not on page load, so the reveal feels deliberate and luxurious */
.ie-money__statement.is-live .ie-money__hl {
  animation: ie-money-sheen 7s ease-in-out 0.3s infinite;
}

@keyframes ie-money-sheen {
  0%, 100% { background-position: 130% 0; }
  50%      { background-position: -30% 0; }
}

/* a delicate accent hairline that draws beneath the phrase */
.ie-money__hl::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: -0.1em;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(var(--ie-glow), 0.95), transparent);
  box-shadow: 0 0 14px rgba(var(--ie-glow), 0.6);
}

.ie-money__statement.is-live .ie-money__hl::after {
  animation: ie-money-underline 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

@keyframes ie-money-underline {
  to { transform: scaleX(1); }
}

/* premium scroll reveal — word masks for the kicker, masked rise for the
   statement. Defaults stay fully visible so no-JS / load failures degrade
   gracefully; money-reveal.js sets the hidden start states. */
.ie-money__reveal-words .rv-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.06em;
}

.ie-money__reveal-words .rv-mask .word {
  display: inline-block;
  will-change: transform, filter;
}

.ie-money__reveal-block {
  will-change: transform, opacity;
}

.ie-money__lead {
  margin: clamp(2.2rem, 3.4vw, 3rem) auto 0;
  max-width: 54ch;
  font-size: clamp(1.5rem, 1.8vw, 1.85rem);
  line-height: 1.55;
  color: rgba(250, 247, 246, 0.72);
}

/* refined stat row with hairline dividers */
.ie-money__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(2.2rem, 4.5vw, 5rem);
  margin-top: clamp(3rem, 4.5vw, 4rem);
}

.ie-money__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.2rem 0;
}

.ie-money__stat + .ie-money__stat::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(1.1rem, 2.25vw, 2.5rem));
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(250, 247, 246, 0.22), transparent);
}

.ie-money__stat b {
  font-family: var(--_font-accent);
  font-size: clamp(2.4rem, 3.2vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  background: linear-gradient(170deg, #FFFFFF 0%, #D8CCFF 55%, rgba(var(--ie-glow), 0.92) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ie-money__stat span {
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: rgba(250, 247, 246, 0.55);
}

/* talent line */
.ie-money__talent {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 1rem;
  margin: clamp(2.6rem, 4vw, 3.6rem) auto 0;
  font-family: var(--_font-accent);
  font-size: clamp(1.5rem, 1.9vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(250, 247, 246, 0.82);
}

.ie-money__talent i {
  font-size: 0.45em;
  color: rgba(var(--ie-glow), 0.9);
  vertical-align: middle;
}

.ie-money__talent-label {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(250, 247, 246, 0.45);
  margin-right: 0.4rem;
}

/* award ribbons: a labelled group of one or more honour pills */
.ie-awards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.4rem, 2.4vw, 2.1rem);
  margin-top: clamp(2.8rem, 4.5vw, 4rem);
}

.ie-awards__label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: rgba(250, 247, 246, 0.5);
}

.ie-awards__label i { color: #F2D98A; font-size: 1.3rem; }
.ie-awards__label em { font-style: italic; text-transform: none; letter-spacing: 0.2px; color: var(--ie-ink); }

/* balanced trophy shelf: three equal honours, centred under the heading */
.ie-awards__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}

/* award card: a centred trophy-shelf tile (logo over title over meta) */
.ie-award {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.9rem;
  width: 100%;
  height: 100%;
  padding: 1.9rem 1.5rem 1.7rem;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  background: linear-gradient(180deg, rgba(var(--ie-glow), 0.14), rgba(var(--ie-glow), 0.05));
  border: 1px solid rgba(var(--ie-glow), 0.32);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset, 0 14px 40px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  -webkit-transition: -webkit-transform 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ie-award:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(var(--ie-glow), 0.2) inset, 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* a few tiny sparkles twinkling around the award logo: celebratory, not noisy */
.ie-award__sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ie-award__sparks i {
  position: absolute;
  color: #F2D98A;
  opacity: 0;
  -webkit-transform: scale(0.4);
  transform: scale(0.4);
  text-shadow: 0 0 8px rgba(242, 217, 138, 0.65);
  -webkit-animation: ie-award-twinkle 3.6s ease-in-out infinite;
  animation: ie-award-twinkle 3.6s ease-in-out infinite;
}

.ie-award__sparks i:nth-child(1) { top: -7px;  left: 14px;  font-size: 13px; animation-delay: 0s;    }
.ie-award__sparks i:nth-child(2) { top: 30%;   left: -8px;  font-size: 10px; color: #D8C7FF; text-shadow: 0 0 8px rgba(201, 184, 255, 0.7); animation-delay: 1.1s; }
.ie-award__sparks i:nth-child(3) { bottom: -6px; left: 40px; font-size: 11px; animation-delay: 2.2s; }
.ie-award__sparks i:nth-child(4) { top: -9px;  right: 18px; font-size: 9px;  color: #D8C7FF; text-shadow: 0 0 8px rgba(201, 184, 255, 0.7); animation-delay: 1.7s; }

@keyframes ie-award-twinkle {
  0%, 100% { opacity: 0; -webkit-transform: scale(0.4) rotate(-8deg); transform: scale(0.4) rotate(-8deg); }
  14%      { opacity: 1; -webkit-transform: scale(1) rotate(0deg);    transform: scale(1) rotate(0deg);    }
  30%      { opacity: 0; -webkit-transform: scale(0.5) rotate(8deg);  transform: scale(0.5) rotate(8deg);  }
}

/* the real award logo; the gold medal below is the fallback if it 404s.
   a fixed-height zone keeps all three logos on one line so the titles align. */
.ie-award__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 64px;
  margin-bottom: 0.2rem;
}

.ie-award__logo img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.ie-award__medal {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(160deg, #F5E7B8, #D8B450 55%, #B98F2E);
  color: #2A1E04;
  box-shadow: 0 4px 14px rgba(184, 143, 46, 0.4);
}

.ie-award__medal i { font-size: 1.6rem; }

/* silver variant for second-place / Silver honours */
.ie-award__medal--silver {
  background: linear-gradient(160deg, #F4F6F8, #C7CDD4 55%, #9AA1A9);
  color: #2A2F35;
  box-shadow: 0 4px 14px rgba(154, 161, 169, 0.4);
}

/* if the logo image fails, hide it and reveal the medal fallback */
.ie-award__logo.is-broken img { display: none; }
.ie-award__logo.is-broken .ie-award__medal { display: inline-flex; }

/* a shortlist/nomination reads as recognition, not a win: calmer, no sparkle glow */
.ie-award--shortlist {
  background: linear-gradient(180deg, rgba(250, 247, 246, 0.06), rgba(250, 247, 246, 0.02));
  border-color: rgba(250, 247, 246, 0.16);
}

.ie-award--shortlist:hover {
  box-shadow: 0 0 0 1px rgba(250, 247, 246, 0.12) inset, 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* "Finalist" badge: a neutral pearl seal that stands in for the trophy a shortlist hasn't won */
.ie-award__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(120% 120% at 50% 20%, rgba(250, 247, 246, 0.14), rgba(250, 247, 246, 0.04));
  border: 1px solid rgba(250, 247, 246, 0.22);
  color: rgba(250, 247, 246, 0.85);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.ie-award__badge i { font-size: 1.45rem; line-height: 1; }

.ie-award__badge-text {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  color: rgba(250, 247, 246, 0.6);
}

.ie-award__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.ie-award__title {
  font-family: var(--_font-accent);
  font-size: clamp(1.45rem, 1.55vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ie-ink);
  text-wrap: balance;
}

.ie-award__title em {
  font-style: italic;
  font-weight: 500;
}

.ie-award__meta {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: rgba(250, 247, 246, 0.55);
  text-wrap: balance;
}

/* the scrolling wordmark band, on the dark floor */
.ie-clients {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: clamp(3.6rem, 6vw, 6rem);
  padding-top: clamp(2.4rem, 4vw, 3.4rem);
  padding-bottom: clamp(0.6rem, 1.5vw, 1.2rem);
  border-top: 1px solid rgba(250, 247, 246, 0.10);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

/* the money shot: four flagship brands as a static, evenly-spaced featured row.
   With only four logos a marquee looks thin and loops too fast, so we present them
   confidently at rest, centered, each full-colour logo on its own white chip so the
   marks read cleanly on the dark panel (and in both light and dark themes, since the
   panel is dark in both). */
.ie-clients--lead {
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}

.ie-clients__eyebrow {
  margin: 0 0 clamp(1.8rem, 3vw, 2.8rem);
  text-align: center;
  font-family: var(--_font-accent);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 246, 0.4);
}

.ie-clients__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.4rem);
}

.ie-client--lead {
  position: relative;
  opacity: 1;
}

/* the white chip only renders when a real logo loaded; a 404'd logo keeps the
   styled wordmark on the bare panel instead of an empty white tile */
.ie-client--lead:has(.ie-client__logo:not(.is-broken)) {
  justify-content: center;
  min-width: clamp(150px, 15vw, 200px);
  min-height: clamp(96px, 9vw, 124px);
  padding: clamp(1.4rem, 2.4vw, 2.2rem) clamp(2rem, 3vw, 3rem);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

@media (hover: hover) {
  .ie-client--lead:has(.ie-client__logo:not(.is-broken)):hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }
}

.ie-client--lead .ie-client__name {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
}

.ie-client--lead:hover {
  opacity: 1;
}

/* brand logos: shown when the file exists, otherwise the wordmark below stands in */
.ie-client__logo {
  display: block;
  height: clamp(30px, 3.4vw, 46px);
  width: auto;
  max-width: 190px;
  object-fit: contain;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

/* uniform logo height across chips; width follows each mark's aspect ratio */
.ie-client--lead .ie-client__logo {
  height: clamp(40px, 4.4vw, 60px);
  max-width: 170px;
}

/* a logo that 404s gets marked .is-broken (not removed, so imagesLoaded
   does not choke) and the wordmark below takes its place */
.ie-client__logo.is-broken {
  display: none;
}

.ie-client:has(.ie-client__logo:not(.is-broken)) .ie-client__name {
  display: none;
}

.ie-clients__track {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  gap: clamp(3.2rem, 6vw, 7rem);
  will-change: transform;
  animation: ie-clients-scroll 48s linear infinite;
}

.ie-clients:hover .ie-clients__track {
  animation-play-state: paused;
}

@keyframes ie-clients-scroll {
  from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  to { -webkit-transform: translate3d(-50%, 0, 0); transform: translate3d(-50%, 0, 0); }
}

.ie-client {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--_font-accent);
  white-space: nowrap;
  text-decoration: none;
  color: var(--ie-ink);
  opacity: 0.34;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ie-client:hover {
  opacity: 1;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.ie-client__name {
  font-size: clamp(2.2rem, 2.6vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.18;
  padding-bottom: 0.08em;
}

.ie-client__name em {
  font-style: italic;
  font-weight: 500;
}

.ie-client--caps .ie-client__name {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* below ~1000px a 3-up shelf gets cramped: stack into a centred single column,
   and lay each card out horizontally (logo left, text right) to stay compact */
@media only screen and (max-width: 991px) {
  .ie-awards__row {
    grid-template-columns: minmax(0, 1fr);
    max-width: 540px;
    margin: 0 auto;
  }
  .ie-award {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 1.1rem;
    padding: 1.1rem 1.5rem 1.1rem 1.1rem;
  }
  .ie-award__logo { height: auto; margin-bottom: 0; }
  .ie-award__body { align-items: flex-start; }
}

@media only screen and (max-width: 575px) {
  .ie-money__stats { gap: 1.6rem 2.4rem; }
  .ie-clients__row { gap: 2rem 2.6rem; }
  .ie-client--lead .ie-client__name { font-size: 2rem; }
  .ie-client--lead .ie-client__logo { height: 34px; }
  .ie-award { gap: 0.85rem; padding: 0.95rem 1.2rem 0.95rem 0.95rem; }
  .ie-award__logo img { height: 42px; }
  .ie-award__medal { width: 38px; height: 38px; }
  .ie-award__medal i { font-size: 1.4rem; }
  .ie-clients__track { gap: 3rem; animation-duration: 36s; }
  .ie-client__name { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ie-clients { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ie-clients__track { animation: none; }
  .ie-money::before { animation: none; }
  .ie-money__hl { animation: none; background-position: 50% 0; }
  .ie-money__hl::after { animation: none; transform: scaleX(1); }
  .ie-award__sparks i { animation: none; opacity: 0.85; transform: scale(1); }
}
