/* intro v20 — Calvin Klein magazine: shimmer sheen, mist, scale-up reveal, strike-through draw */

.intro-mag__img { object-fit: cover; }
.intro-mag__figure { aspect-ratio: 21 / 9; }

/* Gold-foil sheen → shimmer sweep (gradient colours come from Tailwind, motion from CSS) */
.intro-mag__sheen {
    background-size: 220% 220%;
    animation: intro-mag-shimmer 3s linear infinite;
    opacity: 0.35;
}
@keyframes intro-mag-shimmer {
    0%   { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Smoke / mist wisp */
.intro-mag__mist {
    width: 24rem;
    height: 24rem;
    filter: blur(48px);
    opacity: 0.4;
}

/* LED step badge fixed size (no BS w-N/h-N utility) */
.intro-mag__led {
    width: 4rem;
    height: 4rem;
}

/* Dashed connector line (no BS border-style utility) */
.intro-mag__connector {
    border-style: dashed;
}

/* Scale-up on scroll into view — hidden only once JS arms it (no-JS content stays visible) */
.intro-mag.is-armed .intro-mag__scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 560ms ease, transform 560ms ease;
}
.intro-mag.is-armed .intro-mag__scale.is-in {
    opacity: 1;
    transform: scale(1);
}

/* Strikethrough line draw on hover */
.intro-mag__strike { height: 0.125rem; width: 0; transition: width 300ms ease; }
.intro-mag__st:hover .intro-mag__strike { width: 100%; }

@media (prefers-reduced-motion: reduce) {
    .intro-mag__sheen { animation: none; }
    .intro-mag__scale { opacity: 1; transform: none; }
}

.services__tile--lift {
  transition: transform 0.3s ease;
}

.services__tile--lift:hover {
  transform: scale(1.05);
}

.services__cta--lift {
  transition: transform 0.3s ease;
}

.services__cta--lift:hover {
  transform: scale(1.05);
}

.services__marker--offset {
  top: 0.5rem;
  inset-inline-end: 0.5rem;
}

.services__marker--reveal {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services__tile:hover .services__marker--reveal {
  opacity: 1;
}

/* whyus v22 — brush-stroke blob decor (irregular border-radius trick; no TW/BS utility produces this shape) */
.whyus-groove-thread__blob {
    z-index: 0;
    pointer-events: none;
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
}

.whyus-groove-thread__blob--a {
    top: -2rem;
    left: -3rem;
    transform: rotate(-8deg);
}

.whyus-groove-thread__blob--b {
    top: 40%;
    right: -2.5rem;
    transform: rotate(12deg);
}

.whyus-groove-thread__blob--c {
    bottom: -2.5rem;
    left: 18%;
    transform: rotate(20deg);
}

/* benefit cards — equal height feel in the 2-col grid */
.whyus-groove-thread__card {
    min-height: 100%;
}

/* staggered scroll reveal — JS adds is-visible after a per-item delay from a fixed sequence (STAGGER_DELAYS) */
.whyus-groove-thread__reveal {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 500ms ease, transform 500ms ease;
}

.whyus-groove-thread__reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-minimal-carousel__section {
  min-height: 28rem;
}

.cta-minimal-carousel__wrap {
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .cta-minimal-carousel__wrap {
    padding-bottom: 7rem;
  }
}

.cta-minimal-carousel__viewport {
  position: relative;
  min-height: 22rem;
}

.cta-minimal-carousel__panel--center {
  text-align: center;
}

.cta-minimal-carousel__panel--left {
  display: flex;
  align-items: center;
  min-height: 20rem;
}

.cta-minimal-carousel__left-stack {
  width: 100%;
}

.cta-minimal-carousel__panel--split {
  min-height: 20rem;
  display: flex;
  align-items: flex-end;
}

.cta-minimal-carousel__panel.cta-minimal-carousel__slide--hidden {
  display: none;
}

.cta-minimal-carousel__slide--hidden {
  display: none;
}

.cta-minimal-carousel__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes cta-minimal-carousel__fade-in {
  from {
    opacity: 0;
    transform: translateX(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cta-minimal-carousel__slide--visible {
  animation: cta-minimal-carousel__fade-in 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.cta-minimal-carousel__eyebrow-track {
  letter-spacing: 0.22em;
}

.cta-minimal-carousel__title-track {
  letter-spacing: 0.12em;
}

.cta-minimal-carousel__nav-btn {
  width: 2.75rem;
  height: 2.75rem;
}

.cta-minimal-carousel__outline-cta {
  min-width: 9rem;
}

.cta-minimal-carousel__dot--active {
  width: 1.75rem;
  filter: brightness(1);
}

.cta-minimal-carousel__dot--idle {
  width: 0.5rem;
  filter: brightness(0.45);
}

@media (min-width: 768px) {
  .cta-minimal-carousel__viewport {
    min-height: 26rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-minimal-carousel__slide--visible {
    animation: none;
  }
}

