/* ============================================================
   KOREA · Luxury restaurant UI
   Uniform image frames · Mì cay slider · Soft elegance
   ============================================================ */

.landing.lux {
  background: #faf7f5;
  color: #1c1917;
  min-height: 100dvh;
}

/* Soft global background override when on landing */
.landing.lux ~ .bg-mesh,
body:has(.landing.lux) .bg-mesh {
  background:
    radial-gradient(900px 480px at 10% 0%, rgba(190, 18, 60, 0.08), transparent 55%),
    radial-gradient(700px 400px at 90% 10%, rgba(180, 140, 100, 0.1), transparent 50%),
    linear-gradient(180deg, #faf7f5 0%, #ffffff 45%, #f7f3f0 100%);
  animation: none;
  filter: none;
}

/* ---------- Uniform frame system (cùng tỷ lệ, không to nhỏ) ---------- */
.lux-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 16px;
  background: #ebe6e2;
  box-shadow: 0 8px 28px rgba(28, 25, 23, 0.07);
}

.lux-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-frame:hover img {
  transform: scale(1.04);
}

/* Menu cards also uniform */
.menu-card .thumb {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.mkt-sig-thumb {
  aspect-ratio: 4 / 3 !important;
}

/* ---------- Hero luxury ---------- */
.lux-hero {
  position: relative;
  padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}

.lux-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lux-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.28;
  filter: saturate(1.05);
}

.lux-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(250, 247, 245, 0.96) 0%, rgba(250, 247, 245, 0.88) 48%, rgba(250, 247, 245, 0.45) 100%),
    linear-gradient(180deg, transparent 60%, #faf7f5 100%);
}

.lux-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.lux-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9f1239;
  margin-bottom: 0.75rem;
}

.lux-hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: #1c1917;
}

.lux-hero-copy h1 em {
  font-style: normal;
  display: block;
  background: linear-gradient(120deg, #9f1239, #be123c 40%, #b45309);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lux-lead {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.7;
  color: #78716c;
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.lux-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.lux-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lux-meta span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #78716c;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(28, 25, 23, 0.06);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(28, 25, 23, 0.04);
}

.lux-meta-addr .maps-link {
  color: #1a73e8 !important;
  font-weight: 700;
}

.lux-hero-cta .btn-maps {
  /* trên nền sáng hero: giữ xanh map, không dính đỏ primary */
  background: #fff;
  border-color: #1a73e8;
  color: #1a73e8;
}

/* ---------- Mì cay slider — khung đồng bộ ---------- */
.lux-slider {
  background: #fff;
  border-radius: 24px;
  padding: 0.85rem 0.85rem 1rem;
  box-shadow: 0 20px 50px rgba(28, 25, 23, 0.08);
  border: 1px solid rgba(28, 25, 23, 0.05);
}

.lux-slider-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: #ebe6e2;
}

.lux-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s;
  display: grid;
  grid-template-rows: 1fr auto;
}

.lux-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.lux-slide-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lux-slide-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 6s ease;
}

.lux-slide.is-active .lux-slide-frame img {
  transform: scale(1.08);
}

.lux-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2.5rem 1.15rem 1.1rem;
  background: linear-gradient(transparent, rgba(12, 10, 9, 0.78));
  color: #fff;
}

.lux-slide-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(225, 29, 72, 0.9);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.4rem;
}

.lux-slide-caption h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.lux-slide-caption p {
  font-size: 0.82rem;
  opacity: 0.88;
  margin-bottom: 0.45rem;
  max-width: 90%;
}

.lux-slide-price {
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}

.lux-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.lux-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.08);
  font-size: 1.35rem;
  line-height: 1;
  color: #1c1917;
  box-shadow: 0 4px 14px rgba(28, 25, 23, 0.06);
  transition: transform 0.2s, background 0.2s;
}

.lux-nav-btn:hover {
  background: #fff1f2;
  transform: scale(1.05);
}

.lux-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.lux-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d6d3d1;
  padding: 0;
  transition: width 0.25s, background 0.25s;
}

.lux-dot.is-active {
  width: 22px;
  background: #be123c;
}

.lux-slider-hint {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a8a29e;
  margin-top: 0.55rem;
}

/* ---------- Strip đồng bộ kích thước ---------- */
.lux-strip-wrap {
  padding: 0.5rem 0 1.25rem;
  overflow: hidden;
}

.lux-strip {
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.lux-strip-track {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  animation: luxMarquee 38s linear infinite;
  align-items: stretch;
}

.lux-strip:hover .lux-strip-track {
  animation-play-state: paused;
}

@keyframes luxMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.lux-strip-item {
  flex: 0 0 168px;
  width: 168px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.lux-strip-item .lux-frame {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
}

.lux-strip-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #57534e;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 0.25rem;
}

/* ---------- Gallery đồng đều ---------- */
.lux-gallery-sec {
  padding-top: 1rem;
}

.lux-head {
  margin-bottom: 1.25rem;
}

.lux-head h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #1c1917;
}

.lux-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.lux-gallery-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-gallery-card:hover {
  transform: translateY(-3px);
}

.lux-gallery-card .lux-frame {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
}

.lux-gallery-cap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0 0.15rem;
}

.lux-gallery-cap strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: #1c1917;
}

.lux-gallery-cap span {
  font-size: 0.88rem;
  font-weight: 800;
  color: #b45309;
  white-space: nowrap;
}

/* Soft cards for promise / rest */
.landing.lux .mkt-promise-card,
.landing.lux .mkt-step,
.landing.lux .mkt-related-card,
.landing.lux .mkt-sig-card {
  border: none;
  box-shadow: 0 8px 28px rgba(28, 25, 23, 0.06);
  border-radius: 18px;
}

.landing.lux .mkt-related-card img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  aspect-ratio: 1;
}

.landing.lux .mkt-story-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}

.landing.lux .mkt-story-img2 {
  width: 70% !important;
  margin-left: auto;
  margin-top: -1.75rem;
  aspect-ratio: 4 / 3 !important;
  border: 4px solid #fff !important;
}

/* Hide old uneven marquee rules conflict */
.landing.lux .mkt-marquee,
.landing.lux .mkt-bento {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .lux-hero-grid {
    grid-template-columns: 1fr;
  }
  .lux-slider {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .lux-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .lux-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  .lux-gallery-cap strong {
    font-size: 0.8rem;
  }
  .lux-strip-item {
    flex-basis: 132px;
    width: 132px;
  }
  .lux-slide-caption h3 {
    font-size: 1.05rem;
  }
  .lux-hero-copy h1 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lux-strip-track {
    animation: none;
  }
  .lux-slide-frame img {
    transition: none;
  }
}
