/* =========================================================
   BIG BRAND REPORT — LUXURY CATEGORY MENU AND PAGES
   Tile labels are live HTML. The supplied artwork had them
   baked in at roughly 4px on a phone; these stay legible at
   every size and each tile is a real link.
   ========================================================= */

.lux-menu {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.lux-tile {
  display: block;
  background: #fff;
  border: 1px solid var(--line, #e6e2df);
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.lux-tile:hover,
.lux-tile:focus-visible {
  transform: translateY(-4px);
  border-color: #c9c3bc;
  box-shadow: 0 18px 40px rgba(0,0,0,.09);
}

.lux-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.lux-tile-copy { padding: 20px 22px 24px; }

.lux-tile-copy strong {
  display: block;
  font-family: var(--serif, Georgia, serif);
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: -.01em;
}

.lux-tile-copy span {
  display: block;
  margin-top: 8px;
  color: var(--pink, #C2185B);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (max-width: 1100px) { .lux-menu { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 800px)  { .lux-menu { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; } }
@media (max-width: 460px)  { .lux-menu { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------
   CATEGORY PAGE
   --------------------------------------------------------- */
.lux-cat-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
  padding-top: clamp(48px, 5vw, 86px) !important;
  padding-bottom: clamp(48px, 5vw, 86px) !important;
}

.lux-cat-hero .kicker {
  color: var(--pink, #C2185B);
  font-size: .74rem !important;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 14px !important;
}

.lux-cat-rule { width: 104px; height: 4px; background: var(--pink, #C2185B); margin: 24px 0; }

.lux-cat-hero .lead {
  font-family: var(--serif, Georgia, serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem) !important;
  line-height: 1.35 !important;
}

.lux-cat-hero img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  margin-left: auto;
}

.lux-cat-body {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(28px, 4vw, 68px);
  background: #faf8f6;
  border-top: 1px solid var(--line, #e6e2df);
  border-bottom: 1px solid var(--line, #e6e2df);
  padding-top: clamp(48px, 5vw, 80px) !important;
  padding-bottom: clamp(48px, 5vw, 80px) !important;
}

.lux-cat-cover { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 14px; }

.lux-cat-cover li {
  padding-left: 26px;
  position: relative;
}

.lux-cat-cover li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 12px; height: 2px;
  background: var(--pink, #C2185B);
}

.lux-cat-brands { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.lux-cat-brands span {
  border: 1px solid var(--line, #ddd8d4);
  background: #fff;
  padding: .55rem .9rem;
  font-size: .82rem;
  letter-spacing: .02em;
}

.lux-cat-more { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

.lux-cat-more a {
  border: 1px solid var(--line, #ddd8d4);
  padding: .6rem 1rem;
  font-size: .8rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, color .2s ease;
}

.lux-cat-more a:hover { border-color: var(--pink, #C2185B); color: var(--pink, #C2185B); }

.lux-breadcrumb { padding-top: 26px !important; padding-bottom: 0 !important; }
.lux-breadcrumb ol { list-style: none; display: flex; gap: 10px; margin: 0; padding: 0; flex-wrap: wrap; }
.lux-breadcrumb li { font-size: .78rem !important; color: #777; }
.lux-breadcrumb a { color: #777; text-decoration: none; }
.lux-breadcrumb a:hover { color: var(--pink, #C2185B); }

@media (max-width: 900px) {
  .lux-cat-hero,
  .lux-cat-body { grid-template-columns: 1fr; }
  .lux-cat-hero img { margin-left: 0; max-width: 100%; }
}
