
/* ============================================================
   WHAT WE DO — love/hate scroll-snap reveal section
   ============================================================ */

#whatwedo.wwd-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

/* ---------- fullscreen video ---------- */
#whatwedo .wwd-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  pointer-events: none;
}

#whatwedo .wwd-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.25) 35%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}

/* mobile-only mask hiding everything below the nose, since the video crop
   on narrow screens would otherwise land mid-face; desktop never shows this */
#whatwedo .wwd-face-mask {
  display: none;
}

/* ---------- outer 1250px constraint ---------- */
#whatwedo .wwd-outer {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- inner 1092 x 234 row, anchored to its real resting spot ---------- */
#whatwedo .container {
	position: absolute;
	left: 0;
	right: 0;
	bottom: clamp(120px, 22vh, 300px);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1092px;
	height: 234px;
	gap: clamp(24px, 4vw, 64px);
	will-change: transform, opacity;
	font-family: Good Timing;
}
/* ---------- content blocks ---------- */
#whatwedo .content {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  gap: clamp(10px, 1.6vw, 18px);
}

#whatwedo .content.love {
  align-items: flex-start;
  text-align: left;
}

#whatwedo .content.hate {
	align-items: flex-start;
	text-align: left;
}

#whatwedo .content .title {
  display: inline-block;
  color: #fff;
  font-size: clamp(26px, 3vw, 39px);
  line-height: 1;
  white-space: nowrap;
}

#whatwedo .content .title span {
  display: inline-block;
  will-change: transform, opacity;
}

#whatwedo .content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.8vw, 8px);
}

#whatwedo .content li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(10px, 0.95vw, 14px);
  letter-spacing: 0.04em;
  line-height: 1.3;
  will-change: transform, opacity;
}

#whatwedo .content li::before {
  content: '';
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  background: url('https://i-repair.ro/assets/bullet.svg') center / contain no-repeat;
}

#whatwedo .content.hate li {
  flex-direction: initial;
}


/* ---------- lightning svg ---------- */
#whatwedo .lightning {
  flex: 0 0 auto;
  width: clamp(60px, 8vw, 100px);
  will-change: opacity;
}

#whatwedo .lightning svg {
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(5px 10px 10px var(--dst--primary-color2));
	--dst--primary-color2: #01afe9;
}
/* ---------- utility fallbacks (scoped, won't leak site-wide) ---------- */
#whatwedo .txt-upcse {
  text-transform: uppercase;
}

#whatwedo .ft-bld {
  font-weight: 700;
}

#whatwedo .go-med {
  font-weight: 500;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  #whatwedo .wwd-video {
    top: auto;
    bottom: 0;
    height: 68%;
    object-fit: scale-down;
    transform: scale(2);
    transform-origin: center bottom;
  }
  
#whatwedo .container {
	position: absolute;
	left: 0;
	right: 0;
	bottom: clamp(120px, 22vh, 300px);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 286px;
	height: 234px;
	gap: clamp(24px, 4vw, 64px);
	will-change: transform, opacity;
}
#whatwedo .wwd-face-mask {
	display: block;
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 45%;
	pointer-events: none;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
	will-change: transform;
	z-index: 2;
	top: 23%;
}
  #whatwedo .wwd-outer {
    padding: 0 0px;
  }

#whatwedo .container {
	flex-direction: column;
	height: auto;
	bottom: 314px;
	gap: 20px;
	padding: 24px 0;
}
  #whatwedo .content.love,
  #whatwedo .content.hate {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  #whatwedo .content .title {
    white-space: normal;
  }

  #whatwedo .lightning {
    width: 56px;
    order: 0;
  }
}

@media (max-width: 480px) {
  #whatwedo .content li {
    font-size: 11px;
  }

  #whatwedo .content .title {
    font-size: 30px;
  }
}

/* respect reduced motion: skip the snap-scroll and reveal, show final state */
@media (prefers-reduced-motion: reduce) {
  #whatwedo .container,
  #whatwedo .content .title span,
  #whatwedo .content li,
  #whatwedo .lightning {
    opacity: 1 !important;
    transform: none !important;
  }
}