/* ==========================================================================
   St. Philip Neri Festival — page-scoped styles
   Loaded only by /Nerifestival. Everything is namespaced under .neri-page so
   it can never leak into the rest of the site.

   Type, buttons, header and footer all come from the existing site CSS
   (Lemonmilk headings, Claritycity body, .btn-primary, .container-default).
   What lives here is the festival's own palette, lifted from the flyer, and
   the page's motion.

   Motion rules of the house:
   - Anything that only makes sense with JS is gated behind .neri-js on <html>,
     so the no-JS page never shows a half-built state.
   - Every effect has a `prefers-reduced-motion` off switch at the bottom.
   ========================================================================== */

.neri-page {
  --neri-teal: #14646e;
  --neri-teal-deep: #0c444c;
  --neri-teal-ink: #072f35;
  --neri-coral: #e8552f;
  --neri-coral-deep: #c33f1d;
  --neri-gold: #ffc93c;
  --neri-cream: #fdf6e9;
  --neri-cream-deep: #f4e8d2;
  --neri-line: #e2d5bb;

  --neri-ease: cubic-bezier(.22, .68, .3, 1);
  --neri-spring: cubic-bezier(.34, 1.4, .5, 1);
}

.neri-page {
  background-color: var(--neri-cream);
}

html {
  scroll-behavior: smooth;
}

.neri-page :focus-visible {
  outline: 3px solid var(--neri-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link — the nav is long, so give keyboard users a way past it. */
.neri-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background-color: var(--neri-gold);
  color: var(--neri-teal-ink);
  padding: 14px 22px;
  border-radius: 0 0 12px;
  font-weight: 900;
  text-decoration: none;
}

.neri-skip-link:focus {
  left: 0;
}

/* --------------------------------------------------------------------------
   Playful icons
   Line icons drawn inline in the markup; these rules give them their size and
   their little kick on hover.
   -------------------------------------------------------------------------- */

.neri-ic {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .45s var(--neri-spring);
}

.neri-ic-badge.is-lg {
  width: 58px;
  height: 58px;
}

.neri-ic-badge.is-lg .neri-ic {
  width: 28px;
  height: 28px;
}

.neri-ic-badge {
  background-color: #fff;
  border: 1px solid var(--neri-line);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neri-coral);
  transition: background-color .35s var(--neri-ease), border-color .35s var(--neri-ease),
    color .35s var(--neri-ease), transform .45s var(--neri-spring);
}

/* --------------------------------------------------------------------------
   Shared section furniture
   -------------------------------------------------------------------------- */

.neri-section {
  padding-top: 104px;
  padding-bottom: 104px;
  position: relative;
}

.neri-section.is-tight {
  padding-top: 72px;
  padding-bottom: 72px;
}

.neri-section.is-cream {
  background-color: var(--neri-cream);
}

.neri-section.is-cream-deep {
  background-color: var(--neri-cream-deep);
}

.neri-section.is-teal {
  background-color: var(--neri-teal);
  background-image: url('../images/bg-stain-texture-footer-worship-x-webflow-template.png');
  background-position: 50%;
  background-size: cover;
  background-blend-mode: multiply;
}

.neri-eyebrow {
  color: var(--neri-coral);
  font-family: Caveat, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  transform: rotate(-3deg);
  transform-origin: 0 100%;
  display: inline-block;
}

.neri-eyebrow.is-gold {
  color: var(--neri-gold);
}

.neri-eyebrow.is-cream {
  color: var(--neri-cream);
}

.neri-title {
  color: var(--neri-teal-ink);
  font-family: Lemonmilk, sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 20px;
}

.neri-title.is-light {
  color: var(--neri-cream);
}

.neri-lede {
  color: #3f4f52;
  font-size: 20px;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 62ch;
}

.neri-lede.is-light {
  color: #dceaec;
}

.neri-lede:last-child {
  margin-bottom: 0;
}

.neri-section-head {
  margin-bottom: 56px;
}

.neri-section-head.is-centered {
  text-align: center;
}

.neri-section-head.is-centered .neri-lede {
  margin-left: auto;
  margin-right: auto;
}

/* Hand-drawn underline under section titles, echoing the flyer's brush marks.
   It draws itself in when the heading arrives. */
.neri-underline {
  background-color: var(--neri-gold);
  border-radius: 4px;
  width: 88px;
  height: 6px;
  margin-bottom: 24px;
  transform-origin: 0 50%;
}

.neri-section-head.is-centered .neri-underline,
.neri-closing .neri-underline {
  margin-left: auto;
  margin-right: auto;
  transform-origin: 50% 50%;
}

.neri-js [data-neri-reveal] .neri-underline {
  transform: scaleX(0);
}

.neri-js [data-neri-reveal].is-in .neri-underline {
  transform: scaleX(1);
  transition: transform .7s .25s var(--neri-ease);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.neri-hero {
  background-color: var(--neri-teal-deep);
  background-image: url('../images/bg-stain-texture-footer-worship-x-webflow-template.png');
  background-position: 50% 0;
  background-size: cover;
  background-blend-mode: multiply;
  position: relative;
  overflow: hidden;
}

/* Warm light bleeding in from the top, the way the flyer's sky does. */
.neri-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(120% 80% at 50% -10%, #1d7d88 0%, #0c444c 55%, #072f35 100%);
  opacity: .92;
  z-index: 0;
}

.neri-hero > * {
  position: relative;
  z-index: 1;
}

.neri-hero .header-wrapper {
  position: relative;
  z-index: 3;
}

.neri-hero-body {
  padding-top: 56px;
  padding-bottom: 132px;
}

.neri-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-column-gap: 64px;
  align-items: center;
}

/* Staggered entrance, armed by JS so no-JS visitors never see it hidden. */
.neri-js [data-neri-hero] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
}

.neri-js [data-neri-hero].is-in {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--neri-ease), transform .8s var(--neri-ease);
  transition-delay: var(--neri-delay, 0ms);
}

.neri-hero-kicker {
  color: var(--neri-gold);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.neri-hero-title {
  color: var(--neri-cream);
  font-family: Lemonmilk, sans-serif;
  font-size: 84px;
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.01em;
  margin: 0 0 12px;
}

.neri-hero-title em {
  color: var(--neri-coral);
  font-style: normal;
  display: block;
}

.neri-hero-tagline {
  color: var(--neri-gold);
  font-family: Caveat, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 32px;
}

/* Two stacked intro paragraphs: tight between them, roomy before the chips. */
.neri-hero-intro {
  color: #cfe3e5;
  font-size: 20px;
  line-height: 1.65;
  max-width: 46ch;
  margin: 0 0 18px;
}

.neri-hero-intro.is-last {
  margin-bottom: 36px;
}

/* Date / time / place chips */
.neri-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
  padding: 0;
  list-style: none;
}

.neri-fact {
  background-color: #ffffff14;
  border: 1px solid #ffffff2e;
  border-radius: 999px;
  color: var(--neri-cream);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background-color .35s var(--neri-ease), border-color .35s var(--neri-ease),
    transform .45s var(--neri-spring);
}

.neri-fact:hover {
  background-color: #ffffff24;
  border-color: var(--neri-gold);
  transform: translateY(-4px);
}

.neri-fact .neri-ic {
  width: 19px;
  height: 19px;
  color: var(--neri-gold);
}

.neri-fact:hover .neri-ic {
  transform: rotate(-12deg) scale(1.15);
}

.neri-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

/* Ticket button — the site's .btn-primary shape, in the festival's coral. */
.neri-page .btn-primary.neri-btn-ticket {
  background-color: var(--neri-coral);
  border-color: var(--neri-coral);
  color: #fff;
  box-shadow: 0 12px 28px -12px #e8552fb8;
  position: relative;
  overflow: hidden;
}

.neri-page .btn-primary.neri-btn-ticket:hover {
  background-color: var(--neri-coral-deep);
  border-color: var(--neri-coral-deep);
  color: #fff;
  box-shadow: 0 18px 34px -14px #e8552fcc;
}

/* A shine that wipes across the ticket buttons on hover. */
.neri-page .btn-primary.neri-btn-ticket:before {
  content: "";
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: -70%;
  width: 45%;
  background-image: linear-gradient(100deg, #fff0, #ffffff5c, #fff0);
  transform: skewX(-18deg);
  transition: left .65s var(--neri-ease);
  pointer-events: none;
}

.neri-page .btn-primary.neri-btn-ticket:hover:before {
  left: 125%;
}

.neri-page .btn-primary.neri-btn-ghost {
  background-color: #0000;
  border-color: #ffffff66;
  color: var(--neri-cream);
}

.neri-page .btn-primary.neri-btn-ghost:hover {
  background-color: var(--neri-cream);
  border-color: var(--neri-cream);
  color: var(--neri-teal-ink);
}

.neri-page .btn-primary.neri-btn-dark {
  background-color: var(--neri-teal);
  border-color: var(--neri-teal);
  color: #fff;
}

.neri-page .btn-primary.neri-btn-dark:hover {
  background-color: var(--neri-teal-ink);
  border-color: var(--neri-teal-ink);
  color: #fff;
}

/* Magnetic buttons: JS writes the transform, so it must not be transitioned
   away mid-drag — only the spring back to rest is animated. */
.neri-page [data-neri-magnetic] {
  transition: border-color .3s, background-color .3s, color .3s, box-shadow .3s,
    transform .5s var(--neri-spring);
}

.neri-page [data-neri-magnetic].is-pulled {
  transition: border-color .3s, background-color .3s, color .3s, box-shadow .3s,
    transform .12s linear;
}

/* Flyer, pinned up like a poster on a barn wall. */
.neri-hero-flyer-wrap {
  perspective: 1200px;
}

.neri-hero-flyer {
  border: 10px solid #fff;
  border-radius: 20px;
  box-shadow: 0 40px 70px -30px #00000094;
  display: block;
  width: 100%;
  height: auto;
  transform: rotate(2.2deg);
  transition: transform .7s var(--neri-ease), box-shadow .7s var(--neri-ease);
}

.neri-hero-flyer-wrap:hover .neri-hero-flyer {
  transform: rotate(0) translateY(-10px) scale(1.02);
  box-shadow: 0 55px 90px -34px #000000ad;
}

/* Cream curve that hands the hero off to the next section. */
.neri-hero-curve {
  display: block;
  width: 100%;
  height: 72px;
  color: var(--neri-cream);
  margin-bottom: -1px;
}

/* --------------------------------------------------------------------------
   Diagonal scrolling marquee
   The clip holds the rotated band so its corners never widen the page.
   -------------------------------------------------------------------------- */

.neri-marquee-clip {
  position: relative;
  overflow: hidden;
  padding: 46px 0;
  margin-top: -34px;
  margin-bottom: -34px;
  z-index: 2;
}

.neri-marquee {
  background-color: var(--neri-gold);
  border-top: 3px solid #ffffff59;
  border-bottom: 3px solid #00000014;
  box-shadow: 0 14px 34px -14px #072f3559;
  padding: 16px 0;
  width: 114%;
  margin-left: -7%;
  overflow: hidden;
  transform: rotate(-2.4deg);
}

.neri-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

/* CSS keeps it moving on its own; JS replaces this with a velocity-aware
   version, which is why the animation is dropped when JS takes over. */
/* Duration is tuned to land near the JS version's ~100px/s at desktop width,
   so the band reads the same whether or not the script is running. */
.neri-marquee-track:not(.is-js-driven) {
  animation: neri-marquee-scroll 12s linear infinite;
}

.neri-marquee-track.is-js-driven {
  animation: none;
}

@keyframes neri-marquee-scroll {
  to { transform: translate3d(-50%, 0, 0); }
}

.neri-marquee-group {
  display: flex;
  align-items: center;
  flex: none;
  gap: 34px;
  padding-right: 34px;
}

.neri-marquee-word {
  color: var(--neri-teal-ink);
  font-family: Lemonmilk, sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  background: none;
  border: 0;
  padding: 2px 4px;
  cursor: default;
  transform: skewX(var(--neri-skew, 0deg));
  transition: color .3s var(--neri-ease), transform .45s var(--neri-spring);
}

.neri-marquee-word:hover,
.neri-marquee-word:focus-visible {
  color: var(--neri-coral);
  transform: skewX(var(--neri-skew, 0deg)) scale(1.14) rotate(-2deg);
}

.neri-marquee-dot {
  color: var(--neri-coral);
  font-size: 20px;
  line-height: 1;
  flex: none;
}

/* Confetti fired from the marquee words */
.neri-confetti-layer {
  position: fixed;
  inset: 0;
  z-index: 9995;
  pointer-events: none;
  overflow: hidden;
}

.neri-confetti {
  position: fixed;
  top: 0;
  left: 0;
  width: 9px;
  height: 13px;
  margin: -6px 0 0 -4px;
  border-radius: 2px;
  display: block;
}

.neri-confetti.is-round {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   Intro — copy beside a photo stack
   -------------------------------------------------------------------------- */

.neri-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 72px;
  align-items: center;
}

.neri-split.is-reversed .neri-split-media {
  order: -1;
}

.neri-photo-stack {
  position: relative;
  padding-bottom: 52px;
  padding-right: 44px;
}

/* The wrapper carries the scroll parallax (written by JS); the image inside
   carries the tilt and the hover separation. Keeping them on separate
   elements means the two never overwrite each other. */
.neri-photo {
  display: block;
}

.neri-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 8px solid #fff;
  box-shadow: 0 24px 48px -24px #0c444c73;
  transition: transform .8s var(--neri-ease), box-shadow .8s var(--neri-ease);
}

.neri-photo.is-back img {
  transform: rotate(-2deg);
}

.neri-photo.is-front {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  z-index: 2;
}

.neri-photo.is-front img {
  transform: rotate(3deg);
}

/* Hover pulls the two prints apart, like spreading photos on a table. */
.neri-photo-stack:hover .is-back img {
  transform: rotate(-5deg) translate3d(-18px, -12px, 0);
  box-shadow: 0 34px 60px -26px #0c444c8c;
}

.neri-photo-stack:hover .is-front img {
  transform: rotate(6.5deg) translate3d(20px, 14px, 0) scale(1.04);
  box-shadow: 0 34px 60px -26px #0c444c8c;
}

/* Bulleted highlight list */
.neri-checklist {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-row-gap: 16px;
}

.neri-checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #3f4f52;
  font-size: 18px;
  line-height: 1.55;
  transition: transform .4s var(--neri-ease), color .3s var(--neri-ease);
}

.neri-checklist li:hover {
  transform: translateX(6px);
  color: var(--neri-teal-ink);
}

.neri-checklist li:hover .neri-ic-badge {
  background-color: var(--neri-coral);
  border-color: var(--neri-coral);
  color: #fff;
  transform: rotate(-8deg) scale(1.1);
}

/* --------------------------------------------------------------------------
   The two zones (Fun for Everyone / Adults Only)
   -------------------------------------------------------------------------- */

.neri-zones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}

.neri-zone {
  background-color: #fff;
  border: 1px solid var(--neri-line);
  border-radius: 32px;
  box-shadow: 0 2px 7px #0000000f;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--neri-ease), box-shadow .5s var(--neri-ease),
    border-color .5s var(--neri-ease);
}

.neri-zone:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 60px -30px #072f3573;
  border-color: var(--neri-teal);
}

.neri-zone.is-adult:hover {
  border-color: var(--neri-coral);
}

.neri-zone-head {
  background-color: var(--neri-teal);
  color: var(--neri-cream);
  padding: 26px 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background-color .5s var(--neri-ease);
}

.neri-zone:hover .neri-zone-head {
  background-color: var(--neri-teal-ink);
}

.neri-zone.is-adult .neri-zone-head {
  background-color: var(--neri-coral);
}

.neri-zone.is-adult:hover .neri-zone-head {
  background-color: var(--neri-coral-deep);
}

.neri-zone-age {
  font-size: .74em;
  letter-spacing: .02em;
  opacity: .82;
  white-space: nowrap;
}

.neri-zone-head h3 {
  color: inherit;
  font-family: Lemonmilk, sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.neri-zone-head .neri-ic {
  width: 27px;
  height: 27px;
  color: var(--neri-gold);
}

.neri-zone:hover .neri-zone-head .neri-ic {
  transform: rotate(-10deg) scale(1.15);
}

.neri-zone-body {
  padding: 32px 36px 36px;
  flex: 1;
}

.neri-zone-note {
  color: #6c7a7c;
  font-size: 16px;
  line-height: 1.6;
  margin: 22px 0 0;
}

.neri-zone-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
}

.neri-zone.is-adult .neri-zone-list {
  grid-template-columns: 1fr;
}

.neri-zone-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #33474a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  transition: color .3s var(--neri-ease), transform .4s var(--neri-ease);
}

.neri-zone-list .neri-ic {
  width: 24px;
  height: 24px;
  color: var(--neri-teal);
}

.neri-zone.is-adult .neri-zone-list .neri-ic {
  color: var(--neri-coral);
}

.neri-zone-list li:hover {
  color: var(--neri-teal-ink);
  transform: translateX(5px);
}

.neri-zone-list li:hover .neri-ic {
  transform: rotate(-12deg) scale(1.22);
}

/* --------------------------------------------------------------------------
   Schedule
   -------------------------------------------------------------------------- */

.neri-schedule {
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  grid-column-gap: 64px;
  align-items: start;
}

.neri-schedule-aside {
  position: sticky;
  top: 40px;
}

/* The aside is a narrow column — ease the title down so it stops laddering. */
.neri-schedule-aside .neri-title {
  font-size: 42px;
}

.neri-timeline-wrap {
  position: relative;
}

.neri-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 34px;
  position: relative;
}

/* Faint track, with a gradient that fills in as you scroll past it. */
.neri-timeline:before {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background-color: var(--neri-line);
  border-radius: 2px;
}

.neri-timeline-progress {
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  border-radius: 2px;
  background-image: linear-gradient(to bottom, var(--neri-gold), var(--neri-coral));
  transform: scaleY(0);
  transform-origin: 50% 0;
}

.neri-timeline li {
  position: relative;
  padding-bottom: 34px;
}

.neri-timeline li:last-child {
  padding-bottom: 0;
}

/* Marker pops in when the fill reaches it. */
.neri-timeline li:before {
  content: "";
  position: absolute;
  left: -34px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--neri-gold);
  border: 3px solid var(--neri-cream);
  box-shadow: 0 0 0 2px var(--neri-gold);
  transform: scale(.2);
  opacity: 0;
  transition: transform .55s var(--neri-spring), opacity .35s var(--neri-ease),
    background-color .35s var(--neri-ease), box-shadow .35s var(--neri-ease);
}

.neri-js .neri-timeline li.is-reached:before,
html:not(.neri-js) .neri-timeline li:before {
  transform: scale(1);
  opacity: 1;
}

.neri-timeline li.is-headline:before {
  background-color: var(--neri-coral);
  box-shadow: 0 0 0 2px var(--neri-coral);
}

/* A halo that breathes on the anchor moments of the day. */
.neri-timeline li.is-headline:after {
  content: "";
  position: absolute;
  left: -37px;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--neri-coral);
  opacity: 0;
  pointer-events: none;
}

.neri-js .neri-timeline li.is-headline.is-reached:after {
  animation: neri-pulse 2.6s .4s var(--neri-ease) infinite;
}

@keyframes neri-pulse {
  0%   { transform: scale(.7); opacity: .8; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* The item itself slides in behind its marker. */
.neri-js .neri-timeline li > * {
  opacity: 0;
  transform: translate3d(14px, 0, 0);
  transition: opacity .6s var(--neri-ease), transform .6s var(--neri-ease);
}

.neri-js .neri-timeline li.is-reached > * {
  opacity: 1;
  transform: none;
}

.neri-js .neri-timeline li.is-reached > :nth-child(2) { transition-delay: .07s; }
.neri-js .neri-timeline li.is-reached > :nth-child(3) { transition-delay: .13s; }

.neri-time {
  color: var(--neri-coral);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.neri-timeline h3 {
  color: var(--neri-teal-ink);
  font-family: Lemonmilk, sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 8px;
  transition: color .3s var(--neri-ease);
}

.neri-timeline li:hover h3 {
  color: var(--neri-coral);
}

.neri-timeline li:hover:before {
  transform: scale(1.35);
}

.neri-timeline p {
  color: #55686b;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  max-width: 56ch;
}

/* "More to be announced" note at the foot of the timeline. */
.neri-tba {
  background-color: #fff;
  border: 1px dashed var(--neri-line);
  border-radius: 20px;
  padding: 24px 28px;
  margin-top: 8px;
  color: #55686b;
  font-size: 17px;
  line-height: 1.6;
  transition: transform .5s var(--neri-ease), border-color .5s var(--neri-ease),
    box-shadow .5s var(--neri-ease);
}

.neri-tba:hover {
  transform: translateY(-5px);
  border-color: var(--neri-coral);
  box-shadow: 0 24px 44px -28px #072f3566;
}

.neri-tba strong {
  color: var(--neri-teal-ink);
}

/* All-day activity pills */
.neri-allday {
  background-color: #fff;
  border: 1px solid var(--neri-line);
  border-radius: 28px;
  padding: 28px 30px;
  margin-top: 28px;
  transition: transform .5s var(--neri-ease), box-shadow .5s var(--neri-ease);
}

.neri-allday:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 48px -30px #072f356b;
}

.neri-allday h3 {
  color: var(--neri-teal-ink);
  font-family: Lemonmilk, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.neri-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.neri-pills li {
  background-color: var(--neri-cream);
  border: 1px solid var(--neri-line);
  border-radius: 999px;
  color: var(--neri-teal);
  padding: 9px 18px;
  font-size: 15px;
  font-weight: 700;
  transition: background-color .35s var(--neri-ease), color .35s var(--neri-ease),
    border-color .35s var(--neri-ease), transform .45s var(--neri-spring);
}

.neri-pills li:hover {
  background-color: var(--neri-teal);
  border-color: var(--neri-teal);
  color: var(--neri-cream);
  transform: translateY(-4px) scale(1.06) rotate(-1.5deg);
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

/* Three columns, tiling exactly: two landscape banners, one tall portrait and
   a row of three squares. Changing the photo order will open holes in the
   grid — keep wide, tall, wide, then the three 1x1s. */
.neri-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

/* Each tile is a button, because it opens the lightbox. */
.neri-gallery .neri-gal {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background-color: #0c444c;
  cursor: pointer;
  width: 100%;
  height: 100%;
  transition: transform .55s var(--neri-ease), box-shadow .55s var(--neri-ease);
}

.neri-gallery .neri-gal:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 30px 55px -26px #000000a1;
  z-index: 2;
}

.neri-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--neri-ease), filter .55s var(--neri-ease);
}

.neri-gallery .neri-gal:hover img {
  transform: scale(1.08);
  filter: saturate(1.12);
}

/* Gold frame that draws itself on hover. */
.neri-gallery .neri-gal:after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid var(--neri-gold);
  border-radius: 14px;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .45s var(--neri-ease), transform .45s var(--neri-ease);
  pointer-events: none;
}

.neri-gallery .neri-gal:hover:after,
.neri-gallery .neri-gal:focus-visible:after {
  opacity: 1;
  transform: scale(1);
}

.neri-gal-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 46px 20px 16px;
  background-image: linear-gradient(to top, #072f35f0, #072f3500);
  color: var(--neri-cream);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(6px);
  transition: transform .45s var(--neri-ease);
}

.neri-gallery .neri-gal:hover .neri-gal-caption {
  transform: translateY(0);
}

/* The little "open" glyph slides in beside the caption. */
.neri-gal-caption .neri-ic {
  width: 18px;
  height: 18px;
  color: var(--neri-gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .4s var(--neri-ease), transform .4s var(--neri-ease);
}

.neri-gallery .neri-gal:hover .neri-gal-caption .neri-ic,
.neri-gallery .neri-gal:focus-visible .neri-gal-caption .neri-ic {
  opacity: 1;
  transform: none;
}

.neri-gallery .is-wide {
  grid-column: span 2;
}

.neri-gallery .is-tall {
  grid-row: span 2;
}

/* Portraits cropped into square-ish cells — bias the crop towards faces. */
.neri-gallery .is-portrait img {
  object-position: 50% 32%;
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */

.neri-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 24px;
  background-color: #041f24e0;
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  opacity: 0;
  transition: opacity .28s var(--neri-ease);
}

.neri-lightbox[hidden] {
  display: none;
}

.neri-lightbox.is-open {
  opacity: 1;
}

body.neri-lb-open {
  overflow: hidden;
}

.neri-lb-stage {
  margin: 0;
  max-width: 1100px;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transform: scale(.94) translateY(14px);
  opacity: 0;
  transition: transform .38s var(--neri-spring), opacity .3s var(--neri-ease);
}

.neri-lightbox.is-open .neri-lb-stage {
  transform: none;
  opacity: 1;
}

.neri-lb-stage img {
  display: block;
  max-width: 100%;
  max-height: 74vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  border: 6px solid #fff;
  box-shadow: 0 40px 90px -30px #000000c4;
  transition: opacity .2s var(--neri-ease);
}

.neri-lightbox.is-loading .neri-lb-stage img {
  opacity: .35;
}

.neri-lb-stage figcaption {
  color: var(--neri-cream);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-align: center;
}

.neri-lb-count {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: #cfe3e5;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
}

.neri-lb-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #ffffff3d;
  background-color: #ffffff1a;
  color: var(--neri-cream);
  cursor: pointer;
  transition: background-color .3s var(--neri-ease), border-color .3s var(--neri-ease),
    color .3s var(--neri-ease), transform .45s var(--neri-spring);
}

.neri-lb-btn:hover {
  background-color: var(--neri-gold);
  border-color: var(--neri-gold);
  color: var(--neri-teal-ink);
  transform: scale(1.1);
}

.neri-lb-btn .neri-ic {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.neri-lb-btn.is-close {
  top: 20px;
  right: 22px;
}

.neri-lb-btn.is-prev {
  left: 22px;
  top: 50%;
  margin-top: -27px;
}

.neri-lb-btn.is-next {
  right: 22px;
  top: 50%;
  margin-top: -27px;
}

/* --------------------------------------------------------------------------
   Tickets
   -------------------------------------------------------------------------- */

.neri-ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 64px;
  align-items: center;
}

.neri-ticket-card {
  background-color: #fff;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 30px 60px -30px #00000073;
  transition: transform .5s var(--neri-ease), box-shadow .5s var(--neri-ease);
}

.neri-ticket-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 44px 78px -34px #00000091;
}

.neri-ticket-card h3 {
  color: var(--neri-teal-ink);
  font-family: Lemonmilk, sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.neri-price-rows {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.neri-price-rows li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--neri-line);
  color: #33474a;
  font-size: 18px;
  font-weight: 700;
}

.neri-price-rows li:last-child {
  border-bottom: 0;
}

.neri-price-rows .neri-price {
  color: var(--neri-coral);
  font-family: Lemonmilk, sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.neri-ticket-card .btn-primary {
  display: block;
  width: 100%;
}

.neri-ticket-fineprint {
  color: #6c7a7c;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  margin: 18px 0 0;
}

/* --------------------------------------------------------------------------
   Location
   -------------------------------------------------------------------------- */

.neri-venue-card {
  background-color: #fff;
  border: 1px solid var(--neri-line);
  border-radius: 32px;
  padding: 40px;
  transition: transform .5s var(--neri-ease), box-shadow .5s var(--neri-ease),
    border-color .5s var(--neri-ease);
}

.neri-venue-card:hover {
  transform: translateY(-6px);
  border-color: var(--neri-teal);
  box-shadow: 0 30px 56px -32px #072f3573;
}

.neri-venue-head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--neri-line);
}

.neri-venue-card:hover .neri-ic-badge {
  background-color: var(--neri-teal);
  border-color: var(--neri-teal);
  color: #fff;
  transform: rotate(-8deg) scale(1.06);
}

.neri-venue-name {
  color: var(--neri-teal-ink);
  font-family: Lemonmilk, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .01em;
  margin-bottom: 8px;
}

/* One line, opened up — a three-line address left most of the card empty. */
.neri-venue-card address {
  color: #55686b;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .04em;
  margin: 0;
}

/* The practical details that used to sit in the paragraph above now live
   here, two across, which is what gives the card its width back. */
.neri-venue-facts {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 26px;
  grid-row-gap: 16px;
}

.neri-venue-facts li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #33474a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: color .3s var(--neri-ease), transform .4s var(--neri-ease);
}

.neri-venue-facts .neri-ic {
  width: 22px;
  height: 22px;
  color: var(--neri-teal);
}

.neri-venue-facts li:hover {
  color: var(--neri-teal-ink);
  transform: translateX(4px);
}

.neri-venue-facts li:hover .neri-ic {
  color: var(--neri-coral);
  transform: rotate(-10deg) scale(1.18);
}

/* Buttons share the full width rather than huddling on the left. */
.neri-venue-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.neri-venue-links .btn-primary {
  flex: 1 1 180px;
}

.neri-textlink {
  color: var(--neri-teal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .3s var(--neri-ease);
}

.neri-textlink:hover {
  color: var(--neri-coral);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.neri-faq {
  max-width: 820px;
  margin: 0 auto;
}

.neri-faq details {
  background-color: #fff;
  border: 1px solid var(--neri-line);
  border-radius: 20px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .4s var(--neri-ease), box-shadow .4s var(--neri-ease),
    transform .4s var(--neri-ease);
}

.neri-faq details:hover {
  border-color: var(--neri-coral);
  box-shadow: 0 18px 36px -26px #072f3573;
}

.neri-faq details[open] {
  border-color: var(--neri-coral);
}

.neri-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 66px 24px 28px;
  position: relative;
  color: var(--neri-teal-ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
  transition: color .3s var(--neri-ease), background-color .3s var(--neri-ease);
}

.neri-faq summary::-webkit-details-marker {
  display: none;
}

/* The tint belongs to the whole panel. On the summary alone it stopped dead
   at the edge of an opened answer. */
.neri-faq details:hover {
  background-color: #fff8ec;
}

.neri-faq details:hover summary {
  color: var(--neri-coral-deep);
}

/* A plus that rotates into a minus, rather than swapping glyphs. */
.neri-faq-toggle {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  border-radius: 50%;
  background-color: var(--neri-cream-deep);
  transition: background-color .35s var(--neri-ease), transform .45s var(--neri-spring);
}

.neri-faq details:hover .neri-faq-toggle,
.neri-faq details[open] .neri-faq-toggle {
  background-color: var(--neri-coral);
  transform: rotate(135deg);
}

.neri-faq-toggle:before,
.neri-faq-toggle:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: var(--neri-coral);
  border-radius: 2px;
  transition: background-color .35s var(--neri-ease), opacity .35s var(--neri-ease);
}

.neri-faq-toggle:before {
  width: 12px;
  height: 2.5px;
  margin: -1.25px 0 0 -6px;
}

.neri-faq-toggle:after {
  width: 2.5px;
  height: 12px;
  margin: -6px 0 0 -1.25px;
}

.neri-faq details:hover .neri-faq-toggle:before,
.neri-faq details:hover .neri-faq-toggle:after,
.neri-faq details[open] .neri-faq-toggle:before,
.neri-faq details[open] .neri-faq-toggle:after {
  background-color: #fff;
}

/* While JS is animating the height, the body must not clip its own content. */
.neri-faq .neri-faq-body {
  padding: 0 28px 26px;
  color: #55686b;
  font-size: 17px;
  line-height: 1.7;
}

.neri-faq details.is-animating .neri-faq-body {
  overflow: hidden;
}

.neri-faq .neri-faq-body p {
  margin: 0 0 12px;
}

.neri-faq .neri-faq-body p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Closing CTA
   -------------------------------------------------------------------------- */

.neri-closing {
  text-align: center;
}

.neri-closing .neri-cta-row {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Sticky ticket bar
   Shown by JS once the hero CTA is behind you and scrolling has settled.
   -------------------------------------------------------------------------- */

.neri-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  background-color: #072f35d1;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-top: 3px solid var(--neri-gold);
  box-shadow: 0 -18px 40px -28px #000000a6;
  padding: 14px 0;
  transform: translateY(115%);
  transition: transform .45s var(--neri-ease);
}

.neri-sticky-bar.is-visible {
  transform: translateY(0);
}

/* Content sits on the site's container width and pushes apart, so the copy
   hugs the left edge and the button the right. */
.neri-sticky-inner {
  max-width: 1316px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.neri-sticky-copy {
  color: var(--neri-cream);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  min-width: 0;
}

.neri-sticky-copy span {
  color: var(--neri-gold);
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* The site makes .btn-primary full width below 767px, which would blow the
   bar apart — this button has to stay its own size at every width. */
.neri-page .btn-primary.neri-sticky-btn {
  padding: 16px 30px;
  font-size: 16px;
  border-radius: 12px;
  width: auto;
  flex: none;
}

/* --------------------------------------------------------------------------
   Scroll reveal — progressive enhancement, only armed by JS
   -------------------------------------------------------------------------- */

.neri-page.js-reveal [data-neri-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--neri-ease), transform .75s var(--neri-ease);
  transition-delay: var(--neri-delay, 0ms);
}

.neri-page.js-reveal [data-neri-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   Responsive — matching the site's 991 / 767 / 479 breakpoints
   -------------------------------------------------------------------------- */

@media screen and (max-width: 991px) {
  .neri-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .neri-hero-body {
    padding-top: 32px;
    padding-bottom: 96px;
  }

  .neri-hero-grid,
  .neri-split,
  .neri-ticket-grid {
    grid-template-columns: 1fr;
    grid-row-gap: 48px;
  }

  .neri-split.is-reversed .neri-split-media {
    order: 0;
  }

  .neri-hero-flyer-wrap {
    max-width: 460px;
    margin: 0 auto;
  }

  .neri-hero-flyer {
    transform: rotate(0);
  }

  .neri-hero-title {
    font-size: 64px;
  }

  .neri-title {
    font-size: 44px;
  }

  .neri-zones {
    grid-template-columns: 1fr;
  }

  .neri-schedule {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }

  .neri-schedule-aside {
    position: static;
  }

  /* Below the 3-col layout the spans no longer tile cleanly, so every photo
     drops to an equal tile. */
  .neri-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .neri-gallery .is-wide {
    grid-column: span 1;
  }

  .neri-gallery .is-tall {
    grid-row: span 1;
  }

  .neri-photo-stack {
    max-width: 520px;
    margin: 0 auto;
  }

  .neri-marquee-clip {
    padding: 40px 0;
  }
}

@media screen and (max-width: 767px) {
  .neri-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .neri-section-head {
    margin-bottom: 40px;
  }

  .neri-hero-title {
    font-size: 46px;
  }

  .neri-hero-tagline {
    font-size: 36px;
  }

  .neri-hero-intro,
  .neri-lede {
    font-size: 18px;
  }

  .neri-title {
    font-size: 34px;
  }

  .neri-eyebrow {
    font-size: 36px;
  }

  .neri-marquee-word {
    font-size: 18px;
  }

  .neri-marquee-group {
    gap: 22px;
    padding-right: 22px;
  }

  .neri-cta-row .btn-primary {
    width: 100%;
    text-align: center;
  }

  .neri-zone-head,
  .neri-zone-body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .neri-zone-list {
    grid-template-columns: 1fr;
  }

  .neri-ticket-card,
  .neri-venue-card {
    padding: 28px 24px;
  }

  .neri-venue-facts {
    grid-template-columns: 1fr;
  }

  .neri-venue-head {
    gap: 16px;
  }

  .neri-ic-badge.is-lg {
    width: 48px;
    height: 48px;
  }

  .neri-venue-name {
    font-size: 20px;
  }

  .neri-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .neri-timeline h3 {
    font-size: 22px;
  }

  /* On phones the bar is the primary buy path — keep it compact. */
  .neri-sticky-bar {
    padding: 12px 0;
  }

  .neri-sticky-inner {
    gap: 14px;
    padding: 0 16px;
  }

  .neri-sticky-copy {
    font-size: 14px;
  }

  .neri-page .btn-primary.neri-sticky-btn {
    padding: 14px 22px;
    font-size: 15px;
    width: auto;
  }

  .neri-lightbox {
    padding: 84px 14px;
  }

  .neri-lb-btn {
    width: 46px;
    height: 46px;
  }

  .neri-lb-btn.is-prev {
    left: 12px;
    top: auto;
    bottom: 20px;
    margin-top: 0;
  }

  .neri-lb-btn.is-next {
    right: 12px;
    top: auto;
    bottom: 20px;
    margin-top: 0;
  }
}

@media screen and (max-width: 479px) {
  .neri-hero-title {
    font-size: 38px;
  }

  .neri-fact {
    font-size: 13px;
    padding: 10px 16px;
  }

  .neri-photo-stack {
    padding-right: 28px;
    padding-bottom: 36px;
  }

  .neri-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .neri-sticky-copy span {
    font-size: 11px;
  }
}

/* --------------------------------------------------------------------------
   Reduced motion — everything settles
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .neri-page.js-reveal [data-neri-reveal],
  .neri-page.js-reveal [data-neri-reveal].is-in,
  .neri-js [data-neri-hero],
  .neri-js [data-neri-hero].is-in,
  .neri-js .neri-timeline li > *,
  .neri-js .neri-timeline li.is-reached > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .neri-js [data-neri-reveal] .neri-underline,
  .neri-js [data-neri-reveal].is-in .neri-underline {
    transform: scaleX(1);
    transition: none;
  }

  .neri-marquee-track,
  .neri-marquee-track:not(.is-js-driven) {
    animation: none;
  }

  .neri-js .neri-timeline li.is-headline.is-reached:after {
    animation: none;
    opacity: 0;
  }

  .neri-timeline li:before {
    transform: scale(1);
    opacity: 1;
    transition: none;
  }

  .neri-timeline-progress {
    transform: scaleY(1);
  }

  /* Hover feedback stays, but instantly and without movement. */
  .neri-page *,
  .neri-page *:before,
  .neri-page *:after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .neri-photo-stack:hover .is-back img,
  .neri-photo-stack:hover .is-front img,
  .neri-hero-flyer-wrap:hover .neri-hero-flyer,
  .neri-gallery .neri-gal:hover,
  .neri-gallery .neri-gal:hover img,
  .neri-zone:hover,
  .neri-ticket-card:hover,
  .neri-venue-card:hover,
  .neri-allday:hover,
  .neri-tba:hover,
  .neri-pills li:hover,
  .neri-fact:hover,
  .neri-checklist li:hover,
  .neri-zone-list li:hover {
    transform: none;
  }
}
