/* ============================================
   HOME — diseño HOME Halo (referencia visual)
   ============================================ */

.page-home {
  --font-aleo: 'Aleo', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --aleo-light: 300;
  --aleo-regular: 400;
  --aleo-medium: 500;
  --aleo-italic: 400;
  --aleo-medium-italic: 500;
  --home-bg: #ffffff;
  --home-gray-band: #eceae6;
  --home-text: #1c333d;
  --home-text-muted: #808080;
  --home-text-medium: #4d4d4d;
  --home-author: #666666;
  --home-btn-text: #e8e6e2;
  --home-nav-muted: #9a9a9a;
  --home-btn-bg: #e8e6e2;
  --home-border: rgba(28, 51, 61, 0.14);
  --home-pad: clamp(1.5rem, 5.5vw, 7.5rem);
  --home-max: 1920px;
  /* Tipografía y medios — escala contenida (menos exagerado) */
  --home-fs-lead: clamp(1.05rem, 1.55vw, 1.3125rem);
  --home-fs-body: clamp(1rem, 1.45vw, 1.25rem);
  --home-fs-quote: clamp(0.95rem, 1.3vw, 1.1875rem);
  --home-fs-head-lg: clamp(1.65rem, 4vw, 2.75rem);
  --home-fs-head-xl: clamp(1.85rem, 4.5vw, 3.25rem);
  --home-fs-section: clamp(1.5rem, 3.8vw, 2.75rem);
  --home-arch-max: min(460px, 88%);
  --home-mosaic-cell-max: 300px;
  --home-strip-max-h: 260px;
  --home-forwhom-min: clamp(300px, 38vh, 440px);
  /* Valores por defecto = diseño; la hoja HOME (B y D) los sobrescribe */
  --logo-nav-px: 56px;
  --logo-centro-px: 152px;
  font-family: var(--font-aleo);
  font-weight: var(--aleo-light);
  background: var(--home-bg);
  color: var(--home-text);
}

.page-home .aleo-light { font-family: var(--font-aleo); font-weight: var(--aleo-light); font-style: normal; }
.page-home .aleo-italic { font-family: var(--font-aleo); font-weight: var(--aleo-italic); font-style: italic; }
.page-home .aleo-medium { font-family: var(--font-aleo); font-weight: var(--aleo-medium); font-style: normal; }
.page-home .aleo-medium-italic { font-family: var(--font-aleo); font-weight: var(--aleo-medium-italic); font-style: italic; }
.page-home .aleo-light-italic { font-family: var(--font-aleo); font-weight: var(--aleo-light); font-style: italic; }

/* —— NAVBAR (como diseño) —— */
.page-home .navbar.navbar--home {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: clamp(1rem, 2.5vh, 1.35rem) var(--home-pad);
  background: var(--home-bg);
  max-width: var(--home-max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  top: auto;
  z-index: 10;
}

.page-home .navbar--home .navbar__logo {
  grid-column: 1;
  justify-self: start;
}

.page-home .navbar--home .navbar__nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3.5vw, 2.75rem);
}

.page-home .navbar--home .navbar__btn--home {
  grid-column: 3;
  justify-self: end;
}

.page-home .navbar__logo-img--home {
  width: auto !important;
  max-width: min(220px, 38vw);
  height: var(--logo-nav-px) !important;
  max-height: var(--logo-nav-px) !important;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.page-home .navbar__btn--home {
  background: var(--home-btn-bg);
  border: none;
  border-radius: 999px;
  font-family: var(--font-aleo);
  font-weight: var(--aleo-light);
  font-size: 19.5px;
  letter-spacing: 0.02em;
  color: var(--home-text);
  padding: 0.5rem 1.4rem;
  white-space: nowrap;
  text-decoration: none;
}

.page-home .navbar__btn--home:hover {
  background: var(--home-text);
  color: var(--home-bg);
}

.page-home .nav__link {
  font-family: var(--font-aleo);
  font-weight: var(--aleo-light);
  font-size: 19.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-nav-muted);
  text-decoration: none;
}

.page-home .nav__link:hover {
  color: var(--home-text);
}

.page-home .navbar__divider {
  max-width: var(--home-max);
  margin: 0 auto;
  width: calc(100% - 2 * var(--home-pad));
  height: 1px;
  background: var(--home-text);
  opacity: 1;
}

/* —— HERO —— */
.home-hero {
  padding: clamp(2rem, 5vh, 3.5rem) 0 clamp(2.5rem, 5vh, 4rem);
  background: var(--home-bg);
}

.home-hero__inner {
  max-width: var(--home-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding: 0 var(--home-pad);
}

.home-hero__copy {
  max-width: 640px;
}

.home-hero__brand {
  position: relative;
  margin-bottom: 0.35rem;
  min-height: var(--logo-centro-px);
}

/* Texto de respaldo (diseño) si no hay imagen en columna C */
.home-hero__brand-text {
  line-height: 1.05;
}

.home-hero__script {
  font-family: var(--font-script);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--home-text);
  margin: 0 0 0.1rem;
  line-height: 1.05;
}

.home-hero__title {
  font-family: var(--font-aleo);
  font-weight: var(--aleo-light);
  font-size: clamp(1.65rem, 3.5vw, 2.75rem);
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  margin: 0;
  color: var(--home-text);
  line-height: 1.05;
}

/* Logos/imágenes: ocultos hasta que Drive cargue desde la hoja */
.page-home .home-logo--sheet:not(.home-logo--from-sheet) {
  opacity: 0;
  min-height: 1px;
}

.page-home .home-logo--sheet.home-logo--from-sheet {
  opacity: 1;
}

.page-home .home-mosaic__cell img:not(.home-img--from-sheet),
.page-home .home-hero__arch-img:not(.home-img--from-sheet),
.page-home .home-strip__grid img:not(.home-img--from-sheet),
.page-home .home-forwhom__photo:not(.home-img--from-sheet) {
  min-height: 120px;
  background: #eceae6;
}

/* Logo columna C: oculta texto cuando hay imagen de la hoja */
.home-hero__logo-centro {
  display: none;
  width: auto !important;
  max-width: min(100%, 560px);
  height: var(--logo-centro-px) !important;
  max-height: var(--logo-centro-px) !important;
  object-fit: contain;
  object-position: left top;
  background: transparent;
}

.page-home[data-home-has-centro-logo="1"] .home-hero__brand-text {
  display: none;
}

.page-home[data-home-has-centro-logo="1"] .home-hero__logo-centro {
  display: block;
}

.home-hero__rule {
  display: flex;
  align-items: center;
  margin-bottom: clamp(1.35rem, 2.8vh, 2.25rem);
  max-width: 268px;
}

.home-hero__rule-line {
  flex: 1;
  height: 1px;
  background: var(--home-text);
}

.home-hero__rule-arrow {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 9px solid var(--home-text);
}

.home-hero__lead {
  font-size: var(--home-fs-lead);
  line-height: 1.48;
  color: var(--home-text);
  margin: 0 0 clamp(1.6rem, 3.5vh, 2.5rem);
  max-width: 540px;
}

.home-hero__lead em {
  font-style: italic;
  font-weight: var(--aleo-medium);
}

.home-hero__actions {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.home-hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home-scroll {
  text-decoration: none;
  color: var(--home-text);
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.home-scroll__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--home-text);
  border-radius: 50%;
}

.home-hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.home-hero__arch {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--home-arch-max);
  margin-left: auto;
  aspect-ratio: 4 / 5.05;
  border-radius: 50% 50% 0 0 / 48% 48% 0 0;
  overflow: hidden;
  background: #e8e4df;
  box-shadow: 0 18px 52px rgba(28, 51, 61, 0.11);
}

.home-hero__arch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.home-sparkle--hero {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(18%, -12%);
  width: clamp(44px, 7vw, 68px);
  height: clamp(44px, 7vw, 68px);
  border: 1px solid var(--home-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 3;
  pointer-events: none;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1;
}

/* Botones */
.home-btn {
  display: inline-block;
  font-family: var(--font-aleo);
  font-weight: var(--aleo-light);
  font-size: clamp(0.95rem, 1.35vw, 1.625rem);
  letter-spacing: 0.03em;
  text-decoration: none;
  text-align: center;
  border-radius: 999px;
  padding: 0.7rem clamp(1.35rem, 3.5vw, 2.35rem);
  transition: opacity 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.home-btn--dark {
  background: var(--home-text);
  color: var(--home-btn-text);
  min-width: min(100%, 340px);
}

.home-btn--dark:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.home-btn--center {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.home-sparkle {
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1;
  color: var(--home-text);
  user-select: none;
}

/* Footer logo home (más pequeño que navbar) */
.page-home .footer__logo-img {
  height: 52px !important;
  max-height: 52px !important;
  width: auto;
}

/* MOSAICO */
.home-mosaic { background: var(--home-bg); }

.home-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: min(26vw, var(--home-mosaic-cell-max));
  gap: 0;
  max-width: var(--home-max);
  margin: 0 auto;
}

.home-mosaic__cell {
  overflow: hidden;
  background: #ddd;
  min-height: 0;
}

.home-mosaic__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.home-mosaic__cell:hover img {
  transform: scale(1.03);
}

/* STORY */
.home-story {
  padding: clamp(3.5rem, 8vh, 6rem) var(--home-pad);
  background: var(--home-bg);
}

.home-story__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.home-story__headline {
  font-size: var(--home-fs-head-xl);
  line-height: 1.18;
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
  color: var(--home-text);
  font-weight: var(--aleo-italic);
  font-style: italic;
}

.home-story__lines {
  list-style: none;
  font-size: var(--home-fs-body);
  line-height: 1.4;
  color: var(--home-text-medium);
}

.home-story__lines li + li { margin-top: 0.35rem; }

.home-story__rule {
  margin-top: 2rem;
  height: 1px;
  background: var(--home-border);
  max-width: 75%;
}

.home-story__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: clamp(1.5rem, 6vh, 4.5rem);
  text-align: right;
}

.home-sparkle--story {
  position: static;
  font-size: clamp(2.75rem, 6.5vw, 4.75rem);
  line-height: 1;
  margin: 0 0 clamp(1rem, 2.5vh, 1.75rem);
  background: transparent;
}

.home-story__quote {
  font-size: var(--home-fs-quote);
  line-height: 1.65;
  color: var(--home-text-muted);
  font-style: italic;
  max-width: 34ch;
  margin: 0;
  text-align: right;
}

/* LOGOS */
.home-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vh, 4rem) var(--home-pad);
  background: var(--home-gray-band);
}

.home-logos__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 8vw, 6rem);
  flex: 1;
  max-width: 900px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.home-logos__track::-webkit-scrollbar { display: none; }

.home-logos__img {
  height: clamp(48px, 8vw, 80px);
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.85);
  flex-shrink: 0;
}

.home-logos__arrow {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--home-text-muted);
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
}

.home-logos__arrow:hover { color: var(--home-text); }

/* TESTIMONIOS */
.home-testimonials {
  padding: clamp(2.5rem, 5vh, 4rem) var(--home-pad) clamp(4rem, 8vh, 6rem);
  background: var(--home-bg);
}

.home-testimonials__border {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-top: 1px solid var(--home-text);
  border-bottom: 1px solid var(--home-text);
  padding: clamp(0.85rem, 2vh, 1.25rem) 0;
  margin: 0 auto clamp(2.25rem, 4.5vh, 3.25rem);
  max-width: 1280px;
  text-align: center;
  font-family: var(--font-aleo);
  font-weight: var(--aleo-light);
  font-style: italic;
  font-size: var(--home-fs-section);
  color: var(--home-text);
}

.home-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.15rem, 2.2vw, 1.75rem);
  max-width: 1280px;
  margin: 0 auto clamp(2.5rem, 5vh, 3.5rem);
}

.home-testimonial {
  border: 1px solid var(--home-text);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.35rem, 2.8vw, 2rem);
  min-height: clamp(220px, 28vh, 300px);
  background: var(--home-bg);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-testimonial__quote {
  font-size: var(--home-fs-body);
  line-height: 1.55;
  font-style: italic;
  color: var(--home-text-muted);
  margin: auto 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}

.home-testimonial__author {
  font-size: var(--home-fs-body);
  font-weight: var(--aleo-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--home-author);
  margin-top: 1rem;
}

/* PARA QUIÉN */
.home-forwhom {
  padding: clamp(3rem, 6vh, 5rem) var(--home-pad);
  background: var(--home-bg);
}

.home-forwhom__frame {
  max-width: min(1280px, 100%);
  margin: 0 auto;
  border: 1px solid var(--home-text);
  padding: 0;
  overflow: visible;
}

.home-forwhom__inner {
  position: relative;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 0;
  align-items: stretch;
  min-height: var(--home-forwhom-min);
}

.home-forwhom__photo-wrap {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.home-forwhom__photo {
  width: 100%;
  height: 100%;
  min-height: var(--home-forwhom-min);
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.home-forwhom__content {
  position: relative;
  background: var(--home-bg);
  padding: clamp(2rem, 4.5vw, 3.25rem) clamp(1.75rem, 4.5vw, 3.5rem) clamp(5.5rem, 12vh, 7.5rem);
}

.home-forwhom__title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: clamp(1.25rem, 2.5vh, 1.75rem);
}

.home-sparkle--forwhom-title {
  flex-shrink: 0;
  margin-top: 0.35em;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  background: transparent;
}

.home-forwhom__title {
  font-size: var(--home-fs-head-lg);
  line-height: 1.15;
  margin: 0;
  font-style: italic;
}

.home-forwhom__list {
  list-style: none;
  font-family: var(--font-aleo);
  font-weight: var(--aleo-light);
  font-size: var(--home-fs-quote);
  line-height: 1.6;
  color: var(--home-text);
  padding: 0;
  margin: 0;
}

.home-forwhom__list li::before { content: '• '; }
.home-forwhom__list li + li { margin-top: 0.2rem; }

.home-forwhom__subtitle {
  font-family: var(--font-aleo);
  font-weight: var(--aleo-light);
  font-size: var(--home-fs-quote);
  margin: clamp(1.25rem, 2.5vh, 1.65rem) 0 0.45rem;
  color: var(--home-text);
}

.home-forwhom__subtitle strong {
  font-weight: var(--aleo-medium);
}

.home-forwhom__list--compact {
  margin-bottom: 0.25rem;
}

.home-forwhom__brand {
  position: absolute;
  right: clamp(1.25rem, 3.5vw, 2.75rem);
  bottom: clamp(1.25rem, 3vh, 2.25rem);
  text-align: center;
  line-height: 1.05;
  pointer-events: none;
}

.home-forwhom__brand-serif {
  display: block;
  font-family: var(--font-aleo);
  font-weight: var(--aleo-light);
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  letter-spacing: 0.22em;
  color: var(--home-text);
}

.home-forwhom__brand-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  color: var(--home-text);
  margin-top: 0.1rem;
}

/* Estrellas en el borde foto / texto (sin fondo) */
.home-sparkle--forwhom-a,
.home-sparkle--forwhom-b {
  position: absolute;
  z-index: 4;
  background: transparent;
  pointer-events: none;
  line-height: 1;
  color: var(--home-text);
}

.home-sparkle--forwhom-a {
  left: 45%;
  bottom: clamp(2.25rem, 14%, 4.75rem);
  transform: translate(-35%, 0);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.home-sparkle--forwhom-b {
  left: calc(45% - 1.35rem);
  bottom: clamp(1.1rem, 7%, 2.35rem);
  transform: translate(-55%, 15%);
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
}

/* CTA */
.home-cta-bar {
  padding: clamp(2.5rem, 5vh, 4rem) var(--home-pad);
  background: var(--home-bg);
}

.home-cta-bar__row {
  max-width: var(--home-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.home-cta-bar__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 2vw, 1.35rem);
  flex: 1 1 auto;
}

.home-cta-bar__text {
  font-size: var(--home-fs-head-lg);
  color: var(--home-text);
  text-align: center;
  margin: 0;
}

.home-cta-bar__btn {
  flex-shrink: 0;
  min-width: min(100%, 300px);
}

.home-sparkle--cta {
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  flex-shrink: 0;
}

.home-strip { background: var(--home-bg); }

.home-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.home-strip__grid {
  max-width: var(--home-max);
  margin: 0 auto;
}

.home-strip__grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: var(--home-strip-max-h);
  object-fit: cover;
  display: block;
}

.page-home .footer--home { margin-top: 0; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .page-home .nav__link,
  .page-home .navbar__btn--home {
    font-size: clamp(0.8rem, 1.8vw, 19.5px);
  }
}

@media (max-width: 1024px) {
  .page-home .navbar.navbar--home {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .page-home .navbar--home .navbar__logo { grid-column: 1; grid-row: 1; }
  .page-home .navbar--home .navbar__btn--home { grid-column: 2; grid-row: 1; }
  .page-home .navbar--home .navbar__nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 0.75rem;
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-hero__copy { margin: 0 auto; }

  .home-hero__brand,
  .home-hero__rule,
  .home-hero__lead,
  .home-hero__actions {
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero__logo-centro,
  .home-hero__brand-text {
    margin-left: auto;
    margin-right: auto;
  }

  .page-home[data-home-has-centro-logo="1"] .home-hero__logo-centro {
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero__rule { max-width: 268px; }

  .home-hero__actions { justify-content: center; }

  .home-hero__visual { order: -1; }

  .home-hero__arch {
    max-width: min(360px, 85%);
    margin: 0 auto;
  }

  .home-story__inner { grid-template-columns: 1fr; }
  .home-story__right {
    align-items: flex-start;
    text-align: left;
    padding-top: 1rem;
  }

  .home-story__quote { text-align: left; }

  .home-sparkle--story {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
  }
  .home-testimonials__grid { grid-template-columns: 1fr; }
  .home-testimonials__border { grid-template-columns: 1fr; gap: 0.5rem; }
  .home-testimonials__border span:not(:first-child) { display: none; }
  .home-forwhom__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-forwhom__photo {
    min-height: clamp(240px, 34vh, 360px);
  }

  .home-sparkle--forwhom-a {
    left: auto;
    right: 9%;
    top: clamp(220px, 38vh, 360px);
    bottom: auto;
    transform: translate(25%, -45%);
  }

  .home-sparkle--forwhom-b {
    left: auto;
    right: 13%;
    top: clamp(248px, 41vh, 388px);
    bottom: auto;
    transform: translate(15%, -25%);
  }
}

@media (max-width: 768px) {
  .page-home .navbar--home .navbar__nav { display: none; }

  .home-mosaic__grid { grid-template-columns: repeat(2, 1fr); }
  .home-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .home-cta-bar__row {
    flex-direction: column;
    text-align: center;
  }

  .home-cta-bar__title-wrap {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .home-mosaic__grid { grid-template-columns: 1fr; }
  .home-logos__track { gap: 2rem; }
  .home-logos__img { height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-mosaic__cell:hover img { transform: none; }
}
