
:root {
  --pink: #e6007e;
  --blue: #009fe3;
  --teal: #27cfc3;
  --grad: linear-gradient(135deg, #e6007e 0%, #009fe3 100%);
  --dark: #0d0d0d;
  --dark-700: #111111;
  --dark-600: #1a1a1a;
  --dark-500: #242424;
  --dark-400: #2e2e2e;
  --grey-500: #676767;
  --grey-400: #888888;
  --grey-100: #e0e0e0;
  --white: #ffffff;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-serif:   'EB Garamond', Georgia, serif;  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 4px;
  --radius-lg: 16px;
  --grid-max: 2000px;
  --grid-margin: clamp(24px, 5vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--grey-100);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════
   CS-06 — CLIENT LOGO + QUOTE STRIP
   ═══════════════════════════════════════════════════════════ */

.quote-strip {
  position: relative;
  width: 100%;
  padding: clamp(60px, 8vw, 120px) var(--grid-margin);
  background: var(--dark);
  overflow-x: clip;
  overflow-y: visible;
}

.quote-strip__deco-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  max-width: var(--grid-max);
  margin: 0 auto;
}

.quote-strip__deco {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 200px);
  line-height: 1;
  font-weight: 400;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0.08;
  transform: scale(0.9);
  transform-origin: center center;
  transition: transform 1s var(--ease-out);
}

.quote-strip__deco--tl {
  top: clamp(-16px, -2vw, 0px);
  left: clamp(-8px, 2vw, 48px);
}

.quote-strip__deco--br {
  bottom: clamp(-24px, -3vw, -8px);
  right: clamp(-8px, 2vw, 48px);
}

.quote-strip__inner {
  position: relative;
  z-index: 1;
  max-width: var(--grid-max);
  margin: 0 auto;
  text-align: center;
}

.quote-strip__logo {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(28px, 4vw, 40px);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.quote-strip__logo img,
.quote-strip__logo svg {
  width: 120px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.quote-strip__blockquote {
  border: 0;
  margin: 0;
  padding: 0;
}

.quote-strip__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.8;
  color: var(--grey-100);
  margin: 0 0 clamp(20px, 3vw, 28px);
}

.quote-strip__line {
  display: block;
  opacity: 0;
  transition: opacity 0.55s var(--ease-out);
}

.quote-strip__line + .quote-strip__line {
  margin-top: 0.35em;
}

.quote-strip__stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-bottom: clamp(20px, 3vw, 28px);
  font-size: 14px;
  line-height: 1;
  color: #FFD700;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
}

.quote-strip__stars .star {
  display: inline-block;
}

.quote-strip__attrib {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out);
}

.quote-strip__name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  font-style: normal;
  color: var(--white);
  margin-bottom: 6px;
}

.quote-strip__role {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 13px;
  font-style: normal;
  color: var(--grey-500);
}

/* ─── Entered state ───────────────────────────────────────── */

.quote-strip--visible .quote-strip__logo {
  opacity: 1;
}

.quote-strip--visible .quote-strip__deco {
  transform: scale(1);
}

.quote-strip--visible .quote-strip__line:nth-child(1) {
  opacity: 1;
  transition-delay: 400ms;
}

.quote-strip--visible .quote-strip__line:nth-child(2) {
  opacity: 1;
  transition-delay: 600ms;
}

.quote-strip--visible .quote-strip__line:nth-child(3) {
  opacity: 1;
  transition-delay: 800ms;
}

.quote-strip--visible .quote-strip__stars {
  opacity: 1;
  transition-delay: 1200ms;
}

.quote-strip--visible .quote-strip__attrib {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1500ms;
}

@media (prefers-reduced-motion: reduce) {
  .quote-strip__logo,
  .quote-strip__line,
  .quote-strip__stars,
  .quote-strip__attrib {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .quote-strip__deco {
    transform: scale(1) !important;
    transition: none !important;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

