/* ============================================================
   WE MET SPORTS - motion & creative layer
   Loaded after styles.css. All heavy motion respects
   prefers-reduced-motion (see bottom of file).
   ============================================================ */

/* ---------- 0. Page loader / brand splash ---------- */
.loader {
  position: fixed; inset: 0; z-index: 2000; background: var(--navy);
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-mark {
  width: 104px; height: 104px; border-radius: 50%; background: var(--yellow);
  display: grid; place-items: center; position: relative; animation: pulse 1.1s ease-in-out infinite;
}
.loader-mark img { width: 92px; height: 92px; }
.loader-ring {
  position: absolute; inset: -16px; border: 4px solid rgba(254,227,28,.22);
  border-top-color: var(--yellow); border-radius: 50%; animation: spin .85s linear infinite;
}
.loader-word {
  position: absolute; bottom: -52px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-head); font-weight: 800; font-style: italic; letter-spacing: .3em;
  color: rgba(255,255,255,.7); font-size: .72rem; text-transform: uppercase; white-space: nowrap;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.09); } }

/* ---------- 1. Scroll progress bar ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 4px; width: 100%; z-index: 130; pointer-events: none; }
.scroll-progress > span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--yellow), #fff5a8);
  box-shadow: 0 0 14px rgba(254,227,28,.8);
}

/* ---------- 2. Active nav link ---------- */
.nav-links a { position: relative; }
.nav-links a:not(.nav-cta).active { color: var(--yellow); }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px; height: 2px;
  background: var(--yellow); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { transform: scaleX(1); }

/* ---------- 3. Button shine sweep ---------- */
.btn { position: relative; overflow: hidden; }
.btn > * { position: relative; z-index: 1; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%; z-index: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg);
}
.btn:hover::after { animation: shine .75s ease; }
@keyframes shine { to { left: 150%; } }

/* ---------- 4. Hero entrance (driven by body.loaded) ---------- */
.hero .reveal { opacity: 1 !important; transform: none !important; }
.hero-logo, .hero .badge-line, .hero h1, .hero p.lead, .hero-cta, .hero-stats, .hero-figure {
  opacity: 0;
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.hero-logo, .hero .badge-line, .hero h1, .hero p.lead, .hero-cta, .hero-stats { transform: translateY(30px); }
.hero-figure { transform: translateX(46px) scale(.96); }
body.loaded .hero-logo      { opacity: 1; transform: none; transition-delay: .15s; }
body.loaded .hero .badge-line { opacity: 1; transform: none; transition-delay: .27s; }
body.loaded .hero h1        { opacity: 1; transform: none; transition-delay: .39s; }
body.loaded .hero p.lead    { opacity: 1; transform: none; transition-delay: .54s; }
body.loaded .hero-cta       { opacity: 1; transform: none; transition-delay: .66s; }
body.loaded .hero-stats     { opacity: 1; transform: none; transition-delay: .78s; }
body.loaded .hero-figure    { opacity: 1; transform: none; transition-delay: .42s; }

/* hero headline underline draws in */
.hero h1 .stroke::after { transform-origin: left; transform: scaleX(0); transition: transform .7s ease .95s; }
body.loaded .hero h1 .stroke::after { transform: scaleX(1); }

/* ---------- 5. Decorative floating motifs ---------- */
.decor { position: absolute; pointer-events: none; z-index: 0; opacity: .9; }
.decor svg { width: 100%; height: 100%; display: block; }
.decor-shuttle { animation: floaty var(--dur, 7s) ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-24px) rotate(calc(var(--r, 0deg) + 10deg)); }
}
.decor-ring { border-radius: 50%; border: 14px solid rgba(28,39,71,.06); }
.hero .decor-ring { animation: floaty 11s ease-in-out infinite; }
/* hero shuttles */
.hero .d1 { width: 90px; height: 90px; top: 16%; right: 40%; --r: -12deg; --dur: 8s; color: rgba(28,39,71,.18); }
.hero .d2 { width: 64px; height: 64px; bottom: 14%; right: 8%; --r: 18deg; --dur: 9.5s; color: rgba(28,39,71,.16); }
.hero .d3 { width: 120px; height: 120px; top: 60%; left: -40px; --r: 6deg; --dur: 10s; color: rgba(28,39,71,.10); }
/* divider shuttles */
.divider { overflow: hidden; }
.divider .decor { opacity: .5; }
.divider.junior .ds { color: rgba(0,0,0,.10); }
.divider.senior .ds { color: rgba(255,255,255,.10); }
.divider .ds1 { width: 150px; height: 150px; top: 18%; right: 6%; --r: -10deg; --dur: 9s; }
.divider .ds2 { width: 90px; height: 90px; bottom: 14%; right: 22%; --r: 14deg; --dur: 11s; }

/* ---------- 6. Marquee ticker ---------- */
.marquee {
  overflow: hidden; background: var(--yellow);
  border-top: 4px solid var(--navy); border-bottom: 4px solid var(--navy);
  padding: 15px 0; position: relative;
}
.marquee.alt { background: var(--navy); border-color: var(--yellow); }
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee.alt .marquee-track { animation-duration: 34s; animation-direction: reverse; }
.marquee-track span {
  font-family: var(--font-head); font-weight: 900; font-style: italic; text-transform: uppercase;
  font-size: 1.35rem; color: var(--navy); white-space: nowrap; padding: 0 30px;
  display: inline-flex; align-items: center; gap: 30px; letter-spacing: -.01em;
}
.marquee.alt .marquee-track span { color: var(--yellow); }
.marquee-track .dot { width: 12px; height: 12px; border-radius: 50%; background: currentColor; opacity: .55; flex: 0 0 auto; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 7. Staggered grid reveals ---------- */
.svc-grid .svc-card:nth-child(2) { transition-delay: .12s; }
.svc-grid .svc-card:nth-child(3) { transition-delay: .24s; }

.tour-grid .tour-card, .fac-grid .fac-card, .ev-gallery figure {
  opacity: 0; transform: translateY(30px) scale(.97);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1);
}
.tour-grid.in .tour-card, .fac-grid.in .fac-card, .ev-gallery.in figure { opacity: 1; transform: none; }
.tour-grid.in .tour-card:nth-child(1), .fac-grid.in .fac-card:nth-child(1), .ev-gallery.in figure:nth-child(1) { transition-delay: .06s; }
.tour-grid.in .tour-card:nth-child(2), .fac-grid.in .fac-card:nth-child(2), .ev-gallery.in figure:nth-child(2) { transition-delay: .16s; }
.tour-grid.in .tour-card:nth-child(3), .fac-grid.in .fac-card:nth-child(3), .ev-gallery.in figure:nth-child(3) { transition-delay: .26s; }
.tour-grid.in .tour-card:nth-child(4), .fac-grid.in .fac-card:nth-child(4) { transition-delay: .36s; }
.tour-grid.in .tour-card:nth-child(5), .fac-grid.in .fac-card:nth-child(5) { transition-delay: .46s; }
.tour-grid.in .tour-card:nth-child(6), .fac-grid.in .fac-card:nth-child(6) { transition-delay: .56s; }

.ev-list .ev-item { opacity: 0; transform: translateX(-22px); transition: opacity .5s ease, transform .5s ease; }
.ev-list.in .ev-item { opacity: 1; transform: none; }
.ev-list.in .ev-item:nth-child(2) { transition-delay: .1s; }
.ev-list.in .ev-item:nth-child(3) { transition-delay: .2s; }
.ev-list.in .ev-item:nth-child(4) { transition-delay: .3s; }
.ev-list.in .ev-item:nth-child(5) { transition-delay: .4s; }

/* program card detail rows cascade */
.pcard .detail { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.pcard.in .detail { opacity: 1; transform: none; }
.pcard.in .detail:nth-child(2) { transition-delay: .08s; }
.pcard.in .detail:nth-child(3) { transition-delay: .16s; }
.pcard.in .detail:nth-child(4) { transition-delay: .24s; }
.pcard.in .detail:nth-child(5) { transition-delay: .32s; }
.pcard.in .detail:nth-child(6) { transition-delay: .40s; }

/* ---------- 8. Card tilt + glow ---------- */
.tilt { transform-style: preserve-3d; transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease; }
.tilt .player-card, .tilt h3, .tilt .svc-body, .tilt .cap { transform: translateZ(30px); }
.pcard.tilt:hover { box-shadow: 0 36px 80px rgba(20,25,40,.22), 0 0 0 2px color-mix(in srgb, var(--accent) 45%, transparent); }
.svc-card.tilt:hover { box-shadow: 0 30px 64px rgba(20,25,40,.2); }
.player-card .ph img { transition: transform .5s ease; }
.pcard:hover .player-card .ph img { transform: scale(1.05); }

/* richer image zoom on tour cards */
.tour-card img { transition: transform .55s ease; }
.tour-card:hover img { transform: scale(1.08); }
.ev-gallery figure img { transition: transform .55s ease; }

/* ---------- 9. Lightbox prev/next ---------- */
.lightbox .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center;
  transition: background .2s ease; backdrop-filter: blur(4px);
}
.lightbox .lb-nav:hover { background: var(--yellow); color: var(--navy); }
.lightbox .lb-prev { left: 22px; }
.lightbox .lb-next { right: 22px; }
.lightbox .lb-nav svg { width: 26px; height: 26px; }
.lightbox img { animation: lbpop .35s cubic-bezier(.2,.7,.2,1); }
@keyframes lbpop { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }

/* ---------- 10. Floating WhatsApp pulse ---------- */
.fab-wa { animation: floaty 5s ease-in-out infinite; }
.fab-wa::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25D366;
  z-index: -1; animation: wapulse 2.2s ease-out infinite;
}
@keyframes wapulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.9); opacity: 0; } }

/* ---------- 11. Section heading kicker animated dot ---------- */
.section-head .eyebrow::before {
  content: ""; display: inline-block; width: 22px; height: 3px; background: currentColor;
  vertical-align: middle; margin-right: 10px; border-radius: 2px;
}

/* quote bands subtle gradient shimmer */
.pquote { position: relative; overflow: hidden; }
.pquote::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-20deg); animation: sweep 6s ease-in-out infinite;
}
@keyframes sweep { 0%, 70% { left: -60%; } 100% { left: 160%; } }

/* ---------- 12. Reveal easing upgrade ---------- */
.reveal { transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-scale { transform: translateY(20px) scale(.96); }
.reveal-right { transform: translateX(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right.in, .reveal-left.in, .reveal-scale.in { transform: none; }

/* ============================================================
   EXTENDED CREATIVE LAYER
   ============================================================ */

/* ---------- A. Impact "by the numbers" band ---------- */
.impact {
  background: var(--navy); color: #fff; padding: 84px 0 72px; position: relative; overflow: hidden;
  clip-path: polygon(0 28px, 100% 0, 100% 100%, 0 100%);
}
.impact .imp-shuttle { width: 120px; height: 120px; top: 16%; left: 46%; color: rgba(255,255,255,.06); --dur: 9s; }
.impact-head { text-align: center; margin-bottom: 40px; }
.impact-head .eyebrow { color: var(--yellow); }
.impact-head h2 { font-weight: 900; font-style: italic; text-transform: uppercase; font-size: clamp(1.6rem,3.4vw,2.4rem); margin-top: 8px; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; position: relative; z-index: 1; }
.impact-item { position: relative; }
.impact-item + .impact-item::before {
  content: ""; position: absolute; left: -12px; top: 18%; height: 64%; width: 1px; background: rgba(255,255,255,.14);
}
.impact-item .n { font-family: var(--font-head); font-weight: 900; font-style: italic; font-size: clamp(2.6rem,6vw,4.4rem); color: var(--yellow); line-height: 1; }
.impact-item .l { text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: .8rem; color: #aab3cd; margin-top: 10px; }

/* ---------- B. Player stories carousel ---------- */
.stories { background: #f5f6fa; }
.story-carousel { position: relative; max-width: 920px; margin: 0 auto; }
.story-viewport { overflow: hidden; border-radius: 24px; }
.story-track { display: flex; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.story-slide {
  min-width: 100%; box-sizing: border-box; display: grid; grid-template-columns: 220px 1fr; gap: 40px;
  align-items: center; background: #fff; padding: 48px; border-top: 7px solid var(--accent, var(--yellow));
}
.story-photo {
  width: 200px; height: 200px; border-radius: 24px; object-fit: cover; box-shadow: var(--shadow-sm);
  background: var(--accent);
}
.story-body .quote-mark { font-family: var(--font-head); font-weight: 900; font-style: italic; font-size: 3.4rem; color: var(--accent); line-height: .6; }
.story-quote { font-size: 1.32rem; line-height: 1.5; font-style: italic; color: var(--navy); margin: 6px 0 22px; font-weight: 500; }
.story-name { font-family: var(--font-head); font-weight: 900; font-style: italic; text-transform: uppercase; font-size: 1.2rem; color: var(--navy); }
.story-prog {
  display: inline-block; margin-top: 8px; background: var(--accent); color: #fff;
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  font-size: .72rem; padding: 6px 14px; border-radius: 999px;
}
.story-slide.light-prog .story-prog { color: var(--navy); }
.story-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer; background: var(--navy); color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: background .2s, transform .2s;
}
.story-nav:hover { background: var(--yellow); color: var(--navy); }
.story-nav:active { transform: translateY(-50%) scale(.92); }
.story-nav.prev { left: -18px; }
.story-nav.next { right: -18px; }
.story-nav svg { width: 24px; height: 24px; }
.story-dots { display: flex; gap: 10px; justify-content: center; margin-top: 26px; }
.story-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: #c3c9d8; cursor: pointer; padding: 0; transition: .2s; }
.story-dots button.active { background: var(--navy); width: 28px; border-radius: 6px; }

/* ---------- C. Magnetic buttons ---------- */
.magnetic { transition: transform .18s cubic-bezier(.2,.7,.2,1); }

/* ---------- D. Custom cursor ---------- */
.cursor-shuttle {
  position: fixed; top: 0; left: 0; width: 38px; height: 38px; pointer-events: none; z-index: 1500;
  border-radius: 50%; background: var(--yellow); display: grid; place-items: center;
  /* white ring + soft shadow define the yellow disc on any background
     without adding a second navy ring that would clash with the emblem */
  box-shadow: 0 0 0 1.6px rgba(255,255,255,.9), 0 4px 13px rgba(0,0,0,.35);
  transform: translate(-50%, -50%); opacity: 0;
  transition: opacity .3s ease, width .22s cubic-bezier(.2,1.4,.4,1), height .22s cubic-bezier(.2,1.4,.4,1), box-shadow .2s ease;
  will-change: transform; backface-visibility: hidden;
}
.cursor-shuttle img { width: 36px; height: 36px; display: block; transition: width .22s cubic-bezier(.2,1.4,.4,1), height .22s cubic-bezier(.2,1.4,.4,1); }
.cursor-shuttle.visible { opacity: 1; }
.cursor-shuttle.big { width: 54px; height: 54px; box-shadow: 0 0 0 2px rgba(255,255,255,.95), 0 7px 20px rgba(0,0,0,.4); }
.cursor-shuttle.big img { width: 51px; height: 51px; }
/* quick "serve" spin on click */
.cursor-shuttle.spin img { animation: cursorSpin .55s cubic-bezier(.25,.8,.3,1); }
@keyframes cursorSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
/* hide the OS cursor on devices that support the custom one */
@media (hover: hover) and (pointer: fine) {
  html.shuttle-cursor, html.shuttle-cursor * { cursor: none !important; }
}

/* ---------- E. Maps card ---------- */
.map-card { margin-top: 24px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); position: relative; }
.map-card iframe { width: 100%; height: 230px; border: 0; display: block; filter: grayscale(.25) contrast(1.05); }
.map-card .pin {
  position: absolute; top: 14px; left: 14px; background: var(--yellow); color: var(--navy);
  font-family: var(--font-head); font-weight: 800; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em;
  padding: 7px 13px; border-radius: 999px; pointer-events: none;
}

/* ---------- F. Flying shuttlecock between sections ---------- */
.flyer { position: absolute; width: 70px; height: 70px; pointer-events: none; z-index: 1; color: var(--accent, var(--yellow)); will-change: transform; }

/* ---------- G. Hero glow + scroll cue ---------- */
.hero-glow {
  position: absolute; width: 560px; height: 560px; border-radius: 50%; right: 4%; top: 16%; z-index: 0;
  background: radial-gradient(circle, rgba(28,39,71,.12), transparent 62%); filter: blur(8px);
  animation: floaty 13s ease-in-out infinite; pointer-events: none;
}
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 9px; color: var(--navy);
  font-family: var(--font-head); font-weight: 800; font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; opacity: .75;
  transition: opacity .4s ease;
}
.scroll-cue.gone { opacity: 0; }
.scroll-cue .mouse { width: 24px; height: 38px; border: 2.5px solid var(--navy); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after {
  content: ""; position: absolute; top: 7px; left: 50%; width: 4px; height: 7px; background: var(--navy);
  border-radius: 2px; transform: translateX(-50%); animation: wheel 1.5s ease-in-out infinite;
}
@keyframes wheel { 0% { opacity: 1; transform: translate(-50%, 0); } 55% { opacity: 0; transform: translate(-50%, 11px); } 100% { opacity: 0; } }

/* ---------- H. Program card watermark number ---------- */
.pcard-num {
  position: absolute; top: 8px; right: 26px; z-index: 0; pointer-events: none;
  font-family: var(--font-head); font-weight: 900; font-style: italic; font-size: 6rem; line-height: 1;
  color: color-mix(in srgb, var(--accent) 13%, transparent); letter-spacing: -.04em;
}
.pcard-top > .pcard-badges, .pcard-top > h3, .pcard-top > .accent-rule { position: relative; z-index: 1; }

/* ---------- I. Angled footer transition ---------- */
.contact { clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 100%); }

/* ---------- replayable number stats ---------- */
.replayable { cursor: pointer; }
.replay { animation: statPulse .55s cubic-bezier(.3,.7,.3,1); }
@keyframes statPulse { 0% { transform: scale(1); } 38% { transform: scale(1.03); } 100% { transform: scale(1); } }
.impact-grid.replayable { position: relative; }
.impact-grid.replayable::after {
  content: "↻ Click to replay"; position: absolute; left: 50%; bottom: -34px; transform: translateX(-50%);
  font-family: var(--font-head); font-weight: 700; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.4); transition: color .2s ease; white-space: nowrap;
}
.impact-grid.replayable:hover::after { color: var(--yellow); }

/* ---------- J. Accessibility: skip link + focus styles ---------- */
.skip-link {
  position: fixed; top: 10px; left: 50%; transform: translateX(-50%) translateY(-160%); z-index: 3000;
  background: var(--navy); color: #fff; padding: 12px 22px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: .8rem;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateX(-50%) translateY(0); outline: 3px solid var(--yellow); outline-offset: 2px; }

:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: 4px; }
.nav .nav-links a:focus-visible, .nav .brand:focus-visible { outline-color: var(--yellow); }
.btn:focus-visible { outline-color: var(--navy); outline-offset: 4px; }
.hero :focus-visible, .divider.junior :focus-visible, .coach :focus-visible { outline-color: var(--navy); }
.about :focus-visible, .tour :focus-visible, .events :focus-visible, .facility :focus-visible,
.contact :focus-visible, .divider.senior :focus-visible { outline-color: var(--yellow); }

/* responsive */
@media (max-width: 760px) {
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .impact-item:nth-child(3)::before, .impact-item:nth-child(2)::before { display: none; }
  .story-slide { grid-template-columns: 1fr; gap: 22px; padding: 32px 24px; text-align: center; justify-items: center; }
  .story-photo { width: 150px; height: 150px; }
  .story-nav.prev { left: 6px; } .story-nav.next { right: 6px; }
  .story-nav { background: rgba(28,39,71,.85); }
  .cursor-shuttle, .cursor-dot { display: none; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .decor, .marquee, .cursor-shuttle, .cursor-dot, .flyer, .hero-glow, .scroll-cue { display: none !important; }
  .impact, .contact { clip-path: none !important; }
  html.shuttle-cursor, html.shuttle-cursor * { cursor: auto !important; }
  .hero-logo, .hero .badge-line, .hero h1, .hero p.lead, .hero-cta, .hero-stats, .hero-figure,
  .tour-grid .tour-card, .fac-grid .fac-card, .ev-gallery figure, .ev-list .ev-item, .pcard .detail {
    opacity: 1 !important; transform: none !important;
  }
}
