/* Compact image-led brand strip. This loads last and intentionally replaces
   the earlier gold directory treatment. */
.brand-showcase {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(28px, 3.3vw, 52px) 0 clamp(24px, 2.8vw, 44px);
  overflow: hidden;
  color: #f4efe6;
  background: #000;
}

.brand-showcase::before,
.brand-showcase::after { display: none !important; }

.brand-showcase__proof {
  display: grid;
  max-width: 1500px;
  margin: 0 auto clamp(20px, 2vw, 32px);
  padding-inline: clamp(14px, 2.1vw, 34px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-showcase__proof p {
  display: grid;
  min-height: 62px;
  place-content: center;
  margin: 0;
  padding: 0 clamp(12px, 2.5vw, 40px);
  border-right: 1px solid rgba(194, 151, 73, .42);
  text-align: center;
}

.brand-showcase__proof p:last-child { border-right: 0; }

.brand-showcase__proof strong {
  color: #d9ae5a;
  font: 500 clamp(20px, 2vw, 31px)/1 "Cormorant Garamond", serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-showcase__proof span,
.brand-showcase__footer {
  font: 500 clamp(7px, .58vw, 10px)/1.4 Montserrat, sans-serif;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.brand-showcase__proof span { margin-top: 8px; color: rgba(255, 255, 255, .7); }
.brand-showcase__artwork { width: 100%; margin: 0; }
.brand-showcase__canvas { position: relative; width: 100%; }
.brand-showcase__artwork img { display: block; width: 100%; height: auto; }
.brand-showcase__hotspots {
  position: absolute;
  inset: 0;
}
.brand-showcase__hotspots a {
  position: absolute;
  left: var(--card-x);
  top: var(--card-y);
  width: var(--card-w);
  height: var(--card-h);
  box-sizing: border-box;
  border: 1px solid transparent;
  outline: none;
  transition: border-color .24s ease, box-shadow .3s ease, background-color .3s ease;
}
.brand-showcase__hotspots a:hover,
.brand-showcase__hotspots a:focus-visible {
  z-index: 1;
  border-color: rgba(239, 190, 91, .95);
  background: rgba(211, 158, 61, .025);
  box-shadow: 0 0 7px rgba(232, 178, 76, .75), 0 0 22px rgba(205, 142, 40, .42), inset 0 0 18px rgba(224, 169, 66, .11);
}
.brand-showcase__hotspots a:nth-child(1),
.brand-showcase__hotspots a:nth-child(6) { --card-x: 1.354%; --card-w: 20.313%; }
.brand-showcase__hotspots a:nth-child(2),
.brand-showcase__hotspots a:nth-child(7) { --card-x: 22.292%; --card-w: 17.969%; }
.brand-showcase__hotspots a:nth-child(3),
.brand-showcase__hotspots a:nth-child(8) { --card-x: 40.885%; --card-w: 19.583%; }
.brand-showcase__hotspots a:nth-child(4),
.brand-showcase__hotspots a:nth-child(9) { --card-x: 61.094%; --card-w: 17.969%; }
.brand-showcase__hotspots a:nth-child(5),
.brand-showcase__hotspots a:nth-child(10) { --card-x: 79.688%; --card-w: 18.958%; }
.brand-showcase__hotspots a:nth-child(-n+5) { --card-y: 5.556%; --card-h: 41.905%; }
.brand-showcase__hotspots a:nth-child(n+6) { --card-y: 49.841%; --card-h: 43.016%; }

.brand-showcase__footer {
  display: grid;
  max-width: 1815px;
  align-items: center;
  grid-template-columns: auto minmax(30px, 1fr) auto;
  gap: 18px;
  margin: 0 auto;
  padding: clamp(14px, 1.5vw, 24px) clamp(14px, 2.1vw, 34px) 0;
  color: #d1b77f;
}

.brand-showcase__footer p { margin: 0; }
.brand-showcase__footer > span { height: 1px; background: rgba(194, 151, 73, .38); }
.brand-showcase__footer a { color: #dfbe78; white-space: nowrap; }
.brand-showcase__footer a b { display: inline-block; margin-left: 10px; transition: transform .2s ease; }
.brand-showcase__footer a:hover b { transform: translateX(4px); }

@media (max-width: 760px) {
  .brand-showcase__proof { grid-template-columns: repeat(2, 1fr); padding-inline: 12px; }
  .brand-showcase__proof p { min-height: 74px; border-bottom: 1px solid rgba(194, 151, 73, .3); }
  .brand-showcase__proof p:nth-child(2) { border-right: 0; }
  .brand-showcase__proof p:nth-child(n+3) { border-bottom: 0; }
  .brand-showcase__artwork { overflow-x: auto; scrollbar-color: #8e6d31 #080808; }
  .brand-showcase__canvas { width: 1040px; }
  .brand-showcase__artwork img { width: 100%; max-width: none; }
  .brand-showcase__footer { margin-inline: 12px; padding-inline: 0; letter-spacing: .18em; }
}

@media (max-width: 480px) {
  .brand-showcase__footer { grid-template-columns: 1fr auto; }
  .brand-showcase__footer > span { display: none; }
  .brand-showcase__footer p { max-width: 170px; }
}
