/**
 * Lumière — الصفحة الرئيسية (مطابقة HomePage.tsx)
 */

/* ——— Hero ——— */
.lm-home-hero {
  position: relative;
  height: 100vh;
  min-height: clamp(500px, 100vh, 900px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.lm-home-hero__gold-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 4;
  background: linear-gradient(90deg, transparent, #e8c98e, transparent);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.4);
}

.lm-home-hero__gold-side {
  position: absolute;
  top: 15%;
  right: clamp(16px, 5vw, 40px);
  width: 1px;
  height: 35%;
  z-index: 4;
  background: linear-gradient(to bottom, transparent, var(--lm-primary), transparent);
  box-shadow: 0 0 15px rgba(201, 169, 110, 0.4);
}

.lm-home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.lm-home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(26, 18, 9, 0.92) 0%, rgba(26, 18, 9, 0.75) 35%, rgba(92, 80, 72, 0.45) 65%, rgba(251, 247, 238, 0.15) 100%);
}

.lm-home-hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, #fff 0%, transparent 100%);
  pointer-events: none;
}

.lm-home-hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 5vw, 3.75rem) clamp(6rem, 12vw, 8rem);
}

.lm-home-hero__copy {
  max-width: 35rem;
}

.lm-home-hero__kicker {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--lm-primary);
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  margin: 0 0 1.75rem;
  text-shadow: 0 0 15px rgba(201, 169, 110, 0.4);
}

.lm-home-hero__kicker-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, #e8c98e, #d4af37, var(--lm-primary));
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.4);
}

.lm-home-hero__title {
  margin: 0 0 1.5rem;
  font-weight: 400;
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.lm-home-hero__title-line {
  display: block;
  font-size: clamp(2.75rem, 6vw, 4.875rem);
}

.lm-home-hero__title-gold {
  display: block;
  font-size: clamp(2.75rem, 6vw, 4.875rem);
  font-style: italic;
  color: var(--lm-primary, var(--lm-primary));
  background: linear-gradient(135deg, #e8c98e, #d4af37, var(--lm-primary), #d4af37, #e8c98e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 20px rgba(201, 169, 110, 0.4));
}

.lm-home-hero__lead {
  max-width: 25rem;
  margin: 0 0 2.75rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9375rem;
  line-height: 1.9;
  font-weight: 300;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.lm-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.lm-btn--gold {
  background: linear-gradient(135deg, #e8c98e, #d4af37, var(--lm-primary));
  background-size: 200% 100%;
  color: #0a0608;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.4), 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s, box-shadow 0.3s, background-position 0.3s;
}

.lm-btn--gold:hover {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow: 0 0 25px rgba(201, 169, 110, 0.5), 0 12px 32px rgba(0, 0, 0, 0.45);
  color: #0a0608;
}

.lm-btn--outline-gold {
  border: 2px solid var(--lm-primary);
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  padding: 1rem 2.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}

.lm-btn--outline-gold:hover {
  background: rgba(201, 169, 110, 0.2);
  border-color: #e8c98e;
  color: #e8c98e;
  box-shadow: 0 0 25px rgba(201, 169, 110, 0.4), 0 6px 20px rgba(0, 0, 0, 0.4);
}

.lm-home-hero__stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  justify-items: center;
  gap: clamp(1rem, 4vw, 2.5rem);
  padding: clamp(1rem, 3vw, 1.375rem) clamp(0.75rem, 3vw, 1.5rem);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-top: 2px solid rgba(201, 169, 110, 0.35);
  box-shadow: 0 -2px 20px rgba(201, 169, 110, 0.25);
}

.lm-home-hero__stat {
  text-align: center;
  min-width: 0;
}

.lm-home-hero__stat-num {
  margin: 0;
  font-size: clamp(1.25rem, 4vw, 2rem);
  line-height: 1;
  background: linear-gradient(135deg, #e8c98e, #d4af37, var(--lm-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(201, 169, 110, 0.4));
}

.lm-home-hero__stat-label {
  margin: 0.35rem 0 0;
  font-size: clamp(0.5rem, 1.8vw, 0.625rem);
  letter-spacing: 0.12em;
  color: rgba(107, 114, 128, 0.75);
  overflow-wrap: anywhere;
}

@media (orientation: landscape) and (max-height: 520px) {
  .lm-home-hero {
    min-height: auto;
    height: auto;
  }

  .lm-home-hero__content {
    padding-top: clamp(1.25rem, 4vw, 2rem);
    padding-bottom: clamp(2rem, 6vw, 3rem);
  }

  .lm-home-hero__title {
    font-size: clamp(1.75rem, 6vw, 2.75rem);
    overflow-wrap: anywhere;
  }

  .lm-home-hero__lead {
    font-size: clamp(0.8125rem, 2.4vw, 0.9375rem);
    overflow-wrap: anywhere;
  }

  .lm-home-hero__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ——— Offers ——— */
.lm-home-offers {
  background: #fff;
  padding: 4rem 0;
  position: relative;
}

.lm-home-offers__head {
  text-align: center;
  margin-bottom: 2rem;
}

.lm-home-offers__eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
  color: var(--lm-primary);
}

.lm-home-offers__eyebrow-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to left, var(--lm-primary), transparent);
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.4);
}

.lm-home-offers__eyebrow-line--rev {
  background: linear-gradient(to right, var(--lm-primary), transparent);
}

.lm-home-offers__eyebrow {
  color: var(--lm-primary);
  font-size: 0.625rem;
  letter-spacing: 0.35em;
  margin: 0;
  text-shadow: 0 0 15px rgba(201, 169, 110, 0.4);
}

.lm-home-offers__title {
  font-weight: 400;
  font-size: clamp(1.375rem, 3vw, 2rem);
  margin: 0 0 0.375rem;
  color: var(--lm-fg);
}

.lm-home-offers__title em {
  font-style: italic;
  background: linear-gradient(135deg, #e8c98e, #d4af37, var(--lm-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 15px rgba(201, 169, 110, 0.4));
}

.lm-home-offers__view-all {
  background: none;
  border: none;
  color: var(--lm-muted);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  margin-top: 0.25rem;
  display: inline-block;
}

.lm-home-offers__view-all:hover {
  color: var(--lm-primary);
}

.lm-home-offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.875rem;
}

.lm-home-offers__card {
  position: relative;
  background: #fbf7ee;
  border: 1px solid rgba(180, 150, 100, 0.22);
  padding: 1.125rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.lm-home-offers__card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 169, 110, 0.35);
  box-shadow: 0 0 25px rgba(201, 169, 110, 0.25);
}

.lm-home-offers__shimmer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #a8844a, #e8c98e, #d4af37, #e8c98e, #a8844a);
  background-size: 200% 100%;
  animation: lmShimmerLine 3s linear infinite;
  box-shadow: 0 0 15px rgba(201, 169, 110, 0.4);
}

@keyframes lmShimmerLine {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.lm-home-offers__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, #e8c98e, var(--lm-primary));
  color: #0a0608;
  font-size: 0.75rem;
  padding: 0.3125rem 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.4);
}

.lm-home-offers__salon {
  color: var(--lm-primary);
  font-size: 0.5625rem;
  letter-spacing: 0.25em;
  margin: 0.25rem 0 0.5rem;
}

.lm-home-offers__card-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.lm-home-offers__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.35), transparent);
  margin-bottom: 0.75rem;
}

.lm-home-offers__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lm-home-offers__code {
  margin: 0;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--lm-muted);
}

.lm-home-offers__code strong {
  color: var(--lm-primary);
  font-weight: 600;
}

.lm-home-offers__cta {
  color: var(--lm-primary);
  font-size: 0.6875rem;
}

/* ——— Brands marquee ——— */
.lm-home-brands {
  position: relative;
  background: #f5edd8;
  border-top: 1px solid rgba(180, 150, 100, 0.3);
  border-bottom: 1px solid rgba(180, 150, 100, 0.3);
  padding: 2rem 0 1.5rem;
  overflow: hidden;
  direction: rtl;
}

.lm-home-brands__glow-top,
.lm-home-brands__glow-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #a8844a, #e8c98e, #d4af37, #e8c98e, #a8844a);
  background-size: 200% 100%;
  animation: lmShimmerLine 3s linear infinite;
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.4);
}

.lm-home-brands__glow-top { top: 0; }
.lm-home-brands__glow-bottom { bottom: 0; animation-direction: reverse; }

.lm-home-brands__fade-left,
.lm-home-brands__fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.lm-home-brands__fade-left {
  left: 0;
  background: linear-gradient(to right, #f5edd8, transparent);
}

.lm-home-brands__fade-right {
  right: 0;
  background: linear-gradient(to left, #f5edd8, transparent);
}

.lm-home-brands__label {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--lm-primary);
  font-size: 0.8125rem;
  letter-spacing: normal;
  text-transform: none;
  margin: 0 0 1.25rem;
  opacity: 0.8;
  direction: rtl;
  unicode-bidi: isolate;
  text-shadow: 0 0 15px rgba(201, 169, 110, 0.4);
}

.lm-home-brands__track-wrap {
  overflow: hidden;
  position: relative;
  z-index: 3;
  direction: ltr; /* حرج: يضمن أن overflow يقطع من اليمين */
  width: 100%;
}

.lm-home-brands__track {
  display: flex;
  align-items: center;
  width: max-content;
  direction: ltr;
  flex-wrap: nowrap;
  will-change: transform;
  animation: lmBrandsMarquee 24s linear infinite;
}

/* كل set هو نسخة مستقلة — نسختان = 50%+50% من المسار */
.lm-home-brands__set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

@keyframes lmBrandsMarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.lm-home-brands:hover .lm-home-brands__track,
.lm-home-brands:focus-within .lm-home-brands__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .lm-home-brands__track {
    animation: none;
  }
}

.lm-home-brands__item {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 0 2.5rem;
  flex-shrink: 0;
}

.lm-home-brands__name {
  background: linear-gradient(135deg, #e8c98e, #d4af37, var(--lm-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  filter: drop-shadow(0 0 15px rgba(201, 169, 110, 0.4));
  opacity: 0.9;
}

.lm-home-brands__sep {
  color: var(--lm-primary);
  font-size: 0.875rem;
  opacity: 0.5;
}

/* ——— Services mosaic ——— */
.lm-home-services {
  background: #fbf7ee;
  padding: clamp(3.75rem, 10vw, 6.25rem) 0;
}

.lm-home-services__shell {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.lm-home-services__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2.25rem, 7vw, 3.75rem);
}

.lm-home-services__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}

.lm-home-services__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--lm-primary);
}

.lm-home-services__eyebrow {
  color: var(--lm-primary);
  font-size: 0.625rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin: 0;
}

.lm-home-services__title {
  margin: 0;
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 3.125rem);
  line-height: 1.1;
  color: #1a1a1a;
}

.lm-home-services__title em {
  color: var(--lm-primary);
  font-style: normal;
}

.lm-home-services__view-all {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--lm-primary);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  padding-bottom: 0.1875rem;
  text-decoration: none;
  transition: letter-spacing 0.3s;
}

.lm-home-services__view-all:hover {
  letter-spacing: 0.2em;
}

.lm-home-services-grid {
  display: grid;
  gap: 14px;
  direction: rtl;
  grid-template-columns: 1fr;
  grid-template-rows: 260px 200px 200px 200px 200px;
}

@media (min-width: 640px) {
  .lm-home-services-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 220px 220px;
  }
  .lm-home-svc-card--1 { grid-column: 1 / -1; grid-row: 1; }
  .lm-home-svc-card--2 { grid-column: 1; grid-row: 2; }
  .lm-home-svc-card--3 { grid-column: 2; grid-row: 2; }
  .lm-home-svc-card--4 { grid-column: 1; grid-row: 3; }
  .lm-home-svc-card--5 { grid-column: 2; grid-row: 3; }
}

@media (min-width: 1024px) {
  .lm-home-services-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 310px 280px;
    gap: 16px;
  }
  .lm-home-svc-card--1 { grid-column: 1; grid-row: 1 / 3; }
  .lm-home-svc-card--2 { grid-column: 2; grid-row: 1; }
  .lm-home-svc-card--3 { grid-column: 3; grid-row: 1; }
  .lm-home-svc-card--4 { grid-column: 2; grid-row: 2; }
  .lm-home-svc-card--5 { grid-column: 3; grid-row: 2; }
}

@media (min-width: 1280px) {
  .lm-home-services-grid {
    grid-template-rows: 340px 300px;
    gap: 18px;
  }
}

.lm-home-svc-card {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid transparent;
  box-shadow: 0 4px 24px rgba(10, 6, 8, 0.08);
  text-decoration: none;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s, box-shadow 0.35s;
}

.lm-home-svc-card:hover {
  border-color: var(--lm-primary);
  box-shadow: 0 14px 44px rgba(201, 169, 110, 0.28);
  transform: translateY(-4px);
}

.lm-home-svc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.62) contrast(1.08);
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s;
}

.lm-home-svc-card:hover .lm-home-svc-card__img {
  transform: scale(1.07);
  filter: brightness(0.46) contrast(1.12);
}

.lm-home-svc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 6, 8, 0.96) 0%, rgba(10, 6, 8, 0.45) 45%, rgba(10, 6, 8, 0.08) 75%, transparent 100%);
}

.lm-home-svc-card__shimmer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lm-primary) 30%, #e8c98e 50%, var(--lm-primary) 70%, transparent);
  opacity: 0;
  box-shadow: 0 0 18px rgba(201, 169, 110, 0.55);
  transition: opacity 0.4s;
}

.lm-home-svc-card:hover .lm-home-svc-card__shimmer {
  opacity: 1;
}

.lm-home-svc-card__body {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.lm-home-svc-card--hero .lm-home-svc-card__body {
  padding: clamp(1.75rem, 5vw, 2.5rem);
}

.lm-home-svc-card:not(.lm-home-svc-card--hero) .lm-home-svc-card__body {
  padding: clamp(1.125rem, 3.5vw, 1.75rem);
}

.lm-home-svc-card__en {
  color: #e8c98e;
  font-size: clamp(0.5625rem, 1.8vw, 0.625rem);
  letter-spacing: 0.28em;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.lm-home-svc-card__name {
  margin: 0;
  color: #fff;
  font-weight: 600;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.lm-home-svc-card--hero .lm-home-svc-card__name {
  font-size: clamp(1.375rem, 3.5vw, 1.875rem);
}

.lm-home-svc-card:not(.lm-home-svc-card--hero) .lm-home-svc-card__name {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.lm-home-svc-card__desc {
  margin: 0;
  color: rgba(245, 240, 234, 0);
  font-size: clamp(0.75rem, 2.4vw, 0.875rem);
  line-height: 1.7;
  transition: color 0.4s 0.1s;
}

.lm-home-svc-card:hover .lm-home-svc-card__desc {
  color: rgba(245, 240, 234, 0.85);
}

.lm-home-svc-card__btn {
  margin-top: 0.625rem;
  width: fit-content;
  background: rgba(201, 169, 110, 0);
  border: 1px solid rgba(201, 169, 110, 0);
  color: rgba(201, 169, 110, 0);
  font-size: clamp(0.625rem, 2.2vw, 0.75rem);
  letter-spacing: 0.12em;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.4s;
}

.lm-home-svc-card:hover .lm-home-svc-card__btn {
  background: linear-gradient(135deg, var(--lm-primary), #e8c98e);
  border-color: var(--lm-primary);
  color: #0a0608;
}

/* ——— Brand strip ——— */
.lm-home-brandstrip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fbf7ee 0%, #f5edd8 50%, #fbf7ee 100%);
  padding: 6.25rem clamp(1.5rem, 4vw, 2.5rem);
}

.lm-home-brandstrip__corner {
  position: absolute;
  width: 56px;
  height: 56px;
  border-color: rgba(201, 169, 110, 0.45);
  border-style: solid;
  border-width: 0;
}

.lm-home-brandstrip__corner--tr { top: 28px; right: 36px; border-top-width: 1px; border-right-width: 1px; }
.lm-home-brandstrip__corner--tl { top: 28px; left: 36px; border-top-width: 1px; border-left-width: 1px; }
.lm-home-brandstrip__corner--br { bottom: 28px; right: 36px; border-bottom-width: 1px; border-right-width: 1px; }
.lm-home-brandstrip__corner--bl { bottom: 28px; left: 36px; border-bottom-width: 1px; border-left-width: 1px; }

.lm-home-brandstrip__quote-wrap {
  max-width: 56.25rem;
  margin-inline: auto;
  text-align: center;
}

.lm-home-brandstrip__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.lm-home-brandstrip__ornament-line {
  height: 1px;
  flex: 1;
  max-width: 120px;
  background: linear-gradient(to left, var(--lm-primary), transparent);
}

.lm-home-brandstrip__ornament-line--rev {
  background: linear-gradient(to right, var(--lm-primary), transparent);
}

.lm-home-brandstrip__quote {
  margin: 0;
  font-size: clamp(1.25rem, 3.5vw, 2.125rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--lm-fg);
}

.lm-home-brandstrip__attrib {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.lm-home-brandstrip__attrib-label {
  color: var(--lm-primary);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  opacity: 0.8;
}

.lm-home-brandstrip__features {
  max-width: 68.75rem;
  margin: 4.375rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.lm-home-brandstrip__feature {
  background: #fff;
  border: 1px solid rgba(180, 150, 100, 0.22);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(26, 18, 9, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.lm-home-brandstrip__feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.15);
}

.lm-home-brandstrip__feature-icon {
  color: var(--lm-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.lm-home-brandstrip__feature-title {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lm-fg);
}

.lm-home-brandstrip__feature-desc {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--lm-muted);
}

/* ——— Testimonials ——— */
.lm-home-testimonials {
  position: relative;
  background: #fff;
  padding: 6.25rem 0;
}

.lm-home-testimonials__top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.35), transparent);
}

.lm-home-testimonials__head {
  text-align: center;
  margin-bottom: 4rem;
}

.lm-home-testimonials__eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.125rem;
}

.lm-home-testimonials__eyebrow-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(to left, var(--lm-primary), transparent);
}

.lm-home-testimonials__eyebrow-line--rev {
  background: linear-gradient(to right, var(--lm-primary), transparent);
}

.lm-home-testimonials__eyebrow {
  color: var(--lm-primary);
  font-size: 0.625rem;
  letter-spacing: 0.35em;
  margin: 0;
}

.lm-home-testimonials__title {
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 3.125rem);
  margin: 0;
  color: var(--lm-fg);
}

.lm-home-testimonials__title em {
  color: var(--lm-primary);
  font-style: italic;
}

.lm-home-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.lm-home-testimonials__card {
  position: relative;
  background: #fbf7ee;
  border: 1px solid rgba(180, 150, 100, 0.22);
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 16px rgba(26, 18, 9, 0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.lm-home-testimonials__card:hover {
  border-color: rgba(201, 169, 110, 0.45);
  box-shadow: 0 8px 36px rgba(201, 169, 110, 0.15);
}

.lm-home-testimonials__big-quote {
  position: absolute;
  top: 1.25rem;
  left: 1.75rem;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201, 169, 110, 0.12);
  user-select: none;
  pointer-events: none;
}

.lm-home-testimonials__stars {
  display: flex;
  gap: 0.1875rem;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
  color: var(--lm-primary);
  font-size: 0.875rem;
}

.lm-home-testimonials__quote {
  margin: 0 0 2rem;
  font-style: italic;
  line-height: 1.85;
  color: #5c5048;
  font-size: 0.875rem;
}

.lm-home-testimonials__rule {
  height: 1px;
  background: linear-gradient(to right, var(--lm-primary), transparent);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.lm-home-testimonials__author {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.875rem;
}

.lm-home-testimonials__meta {
  text-align: right;
}

.lm-home-testimonials__name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--lm-fg);
}

.lm-home-testimonials__service {
  margin: 0.2rem 0 0;
  color: var(--lm-primary);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
}

.lm-home-testimonials__avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8c98e, var(--lm-primary));
  color: #1a1209;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.lm-home-testimonials__press {
  border-top: 1px solid rgba(180, 150, 100, 0.2);
  border-bottom: 1px solid rgba(180, 150, 100, 0.2);
  background: #fbf7ee;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 6vw, 4.375rem);
}

.lm-home-testimonials__press-label {
  color: var(--lm-primary);
  font-size: 0.5625rem;
  letter-spacing: 0.35em;
  opacity: 0.7;
}

.lm-home-testimonials__press-logo {
  font-size: clamp(0.8125rem, 2vw, 1.0625rem);
  letter-spacing: 0.22em;
  color: #5c5048;
  opacity: 0.55;
  transition: opacity 0.2s, color 0.2s;
}

.lm-home-testimonials__press-logo:hover {
  opacity: 1;
  color: var(--lm-primary);
}

@media (max-width: 640px) {
  .lm-home-offers__grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════════
   Home — مطابق لـ React Home.tsx  (namespace .lmh-)
   ═══════════════════════════════════════════════════════════════ */
.lmh { color: var(--foreground); }
.lmh .lmh-ic { flex-shrink: 0; }

/* ---------- Buttons ---------- */
.lmh-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: 1rem; font-weight: 600; font-size: 1rem; line-height: 1.2;
  padding: 1rem 2.5rem; transition: all .3s cubic-bezier(.34,1.56,.64,1);
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
}
.lmh-btn.btn-primary { color: #fff; box-shadow: 0 10px 30px rgba(184,138,68,.35); }
.lmh-btn--ghost { border-color: rgba(255,255,255,.3); color: #fff; background: transparent; backdrop-filter: blur(4px); }
.lmh-btn--ghost:hover { background: rgba(255,255,255,.1); }
.lmh-btn--outline { border-color: var(--border); color: var(--foreground); background: transparent; }
.lmh-btn--outline:hover { background: var(--secondary); }
@media (max-width:640px){ .lmh-btn--lg { width: 100%; } }

/* ═══════════ HERO ═══════════ */
.lmh-hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  justify-content: center; overflow: hidden;
}
.lmh-hero__bg { position: absolute; inset: 0; z-index: 0; }
.lmh-hero__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.6s ease-in-out; will-change: opacity;
}
.lmh-hero__slide.is-active { opacity: 1; }
.lmh-hero__img { width: 100%; height: 100%; object-fit: cover; }
.lmh-hero__slide.is-active .lmh-hero__img--kb1 { animation: kenBurns 7s linear forwards; }
.lmh-hero__slide.is-active .lmh-hero__img--kb2 { animation: kenBurns2 7s linear forwards; }
.lmh-hero__slide.is-active .lmh-hero__img--kb3 { animation: kenBurns3 7s linear forwards; }
.lmh-hero__overlay {
  position: absolute; inset: 0; z-index: 10;
  background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.3) 55%, rgba(0,0,0,.5));
}
.lmh-hero__vignette {
  position: absolute; inset: 0; z-index: 10;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.4) 100%);
}
.lmh-hero__orbs { position: absolute; inset: 0; z-index: 10; pointer-events: none; overflow: hidden; }
.lmh-hero__orb { position: absolute; border-radius: 999px; }
.lmh-hero__orb--1 {
  top: 25%; right: 25%; width: 20rem; height: 20rem; opacity: .15;
  background: radial-gradient(circle, var(--lm-primary), transparent 70%);
  animation: float 12s ease-in-out infinite;
}
.lmh-hero__orb--2 {
  bottom: 33%; left: 25%; width: 14rem; height: 14rem; opacity: .12;
  background: radial-gradient(circle, #D4A96A, transparent 70%);
  animation: float 16s ease-in-out infinite; animation-delay: 3s;
}
.lmh-hero__content { position: relative; z-index: 20; width: 100%; padding: 8rem 1rem 6rem; }
.lmh-hero__inner { max-width: 64rem; margin: 0 auto; text-align: center; color: #fff; }

.lmh-hero__badge { display: flex; align-items: center; justify-content: center; gap: .75rem; margin-bottom: 2rem; }
.lmh-hero__badge-rule { height: 1px; width: 4rem; background: rgba(184,138,68,.6); }
.lmh-hero__badge-pill {
  display: inline-flex; align-items: center; gap: .5rem; padding: .375rem 1rem;
  border-radius: 999px; border: 1px solid rgba(184,138,68,.4);
  background: rgba(0,0,0,.2); backdrop-filter: blur(4px);
  font-size: 11px; font-weight: 500; letter-spacing: .3em; color: rgba(184,138,68,.9);
}
.lmh-hero__badge-pill .lmh-ic { color: var(--primary); }

.lmh-hero__eyebrow {
  color: rgba(255,255,255,.55); margin-bottom: .75rem; letter-spacing: .18em;
  font-family: 'Tajawal', sans-serif; font-size: clamp(.85rem,1.5vw,1rem); font-weight: 300;
}
.lmh-hero__title {
  font-family: 'Scheherazade New','Amiri',serif; font-weight: 700;
  font-size: clamp(3.2rem,8vw,7rem); line-height: 1.1; letter-spacing: .02em;
  color: #fff; margin-bottom: .75rem;
}
.lmh-hero__title--gold { color: #D4A96A; text-shadow: 0 0 60px rgba(212,169,106,.4); margin-bottom: 0; }
.lmh-hero__headline { margin-bottom: 1rem; }

.lmh-hero__ornament { display: flex; align-items: center; justify-content: center; gap: .75rem; margin-bottom: 1.75rem; }
.lmh-hero__ornament-rule { height: 1px; width: 5rem; }
.lmh-hero__ornament-rule--r { background: linear-gradient(to right, transparent, rgba(184,138,68,.7)); }
.lmh-hero__ornament-rule--l { background: linear-gradient(to left, transparent, rgba(184,138,68,.7)); }
.lmh-hero__ornament-star { color: var(--primary); font-size: 1.125rem; }

.lmh-hero__subtitle {
  color: rgba(255,255,255,.65); max-width: 28rem; margin: 0 auto 2.5rem; line-height: 1.7;
  font-family: 'Tajawal', sans-serif; font-size: clamp(1rem,1.8vw,1.1rem); font-weight: 300;
}
.lmh-hero__cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; margin-bottom: 2.5rem;
}
@media (min-width:640px){ .lmh-hero__cta { flex-direction: row; } }

.lmh-hero__pills { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .5rem; }
.lmh-hero__pill {
  font-size: .75rem; font-weight: 500; padding: .5rem 1rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.8);
  text-decoration: none; backdrop-filter: blur(4px); transition: all .3s;
}
.lmh-hero__pill:hover { border-color: var(--primary); color: var(--primary); background: rgba(184,138,68,.1); }

.lmh-hero__dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; align-items: center; gap: .5rem; }
.lmh-hero__dot { height: .5rem; width: .5rem; border-radius: 999px; border: none; background: rgba(255,255,255,.4); transition: all .5s; cursor: pointer; padding: 0; }
.lmh-hero__dot:hover { background: rgba(255,255,255,.7); }
.lmh-hero__dot.is-active { width: 2rem; background: var(--primary); }

.lmh-hero__scroll { position: absolute; bottom: 4rem; left: 50%; transform: translateX(-50%); z-index: 20; color: rgba(255,255,255,.4); animation: float 1.5s ease-in-out infinite; }

/* hero entrance animations */
[data-lmh-anim] { opacity: 0; animation-fill-mode: forwards; animation-delay: var(--d,0s); }
[data-lmh-anim="fade-up"] { animation: fadeInUp .9s ease forwards; }
[data-lmh-anim="fade"] { animation: lmhFade .8s ease forwards; }
[data-lmh-anim="scale-x"] { animation: lmhScaleX .8s ease forwards; }
@keyframes lmhFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lmhScaleX { from { opacity: 0; transform: scaleX(0); } to { opacity: 1; transform: scaleX(1); } }

/* ═══════════ STATS ═══════════ */
.lmh-stats { padding: 3.5rem 1rem; background: var(--foreground); color: #fff; }
.lmh-stats__inner { max-width: 56rem; margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; text-align: center; }
@media (min-width:768px){ .lmh-stats__inner { grid-template-columns: repeat(4,1fr); } }
.lmh-stats__value { font-family: 'Scheherazade New','Amiri',serif; font-weight: 700; font-size: 2.25rem; color: var(--primary); margin-bottom: .25rem; }
.lmh-stats__label { color: rgba(255,255,255,.5); font-size: .875rem; }

/* ═══════════ SECTION SHELL ═══════════ */
.lmh-section { padding: 5rem 1rem; }
.lmh-section--dark { background: var(--foreground); color: #fff; }
.lmh-section--tint { background: rgba(233,221,208,.3); }
.lmh-wrap { max-width: 72rem; margin: 0 auto; }
.lmh-grid--services { max-width: 80rem; margin-left: auto; margin-right: auto; }

.lmh-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; }
.lmh-head--center { display: block; text-align: center; margin-bottom: 3.5rem; }
.lmh-eyebrow { color: var(--primary); font-size: .875rem; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.lmh-title { font-family: 'Scheherazade New','Amiri',serif; font-size: 1.875rem; line-height: 1.35; font-weight: 500; color: var(--foreground); }
.lmh-title--light { color: #fff; }
.lmh-title em { color: var(--primary); font-style: italic; }
.lmh-viewall { display: inline-flex; align-items: center; gap: .375rem; font-size: .875rem; color: var(--primary); font-weight: 500; text-decoration: none; transition: gap .3s; white-space: nowrap; }
.lmh-viewall:hover { gap: .75rem; }
.lmh-chip { font-size: .75rem; background: var(--secondary); padding: .25rem .625rem; border-radius: 999px; color: var(--muted-foreground); }

/* ---------- Service cards ---------- */
.lmh-grid { display: grid; gap: 1.5rem; }
.lmh-grid--services { grid-template-columns: 1fr; }
@media (min-width:640px){ .lmh-grid--services { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px){ .lmh-grid--services { grid-template-columns: repeat(3,1fr); } }
.lmh-scard {
  display: block; background: var(--card); border: 1px solid var(--border);
  border-radius: 1.5rem; overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.lmh-scard:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(184,138,68,.15), 0 8px 24px rgba(0,0,0,.08); }
.lmh-scard__media { position: relative; height: 12rem; overflow: hidden; }
.lmh-scard__img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.lmh-scard:hover .lmh-scard__img { transform: scale(1.08); }
.lmh-scard__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6), transparent 60%); }
.lmh-scard__badge { position: absolute; top: .75rem; right: .75rem; font-size: 11px; font-weight: 500; background: var(--primary); color: #fff; padding: .25rem .75rem; border-radius: 999px; }
.lmh-scard__name { position: absolute; bottom: .75rem; right: .75rem; left: .75rem; color: #fff; font-weight: 600; font-size: 1rem; font-family: 'Scheherazade New','Amiri',serif; }
.lmh-scard__body { padding: 1.25rem; }
.lmh-scard__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: .5rem; }
.lmh-scard__facts { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: var(--muted-foreground); }
.lmh-scard__dur { display: inline-flex; align-items: center; gap: .25rem; }
.lmh-scard__price { font-weight: 700; color: var(--primary); }
.lmh-scard__desc { font-size: .75rem; color: var(--muted-foreground); margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lmh-scard__btn { display: block; text-align: center; width: 100%; padding: .625rem; border-radius: .75rem; background: rgba(184,138,68,.1); color: var(--primary); font-size: .875rem; font-weight: 500; transition: all .3s; }
.lmh-scard:hover .lmh-scard__btn { background: var(--primary); color: #fff; }

/* ---------- About ---------- */
.lmh-about { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; max-width: 72rem; }
@media (min-width:768px){ .lmh-about { grid-template-columns: 1fr 1fr; } }
.lmh-about__lead { color: rgba(255,255,255,.6); line-height: 1.8; margin: 1.5rem 0 2rem; }
.lmh-about__list { display: flex; flex-direction: column; gap: 1.25rem; }
.lmh-about__item { display: flex; align-items: flex-start; gap: 1rem; }
.lmh-about__ic { width: 2.5rem; height: 2.5rem; border-radius: .75rem; background: rgba(184,138,68,.2); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lmh-about__item-title { font-weight: 500; margin-bottom: .125rem; }
.lmh-about__item-desc { color: rgba(255,255,255,.5); font-size: .875rem; }
.lmh-about__figure { position: relative; }
.lmh-about__photo { position: relative; border-radius: 1.5rem; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 25px 50px -12px rgba(0,0,0,.5); }
.lmh-about__photo img { width: 100%; height: 100%; object-fit: cover; }
.lmh-about__photo-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.4), transparent); }
.lmh-about__badge { position: absolute; bottom: -1.5rem; right: -1.5rem; border-radius: 1rem; padding: 1rem; display: flex; align-items: center; gap: .75rem; box-shadow: 0 20px 40px rgba(0,0,0,.2); animation: float 4s ease-in-out infinite; }
.lmh-about__badge-ic { width: 2.5rem; height: 2.5rem; border-radius: 999px; display: flex; align-items: center; justify-content: center; color: #fff; }
.lmh-about__badge-score { font-weight: 600; color: var(--foreground); font-size: .875rem; }
.lmh-about__badge-count { font-size: .75rem; color: var(--muted-foreground); }

/* ---------- Team ---------- */
.lmh-grid--team { grid-template-columns: 1fr; }
@media (min-width:640px){ .lmh-grid--team { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px){ .lmh-grid--team { grid-template-columns: repeat(4,1fr); } }
.lmh-tcard { background: var(--card); border: 1px solid var(--border); border-radius: 1.5rem; overflow: hidden; text-align: center; transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.lmh-tcard:hover { transform: translateY(-4px); }
.lmh-tcard__media { position: relative; height: 13rem; overflow: hidden; }
.lmh-tcard__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.lmh-tcard:hover .lmh-tcard__img { transform: scale(1.05); }
.lmh-tcard__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6), transparent 60%); }
.lmh-tcard__avail { position: absolute; top: .75rem; right: .75rem; font-size: 10px; background: #10b981; color: #fff; padding: .125rem .5rem; border-radius: 999px; }
.lmh-tcard__body { padding: 1rem; }
.lmh-tcard__name { font-size: .875rem; font-weight: 600; margin-bottom: .125rem; font-family: 'Tajawal',sans-serif; }
.lmh-tcard__role { color: var(--primary); font-size: .75rem; margin-bottom: .5rem; }
.lmh-tcard__rate { display: flex; align-items: center; justify-content: center; gap: .25rem; margin-bottom: .75rem; color: var(--primary); }
.lmh-tcard__rate-num { font-size: .75rem; font-weight: 600; color: var(--foreground); }
.lmh-tcard__rate-count { font-size: .75rem; color: var(--muted-foreground); }
.lmh-tcard__tags { display: flex; flex-wrap: wrap; gap: .25rem; justify-content: center; margin-bottom: .5rem; }
.lmh-tcard__tag { font-size: 10px; background: var(--secondary); padding: .125rem .5rem; border-radius: 999px; }
.lmh-tcard__tag--cat { background: rgba(184,138,68,.1); color: var(--primary); font-weight: 500; }
.lmh-tcard__actions { display: flex; gap: .5rem; margin-top: .75rem; }
.lmh-tcard__btn { flex: 1; padding: .5rem; border-radius: .75rem; font-size: .75rem; font-weight: 500; text-decoration: none; transition: all .3s; }
.lmh-tcard__btn--soft { background: var(--secondary); color: var(--foreground); }
.lmh-tcard__btn--soft:hover { background: rgba(233,221,208,.7); }
.lmh-tcard__btn--primary { background: rgba(184,138,68,.1); color: var(--primary); }
.lmh-tcard:hover .lmh-tcard__btn--primary { background: var(--primary); color: #fff; }

/* ---------- Reviews ---------- */
.lmh-grid--reviews { grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width:768px){ .lmh-grid--reviews { grid-template-columns: repeat(3,1fr); } }
.lmh-rcard { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; }
.lmh-rcard__stars { display: flex; gap: .125rem; margin-bottom: 1rem; color: var(--primary); }
.lmh-rcard__stars .lmh-ic { color: var(--primary); }
.lmh-rcard__text { font-size: .875rem; line-height: 1.7; color: var(--muted-foreground); margin-bottom: 1.25rem; font-style: italic; }
.lmh-rcard__user { display: flex; align-items: center; gap: .75rem; }
.lmh-rcard__avatar { width: 2.5rem; height: 2.5rem; border-radius: 999px; object-fit: cover; }
.lmh-rcard__name { font-weight: 600; font-size: .875rem; }
.lmh-rcard__meta { font-size: .75rem; color: var(--muted-foreground); }

/* ---------- Contact ---------- */
.lmh-contact { max-width: 56rem; text-align: center; }
.lmh-contact__title { margin-bottom: 1rem; }
.lmh-contact__addr { color: var(--muted-foreground); margin-bottom: 2.5rem; font-size: .875rem; }
.lmh-contact__cards { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width:640px){ .lmh-contact__cards { grid-template-columns: repeat(3,1fr); } }
.lmh-contact__card { display: flex; flex-direction: column; align-items: center; gap: .75rem; padding: 1.5rem; background: var(--card); border: 1px solid var(--border); border-radius: 1rem; text-decoration: none; color: inherit; transition: all .3s; }
.lmh-contact__card:hover { border-color: var(--primary); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.lmh-contact__ic { width: 3rem; height: 3rem; border-radius: .75rem; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(184,138,68,.3); transition: transform .3s; }
.lmh-contact__card:hover .lmh-contact__ic { transform: scale(1.1); }
.lmh-contact__card-title { font-weight: 600; font-size: .875rem; }
.lmh-contact__card-value { font-size: .75rem; color: var(--muted-foreground); }
.lmh-contact__cta { justify-content: center; margin-bottom: 0; }

/* ---------- Scroll reveal ---------- */
[data-lmh-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
[data-lmh-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  [data-lmh-reveal], [data-lmh-anim] { opacity: 1 !important; transform: none !important; animation: none !important; }
  .lmh-hero__slide.is-active .lmh-hero__img { animation: none !important; }
}
