.home-viewport {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 32px 60px;
}

.home-header {
  position: relative;
  isolation: isolate;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--text-main);
  margin-bottom: 12px;
}

.home-hero-subtitle {
  position: relative;
  z-index: 2;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 24px;
  line-height: 1.45;
}

/* --- Hero Dual Call-to-Action Group (Stacked Architectural Layout) --- */
.hero-cta-cluster {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column; /* Centered vertical stack on desktop */
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}

/* Primary Action: Sculpted Luminous Coral Capsule with Specular Shimmer */
.hero-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f54562 0%, #df2847 100%);
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 999px;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 14px 32px -4px rgba(242, 65, 93, 0.42),
    0 4px 12px rgba(1, 35, 80, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.25s ease,
              color 0.25s ease;
  cursor: pointer;
  overflow: hidden;
}

.hero-btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: skewX(-22deg);
  transition: left 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #fee451 0%, #fad423 100%);
  color: #012350 !important;
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow:
    0 18px 36px -4px rgba(254, 228, 81, 0.45),
    0 6px 16px rgba(1, 35, 80, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-btn-primary:hover::after {
  left: 140%;
}

.hero-btn-primary:active {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 6px 18px -2px rgba(242, 65, 93, 0.32);
}

/* Secondary Action: Translucent Editorial Glass Pill */
.hero-link-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(1, 35, 80, 0.03);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .hero-link-secondary {
  background: rgba(4, 25, 56, 0.5);
  border-color: rgba(18, 55, 109, 0.7);
  color: var(--text-muted);
}

.hero-link-secondary span {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.88em;
  color: var(--accent-coral);
}

.hero-link-secondary:hover {
  color: var(--text-main);
  background: var(--bg-surface);
  border-color: var(--accent-cyan);
  box-shadow: 0 4px 16px rgba(1, 35, 80, 0.08);
  transform: translateY(1px);
}

.hero-link-secondary:hover span {
  transform: translateY(2px);
  color: var(--accent-coral);
}

/* --- Watercolor Brushstroke Under Title --- */
.header-brushstroke-wrap {
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translate(-50%, -52%);
  width: clamp(340px, 72vw, 840px);
  height: clamp(80px, 15vw, 150px);
  pointer-events: none;
  z-index: 1;
  clip-path: inset(0 0 0 100%);
  animation: stroke-sweep-rtl 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
  will-change: clip-path;
}

.header-brushstroke-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(2, 155, 189, 0.15));
}

[data-theme="dark"] .header-brushstroke-svg {
  filter: drop-shadow(0 6px 22px rgba(242, 65, 93, 0.25)) brightness(1.2);
}

/* Right-to-Left Reveal Sweep */
@keyframes stroke-sweep-rtl {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

/* --- Continuous Sliding Artwork Carousel --- */
.panorama-carousel-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  margin-bottom: 96px;
  padding: 2px 0;
  z-index: 2;
  perspective: 1400px;

  /* DEFAULT: Concave Ribbon Window (Dips inward like reference) */
  clip-path: url(#viewport-concave);
  -webkit-clip-path: url(#viewport-concave);
}

/* Switch the whole ribbon to bulging outward by adding class="panorama-carousel-container is-convex fade-in" in HTML */
.panorama-carousel-container.is-convex {
  clip-path: url(#viewport-convex);
  -webkit-clip-path: url(#viewport-convex);
}

.panorama-carousel-track {
  display: flex;
  width: max-content;
  animation: scroll-carousel 20s linear infinite;
  will-change: transform;
  transform-style: preserve-3d;
}

.carousel-track-group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
  flex-shrink: 0;
}

.carousel-card {
  width: 240px;
  height: 360px;
  flex-shrink: 0;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 16px 32px rgba(1, 35, 80, 0.12);
  transition: box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  will-change: transform, filter;

  /* Depth pulse: default (concave) — edges read close/sharp, center recedes.
     Duration matches one full track loop (24s) so all 6 unique cards in a
     group tile seamlessly; each card is offset by exactly one card-step
     (24s / 6 = 4s) so the pulse appears to travel WITH the scroll rather
     than pulsing in place. */
  animation: depth-concave 24s linear ease-in-out infinite;
}

.panorama-carousel-container.is-convex .carousel-card {
  animation-name: depth-convex;
}

.carousel-card:hover {
  box-shadow: 0 22px 44px rgba(1, 35, 80, 0.2);
  filter: brightness(1.12) saturate(1.08);
  z-index: 5;
}

/* Stagger — position within each .carousel-track-group repeats every 6 cards,
   so this pattern applies identically (and seamlessly) to both duplicated groups. */
.carousel-card:nth-child(1) {
  animation-delay: 0s;
}

.carousel-card:nth-child(2) {
  animation-delay: -4s;
}

.carousel-card:nth-child(3) {
  animation-delay: -8s;
}

.carousel-card:nth-child(4) {
  animation-delay: -12s;
}

.carousel-card:nth-child(5) {
  animation-delay: -16s;
}

.carousel-card:nth-child(6) {
  animation-delay: -20s;
}

@keyframes scroll-carousel {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Concave: cards feel closest/sharpest at the ribbon's outer edges,
   recede away from the viewer as they pass through the center. */
@keyframes depth-concave {

  0%,
  100% {
    transform: translateZ(18px) scale(1.02);
    filter: brightness(1.02);
  }

  50% {
    transform: translateZ(-26px) scale(0.96);
    filter: brightness(0.92);
  }
}

/* Convex: inverse — cards bulge toward the viewer at center,
   recede away as they approach the outer edges. */
@keyframes depth-convex {

  0%,
  100% {
    transform: translateZ(-26px) scale(0.96);
    filter: brightness(0.92);
  }

  50% {
    transform: translateZ(18px) scale(1.02);
    filter: brightness(1.02);
  }
}

@media (max-width: 860px) {
  .home-viewport {
    padding: 72px 16px 36px;
  }

  /* Pulls the watercolor up behind the title on mobile */
  .header-brushstroke-wrap {
    top: 15%;
    transform: translate(-50%, -60%);
    width: clamp(280px, 88vw, 460px);
    height: clamp(65px, 18vw, 105px);
  }

  .panorama-carousel-container {
    margin-bottom: 54px;
    padding: 10px 0;
  }

  .carousel-track-group {
    gap: 12px;
    padding-right: 12px;
  }

  .carousel-card {
    width: 175px;
    height: 265px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-brushstroke {
    animation: none !important;
    clip-path: inset(0 0 0 0) !important;
    opacity: 1 !important;
  }

  .carousel-card {
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
}

/* --- Centered Editorial Main Stage Architecture --- */
.home-layout-container {
  width: 100%;
  max-width: 880px;
  margin: 0 auto 100px;
  display: flex;
  justify-content: center;
}

.home-scroll-stream {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.stream-section {
  scroll-margin-top: 120px;
  width: 100%;
}

.stream-section-tag {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-coral);
  display: block;
  margin-bottom: 12px;
}

.stream-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-main);
  line-height: 1.05;
  margin-bottom: 20px;
}

.stream-lead {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 18px;
}

.stream-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.editorial-brief .stream-body {
  font-size: 1.08rem;
}

/* --- What is Swahili Futurism Split Grid --- */
.brief-editorial-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 36px;
  align-items: center;
}

.brief-text-col {
  display: flex;
  flex-direction: column;
}

.brief-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brief-image-frame {
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  box-shadow: 0 16px 36px rgba(1, 35, 80, 0.08);
  position: relative;
}

.brief-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.brief-image-frame:hover .brief-feature-img {
  transform: scale(1.03);
}

.brief-image-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .brief-editorial-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .brief-image-frame {
    max-width: 440px;
    aspect-ratio: 16 / 11;
    margin: 0 auto;
  }
}

/* --- Elevated Quote Card with Modern Portrait Layout --- */
.residency-quote-card {
  margin-top: 36px;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--accent-coral);
  border-radius: 20px;
  padding: 32px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: center;
  box-shadow: var(--glass-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.residency-quote-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(1, 35, 80, 0.12);
}

[data-theme="dark"] .residency-quote-card {
  --bg-surface: #FFFFFF;
  --bg-page: #fdfad9;
  --text-main: #012350;
  --text-muted: #3a4b63;
  --border-subtle: #e4e0ba;
  background: #FFFFFF;
  border-color: #e4e0ba;
  border-left-color: var(--accent-coral);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .residency-quote-card .quote-card-text,
[data-theme="dark"] .residency-quote-card .author-name {
  color: #012350;
}

[data-theme="dark"] .residency-quote-card .quote-card-author {
  border-color: #e4e0ba;
}

[data-theme="dark"] .residency-quote-card .quote-portrait-frame {
  background: #fdfad9;
  border-color: #e4e0ba;
}

/* Portrait Showcase Frame */
.quote-portrait-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  box-shadow: 0 8px 20px rgba(1, 35, 80, 0.08);
}

.quote-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(102%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.residency-quote-card:hover .quote-portrait-img {
  transform: scale(1.04);
}

.quote-content-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-card-lead {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 0.8;
  color: var(--accent-coral);
  user-select: none;
  flex-shrink: 0;
}

.quote-card-text {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--text-main);
}

.quote-card-author {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
}

.author-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-main);
}

.author-role {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent-coral);
  letter-spacing: 0.01em;
}

@media (max-width: 680px) {
  .residency-quote-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .quote-portrait-frame {
    max-width: 140px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    margin: 0 auto;
  }
}

/* --- Continuous Studio & Peninsula Carousel (Infinite 24s Marquee) --- */
.residency-carousel-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  margin-top: 40px;
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.residency-carousel-track {
  display: flex;
  width: max-content;
  animation: scroll-residency-track 24s linear infinite reverse;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.residency-carousel-group {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
}

/* Defensive Card Architecture: keeps your exact 4/3 proportion, borders, and shadows */
.carousel-diptych-card,
.diptych-frame {
  margin: 0;
  position: relative;
  width: clamp(280px, 32vw, 420px);
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 28px rgba(1, 35, 80, 0.08);
  background: var(--bg-card);
  flex-shrink: 0;
}

[data-theme="dark"] .carousel-diptych-card,
[data-theme="dark"] .diptych-frame {
  background: #041938;
  border-color: #12376d;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
}

.diptych-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-diptych-card:hover .diptych-img,
.diptych-frame:hover .diptych-img {
  transform: scale(1.05);
}

.diptych-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(1, 35, 80, 0.88) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
  z-index: 2;
}

.caption-tag {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fdfad9;
  letter-spacing: 0.02em;
}

.caption-note {
  font-size: 0.65rem;
  font-weight: 600;
  color: #c0cfdf;
}

/* 24s Smooth Right-to-Left Translation */
@keyframes scroll-residency-track {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .carousel-diptych-card,
  .diptych-frame {
    width: 260px;
  }
  .residency-carousel-group {
    gap: 14px;
    padding-right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .residency-carousel-track {
    animation: none !important;
    overflow-x: auto;
  }
}

/* --- Transparent Split Metrics Grid --- */
.split-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.split-metric-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(1, 35, 80, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.split-metric-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-cyan);
}

.split-metric-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-coral);
  margin-bottom: 8px;
}

.split-metric-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 8px;
}

.split-metric-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

[data-theme="dark"] .split-metric-card {
  --bg-surface: #FFFFFF;
  --text-main: #012350;
  --text-muted: #3a4b63;
  --border-subtle: #e4e0ba;
  background: #FFFFFF;
  border-color: #e4e0ba;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

[data-theme="dark"] .split-metric-card .split-metric-label {
  color: #012350;
}

[data-theme="dark"] .split-metric-card .split-metric-desc {
  color: #3a4b63;
}

@media (max-width: 640px) {
  .split-metrics-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Massive Inverted Bottom Gallery CTA Banner --- */
.home-bottom-cta-banner {
  margin-top: 60px;
  background: #012350;
  color: #fdfad9;
  border-radius: 28px;
  padding: 64px 48px;
  box-shadow: 0 24px 60px rgba(1, 35, 80, 0.2);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .home-bottom-cta-banner {
  background: #001229;
  border: 1px solid var(--border-subtle);
}

.cta-banner-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.cta-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
  color: #fdfad9;
  margin-bottom: 16px;
}

.cta-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #c0cfdf;
  margin-bottom: 32px;
}

.btn-enter-gallery-inverted {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-coral);
  color: #FFFFFF;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(242, 65, 93, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-enter-gallery-inverted:hover {
  background: #fee451;
  color: #012350;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(254, 228, 81, 0.3);
}

/* Responsive Stacking & Mobile Sticky Pill Strip */
@media (max-width: 980px) {
  .home-layout-container {
    flex-direction: column;
    gap: 36px;
  }

  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .artist-roster-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-bottom-cta-banner {
    padding: 44px 24px;
  }
}

@media (max-width: 560px) {
  .home-viewport {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-layout-container {
    gap: 28px;
  }

  .artist-roster-grid {
    grid-template-columns: 1fr;
  }

  .residency-visual-diptych {
    grid-template-columns: 1fr;
  }

  .diptych-frame {
    aspect-ratio: 16 / 10;
  }
}

/* --- Scroll Animations --- */
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

}