/*
------------------------------------------------

Project Omnistic

Build XXIX.1 — The Grand Entrance

------------------------------------------------
*/

.grand-entrance-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 72% 7%,
      rgba(122, 88, 45, 0.13),
      transparent 34rem
    ),
    linear-gradient(
      145deg,
      #0d0b09,
      #070605 65%
    );
  color: var(--museum-heading);
}

.grand-entrance-page *,
.grand-entrance-page *::before,
.grand-entrance-page *::after {
  box-sizing: border-box;
}

.grand-entrance-page main {
  width: min(1440px, calc(100% - 34px));
  margin: 0 auto;
}

.grand-hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns:
    minmax(370px, 0.8fr)
    minmax(420px, 1.15fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: center;
  padding: 70px 28px 85px;
}

.grand-hero__copy {
  position: relative;
  z-index: 2;
}

.grand-hero__copy h1 {
  max-width: 780px;
  margin: 12px 0 17px;
  color: #efe8dd;
  font-size: clamp(66px, 9vw, 126px);
  line-height: 0.88;
}

.grand-hero__subtitle {
  margin: 0 0 22px;
  color: #cba46d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 42px);
  font-style: italic;
}

.grand-hero__intro {
  max-width: 690px;
  margin: 0;
  color: #c9c0b5;
  font-size: 19px;
  line-height: 1.72;
}

.grand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 31px;
}

.grand-button,
.grand-card-button {
  min-height: 50px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cba46d;
  background: rgba(12, 9, 7, 0.75);
  color: #e6c897;
  font: inherit;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.grand-button:hover,
.grand-card-button:hover {
  border-color: #eccf98;
  background: #cba46d;
  color: #0a0806;
  transform: translateY(-2px);
}

.grand-button--secondary {
  border-color: #787069;
  color: #eee7dc;
}

.grand-hero__art {
  position: relative;
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(203, 164, 109, 0.3);
  background:
    linear-gradient(
      145deg,
      rgba(36, 27, 19, 0.9),
      rgba(8, 7, 6, 0.96)
    );
  box-shadow:
    0 35px 65px rgba(0, 0, 0, 0.48);
}

.grand-frame,
.grand-portrait-frame {
  padding: clamp(9px, 1.2vw, 16px);
  border: clamp(7px, 1vw, 14px) solid #211810;
  outline: 2px solid #8b683b;
  outline-offset: -9px;
  background: #070605;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.44),
    inset 0 0 0 2px #5e452a;
}

.grand-frame img {
  display: block;
  width: 100%;
  max-height: 650px;
  object-fit: contain;
  background: #060504;
}

.grand-hero__art figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  color: #bfb2a2;
}

.grand-hero__art figcaption strong {
  color: #ede5d8;
}

.grand-section {
  margin-bottom: 24px;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(203, 164, 109, 0.27);
  background:
    linear-gradient(
      145deg,
      rgba(23, 18, 14, 0.97),
      rgba(10, 8, 7, 0.98)
    );
}

.grand-section__heading {
  max-width: 880px;
  margin: 0 auto 38px;
  text-align: center;
}

.grand-section__heading h2,
.grand-artist__copy h2 {
  margin: 8px 0 17px;
  color: #ede6dc;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.96;
}

.grand-section__heading > p:last-child {
  color: #c5baad;
  font-size: 18px;
  line-height: 1.7;
}


.grand-collection-carousel {
  position: relative;
  padding: 0 54px 38px;
}

.grand-carousel-viewport {
  overflow: hidden;
  scroll-behavior: smooth;
}

.grand-collection-track {
  display: flex;
  gap: 14px;
  transition: transform 0.7s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.grand-collection-track .grand-collection-card {
  flex: 0 0 calc((100% - 28px) / 3);
  min-width: 0;
}

.grand-carousel-arrow {
  position: absolute;
  top: 44%;
  width: 44px;
  height: 44px;
  border: 1px solid #cba46d;
  border-radius: 50%;
  background: rgba(7, 6, 5, 0.92);
  color: #e6c897;
  display: grid;
  place-items: center;
  font: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.grand-carousel-arrow:hover {
  background: #cba46d;
  color: #090705;
  transform: scale(1.06);
}

.grand-carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.grand-carousel-arrow--previous {
  left: 0;
}

.grand-carousel-arrow--next {
  right: 0;
}

.grand-carousel-dots {
  min-height: 28px;
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.grand-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #514739;
  cursor: pointer;
}

.grand-carousel-dot.is-active {
  background: #cba46d;
  transform: scale(1.2);
}

.grand-collection-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #554735;
  background:
    linear-gradient(
      180deg,
      #15110d,
      #0b0907
    );
  display: flex;
  flex-direction: column;
}

.grand-collection-card__image {
  min-height: 310px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050403;
}

.grand-collection-card__image img {
  width: 100%;
  height: 330px;
  display: block;
  object-fit: contain;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.grand-collection-card:hover
.grand-collection-card__image img {
  transform: scale(1.025);
  filter: brightness(1.06);
}

.grand-collection-card__body {
  flex: 1;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.grand-collection-card__body h3 {
  margin: 9px 0 11px;
  color: #ede6dc;
  font-size: 27px;
  line-height: 1.08;
}

.grand-collection-card__body > p:not(.eyebrow) {
  margin: 0 0 22px;
  color: #bdb2a5;
  line-height: 1.6;
}

.grand-card-button {
  width: 100%;
  margin-top: auto;
  color: #f0d29e;
  border-color: #a98551;
  background:
    linear-gradient(
      145deg,
      rgba(151, 109, 55, 0.18),
      rgba(16, 12, 9, 0.9)
    );
}

.grand-section__action {
  margin-top: 30px;
  text-align: center;
}

.grand-artist {
  display: grid;
  grid-template-columns:
    minmax(260px, 0.72fr)
    minmax(360px, 1.15fr)
    minmax(300px, 0.8fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.grand-portrait-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.grand-artist__copy h2 {
  text-align: left;
}

.grand-artist__lead {
  margin: 0 0 18px;
  color: #d3b37f;
  font-size: 23px;
  font-style: italic;
}

.grand-artist__copy > p:not(.eyebrow) {
  color: #c2b7aa;
  font-size: 17px;
  line-height: 1.72;
}

.grand-artist__copy .grand-button {
  margin-top: 15px;
}

.grand-artist__quote {
  margin: 0;
  padding: 30px;
  border: 1px solid #735a37;
  background:
    radial-gradient(
      circle at top left,
      rgba(126, 90, 45, 0.18),
      transparent 70%
    ),
    #0a0806;
}

.grand-artist__quote > span {
  display: block;
  height: 38px;
  color: #8f6b3b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 75px;
  line-height: 1;
}

.grand-artist__quote p {
  color: #d4b77f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.5vw, 33px);
  font-style: italic;
  line-height: 1.48;
}

.grand-artist__quote cite {
  color: #e5ddd1;
  font-style: normal;
}

.grand-pathway-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.grand-pathway-card {
  min-height: 175px;
  padding: 23px;
  border: 1px solid #504537;
  background: #0b0907;
  color: #eee6da;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.grand-pathway-card:hover {
  border-color: #cba46d;
  background: #15100c;
  transform: translateY(-3px);
}

.grand-pathway-card span {
  color: #cba46d;
  font-size: 11px;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.grand-pathway-card strong {
  margin-top: auto;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.25;
}

@media (max-width: 1100px) {

  .grand-hero {
    grid-template-columns:
      minmax(320px, 0.8fr)
      minmax(380px, 1fr);
  }

  .grand-pathway-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .grand-artist {
    grid-template-columns:
      minmax(260px, 0.7fr)
      minmax(360px, 1.2fr);
  }

  .grand-artist__quote {
    grid-column: 1 / -1;
  }

}

@media (max-width: 760px) {

  .grand-entrance-page main {
    width: min(100% - 22px, 1440px);
  }

  .grand-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 60px 6px 50px;
  }

  .grand-hero__copy h1 {
    font-size: clamp(54px, 16vw, 82px);
  }

  .grand-hero__art {
    padding: 15px;
  }

  .grand-actions,
  .grand-actions a {
    width: 100%;
  }

  .grand-section {
    padding: 34px 18px;
  }

  .grand-pathway-grid,
  .grand-artist {
    grid-template-columns: 1fr;
  }

  .grand-collection-card__image {
    min-height: 260px;
  }

  .grand-collection-card__image img {
    height: 300px;
  }

  .grand-artist__copy h2 {
    text-align: left;
  }

  .grand-section__action .grand-button,
  .grand-artist__copy .grand-button {
    width: 100%;
  }

}


@media (max-width: 1120px) {

  .grand-collection-track .grand-collection-card {
    flex-basis: calc((100% - 14px) / 2);
  }

}

@media (max-width: 860px) {

  .grand-collection-track .grand-collection-card {
    flex-basis: 78vw;
    max-width: 360px;
  }

}

@media (max-width: 620px) {

  .grand-collection-carousel {
    padding-inline: 0;
  }

  .grand-carousel-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .grand-collection-track {
    transform: none !important;
    transition: none;
    padding-bottom: 8px;
  }

  .grand-collection-track .grand-collection-card {
    flex-basis: 86vw;
    max-width: 340px;
    scroll-snap-align: center;
  }

  .grand-carousel-arrow,
  .grand-carousel-dots {
    display: none;
  }

}

@media (prefers-reduced-motion: reduce) {

  .grand-collection-track {
    transition: none;
  }

}


/* Build XXIX.4 — Living Grand Entrance */

.grand-hero__art {
  transform:
    translate3d(
      0,
      var(--grand-hero-shift, 0px),
      0
    );
  transition:
    transform 0.18s ease-out;
}

.grand-hero__art::after {
  content: "";
  position: absolute;
  inset: 3% 8% auto;
  height: 48%;
  background:
    radial-gradient(
      ellipse at center,
      rgba(255, 231, 189, 0.15),
      transparent 70%
    );
  opacity: var(--grand-hero-light, 0.4);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.grand-collection-track .grand-collection-card {
  opacity: 0.68;
  transform:
    scale(0.94)
    translateY(9px);
  filter:
    brightness(0.82)
    saturate(0.86);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(.22, .61, .36, 1),
    filter 0.65s ease,
    border-color 0.65s ease,
    box-shadow 0.65s ease;
}

.grand-collection-track .grand-collection-card.is-presented {
  opacity: 1;
  transform:
    scale(1.035)
    translateY(0);
  filter:
    brightness(1.06)
    saturate(1);
  border-color: #cba46d;
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.46),
    0 0 32px rgba(203, 164, 109, 0.12);
  z-index: 2;
}

.grand-collection-track .grand-collection-card.is-nearby {
  opacity: 0.88;
  transform:
    scale(0.975)
    translateY(4px);
  filter:
    brightness(0.94)
    saturate(0.94);
}

.grand-collection-track .grand-collection-card.is-entering {
  animation:
    grand-card-arrival
    0.8s
    ease
    both;
}

@keyframes grand-card-arrival {
  from {
    opacity: 0.25;
    transform:
      scale(0.9)
      translateX(-28px)
      translateY(14px);
  }

  to {
    opacity: 1;
    transform:
      scale(1.035)
      translateX(0)
      translateY(0);
  }
}

@media (max-width: 620px) {

  .grand-collection-track .grand-collection-card,
  .grand-collection-track .grand-collection-card.is-presented,
  .grand-collection-track .grand-collection-card.is-nearby {
    opacity: 1;
    transform: none;
    filter: none;
  }

}

@media (prefers-reduced-motion: reduce) {

  .grand-hero__art {
    transform: none;
  }

  .grand-collection-track .grand-collection-card,
  .grand-collection-track .grand-collection-card.is-presented,
  .grand-collection-track .grand-collection-card.is-nearby {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

}


/* ------------------------------------------------
   Build XXIX.5 — Museum-Quality Polish
------------------------------------------------ */

.grand-collections {
  padding-top: clamp(64px, 8vw, 110px);
}

.grand-collection-carousel {
  margin-top: 18px;
  perspective: 1500px;
}

.grand-carousel-viewport {
  padding-block: 24px 34px;
}

.grand-collection-track {
  align-items: stretch;
  transform-style: preserve-3d;
}

.grand-collection-track .grand-collection-card {
  --room-accent: #cba46d;
  --room-glow: rgba(203, 164, 109, 0.14);
  border-color: color-mix(in srgb, var(--room-accent) 36%, #3f372e);
  background:
    radial-gradient(
      circle at 50% 0%,
      var(--room-glow),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      #15110d,
      #0b0907
    );
  transform-origin: center center;
  backface-visibility: hidden;
}

.grand-collection-track .grand-collection-card.is-presented {
  transform:
    translateZ(58px)
    scale(1.045)
    translateY(-3px);
  border-color: var(--room-accent);
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.52),
    0 0 34px var(--room-glow);
}

.grand-collection-track .grand-collection-card.is-nearby {
  transform:
    translateZ(14px)
    scale(0.975)
    rotateY(var(--nearby-tilt, 0deg))
    translateY(5px);
}

.grand-collection-track
.grand-collection-card.is-presented
.grand-collection-card__body {
  background:
    linear-gradient(
      180deg,
      color-mix(
        in srgb,
        var(--room-accent) 8%,
        #15110d
      ),
      #0b0907
    );
}

.grand-collection-card.theme-sierra {
  --room-accent: #8ea8b8;
  --room-glow: rgba(103, 139, 159, 0.18);
}

.grand-collection-card.theme-dunes {
  --room-accent: #c7a26c;
  --room-glow: rgba(180, 136, 75, 0.18);
}

.grand-collection-card.theme-constellations {
  --room-accent: #a695c9;
  --room-glow: rgba(137, 115, 184, 0.18);
}

.grand-collection-card.theme-museum {
  --room-accent: #a66f72;
  --room-glow: rgba(146, 75, 80, 0.18);
}

.grand-collection-card.theme-wild {
  --room-accent: #8ca47c;
  --room-glow: rgba(97, 128, 80, 0.18);
}

.grand-collection-card.theme-figure {
  --room-accent: #b88d7a;
  --room-glow: rgba(155, 105, 82, 0.18);
}

.grand-collection-card.theme-memory {
  --room-accent: #9e8e76;
  --room-glow: rgba(132, 113, 86, 0.18);
}

.grand-collection-card.theme-dance {
  --room-accent: #a97b91;
  --room-glow: rgba(142, 89, 116, 0.18);
}

.grand-collection-card .eyebrow {
  color: var(--room-accent);
}

.grand-collection-card .grand-card-button {
  border-color: var(--room-accent);
  color: color-mix(in srgb, var(--room-accent) 82%, #ffffff);
  background:
    linear-gradient(
      145deg,
      color-mix(
        in srgb,
        var(--room-accent) 12%,
        transparent
      ),
      rgba(16, 12, 9, 0.92)
    );
}

.grand-collection-card .grand-card-button:hover {
  background: var(--room-accent);
  color: #0a0806;
}

.grand-collection-card__image img {
  transition:
    transform 0.75s cubic-bezier(.22, .61, .36, 1),
    filter 0.75s ease;
}

.grand-collection-card.is-presented
.grand-collection-card__image img {
  transform: scale(1.035);
  filter:
    brightness(1.06)
    saturate(1.03);
}

.grand-carousel-dots {
  margin-top: 24px;
}

.grand-carousel-dot {
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.grand-carousel-dot.is-active {
  background: #e0bb7c;
  transform: scale(1.42);
}

.grand-carousel-arrow {
  top: 46%;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.4);
}

.grand-artist,
.grand-pathways {
  margin-top: clamp(34px, 5vw, 72px);
}

@media (min-width: 861px) {

  .grand-collection-track
  .grand-collection-card.is-nearby:first-of-type {
    --nearby-tilt: 1.4deg;
  }

  .grand-collection-track
  .grand-collection-card.is-nearby:last-of-type {
    --nearby-tilt: -1.4deg;
  }

}

@media (max-width: 860px) {

  .grand-collection-track .grand-collection-card.is-presented,
  .grand-collection-track .grand-collection-card.is-nearby {
    transform:
      scale(1)
      translateY(0);
  }

}

@media (max-width: 620px) {

  .grand-collections {
    padding-top: 52px;
  }

  .grand-carousel-viewport {
    padding-block: 8px 18px;
  }

}

@media (prefers-reduced-motion: reduce) {

  .grand-collection-track .grand-collection-card,
  .grand-collection-track .grand-collection-card.is-presented,
  .grand-collection-track .grand-collection-card.is-nearby,
  .grand-collection-card__image img {
    transform: none !important;
    transition: none !important;
  }

}


.grand-collection-card.is-presented + .grand-collection-card.is-nearby {
  --nearby-tilt: -1.6deg;
}

.grand-collection-card.is-nearby:has(+ .grand-collection-card.is-presented) {
  --nearby-tilt: 1.6deg;
}

/* ------------------------------------------------
   Build XXX.1 — Hero Gallery
------------------------------------------------ */

.grand-hero-gallery {
  position: relative;
  margin: 0;
  padding: 26px;
}

.grand-hero-slide {
  margin: 0;
}

.grand-hero-image-stage {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.grand-hero-image-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 72%,
      rgba(5, 4, 3, 0.18)
    );
  pointer-events: none;
}

#grand-hero-image {
  display: block;
  width: 100%;
  max-height: 650px;
  object-fit: contain;
  background: #060504;
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.75s ease,
    transform 1.1s cubic-bezier(.22, .61, .36, 1),
    filter 0.75s ease;
}

#grand-hero-image.is-changing {
  opacity: 0;
  transform: scale(0.985);
  filter: brightness(0.72);
}

#grand-hero-image.is-arriving {
  animation: grand-hero-arrival 1.2s ease both;
}

@keyframes grand-hero-arrival {
  from {
    opacity: 0;
    transform: scale(1.018);
    filter: brightness(0.76);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
}

.grand-hero-caption {
  min-height: 128px;
  padding-top: 17px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.grand-hero-caption strong {
  display: block;
  color: #ede5d8;
  font-size: clamp(23px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.1;
}

.grand-hero-caption p:not(.eyebrow) {
  max-width: 630px;
  margin: 9px 0 0;
  color: #bfb2a2;
  line-height: 1.55;
}

.grand-hero-artwork-link {
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid #a98551;
  color: #e5c791;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.grand-hero-artwork-link:hover {
  border-color: #e5c791;
  background: #cba46d;
  color: #090705;
}

.grand-hero-arrow {
  position: absolute;
  top: 44%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(203, 164, 109, 0.72);
  border-radius: 50%;
  background: rgba(7, 6, 5, 0.9);
  color: #e6c897;
  display: grid;
  place-items: center;
  font: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.68;
  z-index: 5;
  transition:
    opacity 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.grand-hero-gallery:hover .grand-hero-arrow,
.grand-hero-gallery:focus-within .grand-hero-arrow {
  opacity: 1;
}

.grand-hero-arrow:hover {
  background: #cba46d;
  color: #090705;
  transform: scale(1.07);
}

.grand-hero-arrow--previous {
  left: -24px;
}

.grand-hero-arrow--next {
  right: -24px;
}

.grand-hero-indicators {
  min-height: 23px;
  padding-top: 16px;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.grand-hero-indicator {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #4d4337;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.grand-hero-indicator.is-active {
  background: #d8b776;
  transform: scale(1.42);
}

@media (max-width: 760px) {
  .grand-hero-gallery {
    padding: 15px;
  }

  .grand-hero-image-stage {
    min-height: 280px;
  }

  .grand-hero-caption {
    grid-template-columns: 1fr;
  }

  .grand-hero-artwork-link {
    width: 100%;
  }

  .grand-hero-arrow {
    top: 38%;
    width: 42px;
    height: 42px;
  }

  .grand-hero-arrow--previous {
    left: 7px;
  }

  .grand-hero-arrow--next {
    right: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #grand-hero-image,
  #grand-hero-image.is-changing,
  #grand-hero-image.is-arriving {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    transition: none;
  }
}


/* Build XXX.1a — Remove legacy decorative Hero arrow */

.grand-hero > .hero-arrow,
.grand-hero > .hero-next,
.grand-hero > .next-arrow,
.grand-hero > .grand-hero-next,
.grand-hero__art > .hero-arrow:not(#grand-hero-previous):not(#grand-hero-next),
.grand-hero__art > .hero-next:not(#grand-hero-next),
.grand-hero__art > .next-arrow:not(#grand-hero-next) {
  display: none !important;
}

#grand-hero-previous,
#grand-hero-next {
  display: grid;
}
