:root {
  --bg: #0a0a0a;
  --ink: #f4f2ee;
  --ink-dim: rgba(244, 242, 238, 0.55);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 500;
  pointer-events: none;
}

.nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-logo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.nav-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.14);
}

.nav-links { display: flex; gap: 20px; }

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-dim);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease;
  background: none;
  border: none;
  font-family: var(--sans);
}

.nav-link:hover, .nav-link.is-active { color: var(--ink); }

/* ---------- Bascule de langue ---------- */
.lang-toggle { display: flex; gap: 2px; }

.lang-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px 7px;
  border-radius: 6px;
  transition: color 0.25s ease, background 0.25s ease;
}

.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active { color: var(--ink); background: rgba(255, 255, 255, 0.1); }

/* ---------- Vue Movie (à venir) ---------- */
.view-movie {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(80px, 12vh, 140px) clamp(28px, 6vw, 96px);
  background:
    radial-gradient(120% 80% at 50% 18%, rgba(40, 40, 44, 0.45), transparent 62%),
    var(--bg);
}

.movie-inner { display: flex; flex-direction: column; align-items: center; }
.movie-inner .eyebrow { justify-content: center; }

.movie-soon {
  margin-top: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3.2vw, 36px);
  color: var(--ink-dim);
}

.view-movie .albums-sub { max-width: 460px; margin-left: auto; margin-right: auto; }

/* ---------- Vues ---------- */
.app { position: fixed; inset: 0; }

.view {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.view.is-active { opacity: 1; visibility: visible; }

/* ---------- Eyebrow & gros titres ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
  margin-bottom: 10px;
}

.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--ink-dim);
}

.big-title, .hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.8);
}

/* ---------- Vue Albums ---------- */
.view-albums {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 12vh, 140px) clamp(28px, 6vw, 96px) clamp(40px, 8vh, 80px);
  background:
    radial-gradient(120% 80% at 80% 10%, rgba(40, 40, 44, 0.4), transparent 60%),
    var(--bg);
}

.albums-head { margin-bottom: clamp(28px, 5vh, 56px); }

.albums-sub {
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-dim);
  max-width: 420px;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(16px, 1.6vw, 26px);
  max-width: 1180px;
}

.album-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.45s ease;
}

.album-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
  filter: brightness(0.82);
}

.album-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 4%, transparent 52%);
}

.album-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6); }
.album-card:hover img { transform: scale(1.1); filter: brightness(0.95); }

.album-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
}

.album-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.05;
}

.album-count {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.album-empty {
  grid-column: 1 / -1;
  color: var(--ink-dim);
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
}

/* ---------- Vue Mur ---------- */
.view-wall { overflow: hidden; cursor: crosshair; }
.view-wall.is-pannable { cursor: grab; }
.view-wall.is-pannable:active { cursor: grabbing; }

.wall {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.tile {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
  border-radius: 3px;
  overflow: hidden;
  background: #161616;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tile.is-lifted::after, .tile.is-selected::after { opacity: 1; }

.tile-caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.tile.is-lifted .tile-caption, .tile.is-selected .tile-caption {
  opacity: 1;
  transform: translateY(0);
}

.tile-caption .cap-cat {
  display: block;
  font-size: 7px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.tile-caption .cap-title {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
}

.tile.is-selected {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
  outline: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---------- Hero copy (mur) ---------- */
.hero-copy {
  position: absolute;
  left: clamp(24px, 4vw, 64px);
  bottom: clamp(24px, 5vh, 56px);
  z-index: 300;
  pointer-events: none;
}

.hero-sub {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-dim);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.hero-credit {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: clamp(24px, 5vh, 56px);
  z-index: 300;
  text-align: right;
  pointer-events: none;
}

.credit-name { font-family: var(--serif); font-style: italic; font-size: 18px; }

.credit-meta {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 4px;
}

/* ---------- Bouton retour ---------- */
.back-btn {
  position: absolute;
  top: 78px;
  left: clamp(24px, 4vw, 64px);
  z-index: 400;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.back-btn:hover { background: rgba(30, 30, 30, 0.7); transform: translateX(-3px); }
.back-arrow { font-size: 15px; line-height: 1; }

/* ---------- Vue Test (Aperture : dérive de profondeur) ---------- */
.view-test {
  overflow: hidden;
  cursor: grab;
  background: var(--bg);
}
.view-test:active { cursor: grabbing; }

.scatter {
  position: absolute;
  inset: 0;
}

.stile {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #161616;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  will-change: transform;
}

.stile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.stile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stile.is-hover::after { opacity: 1; }

.stile .tile-caption { left: 12px; right: 12px; bottom: 10px; }
.stile.is-hover .tile-caption { opacity: 1; transform: translateY(0); }

.test-hint {
  position: fixed;
  top: 82px;
  right: 30px;
  z-index: 320;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--ink-dim);
  pointer-events: none;
}

/* ---------- Lightbox (clic = grande vue centrée) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 9, 0.82);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.is-open { opacity: 1; visibility: visible; }

.lb-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 92vw;
  transform: scale(0.97);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.lightbox.is-open .lb-stage { transform: scale(1); }

.lb-head { text-align: center; }

.lb-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 6px;
}

.lb-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  letter-spacing: 0.01em;
}

.lb-imgwrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
}

.lb-imgwrap img {
  display: block;
  max-width: 72vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.lb-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.lb-close, .lb-nav {
  position: fixed;
  z-index: 810;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.lb-close {
  top: 26px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  padding-bottom: 4px;
}

.lb-prev { left: 30px; }
.lb-next { right: 30px; }

.lb-close:hover { background: rgba(40, 40, 40, 0.8); transform: rotate(90deg); }
.lb-prev:hover { background: rgba(40, 40, 40, 0.8); transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { background: rgba(40, 40, 40, 0.8); transform: translateY(-50%) translateX(3px); }

@media (max-width: 640px) {
  .lb-imgwrap img { max-width: 92vw; max-height: 68vh; }
  .lb-nav { width: 42px; height: 42px; font-size: 22px; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
  .lb-close { top: 16px; right: 16px; }
}

/* ---------- Vue Tarifs ---------- */
.view-pricing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  padding: clamp(80px, 12vh, 140px) clamp(28px, 6vw, 96px) clamp(40px, 8vh, 80px);
  background:
    radial-gradient(120% 80% at 80% 10%, rgba(40, 40, 44, 0.4), transparent 60%),
    var(--bg);
}

.pricing-head { margin-bottom: clamp(28px, 5vh, 52px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 22vw, 280px), 1fr));
  gap: clamp(16px, 1.6vw, 24px);
  width: 100%;
  max-width: 1600px;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  border-radius: 8px;
  background: rgba(20, 20, 22, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.4s ease, background 0.4s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(28, 28, 30, 0.7);
}

.price-card.is-featured {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(32, 32, 34, 0.7);
}

.pc-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 16px;
}

.pc-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 6px;
}

.pc-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
}

.pc-price small {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: block;
  margin-top: 2px;
}

.pc-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 14px 0 18px;
}

.pc-features {
  list-style: none;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pc-features li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(244, 242, 238, 0.82);
  margin-bottom: 8px;
}

.pc-features li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--ink-dim);
}

.pricing-contact {
  margin-top: clamp(28px, 5vh, 48px);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
}

.pricing-contact a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1px;
}
.pricing-contact a:hover { border-color: var(--ink); }

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

/* ---------- Vue détaillée éditoriale (page Test) ---------- */
.detail {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: #0a0a0b;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  flex-direction: column;
}

.detail.is-open { opacity: 1; visibility: visible; }

.detail-top {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(24px, 4vw, 56px);
}

.detail-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
}

.detail-index {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
}

.detail-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(22, 22, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.detail-close:hover { background: rgba(45, 45, 48, 0.8); transform: rotate(90deg); }

.detail-body {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
  padding: 0 clamp(24px, 4vw, 56px) clamp(24px, 4vh, 52px);
  min-height: 0;
}

.detail-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 560px;
  padding: clamp(6px, 2vh, 26px) 0;
}

.detail-head { display: flex; flex-direction: column; }

.d-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  margin-bottom: 18px;
}

.d-title {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(38px, 5.2vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}

.d-place {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 18px;
}

.d-desc {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(244, 242, 238, 0.78);
  max-width: 440px;
  margin-bottom: 34px;
}

.d-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
  width: 100%;
  max-width: 520px;
}

.d-spec-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 242, 238, 0.4);
  margin-bottom: 5px;
}

.d-spec-value {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--ink);
}

.detail-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  min-height: 0;
}

.d-imgwrap {
  max-height: 86vh;
  max-width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.d-imgwrap img {
  display: block;
  max-height: 86vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.detail-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(22, 22, 24, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  padding-bottom: 4px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.25s ease, transform 0.25s ease;
}
.d-prev { left: 24px; }
.d-next { right: 24px; }
.d-prev:hover { background: rgba(45, 45, 48, 0.8); transform: translateY(-50%) translateX(-3px); }
.d-next:hover { background: rgba(45, 45, 48, 0.8); transform: translateY(-50%) translateX(3px); }

@media (max-width: 880px) {
  .detail-body {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 22px;
    overflow-y: auto;
    align-items: start;
  }
  .detail-right { order: -1; }
  .d-imgwrap, .d-imgwrap img { max-height: 42vh; }
  .d-specs { grid-template-columns: repeat(3, 1fr); }
  .detail-nav { top: auto; bottom: 18px; transform: none; }
  .d-prev { left: 24px; } .d-next { right: 24px; }
  .d-prev:hover, .d-next:hover { transform: none; }
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.8s ease;
}

.loader.is-done { opacity: 0; pointer-events: none; }

.loader span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--ink-dim);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@media (max-width: 640px) {
  .hero-credit { display: none; }
  .nav-pill { gap: 10px; padding: 8px 12px; max-width: 96vw; overflow-x: auto; flex-wrap: nowrap; }
  .nav-logo { font-size: 14px; white-space: nowrap; }
  .nav-links { gap: 14px; }
  .albums-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .tile, .wall { transition: none !important; }
}
