/* =========================================================
   LUNQHAL Homepage V1.3.3
   FINAL MICRO CSS PATCH — PHASE 1
   Scope: Header / H04 Icons / H04 Media / H04 Detail Type / V05
   IMPORTANT: This patch intentionally does NOT modify routing,
   H01/H02/H03, V01-V04 grid structure, footer, or legal pages.
   Load AFTER lunqhal-brand-v13.3-final.css.
   ========================================================= */

/* =========================================================
   1. HEADER HEIGHT
   ========================================================= */
.lhq-header {
  height: 60px;
}

.lhq-header-inner {
  height: 60px;
}

/* Preserve the compact horizontal navigation already locked. */
.lhq-navigation {
  align-items: center;
}

/* =========================================================
   2. H04 SL016 ICON WHITE / HIGH-CONTRAST TREATMENT
   Existing icon files are retained; no filename changes.
   ========================================================= */
.lhq-sl016 .lhq-feature img {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.lhq-sl016 .lhq-feature strong {
  color: #ffffff;
}

.lhq-sl016 .lhq-feature span {
  color: rgba(255,255,255,.72);
}

/* Keep icon cards visually quiet on the black H04 information panel. */
.lhq-sl016 .lhq-feature {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}

/* =========================================================
   3. H04 SL016 IMAGE SCALE / COMPLETE IMAGE DISPLAY
   Do NOT use object-fit: cover.
   The source image remains the locked 2400 × 1350 artwork.
   ========================================================= */
.lhq-sl016 .lhq-product-media {
  width: 100%;
  min-width: 0;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.lhq-sl016 .lhq-product-media picture {
  width: 100%;
  display: block;
}

.lhq-sl016 .lhq-product-media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  transform: none;
  transform-origin: center center;
}

/* =========================================================
   4. H04 DETAIL TEXT SYSTEM
   These selectors are intentionally scoped for the four
   detail captions that will sit beneath the four close-up
   images in the H04 production structure.

   Required HTML classes:
     .lhq-sl016-details
     .lhq-sl016-detail
     .lhq-sl016-detail-title
     .lhq-sl016-detail-copy
   ========================================================= */
.lhq-sl016-details {
  width: min(100%, 1440px);
  max-width: 1440px;
  margin: 0 auto 120px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.lhq-sl016-detail {
  min-width: 0;
}

.lhq-sl016-detail-title {
  margin: 18px 0 7px;
  color: #f4c94f;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.lhq-sl016-detail-copy {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.5;
  max-width: 30ch;
}

/* =========================================================
   5. V05 — BOTTOM-CENTER COPY, NOT FULL-PAGE CENTER
   ========================================================= */
.lhq-future-home .lhq-future-overlay {
  left: 50%;
  top: auto;
  bottom: 10%;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 80px));
  max-width: 760px;
  text-align: center;
}

/* =========================================================
   RESPONSIVE — only the five Phase-1 corrections above
   ========================================================= */
@media (max-width: 768px) {
  .lhq-header {
    height: 56px;
  }

  .lhq-header-inner {
    height: 56px;
  }

  .lhq-sl016 .lhq-product-media img {
    width: 100%;
    height: auto;
    transform: none;
  }

  .lhq-sl016-details {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 72px;
  }

  .lhq-sl016-detail-title {
    font-size: 16px;
  }

  .lhq-sl016-detail-copy {
    font-size: 13px;
  }

  .lhq-future-home .lhq-future-overlay {
    bottom: 8%;
    width: calc(100% - 40px);
    max-width: none;
  }
}

@media (max-width: 430px) {
  .lhq-sl016-details {
    grid-template-columns: 1fr;
  }
}
